:root {
            --ink: #1d1d1f;
            --muted: #515154;
            --soft: #f5f5f7;
            --blue: #0071e3;
            --gold: #a06a2b;
            --luxury-ink: #15130f;
            --luxury-espresso: #2a2117;
            --luxury-gold: #b8965f;
            --luxury-champagne: #f2dfb3;
            --luxury-border: rgba(184, 150, 95, .52);
            --luxury-shadow: 0 18px 44px rgba(32, 24, 15, .22);
            --luxury-gradient: linear-gradient(135deg, #15130f 0%, #2a2117 47%, #5e4728 100%);
            --glass-line: rgba(0, 0, 0, 0.08);
            --glass-shadow: 0 18px 52px rgba(22, 22, 23, 0.10);
        }

        html { scroll-behavior: smooth; }

        .site-app {
            background: #f5f5f7;
            color: var(--ink);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        .site-container {
            max-width: 100%;
            padding: 0;
        }

        .apple-nav {
            position: sticky;
            top: 0;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            gap: 24px;
            align-items: center;
            min-height: 58px;
            padding: 0 max(20px, calc((100vw - 1180px) / 2));
            background: rgba(251,251,253,.86);
            border-bottom: 1px solid rgba(0,0,0,.08);
            box-shadow: 0 8px 24px rgba(0,0,0,.04);
            backdrop-filter: saturate(180%) blur(22px);
            -webkit-backdrop-filter: saturate(180%) blur(22px);
            font-size: 13px;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: max-content;
            font-weight: 800;
            color: var(--ink);
            text-decoration: none;
        }

        .brand-logo {
            width: 88px;
            height: 34px;
            display: block;
        }

        .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 22px;
            min-width: 0;
        }

        .nav-link {
            color: #424245;
            font-weight: 650;
            text-decoration: none;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--luxury-gold);
        }

        .top-offer {
            padding: 14px 20px;
            text-align: center;
            font-size: 14px;
            line-height: 1.5;
            background: #ffffff;
            color: #424245;
        }

        .top-offer span {
            color: var(--luxury-espresso);
            font-weight: 700;
        }

        .mobile-sticky-cta { display: none; }

        .hero {
            position: relative;
            min-height: 680px;
            padding: 72px 24px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            text-align: center;
            background:
                linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,245,247,.82)),
                radial-gradient(circle at 22% 18%, rgba(184,150,95,.10), transparent 30%),
                radial-gradient(circle at 78% 28%, rgba(94,71,40,.09), transparent 28%),
                linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
        }

        .hero::before,
        .hero::after {
            display: none;
        }

        .hero::before {
            top: 90px;
            left: max(18px, calc(50% - 560px));
            width: 180px;
            height: 180px;
        }

        .hero::after {
            right: max(18px, calc(50% - 540px));
            bottom: 120px;
            width: 220px;
            height: 220px;
        }

        .eyebrow {
            position: relative;
            z-index: 1;
            margin-bottom: 8px;
            color: var(--gold);
            font-size: 19px;
            font-weight: 800;
        }

        .hero h1,
        .section-title,
        .band-title {
            position: relative;
            z-index: 1;
            margin: 0;
            color: var(--ink);
            letter-spacing: 0;
            font-weight: 850;
        }

        .hero h1 {
            max-width: 1040px;
            font-size: 58px;
            line-height: 1.08;
            overflow-wrap: anywhere;
        }

        .hero-subtitle {
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 18px auto 0;
            color: var(--muted);
            font-size: 24px;
            line-height: 1.35;
        }

        .hero-actions {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 26px;
            font-size: 18px;
            font-weight: 700;
        }

        .hero-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 18px;
            border: 1px solid var(--luxury-border);
            border-radius: 999px;
            background: rgba(255,255,255,.62);
            color: var(--luxury-espresso);
            box-shadow: 0 12px 28px rgba(32,24,15,.10), inset 0 1px 0 rgba(255,255,255,.8);
            text-decoration: none;
            transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
        }

        .hero-actions a:first-child {
            background: var(--luxury-gradient);
            color: var(--luxury-champagne);
            box-shadow: var(--luxury-shadow), inset 0 1px 0 rgba(255,255,255,.16);
        }

        .hero-actions a:hover {
            transform: translateY(-1px);
            background: #fff7e8;
            color: var(--luxury-ink);
            box-shadow: 0 16px 34px rgba(32,24,15,.16), inset 0 1px 0 rgba(255,255,255,.9);
        }

        .hero-actions a:first-child:hover {
            background: linear-gradient(135deg, #11100d 0%, #322617 48%, #755933 100%);
            color: #fff0c7;
            box-shadow: 0 22px 50px rgba(32,24,15,.28), inset 0 1px 0 rgba(255,255,255,.2);
        }

        .hero-visual {
            position: relative;
            z-index: 1;
            width: min(1040px, 94vw);
            aspect-ratio: 16 / 9;
            height: auto;
            margin-top: 42px;
            border: 1px solid rgba(0,0,0,.08);
            border-radius: 8px;
            background-position: center;
            background-size: cover;
            box-shadow: 0 26px 70px rgba(22,22,23,.16);
            overflow: hidden;
        }

        .hero-visual iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .hero-visual::before {
            display: none;
        }

        .hero-video {
            position: relative;
            z-index: 1;
            width: min(1040px, 94vw);
            margin: -24px auto 12px;
            border: 1px solid rgba(0,0,0,.08);
            border-radius: 8px;
            background: #000000;
            box-shadow: 0 26px 70px rgba(22,22,23,.16);
            overflow: hidden;
        }

        .hero-video iframe,
        .hero-video video {
            pointer-events: auto;
        }

        .hero-video-caption {
            width: min(1040px, 94vw);
            margin: 0 auto;
            color: var(--ink);
            font-size: 18px;
            line-height: 1.45;
            text-align: center;
        }

        .section {
            padding: 86px 24px;
            background: #f5f5f7;
        }

        .section-inner {
            max-width: 1180px;
            margin: 0 auto;
        }

        .section-kicker {
            margin-bottom: 12px;
            color: var(--muted);
            font-size: 22px;
            font-weight: 800;
        }

        .section-title {
            max-width: 900px;
            font-size: 48px;
            line-height: 1.08;
        }

        .section-title-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 22px;
        }

        .section-title-row .section-title,
        .section-title-row .band-title {
            flex: 1 1 auto;
        }

        .section-mini-cta {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            padding: 0 16px;
            border: 1px solid var(--luxury-border);
            border-radius: 999px;
            background: var(--luxury-gradient);
            color: var(--luxury-champagne);
            box-shadow: 0 14px 32px rgba(32,24,15,.18), inset 0 1px 0 rgba(255,255,255,.15);
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            white-space: nowrap;
            transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
        }

        .section-mini-cta:hover {
            transform: translateY(-1px);
            border-color: rgba(242,223,179,.72);
            background: linear-gradient(135deg, #11100d 0%, #322617 48%, #755933 100%);
            color: #fff0c7;
            box-shadow: 0 20px 46px rgba(32,24,15,.26), inset 0 1px 0 rgba(255,255,255,.20);
        }

        .media-cta-row,
        .hero-media-cta-row {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            text-align: center;
        }

        .media-cta-row {
            margin: 14px 0 0;
        }

        .hero-media-cta-row {
            width: min(1040px, 94vw);
            margin: 12px auto 46px;
        }

        .section-title-row-light {
            align-items: center;
        }

        .section-mini-cta-light {
            border-color: rgba(242,223,179,.42);
            color: var(--luxury-champagne);
            box-shadow: 0 12px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.12);
        }

        .section-mini-cta-light:hover {
            border-color: rgba(242,223,179,.70);
            box-shadow: 0 16px 36px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.16);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 34px;
        }

        .feature-card,
        .process-item,
        .lead-form {
            border: 1px solid var(--glass-line);
            background: #ffffff;
            box-shadow: var(--glass-shadow);
        }

        .feature-card {
            position: relative;
            min-height: 330px;
            padding: 28px;
            border-radius: 8px;
            overflow: hidden;
        }

        .feature-card::before,
        .process-item::before {
            display: none;
        }

        .feature-card > *,
        .process-item > * {
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            margin: 0 0 12px;
            color: var(--ink);
            font-size: 28px;
            line-height: 1.12;
        }

        .feature-card p {
            margin: 0;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.55;
        }

        .card-visual {
            height: 150px;
            margin: 28px -8px 0;
            border-radius: 8px;
            border: 1px solid rgba(0,0,0,.08);
            background: #f5f5f7;
            box-shadow: 0 14px 34px rgba(0,0,0,.08);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-visual img,
        .project-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 34px;
        }

        .project-card {
            overflow: hidden;
            border: 1px solid rgba(0,0,0,.06);
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 18px 54px rgba(22, 22, 23, 0.10);
        }

        .project-image {
            aspect-ratio: 4 / 3;
            background: #f5f5f7;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-copy {
            padding: 18px;
        }

        .project-copy span {
            display: block;
            margin-bottom: 7px;
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
        }

        .project-copy strong {
            display: block;
            color: var(--ink);
            font-size: 21px;
            line-height: 1.18;
        }

        .project-copy p {
            margin: 9px 0 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.5;
        }

        .dark-band {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            padding: 78px 24px;
            background-position: center;
            background-size: cover;
            background-color: #161617;
            color: #f5f5f7;
            text-align: left;
        }

        .dark-band::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(90deg, rgba(8, 10, 13, .88) 0%, rgba(8, 10, 13, .68) 48%, rgba(8, 10, 13, .42) 100%),
                linear-gradient(180deg, rgba(8, 10, 13, .28) 0%, rgba(8, 10, 13, .82) 100%);
        }

        .dark-band-overlay {
            max-width: 1040px;
            margin: 0 auto;
            padding: 0;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
            gap: 34px;
            align-items: center;
        }

        .band-copy-panel {
            max-width: 600px;
        }

        .band-title {
            color: #f5f5f7;
            font-size: 42px;
            line-height: 1.1;
        }

        .band-copy {
            margin: 16px 0 0;
            color: rgba(245, 245, 247, .88);
            font-size: 18px;
            line-height: 1.5;
        }

        .stat-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-top: 0;
        }

        .stat {
            padding: 22px 24px;
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 8px;
            background: rgba(10, 12, 15, .62);
            box-shadow: 0 18px 44px rgba(0,0,0,.24);
            backdrop-filter: blur(10px);
        }

        .stat strong {
            display: block;
            font-size: 34px;
            line-height: 1;
        }

        .stat span {
            display: block;
            margin-top: 10px;
            color: rgba(245, 245, 247, .86);
            font-size: 15px;
            line-height: 1.45;
        }

        .process {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 42px;
            align-items: start;
        }

        .process-list {
            display: grid;
            gap: 12px;
        }

        .process-item {
            position: relative;
            padding: 22px 24px;
            border-radius: 8px;
            overflow: hidden;
        }

        .process-item strong {
            display: block;
            margin-bottom: 6px;
            font-size: 20px;
            color: var(--ink);
        }

        .process-item span {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.55;
        }

        .faq-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin-top: 34px;
        }

        .faq-item {
            border: 1px solid rgba(0,0,0,.06);
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 14px 38px rgba(22,22,23,.06);
            overflow: hidden;
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            min-height: 68px;
            padding: 20px 22px;
            color: var(--ink);
            font-size: 20px;
            font-weight: 850;
            line-height: 1.25;
            cursor: pointer;
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: #f5f5f7;
            color: var(--luxury-espresso);
            font-size: 22px;
            line-height: 1;
            font-weight: 700;
        }

        .faq-item[open] summary {
            border-bottom: 1px solid rgba(0,0,0,.06);
        }

        .faq-item[open] summary::after {
            content: "-";
        }

        .faq-item p {
            margin: 0;
            padding: 18px 22px 22px;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.55;
        }

        .form-band {
            padding: 92px 24px 112px;
            background:
                linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(245,245,247,.96) 100%),
                radial-gradient(circle at 16% 18%, rgba(184,150,95,.10), transparent 28%),
                radial-gradient(circle at 88% 72%, rgba(94,71,40,.12), transparent 28%),
                #f5f5f7;
        }

        .form-layout {
            display: grid;
            grid-template-columns: .88fr 1.12fr;
            gap: 42px;
            align-items: start;
            max-width: 1180px;
            margin: 0 auto;
        }

        .form-copy {
            position: sticky;
            top: 88px;
            padding: 34px 0 0;
        }

        .form-copy h2 {
            margin: 0;
            color: var(--ink);
            font-size: 46px;
            line-height: 1.08;
            letter-spacing: 0;
        }

        .form-copy p {
            margin: 18px 0 0;
            color: var(--muted);
            font-size: 19px;
            line-height: 1.58;
        }

        .form-helper {
            display: block;
            max-width: 420px;
            margin-top: 22px;
            padding: 14px 16px;
            border: 1px solid rgba(184,150,95,.28);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(255,249,236,.86), rgba(246,238,222,.74));
            color: var(--luxury-espresso);
            font-size: 15px;
            line-height: 1.45;
            font-weight: 750;
        }

        .lead-form {
            position: relative;
            border: 1px solid rgba(0,0,0,.08);
            border-radius: 8px;
            padding: 30px;
            background:
                linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
                #ffffff;
            box-shadow: 0 24px 70px rgba(22,22,23,.13);
            overflow: hidden;
        }

        .lead-form::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 5px;
            background: linear-gradient(90deg, #15130f, var(--luxury-gold), #5e4728);
        }

        .lead-form > div {
            gap: 14px;
        }

        .lead-form label {
            margin-bottom: 6px !important;
            color: #1f1d1a !important;
            font-size: 14.5px !important;
            line-height: 1.42 !important;
            font-weight: 850 !important;
            letter-spacing: 0 !important;
        }

        .lead-form label p,
        .lead-form label span {
            color: #1f1d1a !important;
            font-weight: 850 !important;
        }

        input,
        textarea {
            font-size: 16px !important;
            color: var(--ink) !important;
        }

        .lead-field input,
        .lead-field select {
            min-height: 52px;
            border-radius: 8px !important;
            background: #fbfbfd !important;
            border: 1px solid rgba(0,0,0,.13) !important;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
            transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
        }

        .lead-field input:focus,
        .lead-field input:focus-visible,
        .lead-field select:focus {
            background: #ffffff !important;
            border-color: rgba(184,150,95,.74) !important;
            box-shadow: 0 0 0 4px rgba(184,150,95,.16) !important;
            outline: none !important;
        }

        .lead-field {
            margin-bottom: 3px;
        }

        .lead-form button {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: auto;
            min-width: 300px;
            max-width: min(100%, 360px);
            min-height: 56px;
            padding: 0 28px;
            margin: 8px auto 0 !important;
            border: 0;
            border-radius: 980px;
            background:
                var(--luxury-gradient);
            box-shadow:
                var(--luxury-shadow),
                inset 0 1px 0 rgba(255,255,255,.16),
                inset 0 -1px 0 rgba(0,0,0,.28);
            color: var(--luxury-champagne);
            font-size: 17px;
            font-weight: 850;
            letter-spacing: .01em;
            white-space: nowrap !important;
            transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
        }

        .lead-form button p {
            white-space: nowrap !important;
        }

        button:hover {
            transform: translateY(-1px);
            background:
                linear-gradient(135deg, #11100d 0%, #322617 48%, #755933 100%);
            box-shadow:
                0 22px 52px rgba(32, 24, 15, .30),
                inset 0 1px 0 rgba(255,255,255,.20),
                inset 0 -1px 0 rgba(0,0,0,.26);
            filter: brightness(1.05);
        }

        button:active {
            transform: translateY(0);
            box-shadow:
                0 12px 26px rgba(32, 24, 15, .22),
                inset 0 1px 0 rgba(255,255,255,.12);
        }

        .site-footer {
            padding: 28px 24px 34px;
            background: #f5f5f7;
            color: #424245;
            border-top: 1px solid rgba(0,0,0,.06);
        }

        .footer-inner {
            width: min(1120px, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 18px;
            font-size: 14px;
            line-height: 1.5;
        }

        .footer-brand {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2px;
            text-align: center;
        }

        .footer-logo {
            width: 132px;
            height: 52px;
            display: inline-flex;
            margin: 0 auto;
        }

        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .footer-item strong {
            display: block;
            margin-bottom: 4px;
            color: var(--ink);
            font-size: 15px;
        }

        .footer-addresses,
        .footer-lines {
            display: grid;
            gap: 4px;
        }

        .footer-addresses b,
        .footer-lines b {
            color: var(--ink);
            font-weight: 800;
        }

        @media (max-width: 920px) {
            .site-app { padding-bottom: 76px; }

            .apple-nav {
                justify-content: center;
                flex-wrap: wrap;
                min-height: 46px;
                padding: 8px 12px 10px;
                gap: 6px 12px;
                overflow: visible;
            }

            .brand-mark {
                width: 100%;
                justify-content: center;
                font-size: 0;
            }
            .brand-logo {
                width: 76px;
                height: 28px;
            }

            .nav-menu {
                width: 100%;
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px 14px;
                overflow: visible;
                padding: 0;
            }

            .nav-link {
                display: inline-flex;
                align-items: center;
                min-height: 32px;
                padding: 0 2px;
                font-size: 13px;
            }

            .top-offer {
                padding: 10px 16px;
                font-size: 13px;
            }

            .mobile-sticky-cta {
                position: fixed;
                left: 12px;
                right: 12px;
                bottom: 12px;
                z-index: 20;
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 48px;
                border-radius: 999px;
                border: 1px solid var(--luxury-border);
                background: var(--luxury-gradient);
                box-shadow: 0 16px 36px rgba(32,24,15,.26), inset 0 1px 0 rgba(255,255,255,.16);
                color: var(--luxury-champagne);
                font-size: 15px;
                font-weight: 850;
                text-decoration: none;
            }

            .hero {
                min-height: auto;
                padding: 38px 16px 26px;
            }

            .eyebrow {
                font-size: 15px;
                margin-bottom: 8px;
            }

            .hero h1 {
                max-width: 390px;
                font-size: 31px;
                line-height: 1.14;
            }

            .hero-subtitle {
                max-width: 350px;
                margin-top: 12px;
                font-size: 17px;
                line-height: 1.45;
            }

            .hero-actions {
                gap: 14px;
                margin-top: 18px;
                font-size: 16px;
            }

            .hero-visual {
                width: 100%;
                height: 240px;
                margin-top: 28px;
                border-width: 1px;
                border-radius: 8px;
                box-shadow: 0 20px 45px rgba(0,0,0,.16);
            }

            .hero-video {
                width: 100%;
                margin: -8px auto 10px;
                border-radius: 8px;
                box-shadow: 0 20px 45px rgba(0,0,0,.16);
            }

            .hero-video-caption {
                width: 100%;
                margin: 0 auto;
                font-size: 16px;
                line-height: 1.42;
            }

            .section {
                padding: 56px 16px;
            }

            .section-kicker {
                margin-bottom: 10px;
                font-size: 17px;
            }

            .feature-grid,
            .project-grid,
            .faq-list,
            .stat-row,
            .process,
            .form-layout,
            .footer-inner {
                grid-template-columns: 1fr;
            }

            .section-title,
            .band-title,
            .form-copy h2 {
                font-size: 32px;
                line-height: 1.12;
            }

            .section-title-row {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
            }

            .section-mini-cta {
                min-height: 36px;
                padding: 0 14px;
                font-size: 13px;
            }

            .media-cta-row {
                margin-top: 12px;
            }

            .hero-media-cta-row {
                width: 100%;
                margin: 10px auto 28px;
            }

            .feature-grid {
                gap: 12px;
                margin-top: 24px;
            }

            .feature-card {
                min-height: auto;
                padding: 22px;
                box-shadow: 0 12px 32px rgba(22,22,23,.08);
            }

            .feature-card h3 { font-size: 24px; }
            .feature-card p { font-size: 16px; }

            .card-visual {
                height: auto;
                aspect-ratio: 16 / 9;
                margin-top: 20px;
            }

            .project-grid {
                gap: 14px;
                margin-top: 24px;
            }

            .project-image {
                aspect-ratio: 16 / 10;
            }

            .dark-band {
                padding: 48px 16px;
                text-align: left;
            }

            .dark-band::before {
                background:
                    linear-gradient(180deg, rgba(8, 10, 13, .84) 0%, rgba(8, 10, 13, .70) 44%, rgba(8, 10, 13, .86) 100%);
            }

            .dark-band-overlay {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .band-copy {
                margin-top: 14px;
                font-size: 17px;
            }

            .stat-row {
                gap: 10px;
                margin-top: 24px;
            }

            .stat { padding: 20px; }
            .stat strong { font-size: 32px; }

            .process { gap: 22px; }
            .process-list { gap: 10px; }
            .process-item { padding: 18px; }
            .process-item strong { font-size: 18px; }

            .faq-list {
                gap: 10px;
                margin-top: 24px;
            }

            .faq-item summary {
                min-height: 60px;
                padding: 18px;
                font-size: 18px;
            }

            .faq-item p {
                padding: 16px 18px 18px;
            }

            .form-band {
                padding: 56px 12px 92px;
            }

            .site-footer {
                padding: 24px 16px 86px;
            }

            .form-layout { gap: 22px; }

            .form-copy {
                padding: 0 4px;
            }

            .form-copy p {
                margin-top: 14px;
                font-size: 17px;
            }

            .lead-form {
                padding: 18px;
                box-shadow: 0 12px 32px rgba(0,0,0,.08);
            }
        }

        @media (max-width: 380px) {
            .hero h1,
            .section-title,
            .band-title,
            .form-copy h2 {
                font-size: 27px;
            }

            .hero-actions {
                flex-direction: column;
                gap: 8px;
            }
        }

        /* Mobile-only layout: keep the landing page optimized for phone traffic. */
        .site-app {
            background: #e8e8ed;
        }

        .site-container {
            max-width: 430px;
            margin: 0 auto;
            padding: 0 !important;
            background: #f5f5f7;
            box-shadow: 0 0 0 1px rgba(0,0,0,.04);
        }

        .apple-nav {
            justify-content: center;
            flex-wrap: wrap;
            min-height: auto;
            padding: 8px 12px 10px;
            gap: 6px 12px;
            overflow: visible;
        }

        .brand-mark {
            width: 100%;
            justify-content: center;
            font-size: 0;
        }

        .brand-logo {
            width: 76px;
            height: 28px;
        }

        .nav-menu {
            width: 100%;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px 14px;
            overflow: visible;
            padding: 0;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            padding: 0 2px;
            font-size: 13px;
        }

        .top-offer {
            padding: 10px 16px;
            font-size: 13px;
        }

        .mobile-sticky-cta {
            position: fixed;
            left: max(12px, calc((100vw - 430px) / 2 + 12px));
            right: max(12px, calc((100vw - 430px) / 2 + 12px));
            bottom: 12px;
            z-index: 20;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 48px;
            border-radius: 999px;
            border: 1px solid var(--luxury-border);
            background: var(--luxury-gradient);
            box-shadow: 0 16px 36px rgba(32,24,15,.26), inset 0 1px 0 rgba(255,255,255,.16);
            color: var(--luxury-champagne);
            font-size: 15px;
            font-weight: 850;
            text-decoration: none;
        }

        .hero {
            min-height: auto;
            padding: 34px 16px 26px;
        }

        .eyebrow {
            font-size: 15px;
            margin-bottom: 8px;
        }

        .hero h1 {
            max-width: 100%;
            font-size: 29px;
            line-height: 1.16;
        }

        .hero-subtitle {
            max-width: 100%;
            margin-top: 12px;
            font-size: 16px;
            line-height: 1.48;
        }

        .hero-actions {
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
            font-size: 15px;
        }

        .hero-visual {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 10;
            margin-top: 24px;
            border-width: 1px;
            border-radius: 8px;
            background: #ffffff !important;
            box-shadow: 0 16px 36px rgba(0,0,0,.12);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            width: 100%;
            margin: -8px auto 10px;
            border-radius: 8px;
            background: #000000;
            box-shadow: 0 16px 36px rgba(0,0,0,.12);
            overflow: hidden;
        }

        .hero-video-caption {
            width: 100%;
            margin: 0 auto;
            padding: 0 4px;
            font-size: 15.5px;
            line-height: 1.42;
            text-align: center;
        }

        .media-cta-row {
            margin-top: 10px;
        }

        .hero-media-cta-row {
            width: 100%;
            margin: 10px auto 24px;
        }

        .hero-visual img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hero-visual iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .section {
            padding: 44px 14px;
        }

        .section-inner,
        .dark-band-overlay,
        .form-layout,
        .footer-inner {
            max-width: 100%;
            width: 100%;
        }

        .section-kicker {
            margin-bottom: 8px;
            font-size: 15px;
        }

        .section-title,
        .band-title,
        .form-copy h2 {
            max-width: 100%;
            font-size: 27px;
            line-height: 1.16;
        }

        .section-title-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .section-mini-cta {
            min-height: 34px;
            padding: 0 13px;
            font-size: 12.5px;
        }

        .feature-grid,
        .project-grid,
        .faq-list,
        .stat-row,
        .process,
        .form-layout,
        .footer-inner {
            grid-template-columns: 1fr;
        }

        .feature-grid,
        .project-grid,
        .faq-list {
            gap: 12px;
            margin-top: 22px;
        }

        .feature-card,
        .project-card,
        .process-item,
        .faq-item,
        .lead-form {
            border-radius: 8px;
            box-shadow: 0 12px 30px rgba(22,22,23,.08);
        }

        .feature-card {
            min-height: auto;
            padding: 18px;
        }

        .feature-card h3 {
            margin-bottom: 10px;
            font-size: 22px;
            line-height: 1.18;
        }

        .feature-card p,
        .project-copy p,
        .process-item span,
        .faq-item p {
            font-size: 15.5px;
            line-height: 1.55;
        }

        .card-visual {
            height: auto;
            aspect-ratio: 16 / 9;
            margin: 18px 0 0;
        }

        .project-image {
            aspect-ratio: 16 / 10;
        }

        .project-copy {
            padding: 16px;
        }

        .project-copy strong {
            font-size: 20px;
        }

        .dark-band {
            padding: 42px 14px;
            text-align: left;
        }

        .dark-band::before {
            background:
                linear-gradient(180deg, rgba(8, 10, 13, .88) 0%, rgba(8, 10, 13, .72) 45%, rgba(8, 10, 13, .88) 100%);
        }

        .dark-band-overlay {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .band-copy {
            margin-top: 12px;
            font-size: 16px;
            line-height: 1.52;
        }

        .stat-row {
            gap: 10px;
            margin-top: 0;
        }

        .stat {
            padding: 18px;
            background: rgba(10, 12, 15, .70);
        }

        .stat strong {
            font-size: 30px;
        }

        .process {
            gap: 22px;
        }

        .process-list {
            gap: 10px;
        }

        .process-item {
            padding: 18px;
        }

        .process-item strong {
            font-size: 18px;
            line-height: 1.28;
        }

        .faq-item summary {
            min-height: 58px;
            padding: 16px 18px;
            font-size: 17px;
            line-height: 1.28;
        }

        .faq-item summary::after {
            width: 26px;
            height: 26px;
            font-size: 21px;
        }

        .faq-item p {
            padding: 15px 18px 18px;
        }

        .form-band {
            padding: 48px 14px 96px;
        }

        .form-layout {
            gap: 18px;
        }

        .form-copy {
            padding: 0;
            position: static;
        }

        .form-copy p {
            margin-top: 12px;
            font-size: 16px;
            line-height: 1.52;
        }

        .form-helper {
            max-width: 100%;
            margin-top: 14px;
            padding: 12px 13px;
            font-size: 13.5px;
        }

        .lead-form {
            padding: 22px 16px 18px;
            box-shadow: 0 16px 38px rgba(22,22,23,.11);
        }

        .lead-form label {
            margin-bottom: 5px !important;
            font-size: 13.5px !important;
            line-height: 1.35 !important;
            font-weight: 850 !important;
        }

        .lead-field input,
        .lead-field select {
            min-height: 50px;
            font-size: 15.5px !important;
        }

        .lead-form button {
            min-height: 54px;
            min-width: min(100%, 300px);
            padding: 0 20px;
            margin: 6px auto 0 !important;
            font-size: 16px;
        }

        .site-footer {
            padding: 24px 16px 86px;
        }

        .hero-visual,
        .card-visual,
        .project-image {
            aspect-ratio: auto !important;
            height: auto !important;
            display: block !important;
            background: #ffffff !important;
        }

        .hero-visual img,
        .hero-visual iframe,
        .card-visual img,
        .project-image img {
            display: block;
            width: 100%;
            object-fit: contain;
            object-position: center;
        }

        .hero-visual img,
        .card-visual img,
        .project-image img {
            height: auto !important;
        }

        .hero-visual iframe {
            aspect-ratio: 16 / 9;
            height: auto !important;
            border: 0;
        }

