/* =========================================
   Maison Megève - Private Conciergerie
   CRILLON-STYLE MINIMAL LUXURY v3.0
   ========================================= */

/* =========================================
   CSS Custom Properties
   ========================================= */
:root {
    /* Backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-elevated: #161616;
    --bg-card: #1a1a1a;

    /* Text - Elegant cream/white hierarchy */
    --text-primary: #f5f5f0;
    --text-secondary: #b8b8b0;
    --text-muted: #6b6b65;

    /* Accent - Subtle warm tone (not gold, just warmth) */
    --accent: #c8c0b0;
    --accent-light: #d8d0c0;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-serif: 'Libre Caslon Text', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Navigation - Clean & Minimal
   ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

/* Nav Links */
.nav-links {
    display: none;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Mobile Burger */
.nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .nav-burger {
        display: none;
    }
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-burger.active span:first-child {
    transform: rotate(45deg) translate(2px, 2px);
}

.nav-burger.active span:last-child {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* Mobile Menu */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--text-secondary);
}

/* =========================================
   Breadcrumbs
   ========================================= */
.breadcrumbs {
    background: var(--bg-primary);
    padding: 5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--text-primary);
}

.breadcrumb-sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-primary);
}

/* =========================================
   Hero Section - Crillon Style
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 6rem;
}

.hero-content {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Badge - Glass Chip (Resend style) */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 3rem;
}


.badge-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* Hero Title - Elegant Serif */
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.title-light {
    color: var(--text-primary);
    display: block;
}

.title-gradient {
    background: linear-gradient(
        90deg,
        #f5f5f0 0%,
        #f5f5f0 38%,
        #e0a8b8 44%,
        #ffffff 50%,
        #e0a8b8 56%,
        #f5f5f0 62%,
        #f5f5f0 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    font-style: italic;
    animation: text-shimmer 12s ease-in-out infinite;
}

@keyframes text-shimmer {
    0% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 38rem;
    margin: 0 auto 3.5rem;
    line-height: 1.9;
    font-weight: 400;
}

/* CTA Buttons - Minimal Elegant */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
}

.btn-secondary {
    background: transparent;
    border-color: var(--border-medium);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 0.9rem;
}

.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-large .whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Locations */
.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
}

.location-tag {
    padding: 0.5rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.location-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text-primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    z-index: 5;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* =========================================
   Glowing Divider
   ========================================= */
.glow-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 15%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 85%,
        transparent 100%
    );
}

.glow-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%
    );
    filter: blur(0.5px);
}

.glow-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 20px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 70%
    );
    filter: blur(8px);
}

/* Rose-tinted divider */
.glow-divider-rose {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 140, 160, 0.05) 15%,
        rgba(200, 140, 160, 0.12) 50%,
        rgba(200, 140, 160, 0.05) 85%,
        transparent 100%
    );
}

.glow-divider-rose::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(220, 160, 180, 0.25) 20%,
        rgba(230, 170, 190, 0.4) 50%,
        rgba(220, 160, 180, 0.25) 80%,
        transparent 100%
    );
    filter: blur(0.5px);
}

.glow-divider-rose::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 30px;
    background: radial-gradient(
        ellipse at center,
        rgba(220, 150, 170, 0.12) 0%,
        transparent 70%
    );
    filter: blur(12px);
}

/* =========================================
   Services Section
   ========================================= */
.services {
    position: relative;
    padding: 8rem 1.5rem;
}

.section-container {
    max-width: 72rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--text-primary);
}

.section-intro {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 1.5rem auto 2.5rem;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Card - Glassmorphism (Resend style) */
.service-card {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 1.75rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-desc {
    font-family: var(--font-serif);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =========================================
   Features Section
   ========================================= */
.features {
    position: relative;
    padding: 8rem 1.5rem;
}

.features-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.25rem;
    opacity: 0.5;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-family: var(--font-serif);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =========================================
   Final CTA Section
   ========================================= */
.final-cta {
    position: relative;
    padding: 10rem 1.5rem;
    overflow: hidden;
}

/* Rose ambient glow */
.final-cta::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(
        ellipse at center,
        rgba(180, 100, 120, 0.08) 0%,
        rgba(150, 80, 100, 0.04) 30%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(
        ellipse at center,
        rgba(200, 120, 140, 0.06) 0%,
        transparent 60%
    );
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cta-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Quote */
.quote {
    position: relative;
    margin-bottom: 5rem;
}


.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    line-height: 1.9;
    font-style: italic;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Concierge Contact Section */
.concierge-contact {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
}

/* Rose glowing top border */
.concierge-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(220, 160, 180, 0.4) 20%,
        rgba(240, 180, 200, 0.6) 50%,
        rgba(220, 160, 180, 0.4) 80%,
        transparent 100%
    );
}

.concierge-contact::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 40px;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(230, 160, 180, 0.15) 0%,
        transparent 70%
    );
    filter: blur(10px);
    pointer-events: none;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-methods {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.method-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.method-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.method-value:hover {
    color: var(--text-primary);
}

.consultation-block {
    margin-bottom: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
}

.consultation-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.consultation-note {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 2.5rem 1.5rem;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Footer Credit */
.footer-credit {
    padding: 1rem 0 1.5rem;
    text-align: center;
}

.footer-credit p {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.credit-dot {
    width: 5px;
    height: 5px;
    background: rgba(180, 120, 150, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(200, 140, 170, 0.5);
}

.footer-credit a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: rgba(220, 160, 180, 0.9);
}


/* =========================================
   Legal Pages
   ========================================= */
.legal-page {
    padding: 10rem 1.5rem 6rem;
    min-height: 100vh;
    background: var(--bg-primary);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.legal-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.legal-update {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-intro {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.legal-section:hover {
    border-color: var(--border-medium);
    transform: translateY(-2px);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-section h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.75rem 0 1rem;
    letter-spacing: 0.02em;
}

.legal-section h3:first-of-type {
    margin-top: 0;
}

.legal-section p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.legal-section ul:last-child {
    margin-bottom: 0;
}

.legal-section ul li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.legal-section ul li:last-child {
    margin-bottom: 0;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 155, 0.5);
    border-radius: 50%;
}

.legal-section a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--text-primary);
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 500;
}

.legal-signature {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
}

/* Cookie Table */
.cookie-table {
    margin: 1.5rem 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row.cookie-header {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cookie-row span {
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .legal-section {
        padding: 2rem 1.5rem;
    }

    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .cookie-row.cookie-header {
        display: none;
    }

    .cookie-row span::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.25rem;
    }
}


/* =========================================
   Cookie Consent Banner
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.cookie-banner__description {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-banner__link:hover {
    color: var(--text-secondary);
}

.cookie-banner__btn {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-banner__btn--accept {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.cookie-banner__btn--accept:hover {
    background: var(--accent-light);
}

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
}

.cookie-banner__btn--reject:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.cookie-banner__btn--settings {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

.cookie-banner__btn--settings:hover {
    border-color: var(--border-medium);
    color: var(--text-secondary);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal__container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cookie-modal__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
}

.cookie-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.cookie-modal__close:hover {
    color: var(--text-primary);
}

.cookie-modal__content {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal__desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.cookie-modal__categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-modal__category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1rem;
}

.cookie-modal__category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cookie-modal__category-name {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.cookie-modal__required {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cookie-modal__category-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Toggle Switch */
.cookie-modal__toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-modal__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-modal__toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.cookie-modal__toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-slider {
    background: rgba(212, 175, 155, 0.2);
    border-color: rgba(212, 175, 155, 0.5);
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-slider::before {
    transform: translateX(20px);
    background: var(--accent-light);
}

.cookie-modal__toggle input:disabled + .cookie-modal__toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.cookie-modal__btn {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-modal__btn--save {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.cookie-modal__btn--save:hover {
    background: var(--accent-light);
}

.cookie-modal__btn--cancel {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
}

.cookie-modal__btn--cancel:hover {
    border-color: var(--text-secondary);
}

@media (max-width: 640px) {
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner__actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-modal__container {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-modal__footer {
        flex-direction: column-reverse;
    }

    .cookie-modal__btn {
        width: 100%;
    }
}


/* =========================================
   Utilities & Responsive
   ========================================= */
@media (max-width: 640px) {
    .hero {
        padding-top: 7rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-expand {
        top: 2rem;
        right: 2rem;
    }
}

/* Selection Color */
::selection {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* =========================================
   SUBPAGE COMPONENTS
   ========================================= */

/* Hero - Subpage Variant (shorter) */
.hero-page {
    min-height: 70vh;
    padding: 4rem 1.5rem 6rem;
}

.hero-page .hero-content {
    max-width: 56rem;
}

/* Route Tags (horizontal preview) */
.route-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.route-tag {
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

/* Feature Chips */
.feature-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.feature-chip {
    padding: 0.75rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.feature-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 155, 0.3);
    color: var(--text-primary);
}

/* Feature Chips Small (for inside cards) */
.feature-chips-small {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.feature-chip-small {
    padding: 0.5rem 0.875rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.feature-chip-small:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 155, 0.25);
    color: var(--text-primary);
}

/* Pillar Cards (3-column value prop) */
.pillars-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pillar-desc {
    font-family: var(--font-serif);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Route Cards Grid */
.routes-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.route-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.route-card:hover {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.route-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.route-duration {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.route-tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.route-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.route-cta:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Vehicle/Fleet Cards */
.fleet-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vehicle-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.vehicle-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vehicle-capacity {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.vehicle-tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.vehicle-features {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    padding: 3rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-item {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item::before {
    content: '—';
    color: var(--text-muted);
}

/* Venue Cards (Restaurants, Spas) */
.venues-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.venue-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.venue-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.venue-location {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.venue-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.venue-distinction {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.venue-tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.venue-note {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Experience Cards */
.experiences-section {
    margin-bottom: 4rem;
}

.category-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.experiences-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .experiences-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.experience-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.experience-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.experience-desc {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-desc {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Detail List (em-dash style) */
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.detail-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* Info Blocks (practical info) */
.info-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-block {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.info-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.info-content {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-content a {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.info-content a:hover {
    text-decoration-color: var(--accent-rose);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: block;
    padding: 1.5rem 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 0 1.5rem;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.faq-answer a {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.faq-answer a:hover {
    text-decoration-color: var(--accent-rose);
}

/* Narrative Block (centered storytelling text) */
.narrative {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.narrative p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.narrative p:last-child {
    margin-bottom: 0;
}

/* Segment Cards (skier/non-skier) */
.segments-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.segment-card {
    padding: 2.5rem;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.segment-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.segment-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.segment-desc {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Client Profile Cards */
.profiles-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.profile-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.profile-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.profile-desc {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Curated List (insider addresses) */
.curated-section {
    margin-bottom: 2.5rem;
}

.curated-category {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.curated-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curated-list li {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 2.2;
    padding-left: 1.5rem;
    position: relative;
}

.curated-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.curated-list li strong {
    color: var(--text-primary);
    font-weight: 400;
}

/* Section Note (below grids) */
.section-note {
    text-align: center;
    margin-top: 2.5rem;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Link Cards (service hub links) */
.links-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link-card {
    display: block;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.link-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.link-desc {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Expanded Footer with Sitemap */
.footer-expanded {
    padding: 4rem 1.5rem 2rem;
}

.footer-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 2rem;
    }
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .footer-logo {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 72rem;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

.footer-copyright-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Footer Mobile Layout */
@media (max-width: 767px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand brand"
            "services destinations"
            "contact contact";
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        grid-area: brand;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .footer-column:nth-child(2) {
        grid-area: services;
    }

    .footer-column:nth-child(3) {
        grid-area: destinations;
    }

    .footer-column:nth-child(4) {
        grid-area: contact;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        padding: 1.5rem 2rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
}

/* =========================================
   CHALETS PAGE
   ========================================= */

/* Chalets Grid */
.chalets-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .chalets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chalets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Chalet Card */
.chalet-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chalet-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Chalet Image */
.chalet-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.chalet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chalet-card:hover .chalet-image img {
    transform: scale(1.03);
}

/* Placeholder for when images aren't ready */
.chalet-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.placeholder-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Chalet Content */
.chalet-content {
    padding: 2rem;
}

.chalet-location {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.chalet-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.chalet-tagline {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.25rem;
}

/* Chalet Features */
.chalet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.chalet-feature {
    padding: 0.4rem 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.chalet-description {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Chalet Gallery (for future image galleries) */
.chalet-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
    aspect-ratio: 16 / 10;
}

.chalet-gallery-main {
    grid-row: span 2;
    overflow: hidden;
}

.chalet-gallery-thumb {
    overflow: hidden;
}

.chalet-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chalet-gallery img:hover {
    transform: scale(1.05);
}

/* =========================================
   VEHICLE CARDS WITH IMAGES
   ========================================= */

.vehicle-card-with-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vehicle-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card-with-image:hover .vehicle-image img {
    transform: scale(1.03);
}

.vehicle-content {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.vehicle-card-with-image .vehicle-name {
    margin-bottom: 0.5rem;
}

.vehicle-card-with-image .vehicle-capacity {
    margin-bottom: 0.5rem;
}

.vehicle-card-with-image .vehicle-tagline {
    margin-bottom: 0.75rem;
}

.vehicle-card-with-image .vehicle-features {
    margin-bottom: 0;
}

/* Clickable Vehicle Card */
.vehicle-card-clickable {
    cursor: pointer;
}

.vehicle-card-clickable:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.vehicle-cta-hint {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.vehicle-card-clickable:hover .vehicle-cta-hint {
    color: var(--text-secondary);
}

/* =========================================
   VEHICLE MODAL
   ========================================= */

.vehicle-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vehicle-modal.active {
    opacity: 1;
    visibility: visible;
}

.vehicle-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vehicle-modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(
        145deg,
        rgba(20, 20, 20, 0.98) 0%,
        rgba(10, 10, 10, 0.98) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.vehicle-modal.active .vehicle-modal-container {
    transform: scale(1) translateY(0);
}

.vehicle-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.vehicle-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.vehicle-modal-content {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .vehicle-modal-content {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Modal Gallery */
.vehicle-modal-gallery {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vehicle-modal-main-image {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.vehicle-modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-modal-thumbs {
    display: flex;
    gap: 0.75rem;
}

.vehicle-modal-thumb {
    flex: 1;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.vehicle-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.vehicle-modal-thumb:hover img,
.vehicle-modal-thumb.active img {
    opacity: 1;
}

.vehicle-modal-thumb.active {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Modal Info */
.vehicle-modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .vehicle-modal-info {
        padding: 3rem 2.5rem 3rem 1rem;
    }
}

.vehicle-modal-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.vehicle-modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vehicle-modal-tagline {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.vehicle-modal-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vehicle-modal-spec {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vehicle-modal-spec .spec-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vehicle-modal-spec .spec-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.vehicle-modal-features h3 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.vehicle-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.vehicle-modal-features li {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.vehicle-modal-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.vehicle-modal-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .vehicle-modal-cta {
        flex-direction: row;
    }
}

.vehicle-modal-cta .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

/* Body scroll lock */
body.modal-open {
    overflow: hidden;
}
