/* Base & Resets */
:root {
    --bg-color: #F2ECE0;
    --surface-color: #ffffff;
    --accent-color: #691D2D;
    --accent-pale: #D89E41;
    --grey-olive: #9F5036;
    --accent-gradient: linear-gradient(135deg, #691D2D 0%, #D89E41 100%);
    --text-primary: #373C3F;
    --text-secondary: var(--grey-olive);
    --glass-bg: rgba(245, 239, 230, 0.8);
    --glass-border: rgba(110, 31, 43, 0.2);
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}



/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: var(--accent-color);
    letter-spacing: -0.5px;
    font-weight: 400;
    /* Lighter weight for luxury feel */
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-title .italic-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-pale);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    margin-top: 1.5rem;
}

.section-header.text-center::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-pale);
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.in-view {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}



/* Editorial Hero Section */
.editorial-hero {
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ik.imagekit.io/vtfcbjo5c/about-bg.png?updatedAt=1784212120906');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.editorial-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Gradient: Deep Maroon on the left fading out */
    background: linear-gradient(to right, rgba(110, 31, 43, 0.95) 0%, rgba(110, 31, 43, 0.8) 30%, rgba(110, 31, 43, 0) 80%);
    z-index: 1;
}


.hero-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 500px;
    /* Narrower to prevent overlapping car */
}

.hero-kicker {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--accent-pale);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-kicker::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-pale);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.italic-accent {
    font-style: italic;
    color: var(--accent-pale);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #eaeaea;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-text {
        text-align: left;
        /* Keep left aligned even on mobile if preferred, or change to center if needed. Let's keep it left for consistency. */
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

/* Story Section - Quiet Luxury */
.company-story {
    padding: 4rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.subtitle {
    color: var(--accent-pale);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem 0 2rem;
}

.premium-text {
    font-size: 1.4rem;
    color: var(--accent-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
}

.company-story p:not(.premium-text):not(.subtitle) {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.story-image-wrapper {
    position: relative;
    padding-bottom: 2rem;
    /* space for overlapping badge */
}

.sleek-image-container {
    border-radius: 4px 80px 4px 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/3;
    z-index: 2;
}

.slow-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.sleek-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-pale);
    border-radius: 4px 80px 4px 4px;
    z-index: 1;
}

.overlapping-badge {
    position: absolute;
    bottom: 0;
    left: -40px;
    background: linear-gradient(135deg, rgba(105, 29, 45, 0.95) 0%, rgba(50, 10, 20, 0.95) 100%);
    color: #ffffff;
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 20px 40px rgba(105, 29, 45, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(216, 158, 65, 0.2);
    border-left: 4px solid var(--accent-pale);
    z-index: 3;
    backdrop-filter: blur(12px);
}

.overlapping-badge .years {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 5px;
    background: linear-gradient(to right, #D89E41, #F3D289);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(216, 158, 65, 0.4));
}

.overlapping-badge .exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-color) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(156, 151, 137, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(29, 69, 49, 0.1);
    border-color: rgba(29, 69, 49, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(196, 189, 173, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 1.8rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.stat-card:hover .icon-wrapper {
    background: var(--accent-gradient);
    color: #fff;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
}

.stat-card p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Mission & Vision - Premium Dark Section */
.mission-vision {
    padding: 5rem 0;
    background-color: var(--accent-color);
    /* Dark Pine Teal */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(196, 189, 173, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.mv-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.mv-block {
    flex: 1;
    padding: 2rem 0;
}

.mv-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent-pale), transparent);
    opacity: 0.3;
}

.mv-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mv-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-pale);
    font-style: italic;
    opacity: 0.8;
}

.mv-block h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0;
}

.mv-block p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 90%;
}

@media (max-width: 768px) {
    .mv-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--accent-pale), transparent);
    }

    .mv-block {
        padding: 0;
    }

    .mv-block h2 {
        font-size: 2.5rem;
    }
}

/* The Experience Section - Ultra Premium */
.experience-section {
    padding: 5rem 0;
    background: var(--bg-color);
    /* White */
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    /* Wider gap for luxury feel */
    margin-top: 5rem;
}

.exp-card {
    position: relative;
    border-radius: 24px;
    /* Apple/Luxury rounding */
    overflow: hidden;
    aspect-ratio: 3/4;
    /* Tall poster aspect ratio */
    display: flex;
    align-items: flex-end;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Initial soft shadow */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.exp-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(110, 31, 43, 0.2);
    /* Deep maroon shadow */
}

.exp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    z-index: 1;
    filter: grayscale(30%) brightness(0.85);
    /* Moody cinematic look */
}

.exp-card:hover .exp-bg {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.05);
    /* Vibrant on hover */
}

.exp-overlay {
    position: absolute;
    inset: 0;
    /* Dark blue luxury gradient replacing the old pine green */
    background: linear-gradient(to top, rgba(110, 31, 43, 0.95) 0%, rgba(110, 31, 43, 0.4) 40%, transparent 100%);
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover .exp-overlay {
    background: linear-gradient(to top, rgba(110, 31, 43, 0.98) 0%, rgba(110, 31, 43, 0.75) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.exp-content {
    position: relative;
    z-index: 3;
    padding: 3.5rem 2.5rem;
    width: 100%;
    color: #ffffff;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px);
}

.exp-card:hover .exp-content {
    transform: translateY(0);
}

.exp-content h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.2rem;
}

/* Elegant expanding line under the title */
.exp-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-pale);
    /* Light blue accent */
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.exp-card:hover .exp-content h3::after {
    width: 80px;
}

.exp-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover .exp-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}



@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Section - Ultra Premium */
.team-section {
    padding: 4rem 0 6rem;
    background: var(--bg-color);
    /* #ffffff */
}

.section-header {
    margin-bottom: 5rem;
}

.section-header p {
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    /* More breathing room */
}

.team-member {
    position: relative;
    border-radius: 30px;
    background: transparent;
    padding: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
    border: none;
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-pale);
}

.member-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 2rem;
    background: var(--surface-color);
    /* EBEBEB placeholder */
}

/* Subtle gradient overlay for text readability of social icons */
.member-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(110, 31, 43, 0.5) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.team-member:hover .member-image::after {
    opacity: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: grayscale(15%);
    /* Muted luxury editorial feel */
}

.team-member:hover .member-image img {
    transform: scale(1.06);
    filter: grayscale(0%);
    /* Full vivid color on hover */
}

/* Glassmorphism Social Overlay */
.social-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(15px);
}

.team-member:hover .social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-overlay a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    /* Frosted glass */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.social-overlay a:hover {
    background: var(--accent-pale);
    /* A5CEE0 Light Blue */
    color: var(--accent-color);
    /* 10367D Dark Blue */
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-overlay a:nth-child(1) {
    transition-delay: 0.05s;
}

.social-overlay a:nth-child(2) {
    transition-delay: 0.1s;
}

/* Editorial Typography */
.member-info {
    text-align: center;
    padding: 0 1rem;
}

.member-info h3 {
    font-family: var(--font-heading);
    /* Playfair Display for luxury */
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--accent-color);
    transition: color 0.4s ease;
}

.team-member:hover .member-info h3 {
    color: var(--text-primary);
}

.member-info span {
    font-family: var(--font-primary);
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
}

/* ==================================== RESPONSIVE LAYOUTS ==================================== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .layout-split {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .layout-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sleek-accent {
        display: none;
    }

    .overlapping-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -30px;
        justify-content: center;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .nav-links:not(.open),
    .nav-actions {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #F5EFE6;
        padding: 32px 32px 40px 32px !important;
        border-bottom: 1px solid #EDE5D8;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 8px;
        align-items: flex-start;
        z-index: 999;
        box-sizing: border-box !important;
    }

    .nav-links.open a {
        color: #1A1010;
        font-size: 15px;
        padding: 10px 16px;
        width: max-content;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .nav-links.open a:hover,
    .nav-links.open a:active,
    .nav-links.open a.active {
        background: #EADCDA !important;
        color: #6E1F2B !important;
    }

    .nav-links.open a.active {
        font-weight: 600 !important;
    }

    .mobile-only {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-only:first-of-type {
        margin-top: 16px;
    }

    .nav-links.open .nav-btn-signin {
        text-align: center;
        border: 1px solid #6E1F2B;
        color: #6E1F2B !important;
        background: transparent !important;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }

    .nav-links.open .nav-btn-signin:hover,
    .nav-links.open .nav-btn-signin:active {
        background: #EADCDA !important;
    }

    .nav-links.open .nav-btn-book {
        text-align: center;
        background: #6E1F2B !important;
        color: #FFFFFF !important;
        border: none;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }

    .nav-links.open .nav-btn-book:hover,
    .nav-links.open .nav-btn-book:active {
        background: #5A1923 !important;
        transform: scale(0.98);
    }
}

/* ─── NEW LOGO STYLING ─── */
.logo-brand {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: 64px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    background: var(--white);
    padding: 6px;
    box-shadow:
        0 2px 4px rgba(0,0,0,.15),
        0 6px 12px rgba(0,0,0,.18),
        0 14px 28px rgba(0,0,0,.16),
        0 0 0 3px rgba(217,164,65,.25);
    transition: transform var(--transition), box-shadow var(--transition);
}

.logo-img:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 4px 8px rgba(0,0,0,.18),
        0 10px 20px rgba(0,0,0,.22),
        0 22px 40px rgba(0,0,0,.22),
        0 0 0 3px rgba(217,164,65,.45);
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
    padding-bottom: 42px;
    padding-top: 42px;
}

.navbar.scrolled {
    background: rgba(245, 239, 230, .97);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(26, 16, 16, .1);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    transition: all var(--transition);
    display: block;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover,
.nav-links a:active,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, .14);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a:active,
.navbar.scrolled .nav-links a.active {
    color: var(--maroon);
    background: rgba(110, 31, 43, .08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-actions .btn-primary {
    font-size: 13px;
    padding: 10px 22px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-only {
    display: none;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Footer logo image height */
.logo-img-footer {
    height: 72px;
    width: 72px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 24px;
    background: var(--white);
    padding: 8px;
    box-shadow:
        0 3px 6px rgba(0,0,0,.3),
        0 8px 16px rgba(0,0,0,.28),
        0 18px 36px rgba(0,0,0,.24),
        0 0 0 3px rgba(217,164,65,.3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.logo-img-footer:hover {
    transform: translateY(-3px) scale(1.05);
}

.footer-brand p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-list li svg {
    flex-shrink: 0;
    color: var(--rust);
    margin-top: 2px;
}

.contact-list li a,
.contact-list li span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    transition: color var(--transition);
}

.contact-list li a:hover {
    color: var(--white);
}

.footer-hours {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-hours strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.footer-hours span {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}

.footer-bottom {
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .3);
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, .7);
}

/* ─── RESPONSIVE / MEDIA QUERIES ─── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-only {
        display: block;
        width: 100%;
        margin-top: 8px;
    }

    .nav-btn-signin {
        display: block;
        text-align: center;
        border: 1px solid var(--maroon);
        color: var(--maroon) !important;
        border-radius: 50px;
        padding: 10px 0;
    }

    .nav-btn-book {
        display: block;
        text-align: center;
        background: var(--maroon) !important;
        color: var(--white) !important;
        border-radius: 50px;
        padding: 10px 0;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(245, 239, 230, .98);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--ivory-deep);
        box-shadow: var(--shadow-md);
        gap: 4px;
        align-items: flex-start;
        z-index: 999;
    }

    .nav-links.open a {
        color: var(--dark);
        font-size: 15px;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-links.open a:hover,
    .nav-links.open a.active {
        background: rgba(110, 31, 43, .08);
        color: var(--maroon);
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .nav-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 64px;
    }

    .logo-img, .logo-img-footer { border-radius: 50% !important; object-fit: cover !important; aspect-ratio: 1/1 !important; }

    /* Slightly smaller logo on extra-small mobile screens */
}

/* Ensure Navbar and Footer use Inter font exactly like the Home page to match sizes */
.navbar,
.footer {
    font-family: var(--font-body) !important;
    line-height: 1.7 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-weight: 400 !important;
}

/* Fix missing global resets for navbar and footer */
.navbar a,
.footer a {
    text-decoration: none !important;
}

.navbar ul,
.footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar *,
.footer * {
    box-sizing: border-box !important;
}

/* Fix missing global padding/margin resets and container width for footer */
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer p {
    margin-top: 0 !important;
}

.footer .container {
    max-width: 1280px !important;
    padding: 0 24px !important;
    width: 100% !important;
}

/* Fix missing responsive media queries for the footer */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .footer-bottom-inner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .footer-legal {
        justify-content: center !important;
    }
}

/* Unify global container to perfectly match home.css */
.container {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Variables required by the Navbar and Footer */
:root {
    --maroon: #6E1F2B;
    --maroon-dark: #4d1520;
    --maroon-mid: #8a2535;
    --gold: #D9A441;
    --gold-muted: #c4903a;
    --rust: #A35334;
    --charcoal: #3A3A3A;
    --charcoal-mid: #555555;
    --ivory: #F5EFE6;
    --ivory-deep: #EDE5D8;
    --dark: #1A1010;
    --text: #2A1A1A;
    --text-muted: #7a6a64;
    --white: #FFFFFF;
    --nav-h: 80px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.3s ease;
}

/* Restore logo styling that was broken by the aggressive navbar reset */
.navbar .logo,
.footer .logo {
    color: var(--white) !important;
    font-family: var(--font-display) !important;
}

.navbar.scrolled .logo {
    color: var(--maroon-dark) !important;
}

/* Reset bottom margin for copyright text */
.footer-bottom p {
    margin-bottom: 0 !important;
}

/* Unify footer link opacities */
.footer-legal a {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-legal a:hover {
    color: var(--white) !important;
}

/* Responsive Hero Fix */
@media (max-width: 768px) {
    .editorial-hero {
        min-height: 60vh;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    .editorial-hero .hero-text h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
    .editorial-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    .editorial-hero .hero-container {
        padding: 0 1.5rem;
    }
}


/* Circular logo */
.logo-img, .logo-img-footer { border-radius: 50% !important; object-fit: cover !important; aspect-ratio: 1/1 !important; }

/* SECTION ANIMATIONS */
.premium-reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.premium-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.premium-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-reveal.in-view .premium-item {
    opacity: 1;
    transform: translateY(0);
}

.premium-reveal.in-view .premium-item:nth-child(1) {
    transition-delay: 0.1s;
}

.premium-reveal.in-view .premium-item:nth-child(2) {
    transition-delay: 0.2s;
}

.premium-reveal.in-view .premium-item:nth-child(3) {
    transition-delay: 0.3s;
}

.premium-reveal.in-view .premium-item:nth-child(4) {
    transition-delay: 0.4s;
}

.premium-reveal.in-view .premium-item:nth-child(5) {
    transition-delay: 0.5s;
}
