/* ===================================================
   RESET & BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, button, input, select, textarea, [onclick] { -webkit-tap-highlight-color: transparent; outline: none; }


:root {
    --gold: #D4A855;
    --gold-dark: #BF9545;
    --gold-light: #E8C06D;
    --navy: #1A1614;
    --navy-mid: #231F1C;
    --navy-surface: #2A2420;
    --dark: #0F0D0C;
    --off-white: #F5F0EB;
    --text-light: #D6CFC8;
    --text-muted: #7A7168;
    --sage: #7A9E7E;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --section-pad: 96px 0;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.18);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.32);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: #1A1614;
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================================
   TYPOGRAPHY
=================================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #7A7168;
    margin-bottom: 2.8rem;
    max-width: 640px;
}

.section-title.light,
.section-subtitle.light { color: var(--text-light); }
.section-title.light { color: #fff; }

/* ===================================================
   BUTTONS
=================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, transform 0.15s, box-shadow 0.22s;
    border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-dark {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}
.btn-outline-dark:hover { background: #1a1a1a; color: #fff; }

.btn-secondary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy-mid); }

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ===================================================
   NAVIGATION
=================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 13, 20, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.5); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    flex-shrink: 0;
}
.nav-logo-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
}
.logo-ken {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
}
.logo-sub {
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}
.nav-links li a {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-links li a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-links li a.active { color: var(--gold); background: rgba(201,168,76,0.1); }

.nav-cta {
    flex-shrink: 0;
    background: var(--gold);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   PARALLAX SECTIONS
=================================================== */
.parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.parallax-section.mini-hero {
    min-height: 50vh;
}

.parallax-bg {
    position: absolute;
    inset: -60px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 18, 0.72);
    z-index: 1;
}
.parallax-overlay.dark-overlay { background: rgba(5, 8, 18, 0.82); }

.section-over-parallax {
    position: relative;
    z-index: 2;
    padding: 100px 24px;
    width: 100%;
}

/* Hero parallax bg */
.hero-bg {
    background-image: url('https://static.wixstatic.com/media/4aa455_289fe6390f254e52bc43cf92abad0d51~mv2.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center 30%;
}

/* Mini hero bg variants */
.mini-hero-services { background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=80'); background-attachment: fixed; background-size: cover; background-position: center; }
.mini-hero-pricing  { background-image: url('https://images.unsplash.com/photo-1519824145371-296894a0daa9?w=1920&q=80'); background-attachment: fixed; background-size: cover; background-position: center; }
.mini-hero-about    { background-image: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1920&q=80'); background-attachment: fixed; background-size: cover; background-position: center; }
.mini-hero-reviews  { background-image: url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?w=1920&q=80'); background-attachment: fixed; background-size: cover; background-position: center; }
.mini-hero-areas    { background-image: url('/images/areas-hero.png'); background-attachment: fixed; background-size: cover; background-position: center; }
.mini-hero-faq      { background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1920&q=80'); background-attachment: fixed; background-size: cover; background-position: center; }
.mini-hero-gift     { background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80'); background-attachment: fixed; background-size: cover; background-position: center; }
.mini-hero-contact  { background-image: url('https://images.unsplash.com/photo-1559839914-17aae19cec71?w=1920&q=80'); background-attachment: fixed; background-size: cover; background-position: center; }

/* How-to-book parallax bg */
.htb-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Final CTA bg */
.final-cta-bg {
    background-image: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ===================================================
   MINI HERO CONTENT
=================================================== */
.mini-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 24px 60px;
    width: 100%;
}
.mini-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}
.mini-hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ===================================================
   HERO
=================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,8,18,0.88) 0%, rgba(10,13,22,0.72) 60%, rgba(15,20,35,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 120px 24px 80px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 1.4rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.hero-area {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(201,168,76,0.18), rgba(201,168,76,0.08));
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

/* ===================================================
   TRUST BAR
=================================================== */
.trust-bar {
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 18px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
}
.trust-icon {
    color: var(--gold);
    font-size: 1rem;
}
.trust-dup { display: none; }

/* ===================================================
   BENEFITS BAR
=================================================== */
.benefits-bar {
    background: var(--navy-surface);
    padding: 56px 0;
}
.benefits-bar-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}
.benefits-bar h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    flex: 0 0 260px;
    line-height: 1.25;
}
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    flex: 1;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}
.benefit-item i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===================================================
   SECTIONS (light bg)
=================================================== */
.section {
    padding: var(--section-pad);
}
.section.dark {
    background: var(--navy);
    color: var(--text-light);
}
.section.alt {
    background: #f2ede6;
}

/* ===================================================
   SERVICES & RATES
=================================================== */
.services-section {
    background: linear-gradient(180deg, var(--off-white) 0%, #ece5dc 100%);
    position: relative;
}

/* (service chips removed — replaced by session toggle + bookable cards) */

.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.rate-card {
    background: #fdf8f0;
    border-radius: var(--radius);
    padding: 32px 28px 110px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.22s, box-shadow 0.22s;
    border: 2px solid transparent;
}
.rate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rate-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, #fdf8f0 0%, #faefd5 100%);
}

.rate-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.rate-badge.value { background: var(--navy); }

.rate-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--navy);
}
.rate-card .rate-desc {
    font-size: 0.88rem;
    color: #6a645e;
    margin-bottom: 1rem;
    min-height: 38px;
}
.rate-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 1.4rem;
}

.couples-rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2.4rem;
}
.couples-rate-card {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.22s;
}
.couples-rate-card:hover { transform: translateY(-3px); }
.couples-rate-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}
.couples-rate-price {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
}
.couples-subsection-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin: 3rem 0 1.2rem;
}

/* ===================================================
   SERVICE DETAIL CARDS (services.html)
=================================================== */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 3rem;
}
.service-detail-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.22s, box-shadow 0.22s;
    border-top: 3px solid var(--gold);
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-detail-card .sdc-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.service-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}
.service-detail-card p {
    font-size: 0.92rem;
    color: #5a5550;
    line-height: 1.7;
}

/* ===================================================
   HOW TO BOOK (parallax)
=================================================== */
.htb-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 2.8rem 0;
}
.htb-step {
    text-align: center;
}
.htb-step-num {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.htb-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.htb-step p { color: var(--text-light); font-size: 0.95rem; }

.htb-cta-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.4rem;
}

/* ===================================================
   ABOUT
=================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-lead {
    font-size: 1.05rem;
    color: #3a3530;
    margin-bottom: 1.6rem;
    line-height: 1.8;
}
.about-checklist {
    margin-bottom: 2rem;
}
.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #3a3530;
    border-bottom: 1px solid #e8e2da;
}
.about-checklist li:last-child { border-bottom: none; }
.about-checklist li i { color: var(--sage); margin-top: 3px; flex-shrink: 0; }

.about-why-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
}
.about-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.about-why-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #4a4540;
}
.about-why-item i { color: var(--gold); font-size: 0.8rem; }

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-box {
    background: linear-gradient(135deg, var(--navy) 0%, #2A2420 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(212,168,85,0.15);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ===================================================
   COUPLES PARALLAX
=================================================== */
.couples-content { text-align: center; max-width: 680px; margin: 0 auto; }
.couples-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.4rem;
    line-height: 1.7;
}
.couples-pricing-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
}
.couples-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.couples-price-item + .couples-price-item {
    border-left: 1px solid rgba(201,168,76,0.3);
}
.couples-dur {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.couples-amt {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}
.couples-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ===================================================
   SPA PARTIES
=================================================== */
.spa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.spa-what-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.spa-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.95rem;
    color: #3a3530;
    border-bottom: 1px solid #e8e2da;
}
.spa-list li:last-child { border-bottom: none; }
.spa-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.spa-steps-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
}
.spa-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #3a3530;
}
.spa-step-num {
    width: 28px;
    height: 28px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spa-cta-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px 36px;
    color: #fff;
}
.spa-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
.spa-cta-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
    line-height: 1.6;
}

/* ===================================================
   GIFT CARDS
=================================================== */
.gift-section { background: var(--navy); }
.gift-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.gift-text .section-title { color: #fff; }
.gift-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.75;
}
.gift-card-mock {
    background: linear-gradient(135deg, #1a2035 0%, #0d1117 100%);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
}
.gc-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.gc-headline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.gc-subline {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}
.gc-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1.6rem;
}
.gc-chip {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
}
.gc-footer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===================================================
   PLANS
=================================================== */
.plans-section { background: var(--off-white); }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.plan-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.22s, box-shadow 0.22s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--gold); }
.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.plan-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.plan-sessions {
    font-size: 0.88rem;
    color: #7a7168;
    margin-bottom: 1.2rem;
}
.plan-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.plan-per {
    font-size: 0.9rem;
    color: #6a645e;
    margin-bottom: 0.3rem;
}
.plan-save {
    display: inline-block;
    background: rgba(122,158,126,0.15);
    color: var(--sage);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1.6rem;
}
.plan-includes {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}
.plan-includes i { color: var(--gold); margin-right: 4px; }

/* ===================================================
   FAQ
=================================================== */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #e0d8cf;
}
.faq-item:first-child { border-top: 1px solid #e0d8cf; }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}
.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 400px;
}
.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.95rem;
    color: #4a4540;
    line-height: 1.75;
}

/* ===================================================
   SERVICE AREAS
=================================================== */
.areas-section { background: var(--navy); }
.areas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 2.4rem;
}
.area-chip {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background 0.2s, border-color 0.2s;
}
.area-chip:hover { background: rgba(201,168,76,0.18); border-color: rgba(201,168,76,0.5); }

.zone-info-box {
    background: var(--navy-mid);
    border: 1px solid rgba(212,168,85,0.2);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-top: 3rem;
    color: var(--text-light);
}
.zone-info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.zone-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.8rem;
}
.zone-table th, .zone-table td {
    text-align: left;
    padding: 10px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.zone-table th { color: var(--gold); font-weight: 600; }
.zone-table td { color: var(--text-light); }

/* ===================================================
   FINAL CTA (parallax)
=================================================== */
.final-cta-content { text-align: center; }
.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 1rem;
}
.final-cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.4rem;
}
.final-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================
   TESTIMONIALS (carousel)
=================================================== */
.testimonials-section {
    background: var(--navy);
    padding: 96px 0;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 24px 20px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    min-width: 340px;
    max-width: 380px;
    background: var(--navy-mid);
    border-radius: var(--radius);
    padding: 32px 28px;
    scroll-snap-align: center;
    flex-shrink: 0;
    border: 1px solid rgba(212,168,85,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.tc-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.tc-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}
.tc-author {
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 600;
}
.tc-source {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.testimonials-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
    transition: opacity 0.3s, background 0.3s;
}
.testimonials-dots span.active {
    opacity: 1;
    background: var(--gold);
}

/* Reviews grid (reviews.html) */
.reviews-section { background: var(--navy); padding: var(--section-pad); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.review-card-grid {
    background: var(--navy-mid);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(212,168,85,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card-grid:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.google-rating-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--navy-mid);
    border: 1px solid rgba(212,168,85,0.2);
    border-radius: var(--radius);
    padding: 24px 32px;
    max-width: 400px;
    margin: 0 auto 3rem;
}
.grb-score {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.grb-label { font-size: 0.88rem; color: var(--text-light); }
.grb-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.grb-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ===================================================
   CONTACT PAGE
=================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-block {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}
.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1.4rem;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e2da;
}
.contact-row:last-child { border-bottom: none; }
.contact-row i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact-row a:hover { color: var(--gold-dark); }
.map-placeholder {
    background: #e8e2da;
    border-radius: var(--radius);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 1.6rem;
}
.map-placeholder i { font-size: 2rem; color: var(--gold); }

/* ===================================================
   FOOTER
=================================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 56px 0 32px;
}
.footer-inner { text-align: center; }
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.6rem;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
    margin-bottom: 1.6rem;
}
.footer-nav a {
    color: var(--text-muted);
    font-size: 0.84rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}
.footer-contact a { color: var(--gold-light); }
.footer-hours {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}
.footer-social {
    margin-bottom: 1.6rem;
}
.footer-social a {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: color 0.2s;
    margin: 0 8px;
}
.footer-social a:hover { color: var(--gold); }
.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
    font-style: italic;
}
.footer-copy {
    color: #3a3530;
    font-size: 0.78rem;
}

/* ===================================================
   STICKY MOBILE BAR
=================================================== */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 10px 16px;
    gap: 10px;
}
.sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
}
.sticky-book {
    background: var(--gold);
    color: #fff;
}
.sticky-call {
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.15);
}

/* ===================================================
   PHOTO DIVIDERS
=================================================== */
.photo-divider {
    position: relative;
    height: 45vh;
    min-height: 320px;
    overflow: hidden;
}
.photo-divider .parallax-bg {
    inset: -80px 0;
}
.photo-divider .divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,22,20,0.6) 0%, rgba(26,22,20,0.2) 40%, rgba(26,22,20,0.2) 60%, rgba(26,22,20,0.6) 100%);
    z-index: 1;
}
.photo-divider .divider-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    white-space: nowrap;
}

/* ===================================================
   URGENCY TICKER
=================================================== */
.urgency-ticker {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}
.urgency-ticker::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: tickerShine 3s infinite;
}
@keyframes tickerShine {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

/* ===================================================
   SOCIAL PROOF POPUP
=================================================== */
.social-proof-popup {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 998;
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 3px solid var(--gold);
}
.social-proof-popup.show {
    transform: translateX(0);
}
.sp-icon {
    width: 40px;
    height: 40px;
    background: rgba(212,168,85,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.sp-text {
    font-size: 0.82rem;
    color: #1a1614;
    line-height: 1.4;
}
.sp-text strong { color: var(--gold-dark); }
.sp-time {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===================================================
   ANIMATIONS
=================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===================================================
   PRICE ANCHORING & SCARCITY
=================================================== */
.rate-compare {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 0.4rem;
}
.rate-compare s {
    color: #c0392b;
    text-decoration: line-through;
}
.rate-scarcity {
    font-size: 0.78rem;
    color: #c0392b;
    margin-top: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.rate-scarcity i { font-size: 0.72rem; }

/* ===================================================
   HERO VIEWERS
=================================================== */
.hero-viewers {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hero-viewers i { color: var(--sage); }

/* ===================================================
   VERIFIED BADGE & PLAN POPULAR
=================================================== */
.tc-verified {
    font-size: 0.72rem;
    color: var(--sage);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}
.plan-popular {
    font-size: 0.78rem;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===================================================
   SECTION TRANSITIONS
=================================================== */
.section + .photo-divider,
.photo-divider + .section,
.photo-divider + .parallax-section {
    margin-top: 0;
}
.services-section::after,
.plans-section::after,
.blog-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.03));
    pointer-events: none;
}
.plans-section, .blog-section { position: relative; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
    .rates-grid { grid-template-columns: repeat(2, 1fr); }
    .couples-rates-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-col img { min-height: 260px !important; max-height: 360px; }
    .gift-inner { grid-template-columns: 1fr; gap: 48px; }
    .spa-grid { grid-template-columns: 1fr; }
    .htb-steps { grid-template-columns: repeat(3, 1fr); }
    .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-pad: 72px 0; }

    .nav-links {
        display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
        background: rgba(10,13,20,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        padding: 16px 24px 24px; gap: 4px;
        opacity: 0; transform: translateY(-12px); pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease;
        border-bottom: 1px solid rgba(212,168,85,0.1);
    }
    .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .nav-links li {
        opacity: 0; transform: translateX(-16px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .nav-links.open li {
        opacity: 1; transform: translateX(0);
    }
    .nav-links.open li:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.08s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.11s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.14s; }
    .nav-links.open li:nth-child(5) { transition-delay: 0.17s; }
    .nav-links.open li:nth-child(6) { transition-delay: 0.20s; }
    .nav-links.open li:nth-child(7) { transition-delay: 0.23s; }
    .nav-links.open li:nth-child(8) { transition-delay: 0.26s; }
    .nav-links.open li:nth-child(9) { transition-delay: 0.29s; }
    .nav-links.open li:nth-child(10) { transition-delay: 0.32s; }
    .nav-links li a { padding: 12px 8px; font-size: 0.95rem; display: block; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }

    .rates-grid { grid-template-columns: 1fr; }
    .couples-rates-grid { grid-template-columns: 1fr; }
    .htb-steps { grid-template-columns: 1fr; gap: 24px; }
    .plans-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .benefits-bar { padding: 32px 0; }
    .benefits-bar-inner { flex-direction: column; gap: 16px; }
    .benefits-bar h2 { flex: none; font-size: 1.2rem; text-align: center; }
    .benefits-list { grid-template-columns: 1fr; gap: 10px; }
    .about-why-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .couples-pricing-row { gap: 0; }
    .couples-price-item { padding: 0 20px; }

    .nav-logo-icon { width: 32px; height: 32px; }
    .hamburger { margin-left: 0 !important; }

    .trust-bar { padding: 10px 0; overflow: hidden; }
    .trust-items {
        flex-wrap: nowrap; justify-content: flex-start; gap: 0 28px;
        animation: trustScroll 18s linear infinite;
        width: max-content; padding: 0 14px;
    }
    .trust-item { font-size: 0.78rem; white-space: nowrap; flex-shrink: 0; }
    .trust-dup { display: flex; }

    .zip-check-row { flex-direction: column !important; }
    .zip-check-row .btn { width: 100%; }

    .sticky-bar { display: flex; }
    body { padding-bottom: 68px; }

    .section-over-parallax { padding: 80px 24px; }
    .parallax-section { min-height: auto; }
    .parallax-section.mini-hero { min-height: 40vh; }

    .gift-inner { grid-template-columns: 1fr; }
    .spa-grid { grid-template-columns: 1fr; }

    .photo-divider { height: 35vh; min-height: 240px; }
    .photo-divider .divider-text { font-size: 1rem; bottom: 24px; }
    .social-proof-popup {
        left: 12px; right: 12px;
        max-width: calc(100% - 24px);
        bottom: 78px;
    }
    .testimonial-card { min-width: 280px; }

    .btn { padding: 16px 32px; font-size: 1rem; }
    .btn-lg { padding: 18px 36px; }

    .sticky-book { animation: pulseGold 2s infinite; }

    /* Zone table: keep numbers inside box on mobile */
    .zone-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .zone-table th, .zone-table td { padding: 8px 10px; font-size: 0.8rem; white-space: nowrap; }
    .zone-info-box { padding: 20px 14px; }
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,85,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212,168,85,0); }
}

@keyframes trustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-cta-group .btn { width: 100%; max-width: 320px; text-align: center; }
    .final-cta-btns { flex-direction: column; align-items: center; }
    .final-cta-btns .btn { width: 100%; max-width: 320px; text-align: center; }
    .htb-cta-wrap { flex-direction: column; align-items: center; }
    .htb-cta-wrap .btn { width: 100%; max-width: 320px; text-align: center; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .photo-divider .divider-text { white-space: normal; padding: 0 16px; }
}

@media (hover: none) {
    .parallax-bg { background-attachment: scroll; }
}

/* ===== ZONE CHECKER ===== */
.zone-checker-wrap {
    max-width: 560px;
    margin: 0 auto;
}
.zone-checker-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,168,85,0.3);
    border-radius: 50px;
    padding: 12px 20px;
    transition: border-color 0.2s;
}
.zone-checker-input-row:focus-within {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(212,168,85,0.12);
}
.zone-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #fff;
    font-family: var(--font-body);
}
.zone-input::placeholder { color: rgba(255,255,255,0.4); }
.zone-hint {
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    margin-top: 10px;
}
.zone-result { margin-top: 16px; }
.zone-found {
    border: 1px solid;
    border-radius: var(--radius);
    padding: 20px 24px;
}
.zone-found-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}
.zone-badge {
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.zone-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.zone-price-col { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px 16px; }
.zpc-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.zpc-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.zpc-row:last-child { border-bottom: none; }
.zpc-row strong { color: #fff; font-size: 1rem; }
.zone-not-found {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
}
.zone-not-found i { color: rgba(255,255,255,0.4); font-size: 1.1rem; flex-shrink: 0; }
.zone-not-found a { color: var(--gold-light); }

/* Zone dots in table */
.zone-dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.local-dot { background: #5a9a6e; }
.extended-dot { background: #c8881a; }
.premium-dot { background: #a0522d; }
.call-dot { background: #888; }

/* Map embed */
.map-embed-wrap { margin-top: 20px; }

@media (max-width: 640px) {
    .zone-price-grid { grid-template-columns: 1fr; }
}
