
        :root {
            --cream: #F5F0E8;
            --charcoal: #1C1C1E;
            --warm-gray: #8A8A8E;
            --copper: #B87333;
            --copper-light: #D4956A;
            --copper-dark: #8B5E3C;
            --off-white: #FAFAF7;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--off-white);
            color: var(--charcoal);
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Playfair Display', serif; }
        /* noise */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.35;
        }
        /* ── HEADER ── */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 200;
            padding: 22px 52px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }
        /* on dark hero – keep header transparent, logo white */
        header .logo { color: #fff; transition: color 0.4s; }
        header .logo span { color: var(--copper-light); }
        header nav a.nav-link { color: rgba(255,255,255,0.8); transition: color 0.2s; }
        header nav a.nav-link:hover { color: #fff; }
        /* once scrolled – white bg, dark text */
        header.scrolled {
            background: rgba(250,250,247,0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(184,115,51,0.12);
            padding: 14px 52px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        }
        header.scrolled .logo { color: var(--charcoal); }
        header.scrolled .logo span { color: var(--copper); }
        header.scrolled nav a.nav-link { color: var(--charcoal); }
        header.scrolled nav a.nav-link:hover { color: var(--copper); }
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 21px;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-decoration: none;
        }
        nav { display: flex; align-items: center; gap: 36px; }
        .btn-book {
            background: var(--copper);
            color: #fff !important;
            padding: 11px 26px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-book:hover {
            background: var(--copper-dark);
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(184,115,51,0.4);
        }
        .btn-copper {
            background: var(--copper);
            color: #fff;
            padding: 13px 30px;
            border-radius: 2px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-copper:hover {
            background: var(--copper-dark);
            transform: translateY(-1px);
            box-shadow: 0 10px 32px rgba(184,115,51,0.38);
        }
        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }
        /* LEFT – dark panel */
        .hero-left {
            background: var(--charcoal);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 150px 68px 90px 68px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .hero-left::after {
            content: '';
            position: absolute;
            top: -120px; right: -100px;
            width: 480px; height: 480px;
            background: radial-gradient(circle, rgba(184,115,51,0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-eyebrow {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--copper);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--copper); }
        .hero h1 {
            font-size: clamp(44px, 4.5vw, 70px);
            font-weight: 900;
            line-height: 1.04;
            color: #fff;
            letter-spacing: -2px;
            margin-bottom: 28px;
        }
        .hero h1 em { font-style: italic; color: var(--copper-light); }
        .hero-sub {
            font-size: 16px;
            line-height: 1.75;
            color: rgba(255,255,255,0.5);
            max-width: 380px;
            margin-bottom: 48px;
            font-weight: 300;
        }
        .hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
        .btn-ghost-hero {
            color: rgba(255,255,255,0.65);
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            letter-spacing: 0.3px;
        }
        .btn-ghost-hero:hover { color: #fff; gap: 12px; }
        .hero-stats {
            display: flex;
            gap: 44px;
            margin-top: 68px;
            padding-top: 36px;
            border-top: 1px solid rgba(255,255,255,0.07);
        }
        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }
        .stat-label { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 5px; letter-spacing: 0.5px; }
        /* RIGHT – before/after split */
        .hero-right {
            position: relative;
            overflow: hidden;
            background: #111;
        }
        /* Two images stacked, clipped with JS-driven slider */
        .ba-hero-before,
        .ba-hero-after {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .ba-hero-before { filter: brightness(0.75) saturate(0.4); z-index: 1; }
        .ba-hero-after  { clip-path: inset(0 50% 0 0); z-index: 2; transition: clip-path 0s; }
        /* labels */
        .ba-label {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 8px 14px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 5;
            pointer-events: none;
        }
        .ba-label.dirty { left: 16px; background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.5); }
        .ba-label.clean { right: 16px; background: var(--copper); color: #fff; }
        /* draggable divider */
        .ba-divider {
            position: absolute;
            top: 0; bottom: 0;
            left: 50%;
            width: 2px;
            background: #fff;
            z-index: 6;
            cursor: ew-resize;
            transform: translateX(-50%);
        }
        .ba-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 16px rgba(0,0,0,0.4);
        }
        .ba-divider::after {
            content: '◀ ▶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 9px;
            letter-spacing: -1px;
            color: var(--charcoal);
            font-weight: 900;
            z-index: 1;
            pointer-events: none;
        }
        /* badge */
        .hero-badge {
            position: absolute;
            bottom: 32px;
            left: 0;
            background: #fff;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 16px 48px rgba(0,0,0,0.15);
            z-index: 7;
        }
        .badge-stars { color: var(--copper); font-size: 13px; letter-spacing: 1px; }
        .badge-text { font-size: 13px; font-weight: 700; color: var(--charcoal); }
        .badge-sub { font-size: 11px; color: var(--warm-gray); }
        /* ── SECTIONS ── */
        .section-pad { padding: 96px 68px; }
        .section-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--copper);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-label::before { content: ''; width: 28px; height: 1px; background: var(--copper); }
        .section-title {
            font-size: clamp(34px, 3.8vw, 52px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
        }
        .section-desc {
            font-size: 16px;
            line-height: 1.75;
            color: var(--warm-gray);
            max-width: 500px;
            font-weight: 300;
        }
        /* ── SERVICES ── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 0;
            margin-top: 60px;
            border: 2px solid var(--charcoal);
        }
        .service-card {
            padding: 44px 38px;
            background: var(--off-white);
            border-right: 2px solid var(--charcoal);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .service-card:last-child { border-right: none; }
        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--charcoal);
            transform: translateY(101%);
            transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
            z-index: 0;
        }
        .service-card:hover::before { transform: translateY(0); }
        .service-card > * { position: relative; z-index: 1; transition: color 0.4s; }
        .service-card:hover .s-num,
        .service-card:hover .s-name,
        .service-card:hover .s-desc,
        .service-card:hover .s-arrow { color: #fff; }
        .service-card:hover .s-price { color: var(--copper-light); }
        .service-card:hover .s-line { background: rgba(255,255,255,0.12); }
        .s-num { font-size: 10px; letter-spacing: 3px; color: var(--warm-gray); margin-bottom: 44px; transition: color 0.4s; }
        .s-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; transition: color 0.4s; }
        .s-price { font-size: 34px; font-weight: 300; color: var(--copper); margin-bottom: 18px; transition: color 0.4s; }
        .s-line { height: 1px; background: rgba(0,0,0,0.07); margin-bottom: 18px; transition: background 0.4s; }
        .s-desc { font-size: 14px; line-height: 1.7; color: var(--warm-gray); margin-bottom: 30px; font-weight: 300; transition: color 0.4s; }
        .s-features { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 8px; }
        .s-features li { font-size: 13px; color: var(--warm-gray); display: flex; align-items: center; gap: 8px; font-weight: 400; transition: color 0.4s; }
        .s-features li::before { content: '✓'; color: var(--copper); font-weight: 700; flex-shrink: 0; transition: color 0.4s; }
        .service-card:hover .s-features li { color: rgba(255,255,255,0.72); }
        .service-card:hover .s-features li::before { color: var(--copper-light); }
        .s-arrow { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; display: inline-block; transition: transform 0.3s, color 0.4s; }
        .service-card:hover .s-arrow { transform: translateX(5px); }
        /* ── BEFORE/AFTER GRID ── */
        .ba-section { background: var(--charcoal); }
        .ba-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3px;
            margin-top: 60px;
        }
        .ba-panel {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }
        .ba-panel img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .ba-panel:hover img { transform: scale(1.04); }
        .ba-panel.before-panel img { filter: brightness(0.75) saturate(0.4); }
        .ba-panel:hover.before-panel img { filter: brightness(0.9) saturate(0.6); }
        .ba-tag {
            position: absolute;
            top: 20px; left: 20px;
            padding: 7px 16px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .ba-tag.before { background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.55); }
        .ba-tag.after  { background: var(--copper); color: #fff; }
        /* ── BENEFITS ── */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .benefit {
            padding: 36px;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.055);
            position: relative;
            transition: all 0.3s;
        }
        .benefit::after {
            content: ''; position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: var(--copper);
            transition: width 0.4s;
        }
        .benefit:hover::after { width: 100%; }
        .benefit:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.07); }
        .benefit-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--copper); }
        .benefit-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
        .benefit-desc { font-size: 14px; line-height: 1.7; color: var(--warm-gray); font-weight: 300; }
        /* ── AREAS ── */
        .areas-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 72px;
            align-items: start;
            margin-top: 60px;
        }
        .areas-list { display: flex; flex-wrap: wrap; gap: 9px; }
        .areas-intro { font-size: 14px; color: var(--warm-gray); font-weight: 300; margin-bottom: 20px; max-width: 640px; }
        .area-pill {
            padding: 9px 18px;
            border: 1px solid rgba(0,0,0,0.11);
            font-size: 13px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            cursor: pointer;
        }
        .area-pill:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
        .area-pill .ap-arrow { opacity: 0; transform: translateX(-4px); transition: all 0.2s; font-size: 11px; }
        .area-pill:hover .ap-arrow { opacity: 0.7; transform: translateX(0); }
        .areas-viewall {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: var(--copper);
            text-decoration: none;
        }
        .areas-viewall:hover { color: var(--copper-dark); gap: 12px; }
        /* ── BREADCRUMB ── */
        .breadcrumb-bar {
            padding: 128px 68px 18px;
            font-size: 12px;
            color: var(--warm-gray);
            background: var(--off-white);
            font-weight: 400;
        }
        .breadcrumb-bar a { color: var(--copper); text-decoration: none; }
        .breadcrumb-bar a:hover { text-decoration: underline; }
        .breadcrumb-bar .bc-sep { margin: 0 8px; opacity: 0.5; }
        .breadcrumb-bar .bc-current { color: var(--charcoal); font-weight: 500; }
        @media (max-width: 900px) {
            .breadcrumb-bar { padding: 98px 24px 16px; font-size: 11px; }
        }
        /* ── AREA HERO (location pages) ── */
        .hero--area .hero-left { padding-top: 56px; }
        @media (max-width: 900px) {
            .hero--area .hero-left { padding-top: 32px; }
        }
        /* ── LOCAL INTRO PROSE ── */
        .local-intro p { font-size: 15px; line-height: 1.85; color: var(--warm-gray); font-weight: 300; max-width: 760px; margin-bottom: 18px; }
        .local-intro p:last-child { margin-bottom: 0; }
        /* ── RELATED AREAS ── */
        .related-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
        .related-chip {
            padding: 10px 18px;
            border: 1px solid rgba(0,0,0,0.11);
            font-size: 13px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            transition: all 0.2s;
        }
        .related-chip:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
        /* ── AREAS HUB PAGE ── */
        .hub-cluster { margin-bottom: 56px; }
        .hub-cluster h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.3px; }
        .hub-grid { display: flex; flex-wrap: wrap; gap: 10px; }
        /* ── SUBTLE POLISH ── */
        html { scroll-behavior: smooth; }
        a:focus-visible, button:focus-visible, .area-pill:focus-visible, .related-chip:focus-visible {
            outline: 2px solid var(--copper);
            outline-offset: 2px;
        }
        nav a.nav-link { position: relative; }
        nav a.nav-link::after {
            content: '';
            position: absolute;
            left: 0; bottom: -4px;
            width: 0; height: 1px;
            background: currentColor;
            transition: width 0.25s ease;
        }
        nav a.nav-link:hover::after { width: 100%; }
        /* ── FAQ ── */
        .faq-layout {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 72px;
            margin-top: 60px;
            align-items: start;
        }
        .faq-sticky { position: sticky; top: 110px; }
        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.07);
            padding: 24px 0;
            cursor: pointer;
        }
        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            color: var(--charcoal);
            transition: color 0.2s;
            line-height: 1.5;
        }
        .faq-item:hover .faq-q { color: var(--copper); }
        .faq-icon { font-size: 22px; color: var(--copper); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; font-weight: 300; line-height: 1; }
        .faq-item.open .faq-icon { transform: rotate(45deg); }
        .faq-a {
            font-size: 14px; line-height: 1.8; color: var(--warm-gray);
            max-height: 0; overflow: hidden;
            transition: all 0.4s ease;
            font-weight: 300;
        }
        .faq-item.open .faq-a { margin-top: 14px; max-height: 240px; }
        /* ── CTA ── */
        .cta-section {
            background: var(--charcoal);
            padding: 120px 68px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%,-50%);
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(184,115,51,0.13) 0%, transparent 70%);
        }
        .cta-title {
            font-size: clamp(40px, 5vw, 68px);
            font-weight: 900;
            color: #fff;
            letter-spacing: -2px;
            line-height: 1.05;
            margin-bottom: 22px;
        }
        .cta-title em { font-style: italic; color: var(--copper-light); }
        .cta-sub { font-size: 16px; color: rgba(255,255,255,0.38); margin-bottom: 48px; font-weight: 300; }
        .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
        .btn-outline {
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.7);
            padding: 13px 30px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 2px;
        }
        .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.04); }
        /* ── MARQUEE TRUST BAR ── */
        .marquee-bar {
            background: var(--cream);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            overflow: hidden;
            padding: 0;
            position: relative;
        }
        /* fade edges */
        .marquee-bar::before,
        .marquee-bar::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }
        .marquee-bar::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
        .marquee-bar::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 28s linear infinite;
        }
        .marquee-bar:hover .marquee-track { animation-play-state: paused; }
        @keyframes marquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }
        .marquee-set {
            display: flex;
            align-items: center;
            gap: 0;
            flex-shrink: 0;
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            font-size: 13px;
            font-weight: 600;
            color: var(--charcoal);
            white-space: nowrap;
            border-right: 1px solid rgba(0,0,0,0.07);
        }
        .marquee-item svg { color: var(--copper); flex-shrink: 0; }
        .marquee-dot {
            width: 4px; height: 4px;
            background: var(--copper);
            border-radius: 50%;
            flex-shrink: 0;
        }
        /* ── FOOTER ── */
        footer { background: #111; }
        .footer-main {
            padding: 56px 68px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
        }
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            display: block;
            margin-bottom: 16px;
        }
        .footer-logo span { color: var(--copper); }
        .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; font-weight: 300; max-width: 240px; }
        .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
        .footer-col a, .footer-col p {
            display: block;
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.2s;
            font-weight: 300;
        }
        .footer-col a:hover { color: #fff; }
        .footer-col a.copper { color: var(--copper); }
        .footer-bottom {
            padding: 20px 68px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
        /* ── REVIEWS ── */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .review-card {
            padding: 32px;
            background: var(--off-white);
            border: 1px solid rgba(0,0,0,0.06);
            position: relative;
            transition: all 0.3s;
        }
        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.08);
            border-color: rgba(184,115,51,0.18);
        }
        .review-stars { color: var(--copper); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
        .review-text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--charcoal);
            margin-bottom: 20px;
            font-weight: 300;
            font-style: italic;
        }
        .review-author { display: flex; align-items: center; gap: 12px; }
        .review-avatar {
            width: 38px; height: 38px; border-radius: 50%;
            background: var(--cream);
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 700; font-size: 15px; color: var(--copper);
            flex-shrink: 0;
        }
        .review-name { font-size: 13px; font-weight: 700; color: var(--charcoal); }
        .review-meta { font-size: 11px; color: var(--warm-gray); margin-top: 2px; font-weight: 300; }
        /* ── MOBILE STICKY BAR ── */
        .mob-sticky {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: var(--charcoal);
            padding: 10px 16px;
            z-index: 199;
            gap: 10px;
            border-top: 2px solid var(--copper);
        }
        .mob-sticky a {
            flex: 1;
            text-align: center;
            padding: 13px 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.2s;
        }
        .mob-sticky .ms-call {
            background: rgba(255,255,255,0.07);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.12);
        }
        .mob-sticky .ms-book {
            background: var(--copper);
            color: #fff;
        }
        .mob-sticky .ms-book:hover { background: var(--copper-dark); }
        /* ── SCROLL-TO-TOP ── */
        .scroll-top {
            position: fixed;
            bottom: 28px; right: 28px;
            width: 44px; height: 44px;
            background: var(--copper);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.3s;
            z-index: 150;
            border-radius: 2px;
        }
        .scroll-top.visible { opacity: 1; transform: translateY(0); }
        .scroll-top:hover { background: var(--copper-dark); }
        @media (max-width: 900px) {
            .scroll-top { bottom: 72px; right: 16px; width: 38px; height: 38px; }
        }
        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .animate { opacity: 0; }
        .animate.visible { animation: fadeUp 0.7s ease forwards; }
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        /* ── MOBILE ── */
        @media (max-width: 900px) {
            header, header.scrolled { padding: 18px 24px; }
            .nav-links { display: none !important; }
            .mob-btns { display: flex !important; }
            .hero { grid-template-columns: 1fr; min-height: auto; }
            .hero-left { padding: 100px 24px 56px; }
            .hero-right { height: 70vw; min-height: 300px; max-height: 480px; }
            .hero-stats { gap: 20px; flex-wrap: wrap; }
            .section-pad { padding: 72px 24px; }
            .services-grid { grid-template-columns: 1fr; }
            .service-card { border-right: none; border-bottom: 2px solid var(--charcoal); }
            .service-card:last-child { border-bottom: none; }
            .mob-sticky { display: flex; }
            .ba-section { padding: 72px 24px; }
            .ba-grid { grid-template-columns: 1fr; }
            .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
            .reviews-grid { grid-template-columns: 1fr; }
            .areas-layout { grid-template-columns: 1fr; gap: 40px; }
            .faq-layout { grid-template-columns: 1fr; gap: 40px; }
            .faq-sticky { position: static; top: auto; }
            .cta-section { padding: 80px 28px; }
            .cta-btns { flex-direction: column; align-items: center; }
            .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 24px; gap: 36px; }
            .footer-bottom { padding: 20px 24px 80px; flex-direction: column; text-align: center; }
        }
        @media (max-width: 480px) {
            .footer-main { grid-template-columns: 1fr; }
        }
    