/* ============================================================
   ArchiTECH Designs — style.css
   Fonts: Rubik + Lora (Google Fonts)
   Accent: #caa680  |  Body bg: #f2f0ed  |  Footer bg: #1b1b24
   ============================================================ */

/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    background-color: #f2f0ed;
}

a { color: #caa680; text-decoration: none; transition: color .2s; }
a:hover { color: #a8835a; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ── Layout helpers ──────────────────────────────────────── */
.content-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 3.1%;
}

.site-wrap { display: flex; flex-direction: column; min-height: 100vh; }
.page-content { flex: 1; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.header-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0.3rem 3.1% 0.55rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-logo img { display: block; }

/* ── Desktop nav ─────────────────────────────────────────── */
.main-nav { display: block; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list li { position: relative; }

.nav-list li a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: #22222e;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color .2s;
}
.nav-list li a span { pointer-events: none; }
.nav-list li a:hover,
.nav-list li.active > a { color: #caa680; }

/* Dropdown */
.nav-list .has-dropdown { position: relative; }

.nav-list .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    z-index: 300;
    padding: 0.4rem 0;
}

.nav-list .dropdown li a {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    color: #333;
}
.nav-list .dropdown li a:hover { color: #caa680; }

.nav-list .has-dropdown:hover .dropdown { display: block; }

/* Mobile burger – hidden on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #22222e;
    padding: 0.25rem 0.5rem;
}

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 400;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #22222e;
    z-index: 500;
    overflow-y: auto;
}

.mobile-menu.open,
.mobile-menu-overlay.open { display: block; }

.mobile-menu-inner {
    padding: 2rem 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.mobile-logo {
    display: block;
    margin-bottom: 2rem;
    color: #fff;
}
.mobile-logo .logo-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.mobile-logo .logo-slogan {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 0.75rem 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.mobile-nav-list > li > a:hover { color: #caa680; }

.mobile-sub-menu { padding: 0.25rem 0 0.5rem 1rem; }
.mobile-sub-menu li a {
    display: block;
    padding: 0.4rem 0;
    color: #ccc;
    font-size: 0.875rem;
}
.mobile-sub-menu li a:hover { color: #caa680; }

/* ── Section titles ──────────────────────────────────────── */
.section-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #22222e;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title.with-line::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #caa680;
    margin-top: 0.6rem;
}

.section-title.align-center { text-align: center; }
.section-title.align-center.with-line::after { margin-left: auto; margin-right: auto; }

.section-desc {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.65em 1.6em;
    border: 2px solid #22222e;
    color: #22222e;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background .2s, color .2s, border-color .2s;
    cursor: pointer;
}
.btn:hover {
    background: #22222e;
    color: #fff;
    border-color: #22222e;
}

.btn-accent {
    background: #caa680;
    border-color: #caa680;
    color: #fff;
}
.btn-accent:hover {
    background: #a8835a;
    border-color: #a8835a;
    color: #fff;
}

.btn-etsy {
    display: inline-block;
    padding: 0.8em 2em;
    background: #f45800;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s;
}
.btn-etsy:hover { background: #c94500; color: #fff; }

/* ── HOME PAGE ───────────────────────────────────────────── */

/* Promo sections */
.promo-section {
    background: #faf8f5;
    margin-bottom: 0;
}

.promo {
    display: flex;
    align-items: stretch;
    min-height: 380px;
}

.promo.promo-reverse { flex-direction: row-reverse; }

.promo-image {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.promo-text {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 3rem 4% 3rem 5%;
}

.promo.promo-reverse .promo-text {
    padding: 3rem 5% 3rem 4%;
}

.promo-text-inner { max-width: 520px; }

.promo-text .section-title { margin-bottom: 0.75rem; }
.promo-text .section-desc { margin-bottom: 1.5rem; }

.promo-text .sub-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #555;
}
.promo-text .sub-link:hover { color: #caa680; }

/* Dark CTA bar on home */
.home-cta-bar {
    background: #22222e;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}
.home-cta-bar h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.home-cta-bar p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ── INNER PAGES ─────────────────────────────────────────── */
.page-inner {
    padding: 3rem 0 4rem;
}

.page-inner .content-wrap > h1,
.page-inner .content-wrap > h2 {
    margin-bottom: 1.5rem;
}

/* ── FAQs ────────────────────────────────────────────────── */
.faq-intro {
    margin-bottom: 2rem;
    color: #555;
    text-align: center;
}

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
    border-top: 1px solid #ddd;
}
.faq-item:last-child { border-bottom: 1px solid #ddd; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 2.5rem 1rem 0;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #22222e;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #caa680;
    line-height: 1;
    transition: transform .25s;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 0 1.2rem;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ── Contact page ────────────────────────────────────────── */
.contact-section {
    padding: 3rem 0 5rem;
}

.contact-heading {
    text-align: center;
    margin-bottom: 0.5rem;
}
.contact-sub {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    flex: 0 0 calc(50% - 1rem);
    max-width: 420px;
    background: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.contact-card-icon {
    font-size: 2.5rem;
    color: #5b9bd5;
    margin-bottom: 1rem;
}

.contact-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #22222e;
}

.contact-card p,
.contact-card a { color: #555; font-size: 0.95rem; }

/* ── House Plans page ────────────────────────────────────── */
.plans-section { padding: 3rem 0 5rem; }

.plans-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.plan-cards { display: flex; flex-direction: column; gap: 1.5rem; }

.plan-card {
    display: flex;
    align-items: stretch;
    background: #efefef;
    min-height: 200px;
}

.plan-card-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.plan-card:hover .plan-card-image img { transform: scale(1.04); }

.plan-card-caption {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-card-caption h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22222e;
    margin-bottom: 0.75rem;
}

.plan-card-caption p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.plan-card-caption .btn { align-self: flex-start; }

/* ── Scarlett product page ───────────────────────────────── */
.scarlett-section { padding: 2rem 0 5rem; }

.scarlett-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.scarlett-gallery { flex: 0 0 65%; }
.scarlett-sidebar { flex: 0 0 calc(35% - 3rem); }

.gallery-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #22222e;
    margin-bottom: 0.75rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 1.5rem;
}

.gallery-grid a { display: block; overflow: hidden; aspect-ratio: 16/9; }
.gallery-grid a.portrait { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.gallery-grid a:hover img { transform: scale(1.05); }

.scarlett-desc { color: #555; font-size: 0.95rem; margin: 1rem 0 1.5rem; }

.scarlett-sidebar h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #22222e;
    margin-bottom: 0.25rem;
}

.scarlett-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: #22222e;
    margin-bottom: 1.5rem;
}

.scarlett-specs {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.scarlett-disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* ── Checklist placeholder ───────────────────────────────── */
.placeholder-section {
    padding: 5rem 0;
    text-align: center;
}
.placeholder-section h1 { margin-bottom: 1rem; }
.placeholder-section p { color: #666; max-width: 540px; margin: 0 auto 2rem; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: #1b1b24;
    color: #ccc;
    font-size: 0.875rem;
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 3.1%;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col { flex: 1; min-width: 180px; }

.footer-brand img { margin-bottom: 1rem; }

.footer-email a { color: #caa680; }
.footer-email a:hover { color: #e0b898; }

.footer-widget-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links ul a { color: #bbb; }
.footer-links ul a:hover { color: #caa680; }

.footer-contact p { margin-bottom: 0.4rem; }
.footer-contact a { color: #caa680; }

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1rem 3.1%;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}
.footer-copyright-inner {
    max-width: 1170px;
    margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 959px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: block; }

    /* Home promo */
    .promo { flex-direction: column; min-height: auto; }
    .promo.promo-reverse { flex-direction: column; }
    .promo-image { flex: none; width: 100%; min-height: 260px; }
    .promo-text { flex: none; width: 100%; padding: 2rem 5%; }
    .promo.promo-reverse .promo-text { padding: 2rem 5%; }

    /* Contact cards */
    .contact-card { flex: 0 0 100%; max-width: 100%; }

    /* Plan cards */
    .plan-card { flex-direction: column; }
    .plan-card-image { flex: none; width: 100%; height: 220px; }

    /* Scarlett */
    .scarlett-layout { flex-direction: column; gap: 2rem; }
    .scarlett-gallery,
    .scarlett-sidebar { flex: none; width: 100%; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid a.portrait { aspect-ratio: 16/9; grid-row: span 1; }
}

@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }

    .footer-inner { flex-direction: column; gap: 2rem; }

    .promo-image { min-height: 200px; }
}

/* ── Contact form ────────────────────────────────────────── */
.contact-form-wrap {
    max-width: 720px;
    margin: 3rem auto 0;
}
.contact-form-wrap .section-title {
    margin-bottom: 1.5rem;
}

.cf-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.cf-row .cf-group { flex: 1; }

.cf-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}
.cf-row + .cf-group { margin-bottom: 1.25rem; }

.cf-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.35rem;
}
.cf-req { color: #c0392b; }
.cf-opt { color: #999; font-weight: 400; font-size: 0.8rem; }

.cf-group input,
.cf-group textarea {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid #ccc;
    background: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #333;
    transition: border-color .2s;
    border-radius: 0;
}
.cf-group input:focus,
.cf-group textarea:focus {
    outline: none;
    border-color: #caa680;
}
.cf-group textarea { resize: vertical; min-height: 130px; }

.cf-submit { margin-top: 0.5rem; display: block; margin-left: auto; margin-right: auto; }

.contact-alert {
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    border-left: 4px solid transparent;
}
.contact-alert--ok  { background: #edfaf1; border-color: #27ae60; color: #1e7e45; }
.contact-alert--err { background: #fdf0ef; border-color: #c0392b; color: #a02020; }

@media (max-width: 600px) {
    .cf-row { flex-direction: column; gap: 0; }
}

/* ── Plan cards — meta line ──────────────────────────────── */
.plan-card-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.plan-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22222e;
}
.plan-card-meta span:not(.plan-card-price) {
    font-size: 0.85rem;
    color: #666;
}

/* ── House Plan Detail ───────────────────────────────────── */
.plan-detail-section { padding: 2rem 0 5rem; }

.plan-detail-breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.5rem;
}
.plan-detail-breadcrumb a { color: #888; }
.plan-detail-breadcrumb a:hover { color: #caa680; }

.plan-detail-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}
.plan-detail-gallery { flex: 0 0 60%; min-width: 0; }
.plan-detail-sidebar { flex: 1; min-width: 0; }

/* Hero image */
.plan-detail-hero {
    width: 100%;
    background: #111;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}
.plan-detail-hero img {
    max-width: 100%;
    max-height: 560px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

/* Lightbox */
.plan-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.plan-lightbox.open { display: flex; }
.plan-lightbox img {
    max-width: 94vw;
    max-height: 94vh;
    object-fit: contain;
    display: block;
    cursor: default;
}
.plan-lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity .15s;
    z-index: 2001;
    padding: 0;
}
.plan-lightbox-close:hover { opacity: 1; }

/* Thumbnail strip */
.plan-thumb-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.plan-thumbs {
    display: flex;
    gap: 6px;
    overflow: hidden;
    flex: 1;
    scroll-behavior: smooth;
}
.plan-thumb {
    flex: 0 0 80px;
    height: 56px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    transition: opacity .2s, border-color .2s;
}
.plan-thumb:hover { opacity: 1; }
.plan-thumb.active { border-color: #caa680; opacity: 1; }
.plan-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.thumb-arrow {
    flex: 0 0 30px;
    height: 56px;
    background: #22222e;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background .2s;
}
.thumb-arrow:hover { background: #caa680; }

/* Type filter buttons */
.plan-type-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.type-filter {
    padding: 0.3em 1em;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: none;
    border: 1px solid #ccc;
    color: #666;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.type-filter:hover,
.type-filter.active {
    background: #22222e;
    color: #fff;
    border-color: #22222e;
}

/* Sidebar */
.plan-detail-name {
    font-size: 2rem;
    font-weight: 700;
    color: #22222e;
    margin-bottom: 0.5rem;
}
.plan-detail-tags { margin-bottom: 1rem; }
.plan-tag {
    display: inline-block;
    padding: 0.2em 0.7em;
    background: #e8e4df;
    color: #555;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.4rem;
}

/* Specs icons grid */
.plan-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 0.5rem;
    margin: 1.25rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.plan-spec-item { text-align: center; }
.plan-spec-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.35rem;
    color: #2b5ca8;
}
.plan-spec-icon svg { width: 100%; height: 100%; }
.plan-spec-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #22222e;
    line-height: 1.2;
}
.plan-spec-label {
    font-size: 0.62rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.1rem;
}

/* Price & CTA */
.plan-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #22222e;
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
}
.plan-detail-coming-soon {
    display: inline-block;
    padding: 0.5em 1.5em;
    background: #999;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1.5rem;
}

/* Description */
.plan-detail-desc {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.8;
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1.25rem;
}
.plan-detail-desc p  { margin-bottom: 0.75rem; }
.plan-detail-desc ul { padding-left: 1.25rem; margin-bottom: 0.75rem; list-style: disc; }
.plan-detail-desc small { font-size: 0.8rem; color: #888; }

/* Responsive */
@media (max-width: 959px) {
    .plan-detail-layout { flex-direction: column; gap: 2rem; }
    .plan-detail-gallery,
    .plan-detail-sidebar { width: 100%; flex: none; }
}
@media (max-width: 480px) {
    .plan-spec-icon  { width: 34px; height: 34px; }
    .plan-spec-value { font-size: 0.8rem; }
    .plan-spec-label { font-size: 0.58rem; }
    .plan-detail-name { font-size: 1.5rem; }
    .plan-thumb { flex: 0 0 64px; height: 46px; }
}
