/* ==========================================================================
   Sebastian Van Cole — Hybrid Luxury Stylesheet (Unified Hero & Video)
   ========================================================================== */

/* 1. CONFIGURATION OF VARIABLES & SYSTEM TOKENS */
:root {
    /* Original Color Palette (Luxury Tier) */
    --color-navy-dark: #060B16;    /* Darkest navy for background contrast */
    --color-navy-deep: #0B132B;    /* Main Deep Navy */
    --color-navy-medium: #1C2541;  /* Medium Navy for borders/details */
    --color-gold: #D4AF37;         /* Luxury Gold Accent (Champagne Gold) */
    --color-gold-hover: #C5A880;   /* Muted warm gold/bronze for hover */
    --color-gold-muted: rgba(212, 175, 55, 0.15);
    
    /* Neutrals */
    --color-white: #FFFFFF;
    --color-bg-light: #FFFFFF;     /* White for content sections */
    --color-bg-light-alt: #F7F5F0; /* Off-white / warm sand for section variance */
    --color-text-dark: #111520;    /* Deep navy-black for readability on light sections */
    --color-text-muted: #64748B;   /* Muted gray-blue for secondary text */
    --color-text-light: #F1F5F9;   /* Light text for dark sections */
    
    /* Borders */
    --border-light: 1px solid rgba(11, 19, 43, 0.06);
    --border-dark: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold-light: 1px solid rgba(212, 175, 55, 0.2);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Easing & Transitions (Strict Inertial Deceleration Curve) */
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Rounded Borders - BeLight Premium Standard */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Layout */
    --container-width: 1100px;
    --section-padding: 95px 0;     /* Refined luxury spacing */
}

/* 2. ROOT RESET & PREMIUM SCROLLBAR */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-navy-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
    border: 2px solid var(--color-navy-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-medium);
}

/* Custom Inertial Cursor */
@media (min-width: 1024px) {
    body, a, button, select, input, textarea, .btn, .play-btn, .video-play-overlay {
        cursor: none !important;
    }
}

.cursor-dot {
    display: none;
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000000;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-luxury), height 0.3s var(--ease-luxury), background-color 0.3s;
    will-change: transform;
}

.cursor-ring {
    display: none;
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-luxury), height 0.4s var(--ease-luxury), border-color 0.3s, background-color 0.3s;
    will-change: transform;
}

@media (min-width: 1024px) {
    .cursor-dot, .cursor-ring {
        display: block;
    }
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--color-navy-deep);
}

.cursor-ring.hover {
    width: 58px;
    height: 58px;
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

/* 3. LAYOUT & CONTAINERS */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.container-fluid {
    width: 100%;
    padding: 0 4rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold) !important; }
.text-white { color: var(--color-white) !important; }
.text-gray { color: var(--color-text-muted) !important; }

/* 4. TYPOGRAPHY (HAUTE COUTURE) */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 300;              /* Thin elegant weight */
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--color-navy-deep);
}

p, li, span, input, button {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.05em;         /* Small, widely spaced sans-serif copy */
}

/* Section Header styling */
.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Gold Accent line - BeLight Style */
.gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 1.2rem 0 1.5rem;
}
.gold-line.center {
    margin: 1.2rem auto 1.5rem;
}

/* 5. PREMIUM BUTTONS WITH ELEGANT TRANSITIONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid transparent;
    padding: 1rem 2.4rem;
}

.btn-sm {
    padding: 0.7rem 1.8rem;
    font-size: 0.7rem;
}

.btn-lg {
    padding: 1.2rem 2.8rem;
}

/* Gold Button: Gold outline that fills on hover */
.btn-gold {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* Outline Button: Thin white border transitioning to gold glow */
.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* Outline Button Dark (for white sections) */
.btn-outline-dark {
    background: transparent;
    color: var(--color-navy-deep);
    border: 1px solid rgba(11, 19, 43, 0.25);
}

.btn-outline-dark:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.icon-play {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

/* ==========================================================================
   6. HEADER & NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    padding: 2rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: #060B16 !important; /* Solid fallback background so text never floats on white background */
    background: rgba(6, 11, 22, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45) !important;
    padding: 1rem 0 !important;
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 5rem;
    gap: 0;
}

.brand {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    margin-left: auto;
    margin-right: 2.5rem;
    flex-shrink: 1;
}

.nav-cta {
    flex-shrink: 0;
    margin-left: auto;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: -0.01em;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-top: 0.3rem;
    font-weight: 400;
}

.nav-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--color-white);
}

/* Centered-expanding line hover effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: width 0.7s var(--ease-luxury), left 0.7s var(--ease-luxury);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-white);
    transition: var(--transition-medium);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
    z-index: 1050;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.02em;
}

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

.mobile-cta {
    margin-top: 1.5rem;
}

/* ==========================================================================
   7. UNIFIED HERO & VIDEO SECTION (DEEP NAVY BACKGROUND / PHOTO SEBASTIAN3)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    background-image: url('assets/sebastian3.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    padding: 120px 0 100px;
    overflow: hidden;
    /* Bottom liquid transition from navy to content white */
    background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy-deep) 85%, var(--color-white) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient into deep navy */
    background: radial-gradient(circle at center, rgba(11, 19, 43, 0.75) 0%, var(--color-navy-dark) 85%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s var(--ease-luxury) 0.3s both;
    will-change: transform, opacity;
}

.tagline-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--color-gold-muted);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2.2rem;
    border-radius: 4px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.hero-subheadline {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Inline Stats under subtitle (Reference Image style) */
.hero-stats-inline {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: -1rem;
}

.stat-bullet {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
}

/* Embedded video block styled directly inside dark navy hero flow */
.hero-video-block {
    width: 100%;
    max-width: 900px;
    margin-top: 1rem;
    animation: fadeInUp 1.2s var(--ease-luxury) 0.6s both;
    will-change: transform, opacity;
}

.video-section-header {
    margin-bottom: 3rem;
}

/* Option 1 Editorial Video Header */
.editorial-video-header {
    margin-top: 1.5rem !important;
    position: relative;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-quote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.editorial-quote::before,
.editorial-quote::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    margin: 0.8rem auto;
    opacity: 0.5;
}

.video-wrapper {
    width: 100%;
    border-radius: var(--radius-xl);   /* Curved corners */
    overflow: hidden;
    border: var(--border-gold-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition-slow);
}

.video-wrapper:hover {
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.05);
}

.video-container {
    position: relative;
    background-color: var(--color-navy-dark);
    /* Modern approach: aspect-ratio handles the height correctly.
       Children with top/bottom/height % all resolve properly. */
    aspect-ratio: 16 / 9;
}

/* Fallback for very old browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1) {
    .video-container {
        padding-bottom: 56.25%;
        height: 0;
    }
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Legacy — kept for safety, no longer used on intro video */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-slow);
    z-index: 5;
}

.video-play-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

/* --- "Tap for Sound" persistent overlay (intro video) ---
   Visible while video is muted. Disappears on click (sound-active class).
   Covers full video area — custom controls bar handles pause separately. */
.video-sound-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 11, 22, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.5s var(--ease-luxury);
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
}

/* Sound activated — fade out and stop intercepting clicks */
.video-sound-overlay.sound-active {
    opacity: 0;
    pointer-events: none;
}

/* Speaker SVG inside the button */
.video-sound-overlay .play-btn svg {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0 !important;
    stroke: var(--color-navy-dark) !important;
    fill: none !important;
    stroke-width: 2 !important;
}

/* ==========================================================================
   CUSTOM VIDEO CONTROLS BAR
   - Sits at the bottom of the video
   - Auto-hides while playing (opacity 0), shows on hover or when paused
   ========================================================================== */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(to top, rgba(6,11,22,0.75) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

/* Show bar when video is paused */
.video-container.is-paused .video-controls {
    opacity: 1;
    pointer-events: auto;
}

/* Show bar on hover over the whole container */
.video-container:hover .video-controls {
    opacity: 1;
    pointer-events: auto;
}

/* Play/Pause button */
.vc-play-pause {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: color 0.2s, transform 0.2s;
}

.vc-play-pause:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.vc-play-pause svg {
    width: 18px;
    height: 18px;
}

/* Show/hide play vs pause icon */
.vc-play-pause .icon-pause { display: none; }
.video-container.is-paused .vc-play-pause .icon-pause { display: none; }
.video-container.is-paused .vc-play-pause .icon-play  { display: block; }

/* Default: video is playing — show pause icon */
.video-container:not(.is-paused) .vc-play-pause .icon-play  { display: none; }
.video-container:not(.is-paused) .vc-play-pause .icon-pause { display: block; }

/* Progress bar track */
.vc-progress-wrap {
    flex: 1;
    cursor: pointer;
    padding: 6px 0; /* larger click target */
}

.vc-progress-bar {
    position: relative;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    overflow: visible;
}

.vc-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-gold);
    border-radius: 2px;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* Scrubber thumb */
.vc-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.2s ease;
    box-shadow: 0 0 6px rgba(212,175,55,0.5);
}

.vc-progress-wrap:hover .vc-progress-thumb {
    transform: translate(-50%, -50%) scale(1);
}

/* Time display */
.vc-time {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-sans);
}

.play-btn {
    padding: 0 1.8rem !important;
    height: 54px !important;
    border-radius: 30px !important;
    background-color: var(--color-gold) !important;
    border: none !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    color: var(--color-navy-dark) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4) !important;
    cursor: pointer;
    transition: var(--transition-medium);
    white-space: nowrap !important;
    max-width: 90% !important;
    width: auto !important;
}

.play-btn svg {
    width: 20px !important;
    height: 20px !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
}

.play-text {
    font-family: var(--font-sans) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    white-space: nowrap !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.play-btn:hover {
    transform: scale(1.08);
    background-color: var(--color-white);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.4);
}

/* Scroll indicator - BeLight touch */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    opacity: 0.85;
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

/* scroll-line::after is defined in the animations block (section 17) */

/* ==========================================================================
   10. ABOUT SECTION (LIQUID WHITE-TO-SAND BACKGROUND GRADIENT)
   ========================================================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--color-white); /* Reset about section background to white */
    border-bottom: var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);   /* Curved corners */
    position: relative;
    z-index: 2;
    border: var(--border-light);
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);            /* Slow zoom */
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.05);
}

.about-img-accent {
    position: absolute;
    top: 2rem;
    left: -2rem;
    right: 3rem;
    bottom: -2rem;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-xl);
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img-accent {
    transform: translate(-10px, 10px);
    opacity: 0.45;
}

.about-content {
    padding-left: 1rem;
}

.about-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-dark);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.about-list strong {
    font-weight: 500;
    color: var(--color-navy-deep);
}

.list-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-right: 1.2rem;
    margin-top: 0.2rem;
}

.list-icon svg {
    width: 10px;
    height: 10px;
}

/* --- About Ticker Rotator --- */
.about-ticker {
    margin-top: 1rem;
}

.ticker-track {
    position: relative;
    height: 56px;
    overflow: hidden;
}

.ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
    pointer-events: none;
}

.ticker-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ticker-item.exit {
    opacity: 0;
    transform: translateY(-14px);
}

.ticker-item strong {
    font-weight: 500;
    color: var(--color-navy-deep);
}

.ticker-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.6rem;
}

.ticker-dot {
    width: 20px;
    height: 2px;
    background-color: rgba(11, 19, 43, 0.15);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.4s var(--ease-luxury), width 0.4s var(--ease-luxury);
    padding: 0;
}

.ticker-dot.active {
    width: 36px;
    background-color: var(--color-gold);
}

/* ==========================================================================
   11. GOOGLE REVIEWS SECTION (LUXURY MAGAZINE EDITORIAL STYLE)
   ========================================================================== */
.reviews-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light-alt) 100%);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-bottom: 2.8rem;
    align-items: stretch;
}

.review-card {
    background-color: var(--color-white);
    padding: 2.2rem 2rem 1.8rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-slow);
    border: 1px solid rgba(11, 19, 43, 0.08);
    position: relative;
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.03);
    height: 330px; /* Fixed uniform height for magazine grid symmetry */
    overflow: hidden;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 0.8rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 5.5rem;
    color: var(--color-gold);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.6s var(--ease-luxury);
}

.review-card:hover::before {
    opacity: 0.18;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 45px rgba(11, 19, 43, 0.08), 0 0 25px rgba(212, 175, 55, 0.06);
}

.card-top {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.review-stars {
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

.review-badge {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    background-color: var(--color-gold-muted);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.review-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-text-dark);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-read-more {
    background: none;
    border: none;
    padding: 0;
    margin-top: auto;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-medium);
    align-self: flex-start;
}

.review-read-more:hover {
    color: var(--color-navy-deep);
    transform: translateX(4px);
}

.review-author {
    border-top: 1px solid rgba(11, 19, 43, 0.07);
    padding-top: 1.1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy-deep), var(--color-navy-medium));
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    display: block;
    font-weight: 500;
    font-size: 0.78rem;
    color: var(--color-navy-deep);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.author-meta {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.15rem;
}

/* ==========================================================================
   LUXURY MAGAZINE TESTIMONIAL MODAL
   ========================================================================== */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 11, 22, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-luxury);
}

.review-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.review-modal-card {
    background-color: var(--color-navy-dark);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem 3rem;
    max-width: 640px;
    width: 100%;
    position: relative;
    color: var(--color-white);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.1);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s var(--ease-luxury);
    z-index: 99905;
}

.review-modal-overlay.active .review-modal-card {
    transform: translateY(0) scale(1);
}

.review-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 100;
    transition: var(--transition-medium);
}

.review-modal-close svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.review-modal-close:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
    transform: rotate(90deg);
}

.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.2rem;
}

.modal-gold-tag {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
}

.modal-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.2em;
}

.modal-quote-watermark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 0.8;
    margin-bottom: 0.5rem;
}

.modal-body-scroll {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 2.2rem;
}

.modal-body-scroll::-webkit-scrollbar {
    width: 4px;
}
.modal-body-scroll::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 2px;
}

.modal-review-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text-light);
}

.modal-author-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.modal-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #9A7B20);
    color: var(--color-navy-dark);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.modal-author-info {
    display: flex;
    flex-direction: column;
}

.modal-author-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
}

.modal-author-meta {
    font-size: 0.7rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.reviews-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-navy-deep);
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.4rem;
    transition: var(--transition-medium);
}

.reviews-link svg {
    width: 12px;
    height: 12px;
    margin-left: 10px;
    transition: var(--transition-medium);
}

.reviews-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.reviews-link:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   12. PHOTO GALLERY (LIQUID SAND-TO-WHITE GRADIENT)
   ========================================================================== */
.gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg-light-alt) 0%, var(--color-white) 100%);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.gallery-item {
    background-color: var(--color-bg-light-alt); /* sand item on white background */
    padding: 1.2rem;
    border-radius: var(--radius-lg);   /* Curved borders */
    border: var(--border-light);
    transition: var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(11, 19, 43, 0.05);
    background-color: var(--color-white);
}

.gallery-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--color-navy-dark);
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.03);            /* Slow zoom hover */
    opacity: 0.95;
}

.gallery-overlay {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background-color: rgba(6, 11, 22, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-gold);
    padding: 0.4rem 0.9rem;
    color: var(--color-gold);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    pointer-events: none;
    border-radius: 4px;
}

.gallery-caption {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-navy-deep);
    margin-top: 1.2rem;
    text-align: center;
    font-weight: 300;
}

/* ==========================================================================
   13. INSTAGRAM FEED SECTION (WHITE BACKGROUND)
   ========================================================================== */
.instagram-section {
    padding: var(--section-padding);
    background-color: var(--color-white);
    overflow: hidden;
}

.instagram-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 2.5rem;
}

.instagram-carousel {
    display: flex;
    gap: 2rem;
    animation: scrollMarquee 35s linear infinite;
    width: max-content;
}

.instagram-carousel:hover {
    animation-play-state: paused;
}

.insta-card {
    width: 300px;
    background-color: var(--color-bg-light-alt);
    border: var(--border-light);
    border-radius: var(--radius-lg);   /* Curved borders */
    overflow: hidden;
    transition: var(--transition-slow);
    flex-shrink: 0;
}

.insta-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 30px rgba(11, 19, 43, 0.05);
}

.insta-img-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    position: relative;
}

.insta-tag-inside {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
}

.insta-house-details {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.insta-card-footer {
    padding: 1.5rem;
    color: var(--color-text-dark);
}

.insta-likes {
    font-size: 0.7rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.insta-caption {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 300;
}

/* ==========================================================================
   13b. PROPERTY VIDEOS SECTION
   ========================================================================== */
.properties-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light-alt) 100%);
    border-top: var(--border-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

/* ---- Base card ---- */
.property-card {
    background: var(--color-navy-dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.18);
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: 0 8px 28px rgba(6, 11, 22, 0.18);
}

.property-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 28px 55px rgba(6, 11, 22, 0.28), 0 0 35px rgba(212, 175, 55, 0.12);
}

/* ---- Video-only variant: video fills the entire card ---- */
.property-card--video-only {
    border-radius: var(--radius-lg);
}

.property-card--video-only .property-video-wrap {
    aspect-ratio: 3 / 4;   /* Balanced portrait — works across all screen sizes */
    border-radius: var(--radius-lg);
}

/* ---- Video wrap ---- */
.property-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-navy-dark);
    overflow: hidden;
    cursor: pointer;
    border-radius: inherit;
    /* Ensure height is driven by aspect-ratio, not content */
    height: 0;
    padding-bottom: 56.25%; /* fallback for browsers without aspect-ratio support */
}

/* When aspect-ratio is supported, remove the padding-bottom hack */
@supports (aspect-ratio: 1) {
    .property-video-wrap {
        height: auto;
        padding-bottom: 0;
    }
    .property-card--video-only .property-video-wrap {
        height: auto;
        padding-bottom: 0;
    }
}

.property-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-luxury);
}

.property-card:hover .property-video {
    transform: scale(1.06);
}

/* ---- Cinematic gradient overlay (always present, intensifies on hover) ---- */
.property-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 11, 22, 0.55) 0%,
        rgba(6, 11, 22, 0.10) 50%,
        transparent 100%
    );
    transition: opacity 0.7s var(--ease-luxury);
    pointer-events: none;
    z-index: 2;
}

.property-card:hover .property-video-wrap::after {
    opacity: 0.65;
}

/* ---- Play button overlay ---- */
.property-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity 0.5s var(--ease-luxury);
}

/* Circular gold ring button */
.property-play-btn svg {
    width: 52px;
    height: 52px;
    color: var(--color-white);
    padding: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    background: rgba(6, 11, 22, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s var(--ease-luxury), color 0.4s, border-color 0.4s, background 0.4s;
    box-sizing: content-box;
}

.property-card:hover .property-play-btn svg {
    transform: scale(1.15);
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(6, 11, 22, 0.65);
}

.property-play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

/* ---- Badge ---- */
.property-badge {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: var(--color-gold);
    color: var(--color-navy-dark);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
    pointer-events: none;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

/* ---- Info block (hidden on video-only cards, kept for future use) ---- */
.property-info {
    padding: 1.4rem 1.6rem 1.6rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.property-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-navy-deep);
    letter-spacing: -0.01em;
    margin-bottom: 0.3rem;
}

.property-address {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
}

.property-specs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
}

.spec-dot {
    color: rgba(11, 19, 43, 0.2);
    font-size: 0.9rem;
}

/* ==========================================================================
   14. EMAIL CAPTURE SECTION (LIQUID WHITE-TO-SAND BACKGROUND GRADIENT)
   ========================================================================== */
.newsletter-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding);
    background-color: var(--color-navy-dark);
}

.newsletter-section-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.95;
    pointer-events: none;
}

.newsletter-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Soft neutral vignette, no blue tint */
    z-index: 2;
    pointer-events: none;
}

.newsletter-section .container {
    position: relative;
    z-index: 3;
}

.newsletter-card {
    background-color: rgba(6, 11, 22, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-xl);   /* Curved corners */
    padding: 2.5rem 2.5rem 2rem;
    color: var(--color-white);
    max-width: 680px;                  /* Reduced width */
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.08);
    transition: var(--transition-slow);
}

.newsletter-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 25px 55px rgba(11, 19, 43, 0.2), 0 0 25px rgba(212, 175, 55, 0.05);
}

.newsletter-content {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.6rem;
    color: var(--color-white);
}

.newsletter-body {
    color: var(--color-text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 0.9rem;
    width: 100%;
}

.form-group {
    flex: 1;
    width: 100%;
}

.newsletter-form input {
    width: 100%;
    padding: 0.95rem 1.4rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-medium);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.newsletter-form .btn-block {
    width: 100%;
}

.newsletter-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* Terms checkbox */
.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    text-align: left;
}

.terms-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.terms-checkmark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-luxury);
    margin-top: 1px;
}

.terms-checkbox-label input:checked ~ .terms-checkmark {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.terms-checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid var(--color-navy-dark);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scaleY(0);
    transition: transform 0.2s var(--ease-luxury);
    margin-top: -2px;
}

.terms-checkbox-label input:checked ~ .terms-checkmark::after {
    transform: rotate(45deg) scaleY(1);
}

.terms-text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
    line-height: 1.5;
}

.terms-link {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s;
}

.terms-link:hover {
    opacity: 0.75;
}

/* Footer policy link */
.footer-links {
    display: flex;
    align-items: center;
}

.footer-policy-link {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.4s, border-color 0.4s;
}

.footer-policy-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.form-success-msg {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    margin-top: 1.5rem;
    border-radius: var(--radius-sm);
}

.success-icon {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   15. BOOK A CALL / CONTACT SECTION (CLEAN WHITE LUXURY THEME)
   ========================================================================== */
.booking-section {
    position: relative;
    padding: var(--section-padding);
    background-color: var(--color-white);
    color: var(--color-navy-dark);
    overflow: hidden;
    border-top: var(--border-light);
}

.booking-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

.booking-section .section-title {
    color: var(--color-navy-dark);
}

.booking-section .section-subtitle {
    color: var(--color-text-muted);
}

/* Contact Channels Hub (3-column grid) */
.contact-channels-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.contact-channel-card {
    background: #0B132B;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem 2.2rem;
    transition: all 0.4s var(--ease-luxury);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(6, 11, 22, 0.25);
    color: var(--color-white);
}

.contact-channel-card:hover {
    background: #060B16;
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(6, 11, 22, 0.35), 0 0 25px rgba(212, 175, 55, 0.2);
}

.contact-channel-card.featured {
    background: #0B132B;
    border-left: 4px solid var(--color-gold);
}

.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.channel-icon-wrap {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.channel-icon-wrap .contact-icon {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
}

.online-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid #0B132B;
    box-shadow: 0 0 8px #4ade80;
}

.channel-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.channel-content {
    margin-bottom: 1.4rem;
}

.channel-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
}

.channel-value {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.channel-value:hover {
    color: var(--color-gold);
}

.channel-email {
    font-size: 1.15rem;
}

.channel-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
}

.channel-actions {
    display: flex;
    gap: 0.8rem;
}

/* Right Column: Callback Card */
.instant-callback-card {
    background: rgba(6, 11, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.callback-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.callback-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.callback-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(252, 252, 253, 0.15);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
}

.callback-form select option {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
}

.callback-form select:focus {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 991px) {
    .booking-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   16. FOOTER (DEEP NAVY BACKGROUND)
   ========================================================================== */
.footer {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 4rem 0 2.5rem;
    border-top: var(--border-dark);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

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

.footer-logo {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.8;
}

.footer-details {
    text-align: right;
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 2;
}

.footer-details p {
    letter-spacing: 0.05em;
}

.footer-details a {
    color: var(--color-white);
}

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

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin-bottom: 1.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: var(--transition-medium);
}

.social-icon:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* ==========================================================================
   17. KEYFRAME ANIMATIONS & REVEAL EFFECTS
   ========================================================================== */

/* --- Hero content: fade + rise on page load --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Scroll indicator pulse (subtle vertical bob) --- */
@keyframes scroll-pulse {
    0%   { transform: translateY(0);    opacity: 0.6; }
    50%  { transform: translateY(10px); opacity: 1;   }
    100% { transform: translateY(0);    opacity: 0.6; }
}

/* --- Instagram / marquee horizontal scroll (7 cards × 300px + 2rem gap, looping first half) --- */
@keyframes scrollMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * (300px * 7 + 2rem * 7))); }
}

/* --- Button shimmer sweep (left → right) --- */
@keyframes btn-shimmer {
    0%   { left: -75%; }
    100% { left: 125%;  }
}

/* --- Gold line grow-in on section reveal --- */
@keyframes gold-line-grow {
    from { width: 0; opacity: 0; }
    to   { width: 60px; opacity: 1; }
}

/* Apply scroll-pulse to scroll indicator line */
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--color-gold);
    animation: scroll-pulse 2.2s ease-in-out infinite;
    border-radius: 2px;
}

/* Remove old scrollScrollLine */
@keyframes scrollScrollLine {
    0%   { top: -15px; }
    100% { top: -15px; }
}

/* ==========================================================================
   17e. PARALLAX HERO — JS-controlled, CSS layer setup
   ========================================================================== */
/* will-change is set directly on .hero-content and .hero-video-block above */

/* Intersection Observer Reveal transitions */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s var(--ease-luxury), transform 1.2s var(--ease-luxury);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger reveal for grid children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
    will-change: transform, opacity;
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.31s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.44s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.57s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.70s; opacity: 1; transform: translateY(0); }

/* Gold line entrance animation (triggered by .active on parent) */
.reveal.active .gold-line,
.reveal-stagger.active .gold-line {
    animation: gold-line-grow 0.9s var(--ease-luxury) 0.4s both;
}

/* ==========================================================================
   17b. PREMIUM BUTTON HOVER — SHIMMER SWEEP + LIFT + GOLD GLOW
   ========================================================================== */

/* Make sure buttons have overflow:hidden for the shimmer pseudo-element */
.btn-gold,
.btn-outline,
.btn-outline-dark {
    overflow: hidden;
}

/* Shimmer pseudo-element (shared) */
.btn-gold::before,
.btn-outline::before,
.btn-outline-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-gold:hover::before,
.btn-outline:hover::before,
.btn-outline-dark:hover::before {
    opacity: 1;
    animation: btn-shimmer 0.65s var(--ease-luxury) forwards;
}

/* Lift + gold glow — already on .btn-gold:hover, enhance all */
.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.28), 0 4px 8px rgba(212, 175, 55, 0.15);
}

.btn-outline:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255, 255, 255, 0.08);
}

.btn-outline-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.12);
}

/* ==========================================================================
   17c. NAV LINK HOVER — GOLD UNDERLINE GROW (already partial, complete it)
   ========================================================================== */

/* Nav links already have ::after expand — ensure the expand starts from center */
.nav-links a::after {
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.6s var(--ease-luxury);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ==========================================================================
   17d. ABOUT IMAGE HOVER — PREMIUM SCALE + ACCENT SHIFT
   ========================================================================== */
.about-img {
    transition: transform 1.4s var(--ease-luxury), border-color 0.9s var(--ease-luxury), box-shadow 1.4s var(--ease-luxury);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

/* ==========================================================================
   17f. PHONE / CONTACT LINK HOVER — LETTER-SPACING EXPAND + UNDERLINE
   ========================================================================== */
.contact-link {
    display: inline-block;
    letter-spacing: 0.05em;
    transition: color 0.6s var(--ease-luxury), letter-spacing 0.6s var(--ease-luxury);
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--color-gold);
    letter-spacing: 0.15em;
    border-bottom-color: rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   18. RESPONSIVE MEDIA QUERIES (ULTRA-HIGH LEVEL RESPONSIVE DESIGN)
   ========================================================================== */

body.no-scroll {
    overflow: hidden !important;
}

/* --- Large Tablet / Laptop (max-width: 1024px) --- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .navbar-container {
        padding: 0 2.5rem;
    }

    .nav-links {
        gap: 1.2rem;
        margin-right: 1.5rem;
    }

    .nav-links a {
        font-size: 0.7rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-image-wrapper {
        max-width: 520px;
        margin: 0 auto;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .reviews-grid .review-card:last-child {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .property-card--video-only:last-child {
        grid-column: span 2;
    }

    .property-card--video-only:last-child .property-video-wrap {
        aspect-ratio: 16 / 7;  /* Wide landscape for the full-width card */
    }

    .hero-headline {
        font-size: 3.4rem;
    }

    .hero-video-block {
        max-width: 100%;
    }
}

/* --- Tablet Portrait & Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Container padding */
    .container,
    .container-fluid {
        padding: 0 1.25rem;
    }

    /* Typography */
    .hero-headline {
        font-size: 2.3rem;
        line-height: 1.15;
        margin-bottom: 1.2rem;
    }

    .section-title {
        font-size: 1.95rem;
        line-height: 1.15;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .hero-subheadline {
        font-size: 0.92rem;
        line-height: 1.65;
        max-width: 100%;
        margin-bottom: 1.8rem;
    }

    /* Hero */
    .hero {
        padding: 95px 0 50px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-stats-inline {
        font-size: 0.65rem;
        gap: 0.6rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-bullet {
        display: none;
    }

    .hero-video-block {
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .hero-content,
    .hero-video-block {
        transform: none !important;
        opacity: 1 !important;
    }

    .video-wrapper {
        border-radius: var(--radius-md);
    }

    .play-btn {
        height: 44px !important;
        padding: 0 1.3rem !important;
        gap: 8px !important;
        border-radius: 22px !important;
        width: auto !important;
    }

    .play-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    .play-text {
        font-size: 0.65rem !important;
        letter-spacing: 0.1em !important;
        white-space: nowrap !important;
    }

    .tagline-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }

    .navbar-container {
        padding: 0 1.25rem;
        justify-content: space-between;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .brand-subtitle {
        font-size: 0.55rem;
    }

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

    .about-image-wrapper {
        max-width: 100%;
    }

    .about-img {
        height: 340px;
        border-radius: var(--radius-lg);
    }

    .about-img-accent {
        display: none;
    }

    .about-content {
        padding-left: 0;
    }

    .about-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-grid .review-card:last-child {
        grid-column: span 1;
    }

    .review-card {
        height: auto;
        padding: 1.8rem 1.4rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Properties */
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .property-card--video-only .property-video-wrap {
        aspect-ratio: 16 / 9;  /* Standard landscape on mobile — natural and readable */
    }

    .property-card--video-only:last-child {
        grid-column: span 1;   /* Reset the span 2 from tablet */
    }

    .property-card--video-only:last-child .property-video-wrap {
        aspect-ratio: 16 / 9;
    }

    .gallery-img {
        height: 240px;
    }

    /* Instagram */
    .instagram-carousel-wrapper {
        margin-top: 2rem;
    }

    .insta-card {
        width: 250px;
    }

    .insta-img-placeholder {
        height: 240px;
    }

    /* Newsletter */
    .newsletter-card {
        padding: 2rem 1.25rem;
        max-width: 100%;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.9rem;
    }

    /* Booking */
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .booking-info {
        padding-right: 0;
    }

    .booking-body {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 520px !important;
    }

    .contact-card {
        padding: 1.4rem 1.4rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-details {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* Review Modal on Mobile */
    .review-modal-card {
        padding: 2.2rem 1.4rem 1.8rem;
        max-width: 100%;
        margin: 0 0.5rem;
    }

    .modal-review-quote {
        font-size: 1.1rem;
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.85rem;
        line-height: 1.18;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-subtitle {
        font-size: 0.5rem;
        letter-spacing: 0.12em;
    }

    .play-btn {
        width: auto !important;
        height: 38px !important;
        padding: 0 1rem !important;
        gap: 6px !important;
        border-radius: 20px !important;
    }

    .play-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    .play-text {
        font-size: 0.6rem !important;
        letter-spacing: 0.08em !important;
        white-space: nowrap !important;
    }

    .newsletter-card {
        padding: 1.8rem 1rem;
    }

    .booking-section .section-title {
        font-size: 1.6rem;
    }

    .review-card {
        padding: 1.4rem 1.1rem;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .copyright {
        font-size: 0.65rem;
    }
}
