.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 10vw, 132px) 0 clamp(72px, 8vw, 110px);
    color: var(--white);
    background:
        radial-gradient(circle at 78% 24%, rgba(213, 16, 214, .33), transparent 27rem),
        radial-gradient(circle at 18% 90%, rgba(123, 44, 255, .27), transparent 25rem),
        var(--ink);
}

.page-hero::after {
    position: absolute;
    right: -100px;
    bottom: -270px;
    width: 560px;
    height: 560px;
    content: "";
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, .72fr);
    gap: clamp(45px, 8vw, 105px);
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 25px;
    font-size: clamp(3.25rem, 6vw, 5.8rem);
}

.page-hero h1 em {
    color: #f7a8f7;
    font-family: Georgia, serif;
    font-weight: 500;
}

.page-hero-lead {
    max-width: 700px;
    margin-bottom: 32px;
    color: rgba(255,255,255,.76);
    font-size: clamp(1.08rem, 1.7vw, 1.31rem);
    line-height: 1.65;
}

.page-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: rgba(255,255,255,.66);
    font-size: .88rem;
    font-weight: 650;
}

.hero-note svg {
    width: 19px;
    color: var(--lime);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
}

.page-hero-card {
    position: relative;
    min-height: 385px;
    padding: 31px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.17);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 65px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
}

.page-hero-card > img {
    width: 100%;
    height: 100%;
    min-height: 323px;
    object-fit: cover;
    border-radius: 22px;
}

.page-hero-card.product-card {
    display: grid;
    min-height: 440px;
    place-items: center;
}

.page-hero-card.product-card > img {
    width: auto;
    height: 430px;
    min-height: 0;
    object-fit: contain;
}

.mini-proof {
    position: absolute;
    right: -24px;
    bottom: 29px;
    max-width: 220px;
    padding: 17px 19px;
    color: var(--ink);
    background: var(--white);
    border-radius: 17px;
    box-shadow: var(--shadow-lg);
}

.mini-proof strong,
.mini-proof span {
    display: block;
}

.mini-proof strong { font-size: 1.01rem; }
.mini-proof span { color: var(--muted); font-size: .76rem; }

.breadcrumb-bar {
    color: var(--muted);
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.breadcrumbs {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 10px;
    font-size: .79rem;
    font-weight: 650;
}

.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--magenta-dark); }
.breadcrumbs span { color: #a692a9; }

.subnav {
    position: sticky;
    top: 82px;
    z-index: 80;
    overflow-x: auto;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(15px);
}

.subnav .container {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 8px;
}

.subnav a {
    flex: none;
    padding: 8px 13px;
    color: var(--ink-soft);
    font-size: .83rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
}

.subnav a:hover { color: var(--magenta-dark); background: var(--surface-soft); }

.section-soft { background: var(--surface-soft); }
.section-dark { color: var(--white); background: var(--ink); }

.content-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.content-heading.centered { margin-inline: auto; text-align: center; }
.content-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.section-dark .content-heading > p:last-child { color: rgba(255,255,255,.65); }

.story-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(45px, 8vw, 110px);
}

.story-grid.reverse { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.story-grid.reverse .story-media { order: 2; }

.story-copy > p:not(.eyebrow) { color: var(--muted); }
.section-dark .story-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.story-copy .button { margin-top: 12px; }

.story-media {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-media img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.story-media.contain {
    display: grid;
    padding: 45px;
    background: linear-gradient(145deg, #f8eaf8, #ece2ff);
    place-items: center;
}

.story-media.contain img { width: auto; max-height: 410px; min-height: 0; object-fit: contain; }

.story-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 270px;
    padding: 18px 20px;
    background: rgba(255,255,255,.94);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.story-badge strong,
.story-badge span { display: block; }
.story-badge span { color: var(--muted); font-size: .78rem; }

.check-list,
.plain-list {
    padding: 0;
    margin: 27px 0 0;
    list-style: none;
}

.check-list { display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 31px; color: var(--ink-soft); }
.section-dark .story-copy .check-list li { color: rgba(255,255,255,.78); }
.check-list li::before {
    position: absolute;
    top: .32em;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    content: "\2713";
    color: var(--white);
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    border-radius: 50%;
    place-items: center;
    font-size: .67rem;
    font-weight: 900;
    line-height: 1;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    padding: 31px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-card-icon {
    display: grid;
    width: 51px;
    height: 51px;
    margin-bottom: 27px;
    color: var(--magenta-dark);
    background: var(--surface-soft);
    border-radius: 15px;
    place-items: center;
}

.info-card-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.info-card p { margin-bottom: 0; color: var(--muted); }
.info-card a { color: var(--magenta-dark); font-weight: 750; }

.numbered-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: steps;
}

.numbered-card {
    position: relative;
    min-height: 320px;
    padding: 30px 27px;
    overflow: hidden;
    color: var(--white);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    counter-increment: steps;
}

.numbered-card::before {
    display: block;
    margin-bottom: 75px;
    content: "0" counter(steps);
    color: #f7a8f7;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.numbered-card h3 { font-size: 1.42rem; }
.numbered-card p { margin-bottom: 0; color: rgba(255,255,255,.64); font-size: .94rem; }

.facts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.fact { padding: 29px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact strong,
.fact span { display: block; }
.fact strong { font-size: 1.04rem; }
.fact span { color: var(--muted); font-size: .8rem; }

/* Pricing */
.pricing-page-grid {
    display: grid;
    max-width: 970px;
    margin-inline: auto;
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.package-card {
    position: relative;
    display: flex;
    min-height: 640px;
    padding: 38px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.package-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateY(-15px); }
.package-label { margin-bottom: 28px; color: var(--magenta-dark); font-size: .77rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.featured .package-label { color: #f6a7f7; }
.package-card h2 { margin-bottom: 9px; font-size: clamp(2.1rem, 3vw, 3rem); }
.package-summary { min-height: 55px; color: var(--muted); }
.featured .package-summary { color: rgba(255,255,255,.64); }
.package-price { margin: 20px 0 28px; font-size: 3.7rem; font-weight: 820; letter-spacing: -.06em; line-height: 1; }
.package-price sup { position: relative; top: -.85em; margin-right: 4px; font-size: 1.25rem; }
.package-price small { color: var(--muted); font-size: .82rem; font-weight: 600; letter-spacing: 0; }
.featured .package-price small { color: rgba(255,255,255,.55); }
.package-card .check-list { margin: 0 0 34px; }
.package-card .check-list li { font-size: .94rem; }
.featured .check-list li { color: rgba(255,255,255,.76); }
.package-card .button { width: 100%; margin-top: auto; }
.featured .check-list li::before { color: var(--ink); background: var(--lime); }
.popular-pill { position: absolute; top: 24px; right: 24px; padding: 8px 12px; color: var(--ink); background: var(--lime); border-radius: 999px; font-size: .68rem; font-weight: 900; text-transform: uppercase; }

.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.upgrade-card {
    padding: 26px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 19px;
}

.upgrade-card strong,
.upgrade-card span,
.upgrade-card small { display: block; }
.upgrade-card strong { margin-bottom: 6px; font-size: 1.03rem; }
.upgrade-card span { margin-bottom: 8px; color: var(--magenta-dark); font-size: 1.28rem; font-weight: 820; }
.upgrade-card small { color: var(--muted); line-height: 1.5; }

.price-note {
    max-width: 970px;
    margin: 30px auto 0;
    padding: 23px 25px;
    color: var(--ink-soft);
    background: #fff7de;
    border: 1px solid #f0dfaa;
    border-radius: 18px;
    font-size: .88rem;
}

/* Design gallery */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.choice-card {
    padding: 29px 25px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.choice-card .choice-number { color: var(--magenta-dark); font-size: .72rem; font-weight: 850; letter-spacing: .13em; }
.choice-card h3 { margin-top: 42px; font-size: 1.32rem; }
.choice-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }

.template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.template-link {
    display: flex;
    min-height: 98px;
    padding: 20px 22px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.template-link:hover { border-color: #ddb9df; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.template-link strong,
.template-link small { display: block; }
.template-link small { color: var(--muted); }
.template-arrow { display: grid; width: 35px; height: 35px; flex: 0 0 auto; color: var(--white); background: var(--ink); border-radius: 50%; place-items: center; }

.design-gallery {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 13px;
}

.welcome-gallery { grid-template-columns: repeat(4, 1fr); }

.design-tile {
    position: relative;
    display: block;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 15px;
    cursor: zoom-in;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.design-tile:hover { border-color: #d5a9d8; box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.design-tile img { width: 100%; aspect-ratio: 1 / 3; object-fit: cover; border-radius: 8px; }
.welcome-gallery .design-tile img { aspect-ratio: 3 / 4; }
.design-tile span { display: block; padding-top: 8px; font-size: .7rem; font-weight: 800; text-align: center; }

.design-dialog {
    width: min(92vw, 620px);
    max-height: 92vh;
    padding: 20px;
    background: var(--white);
    border: 0;
    border-radius: 25px;
    box-shadow: 0 40px 120px rgba(20,5,22,.36);
}

.design-dialog::backdrop { background: rgba(28, 9, 31, .78); backdrop-filter: blur(4px); }
.design-dialog img { max-width: 100%; max-height: 74vh; margin: 0 auto; object-fit: contain; border-radius: 14px; }
.dialog-caption { margin: 12px 50px 0 5px; color: var(--muted); font-size: .85rem; }
.dialog-close { position: absolute; top: 16px; right: 16px; z-index: 1; width: 42px; height: 42px; color: var(--white); background: var(--ink); border: 0; border-radius: 50%; cursor: pointer; }

/* Placement */
.placement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.placement-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.placement-card img { width: 100%; height: 330px; object-fit: cover; }
.placement-card-copy { padding: 34px; }
.placement-card-copy > p { color: var(--muted); }
.location-map { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.location-panel { padding: 34px; color: var(--white); background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); }
.location-panel h3 { color: #f5acf6; }
.location-panel p { color: rgba(255,255,255,.64); }
.location-panel .check-list li { color: rgba(255,255,255,.78); }
.location-panel .check-list li::before { color: var(--ink); background: var(--lime); }

/* Contact */
.contact-page .mobile-booking-bar { display: none; }
.contact-page { padding-bottom: 0; }
.contact-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr); gap: clamp(35px, 6vw, 75px); }
.contact-form-card { padding: clamp(27px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-intro { padding-bottom: 30px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.form-intro p { margin-bottom: 0; color: var(--muted); }
.field-group { margin: 0 0 27px; padding: 0; border: 0; }
.field-group > legend,
.field-label { display: block; margin-bottom: 9px; color: var(--ink); font-size: .89rem; font-weight: 800; }
.required { color: var(--magenta-dark); }
.field-help { margin: -3px 0 9px; color: var(--muted); font-size: .78rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
.field-full { grid-column: 1 / -1; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 53px;
    padding: 13px 15px;
    color: var(--ink);
    background: #fdfafd;
    border: 1px solid #dccedf;
    border-radius: 12px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { background: var(--white); border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(213,16,214,.09); }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.radio-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.radio-card { position: relative; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card span { display: block; min-height: 78px; padding: 17px 18px; color: var(--ink-soft); background: var(--white); border: 1px solid #dccedf; border-radius: 14px; cursor: pointer; }
.radio-card strong,
.radio-card small { display: block; }
.radio-card small { margin-top: 3px; color: var(--muted); font-size: .75rem; }
.radio-card input:checked + span { color: var(--magenta-dark); background: #fff5ff; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(213,16,214,.07); }
.radio-card input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 3px; }

.time-fields { display: flex; align-items: center; gap: 8px; }
.time-fields input { width: 80px !important; text-align: center; }
.time-separator { font-weight: 850; }
.checkbox-stack { display: grid; gap: 10px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); font-size: .9rem; cursor: pointer; }
.checkbox-row input { width: 19px; height: 19px; margin: 3px 0 0; flex: 0 0 auto; accent-color: var(--magenta-dark); }
.conditional-fields { padding-top: 29px; margin-top: 8px; border-top: 1px dashed #d9c8dc; }
.conditional-fields[hidden] { display: none; }
.form-section-title { margin: 10px 0 26px; font-size: 1.55rem; }
.consent { padding: 18px; margin-top: 9px; background: var(--surface-soft); border-radius: 14px; }
.consent a { color: var(--magenta-dark); }
.form-submit { width: 100%; min-height: 58px; margin-top: 22px; border: 0; cursor: pointer; }
.form-status { min-height: 1.3em; margin: 12px 0 0; color: var(--muted); font-size: .8rem; }

.contact-sidebar { position: sticky; top: 115px; display: grid; gap: 17px; }
.contact-side-card { padding: 29px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-md); }
.contact-side-card.dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.contact-side-card h2 { font-size: 1.65rem; }
.contact-side-card p { color: var(--muted); }
.contact-side-card.dark p { color: rgba(255,255,255,.63); }
.contact-link { display: block; margin-top: 9px; color: var(--magenta-dark); font-size: 1.03rem; font-weight: 800; text-decoration: none; }
.contact-side-card.dark .contact-link { color: #f4a6f5; }
.response-time { display: flex; align-items: center; gap: 11px; margin-top: 21px; color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 700; }
.status-dot { width: 10px; height: 10px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 6px rgba(216,255,120,.1); }

/* FAQ and legal */
.faq-page-grid { display: grid; grid-template-columns: minmax(250px, .35fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 90px); }
.faq-page-grid .faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-page-grid .faq-list details { background: var(--white); }
.legal-shell { display: grid; align-items: start; grid-template-columns: 240px minmax(0, 760px); justify-content: center; gap: clamp(45px, 7vw, 90px); }
.legal-nav { position: sticky; top: 120px; padding: 23px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 18px; }
.legal-nav strong { display: block; margin-bottom: 12px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.legal-nav a { display: block; padding: 6px 0; color: var(--muted); font-size: .84rem; text-decoration: none; }
.legal-nav a:hover { color: var(--magenta-dark); }
.legal-copy h2 { padding-top: 30px; margin-top: 20px; font-size: 2rem; scroll-margin-top: 115px; }
.legal-copy h2:first-child { padding-top: 0; margin-top: 0; }
.legal-copy p,
.legal-copy li { color: var(--ink-soft); }
.legal-copy a { color: var(--magenta-dark); }

/* System pages */
.system-page { display: grid; min-height: calc(100vh - 82px); padding: 80px 0; color: var(--white); background: radial-gradient(circle at 75% 20%, rgba(213,16,214,.3), transparent 30rem), var(--ink); place-items: center; }
.system-card { max-width: 720px; text-align: center; }
.system-code { display: inline-flex; padding: 9px 15px; margin-bottom: 28px; color: var(--ink); background: var(--lime); border-radius: 999px; font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.system-card h1 { margin-inline: auto; font-size: clamp(3.1rem, 8vw, 6.8rem); }
.system-card > p { max-width: 590px; margin: 0 auto 31px; color: rgba(255,255,255,.68); font-size: 1.12rem; }
.system-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.next-steps { display: grid; max-width: 700px; margin: 42px auto 0; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: left; }
.next-step { padding: 19px; color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 15px; font-size: .78rem; }
.next-step strong { display: block; margin-bottom: 5px; color: var(--white); font-size: .88rem; }

@media (max-width: 1020px) {
    .card-grid,
    .upgrade-grid { grid-template-columns: repeat(2, 1fr); }
    .numbered-grid { grid-template-columns: repeat(2, 1fr); }
    .numbered-card { min-height: 280px; }
    .choice-grid { grid-template-columns: repeat(2, 1fr); }
    .design-gallery { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 880px) {
    .page-hero-grid,
    .story-grid,
    .story-grid.reverse,
    .contact-layout,
    .faq-page-grid { grid-template-columns: 1fr; }
    .page-hero-copy { text-align: center; }
    .page-hero .eyebrow,
    .page-hero-actions { justify-content: center; }
    .page-hero-lead { margin-inline: auto; }
    .page-hero-card { width: min(100%, 520px); margin-inline: auto; }
    .mini-proof { right: -5px; }
    .subnav { top: 82px; }
    .story-grid.reverse .story-media { order: 0; }
    .story-media,
    .story-media img { min-height: 390px; }
    .facts-strip { grid-template-columns: repeat(2, 1fr); }
    .fact:nth-child(2) { border-right: 0; }
    .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .placement-grid,
    .location-map { grid-template-columns: 1fr; }
    .contact-sidebar,
    .faq-page-grid .faq-intro { position: static; }
    .legal-shell { grid-template-columns: 1fr; }
    .legal-nav { position: static; display: none; }
}

@media (max-width: 640px) {
    .page-hero { padding: 65px 0 67px; }
    .page-hero-grid { gap: 36px; }
    .page-hero-copy { text-align: left; }
    .page-hero .eyebrow,
    .page-hero-actions { justify-content: flex-start; }
    .page-hero-actions { align-items: stretch; flex-direction: column; }
    .page-hero-actions .button { width: 100%; }
    .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.15rem); }
    .page-hero-card { min-height: 310px; padding: 18px; }
    .page-hero-card > img { min-height: 274px; }
    .page-hero-card.product-card { min-height: 365px; }
    .page-hero-card.product-card > img { height: 350px; }
    .mini-proof { right: 7px; bottom: 16px; }
    .breadcrumbs { overflow: hidden; white-space: nowrap; }
    .subnav { top: 72px; }
    .content-heading { margin-bottom: 38px; }
    .story-media,
    .story-media img { min-height: 320px; }
    .story-media.contain { padding: 27px; }
    .card-grid,
    .numbered-grid,
    .pricing-page-grid,
    .upgrade-grid,
    .choice-grid,
    .template-grid,
    .placement-grid,
    .location-map,
    .form-grid { grid-template-columns: 1fr; }
    .numbered-card { min-height: 250px; }
    .numbered-card::before { margin-bottom: 50px; }
    .facts-strip { grid-template-columns: 1fr; }
    .fact { border-right: 0; border-bottom: 1px solid var(--line); }
    .fact:last-child { border-bottom: 0; }
    .package-card { min-height: 590px; padding: 30px 27px; }
    .package-card.featured { transform: none; }
    .popular-pill { top: 20px; right: 20px; }
    .design-gallery { grid-template-columns: repeat(3, 1fr); }
    .welcome-gallery { grid-template-columns: repeat(2, 1fr); }
    .placement-card img { height: 250px; }
    .placement-card-copy { padding: 28px; }
    .contact-form-card { padding: 25px 19px; border-radius: 24px; }
    .radio-cards { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .next-steps { grid-template-columns: 1fr; }
}
