/* ==========================================================================
   Short Mountain Holiday — styles.css
   A single-page luxury dome retreat website
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables / Design System
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Brand fonts — self-hosted (Norwester = logo wordmark caps; Nickainley = "Holiday" script)
   -------------------------------------------------------------------------- */
@font-face {
    font-family: 'Norwester';
    src: url('fonts/norwester.woff') format('woff'),
         url('fonts/norwester.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nickainley';
    src: url('fonts/Nickainley-Normal.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Warm earth-tone palette */
    --forest: #2C2824;
    --forest-light: #3A3530;
    --sage: #A8A19A;
    --sage-light: #D6D0CA;
    --stone: #B5A998;
    --stone-light: #D4C5B5;
    --cream: #F5F0EB;
    --cream-dark: #EDE5D8;
    --gold: #B8963E;
    --gold-light: #C4A265;
    --charcoal: #2C2824;
    --warm-white: #FAF8F5;
    --text: #3A3530;
    --text-light: #6B6560;
    --text-muted: #9A948E;
    --border: #E0DAD4;
    --white: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--cream);
}

body.menu-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Norwester', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Fade-In Animation System
   -------------------------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect the OS-level reduced-motion preference — no entrance animations,
   no scroll-bounce, no hover transforms. Accessibility + perception win. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   Button System
   -------------------------------------------------------------------------- */

/* Primary (solid dark) */
.btn-primary,
.dome-cta,
.form-submit {
    display: inline-block;
    background: var(--charcoal);
    color: var(--warm-white);
    border: 1.5px solid var(--charcoal);
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover,
.dome-cta:hover,
.form-submit:hover {
    background: transparent;
    color: var(--charcoal);
}

/* Hero button (semi-transparent over images) */
.hero-btn {
    display: inline-block;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
    color: var(--charcoal);
}

/* CTA (nav, sticky bar) */
.nav-cta {
    border: 1.5px solid var(--charcoal);
    color: var(--charcoal);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--charcoal);
    color: #fff;
}

/* Booking CTA (gold) */
.btn-booking {
    display: inline-block;
    background: var(--gold);
    color: var(--forest);
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-booking:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    /* Solid frosted background at all scroll positions for legibility */
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav.scrolled {
    /* Same background as base; just tighten the bar once scrolling */
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    /* Text styling kept for the other pages (privacy/terms/day-trips) whose
       nav-logo is still text; the homepage uses the wordmark image below,
       which ignores these font/color props. */
    font-family: 'Norwester', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

/* Shrink the wordmark slightly when the bar tightens on scroll */
.nav.scrolled .nav-logo img {
    height: 34px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(27, 58, 45, 0.4),
        rgba(27, 58, 45, 0.7)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Norwester', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* Chattanooga-style "ghosted" treatment: translucent fill so the hero
       photo shows through, softening the hard Norwester caps. */
    color: rgba(255, 255, 255, 0.42);
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.22);
    line-height: 1.15;
    margin-bottom: 20px;
    /* Stack the lines, each one independently centered, so a trailing "+"
       separator can't pull a line off-center (it used to, via its margin). */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15em;
}

/* Each hero line is its own centered row; gap (not separator margins) sets
   the spacing, so there's no leading/trailing offset to break centering. */
.hero-line {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 0.15em;
}

/* Keep each phrase whole — line breaks only fall at the + separators */
.hero-phrase {
    white-space: nowrap;
}

/* Make "ONE" stand out in the hero line */
.hero-accent {
    color: var(--gold);
    font-size: 1.12em;
}

/* Gold dot separators in the hero — rendered in Montserrat so the glyph
   is guaranteed (Norwester is caps-only and may not carry the middot) */
.hero-sep {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-weight: 400;
    vertical-align: 0.08em;
    text-transform: none;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(10px);
    }
    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* --------------------------------------------------------------------------
   Direct Booking Badge
   -------------------------------------------------------------------------- */
.direct-badge {
    background: var(--forest);
    padding: 24px 0;
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.badge-text {
    max-width: 620px;
}

.badge-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.badge-text p {
    font-size: 0.9rem;
    color: var(--sage);
    line-height: 1.6;
}

.badge-rating {
    text-align: center;
    flex-shrink: 0;
}

.badge-rating .stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 6px;
}

.badge-rating .stars .star {
    color: var(--gold);
    font-size: 1.2rem;
}

.badge-rating p {
    font-size: 0.8rem;
    color: var(--sage);
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   About / Property Intro
   -------------------------------------------------------------------------- */
.about {
    padding: 42px 0;
}

/* Keep "A Retreat Built With Intention" on one line on desktop */
@media (min-width: 1100px) {
    .about-text .section-title {
        white-space: nowrap;
        font-size: clamp(2rem, 3vw, 2.4rem);
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* About carousel — fills the column so its height matches the text + stats,
   keeping the two columns flush top and bottom (no orphaned whitespace). */
.about-image {
    display: flex;
}

.about-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-slides {
    position: absolute;
    inset: 0;
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.about-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(44, 40, 36, 0.45);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(2px);
}

.about-carousel:hover .about-carousel-btn,
.about-carousel:focus-within .about-carousel-btn {
    opacity: 1;
}

.about-carousel-btn:hover {
    background: rgba(44, 40, 36, 0.75);
}

.about-carousel-btn.prev { left: 16px; }
.about-carousel-btn.next { right: 16px; }

.about-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.about-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-dot:hover { background: rgba(255, 255, 255, 0.8); }

.about-dot.active {
    background: var(--gold);
    transform: scale(1.25);
}

/* Always show controls on touch devices (no hover) */
@media (hover: none) {
    .about-carousel-btn { opacity: 1; }
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   The Domes
   -------------------------------------------------------------------------- */
.domes {
    padding: 42px 0;
    background: var(--cream-dark);
}

.domes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.dome-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dome-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(184, 150, 62, 0.18);
}

.dome-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

/* Dome card carousel (manual, Airbnb-style) */
.dome-carousel {
    position: absolute;
    inset: 0;
    cursor: zoom-in;
}

.dome-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.dome-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease, transform 0.12s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.dome-carousel:hover .dome-arrow,
.dome-carousel:focus-within .dome-arrow {
    opacity: 1;
}

.dome-arrow:hover { background: #fff; }
.dome-arrow:active { transform: translateY(-50%) scale(0.9); }
.dome-prev { left: 12px; }
.dome-next { right: 12px; }

@media (hover: none) {
    .dome-arrow { opacity: 1; }
}

/* Windowed dots (Airbnb-style: ~5 visible, slides as you navigate) */
.dome-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 3;
    height: 7px;
    overflow: hidden;
    pointer-events: none;
}

.dome-dots-track {
    display: flex;
    gap: 6px;
    transition: transform 0.3s ease;
}

.dome-dot {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.dome-dot.is-active { background: #fff; }
.dome-dot.is-small { transform: scale(0.55); }

/* Dome photo theater (Airbnb-style modal viewer) */
.dome-theater {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2500;
    background: rgba(0, 0, 0, 0.96);
    flex-direction: column;
}

.dome-theater.active { display: flex; }

body.dome-theater-open { overflow: hidden; }

.dome-theater-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    color: #fff;
}

.dome-theater-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
}

.dome-theater-counter {
    margin-left: auto;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--sage-light);
}

.dome-theater-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: opacity 0.3s ease;
}

.dome-theater-close:hover { opacity: 0.7; }

.dome-theater-stage {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.dome-theater-img {
    max-width: min(1100px, 92vw);
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.dome-theater-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.dome-theater-arrow:hover { background: rgba(255, 255, 255, 0.25); }
.dome-theater-arrow.prev { left: 24px; }
.dome-theater-arrow.next { right: 24px; }

.dome-theater-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 24px 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.dome-theater-thumb {
    flex: 0 0 auto;
    width: 96px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    outline: 2px solid transparent;
    outline-offset: -2px;
    transition: opacity 0.2s ease, outline-color 0.2s ease;
}

.dome-theater-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dome-theater-thumb:hover { opacity: 0.85; }
.dome-theater-thumb.is-active { opacity: 1; outline-color: var(--gold); }

@media (max-width: 768px) {
    .dome-theater-arrow { width: 40px; height: 40px; }
    .dome-theater-arrow.prev { left: 10px; }
    .dome-theater-arrow.next { right: 10px; }
    .dome-theater-thumb { width: 72px; height: 50px; }
}

.dome-rating {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(44, 40, 36, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dome-rating .star {
    color: var(--gold);
}

.dome-rating .review-count {
    color: var(--sage);
    font-size: 0.75rem;
}

.dome-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dome-description {
    flex: 1;
}

.dome-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0;
    line-height: 1.15;
}

.dome-info h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px 0 18px;
    background: var(--gold);
    border-radius: 2px;
}

.dome-specs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.8rem;
}

.dome-specs span:not(.spec-dot) {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: rgba(184, 150, 62, 0.08);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Pills replace the old dot separators */
.spec-dot {
    display: none;
}

.dome-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.dome-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 150, 62, 0.3);
}

.dome-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--forest);
    background: rgba(184, 150, 62, 0.1);
    border: 1px solid rgba(184, 150, 62, 0.35);
    border-radius: 999px;
}

.dome-features li svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.dome-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* --------------------------------------------------------------------------
   Gallery + Lightbox
   -------------------------------------------------------------------------- */
.gallery {
    padding: 42px 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.gallery-tab {
    padding: 10px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.gallery-tab.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--warm-white);
}

.gallery-masonry {
    display: none;
    column-count: 2;
    column-gap: 5px;
}

.gallery-masonry.active {
    display: block;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 5px;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    z-index: 2001;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 50%;
    z-index: 2001;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-image-wrapper {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Explore the Area (Things to Do teaser)
   -------------------------------------------------------------------------- */
.explore {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 90px 0;
}

.explore-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.explore-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(44, 40, 36, 0.55), rgba(44, 40, 36, 0.78));
}

.explore-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #fff;
}

.explore-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.explore-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
}

.explore-btn {
    display: inline-block;
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews {
    padding: 42px 0;
    background: var(--cream-dark);
}

/* Reviews subhead — sentence case (not the uppercase eyebrow treatment) */
.reviews-subhead {
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Reviews — continuous, very-slow auto-scrolling marquee (~4 cards + a peek of the next) */
.reviews-carousel {
    position: relative;
    margin-top: 40px;
}

.reviews-viewport {
    overflow: hidden;
    container-type: inline-size;
    /* soft fade at the edges so cards drift in and out gracefully */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviews-marquee 120s linear infinite;
    will-change: transform;
}

/* Pause the drift on hover so people can actually read */
.reviews-carousel:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviews-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* track is duplicated, so -50% loops seamlessly */
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track { animation: none; }
}

.review-card {
    /* ~4 cards in view plus a half-peek of the next, sized to the viewport */
    flex: 0 0 calc(100cqw / 4.5 - 24px);
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.reviews-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--forest);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reviews-btn:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--warm-white);
}

.reviews-dots {
    display: flex;
    gap: 10px;
}

.reviews-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--sage-light);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.reviews-dot:hover { background: var(--sage); }

.reviews-dot.active {
    background: var(--gold);
    transform: scale(1.25);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.star {
    color: var(--gold);
}

.review-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--charcoal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-name {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text);
}

.review-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.reviews-summary {
    margin-top: 40px;
}

.reviews-summary p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.reviews-airbnb-links {
    margin-top: 12px;
}

.reviews-airbnb-links a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.85rem;
}

.reviews-airbnb-links a:hover {
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   Amenities
   -------------------------------------------------------------------------- */
.amenities {
    padding: 56px 0;
    /* Fall-foliage drone shot (two domes small in frame) behind the cards.
       Light cream veil only — photo stays clearly visible. */
    background:
        linear-gradient(rgba(245, 240, 235, 0.40), rgba(245, 240, 235, 0.40)),
        url('images/about/about-aerial.jpg') center / cover no-repeat;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.amenity-card {
    /* More translucent so the fall photo behind peeks through */
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
    color: var(--forest-light);
    margin-bottom: 16px;
}

.amenity-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Area / Neighborhood
   -------------------------------------------------------------------------- */
.area {
    padding: 42px 0;
    background: var(--cream-dark);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.area-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.area-distance {
    display: inline-block;
    background: var(--cream-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.area-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Location + Map
   -------------------------------------------------------------------------- */
.location {
    padding: 42px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.location-details {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text);
}

.location-detail svg {
    color: var(--gold);
    flex-shrink: 0;
}

.location-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 0;
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq {
    padding: 42px 0;
    background: var(--cream-dark);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
    padding: 42px 0;
    background: var(--charcoal);
}

.contact .section-label {
    color: var(--gold);
}

.contact .section-title {
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-left {
    color: #fff;
}

/* Booking CTAs */
.booking-ctas {
    margin-bottom: 48px;
}

.booking-ctas h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.booking-ctas p {
    font-size: 0.9rem;
    color: var(--sage);
    margin-bottom: 20px;
}

.booking-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Inquiry form */
.inquiry-form-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.inquiry-form-wrapper p {
    font-size: 0.9rem;
    color: var(--sage);
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--forest);
    border: 1.5px solid var(--gold);
    font-weight: 600;
}

.contact-form .form-submit:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--forest);
}

.form-success {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 16px;
}

.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 16px;
}

.form-error a {
    color: var(--gold);
    text-decoration: underline;
}

/* Contact cards (right column) */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
}

.contact-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-card-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card-item a {
    color: var(--sage-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-item a:hover {
    color: var(--gold);
}

.host-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.host-avatars {
    display: flex;
    gap: -8px;
    flex-shrink: 0;
}

.host-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.host-avatar + .host-avatar {
    margin-left: -8px;
}

.host-names {
    font-weight: 500;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.host-bio {
    font-size: 0.85rem;
    color: var(--sage);
    line-height: 1.6;
}

/* Enlarged Your Hosts card — now the sole card in the contact-right column */
.hosts-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hosts-card .host-info {
    margin-bottom: 20px;
    align-items: center;
}

.hosts-card .host-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
}

.hosts-card .host-names {
    font-size: 1.25rem;
}

.hosts-card .host-bio {
    font-size: 1rem;
    margin-bottom: 14px;
}

.hosts-card .host-bio:last-child {
    margin-bottom: 0;
}

.quick-details li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--sage-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-details li:last-child {
    border-bottom: none;
}

.quick-details strong {
    color: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: #1E1B18;
    padding: 32px 0 20px;
}

.footer-grid {
    display: grid;
    /* Logo alone on the left; link columns pushed to the right (Amber 6/3) */
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
}

/* "More" links flow into two columns so the dark footer isn't tall (Amber 6/3) */
.footer-more {
    column-count: 2;
    column-gap: 32px;
}

.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.footer-logo {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 0;
}

.footer-tagline {
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    color: var(--sage);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: var(--sage-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Sticky CTA Bar
   -------------------------------------------------------------------------- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    padding: 12px 0;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
}

.sticky-cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--forest);
}

/* Bottom sticky bar wordmark — matches the top nav logo (charcoal wordmark) */
.sticky-cta-logo {
    height: 26px;
    width: auto;
    display: block;
    margin-bottom: 4px;
}

.sticky-cta-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sticky-cta-btn {
    display: inline-block;
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--charcoal);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: transparent;
    color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   Privacy Policy Page
   -------------------------------------------------------------------------- */
.privacy-nav {
    background: var(--forest);
    padding: 16px 0;
}

.privacy-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privacy-nav .nav-logo {
    color: #fff;
}

.privacy-nav .back-link {
    color: var(--sage-light);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.privacy-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
}

.privacy-content .privacy-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.privacy-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--forest);
    margin-top: 40px;
    margin-bottom: 16px;
}

.privacy-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.privacy-content ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 16px;
}

.privacy-content ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.privacy-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-content a:hover {
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */

/* Tablet and below */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        flex: 0 0 calc(100cqw / 2.3 - 24px); /* ~2 across + a peek */
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    /* Open "X" sits over the dark slide-out panel — keep it white */
    .nav-toggle.active span {
        background: #fff;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--forest);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--gold) !important;
    }

    .nav-cta {
        border-color: rgba(255, 255, 255, 0.6) !important;
        color: #fff !important;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.9rem);
    }

    /* Tagline must shrink with the title on phones, or it ends up
       as large as the hero and the hierarchy breaks. Keep it on ONE line —
       vw-scaled + nowrap so it never wraps and never overflows the screen. */
    .hero-tagline {
        font-size: clamp(0.85rem, 4vw, 1.4rem);
        white-space: nowrap;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-carousel {
        height: 350px;
        min-height: 350px;
    }

    /* Domes */
    .domes-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-masonry {
        column-count: 2;
    }

    /* Reviews */
    .review-card {
        flex: 0 0 calc(100cqw / 1.15 - 24px); /* ~1 across + a peek on mobile */
    }

    /* Area */
    .area-grid {
        grid-template-columns: 1fr;
    }

    /* Location */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Sticky CTA */
    .sticky-cta-content {
        gap: 12px;
    }

    .sticky-cta-title {
        font-size: 0.95rem;
    }
}

/* Gallery 3-col at 768px+ */
@media (min-width: 768px) {
    .gallery-masonry {
        column-count: 3;
    }
}

/* Gallery 4-col at 1200px+ */
@media (min-width: 1200px) {
    .gallery-masonry {
        column-count: 4;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .hero-btn {
        padding: 12px 32px;
        font-size: 0.7rem;
    }

    .dome-info {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
    }

    .badge-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .booking-cta-buttons {
        flex-direction: column;
    }

    .booking-cta-buttons .btn-booking {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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