/* ==========================================================================
   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: 160px 0;    /* Massive padding between sections on desktop */
}

/* 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: 99999;
    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: 99998;
    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: 6rem;
}

.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: 1.2rem;
}

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

.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.5rem 0 2rem;
}
.gold-line.center {
    margin: 1.5rem auto 2rem;
}

/* 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: var(--transition-medium);
    padding: 2.2rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(6, 11, 22, 0.95); /* Deep Navy background for scrolled navbar */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-dark);
    padding: 1.2rem 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.brand {
    display: flex;
    flex-direction: column;
}

.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 {
    display: flex;
    gap: 2.5rem;
}

.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;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 1.5px;
    background-color: var(--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: 2.2rem;
    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.8rem;
    font-family: var(--font-serif);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.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: 100vh;
    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: 180px 0 160px; /* Massive responsive padding */
    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: 5rem;
    animation: fadeInUp 1.2s var(--ease-luxury) forwards;
}

.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: 680px;
    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: 2rem;
}

.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: 2rem;
    animation: fadeInUp 1.4s var(--ease-luxury) forwards;
}

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

.video-section-header .section-subtitle {
    color: var(--color-text-light);
    opacity: 0.85;
}

.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;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background-color: var(--color-navy-dark);
}

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

.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;
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--color-gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    cursor: pointer;
    transition: var(--transition-medium);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.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 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--color-gold);
    animation: scrollScrollLine 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollScrollLine {
    0% { top: -15px; }
    50% { top: 45px; }
    100% { top: -15px; }
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   11. GOOGLE REVIEWS SECTION (LIQUID WHITE-TO-SAND GRADIENT)
   ========================================================================== */
.reviews-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light-alt) 100%);
}

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

.review-card {
    background-color: var(--color-white); /* Card white on sand background */
    padding: 3rem;
    border-radius: var(--radius-lg);   /* Curved borders */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-slow);
    border: var(--border-light);
    position: relative;
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.02);
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.08;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.06);
}

.review-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-style: italic;
}

.review-author {
    border-top: 1px solid rgba(11, 19, 43, 0.08);
    padding-top: 1.5rem;
}

.author-name {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-navy-deep);
    letter-spacing: 0.05em;
}

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

.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: 4rem;
}

.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;
}

/* ==========================================================================
   14. EMAIL CAPTURE SECTION (LIQUID WHITE-TO-SAND BACKGROUND GRADIENT)
   ========================================================================== */
.newsletter-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light-alt) 100%);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.newsletter-card {
    background-color: var(--color-navy-deep);
    border: var(--border-gold-light);
    border-radius: var(--radius-xl);   /* Curved corners */
    padding: 5rem;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(11, 19, 43, 0.15);
    transition: var(--transition-slow);
}

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

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

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

.newsletter-body {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
}

.newsletter-form input {
    width: 100%;
    padding: 1.2rem 1.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-medium);
}

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

.newsletter-form .btn {
    flex-shrink: 0;
}

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

.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 SECTION (LIQUID SAND-TO-NAVY BACKGROUND GRADIENT)
   ========================================================================== */
.booking-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg-light-alt) 0%, var(--color-navy-deep) 35%, var(--color-navy-deep) 100%);
    color: var(--color-white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 6rem;
    align-items: center;
}

.booking-info {
    padding-right: 1rem;
}

.booking-info .section-title {
    color: var(--color-white);
}

.booking-body {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.contact-card {
    background-color: var(--color-navy-dark);
    border-left: 2.5px solid var(--color-gold);
    padding: 1.8rem 2.2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-top: var(--border-dark);
    border-right: var(--border-dark);
    border-bottom: var(--border-dark);
    transition: var(--transition-medium);
}

.contact-card:hover {
    border-top-color: rgba(212, 175, 55, 0.2);
    border-right-color: rgba(212, 175, 55, 0.2);
    border-bottom-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.03);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    opacity: 0.5;
}

.contact-link {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

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

.booking-calendar {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);   /* Curved corners */
    box-shadow: 0 30px 60px rgba(6, 11, 22, 0.4);
    border: var(--border-light);
    overflow: hidden;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 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: 3.5rem;
}

.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
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 3 - 2rem * 3));
    }
}

/* 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);
}

/* ==========================================================================
   18. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .about-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .about-img-accent {
        left: -1rem;
        right: 2rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .reviews-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid .review-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-headline {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    /* Mobile navigation */
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Stat Bar */
    .stat-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Grids */
    .reviews-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid .review-card:last-child {
        grid-column: span 1;
    }
    
    /* Actions & Forms */
    .newsletter-card {
        padding: 3rem 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-details {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
