/* ==========================================================================
   Ghana Air Force WO's & SNCO's Mess - Editorial Redesign
   Theme: Air Force Blue (#00308F) + Military Gold (#D4AF37)
   ========================================================================== */

:root {
    --primary: #00308F;
    --primary-dark: #001f5c;
    --primary-light: #2853b0;
    --gold: #D4AF37;
    --gold-light: #e8c863;
    --gold-deep: #a8821a;
    --dark: #0A192F;
    --dark-2: #0F2647;
    --bg: #F8FAFC;
    --bg-soft: #EEF2F7;
    --bg-alt: #ffffff;
    --text: #1F2937;
    --text-muted: #6B7280;
    --text-soft: #9CA3AF;
    --border: #E5E7EB;
    --border-soft: #F1F5F9;
    --success: #10B981;
    --shadow-xs: 0 1px 2px rgba(10, 25, 47, 0.05);
    --shadow-sm: 0 2px 4px rgba(10, 25, 47, 0.06), 0 1px 2px rgba(10, 25, 47, 0.04);
    --shadow: 0 4px 12px rgba(10, 25, 47, 0.08), 0 2px 4px rgba(10, 25, 47, 0.04);
    --shadow-lg: 0 16px 32px -8px rgba(10, 25, 47, 0.14), 0 8px 16px -8px rgba(10, 25, 47, 0.08);
    --shadow-xl: 0 28px 60px -12px rgba(0, 48, 143, 0.22), 0 12px 24px -8px rgba(10, 25, 47, 0.1);
    --shadow-gold: 0 12px 30px -8px rgba(212, 175, 55, 0.45);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1240px;
    --header-h: 76px;

    /* Backwards-compat aliases */
    --primary-color: var(--primary);
    --secondary-color: var(--gold);
    --accent-color: var(--gold);
    --dark-color: var(--dark);
    --light-color: var(--bg);
    --white: #ffffff;
    --text-light: var(--text-muted);
    --box-shadow: var(--shadow);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }

body {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { color: var(--text-muted); margin-bottom: 1rem; }

::selection { background: var(--gold); color: var(--dark); }

/* --- Layout & Helpers --------------------------------------------------- */
.container {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    position: relative;
}

/* Eyebrow label — small uppercase tag with gold accent line */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold); }

/* Centered section header */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-head .eyebrow { display: inline-flex; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin: 0 auto; }

/* Legacy: keep simple subtitle working too */
.section-subtitle { text-align: center; color: var(--text-muted); margin: 0 auto 2.5rem; max-width: 640px; font-size: 1.05rem; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.85rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    background: var(--gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn i { transition: var(--transition); }
.btn:hover i { transform: translateX(4px); }

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after { transform: translateX(100%); }

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -8px rgba(212, 175, 55, 0.55);
    background: var(--gold-light);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(0, 48, 143, 0.45);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 18px 38px -10px rgba(0, 48, 143, 0.6);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.btn-outline::after { display: none; }

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}

.btn-ghost::after { display: none; }
.btn-ghost:hover { background: var(--primary); color: #fff; }

/* --- Header / Navigation ------------------------------------------------ */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(0, 48, 143, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    border-bottom-color: rgba(0, 48, 143, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    height: var(--header-h);
    max-width: var(--container);
    margin: 0 auto;
    gap: 1rem;
}

.logo {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
    line-height: 1.15;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo:visited,
.logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.logo .logo-img {
    height: 48px;
    width: auto;
    max-width: 42px;
    object-fit: contain;
    object-position: center center;
    flex-shrink: 0;
    display: block;
    /* PNG with alpha — no blend mode */
    filter: drop-shadow(0 1px 2px rgba(10, 25, 47, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links li { list-style: none; }

.nav-links a {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover { color: var(--primary); background: rgba(0, 48, 143, 0.06); }

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-links a:not(.btn):hover::after { width: 24px; }

.nav-links a.btn,
.nav-links a.btn-primary {
    color: #fff;
    padding: 0.55rem 1.25rem;
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--primary);
    padding: 0.5rem;
}

/* --- Hero --------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 120px 1rem 80px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero--video { background: var(--dark); }

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    background: var(--dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video { display: none; }
    .hero--video {
        background:
            linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(0, 48, 143, 0.78) 100%),
            url('../IMAGES/MESS%20IMAGES.jpeg') center/cover no-repeat;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero .eyebrow {
    color: var(--gold);
    margin-bottom: 1.5rem;
    justify-content: center;
}

.hero .eyebrow::before { background: var(--gold); }

.hero h1 {
    color: #fff;
    font-size: clamp(2.25rem, 6vw, 4.75rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.05;
    font-weight: 800;
}

.hero h1 .accent { color: var(--gold); font-weight: 800; }

.hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-motto {
    color: var(--gold-light) !important;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.15rem, 2.2vw, 1.65rem) !important;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem !important;
    position: relative;
    display: inline-block;
    padding: 0 2.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65) !important;
}

.hero-motto::before,
.hero-motto::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-motto::before { left: 0; }
.hero-motto::after  { right: 0; background: linear-gradient(90deg, var(--gold), transparent); }

.hero .btn { padding: 1.05rem 2.4rem; font-size: 1rem; }

.hero-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 3rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold-light);
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-badge i { color: var(--gold); margin-right: 0.4rem; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    animation: bounce 2.4s ease-in-out infinite;
    text-decoration: none;
}

.hero-scroll i { display: block; margin-top: 0.5rem; font-size: 1rem; }
.hero-scroll:hover { color: var(--gold); }

/* --- Section: About ---------------------------------------------------- */
.about { background: var(--bg-alt); position: relative; }

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle at 100% 0%, rgba(0, 48, 143, 0.04), transparent 60%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    position: relative;
}

.about-text .eyebrow { margin-bottom: 1rem; }

.about-text h2 { text-align: left; font-size: clamp(1.85rem, 3.5vw, 2.6rem); margin-bottom: 1.5rem; }

.about-text p {
    font-size: 1.02rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat .stat-num {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 0.25rem;
}

.stat .stat-num .accent { color: var(--gold); }

.stat .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.feature {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.85rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature:hover::before { transform: scaleX(1); }

.feature i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,48,143,0.08), rgba(212,175,55,0.12));
}

.feature h4 { color: var(--dark); margin-bottom: 0.4rem; font-weight: 700; }
.feature p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.55; }

/* --- Section: Menu ----------------------------------------------------- */
.menu { background: var(--bg); position: relative; overflow: hidden; }

.menu::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    pointer-events: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
}

.menu-category {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.85rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.18), transparent 70%);
    transition: var(--transition);
}

.menu-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.menu-category:hover::before { width: 200px; height: 200px; }

.menu-category h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--gold), transparent) 1;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
}

.menu-category h3::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 48, 143, 0.25);
}

.menu-items { display: flex; flex-direction: column; gap: 0.85rem; }

.menu-item {
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: var(--bg);
    transition: var(--transition);
    position: relative;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    background: rgba(0, 48, 143, 0.04);
    border-left-color: var(--gold);
    transform: translateX(4px);
}

.menu-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 700;
}

.menu-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.5rem 0; }

.menu-item .price {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.35);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.menu-category-sub {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: -0.75rem 0 1.5rem;
    font-style: italic;
}

.menu-range {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: 0.02em;
}

.menu-range i {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.14);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.menu-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 2.5rem auto 0;
    max-width: 720px;
    padding: 0.85rem 1.25rem;
    background: rgba(0, 48, 143, 0.04);
    border: 1px dashed rgba(0, 48, 143, 0.18);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.menu-note i { color: var(--primary); }

/* --- Section: Gallery (Bento Grid) ------------------------------------- */
.gallery { background: var(--bg-alt); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 48, 143, 0) 40%, rgba(10, 25, 47, 0.85) 100%);
    transition: var(--transition);
    opacity: 0.55;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.gallery-item:hover::after { opacity: 1; }

/* Bento sizing */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 1; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    background: var(--gold);
    color: var(--dark);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* --- Section: Spaces --------------------------------------------------- */
.spaces { background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%); position: relative; }

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.space-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-soft);
    position: relative;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.space-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.space-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(10, 25, 47, 0.65) 100%);
    transition: var(--transition);
}

.space-card:hover .space-image { transform: scale(1.02); }

.space-image-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    background: var(--gold);
    color: var(--dark);
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-gold);
}

.space-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 48, 143, 0.94), rgba(10, 25, 47, 0.94));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1.5rem;
    z-index: 2;
}

.space-card:hover .space-overlay { opacity: 1; }

.space-overlay .space-details { text-align: center; color: #fff; max-width: 360px; }
.space-overlay h3 { color: var(--gold); margin-bottom: 0.5rem; }
.space-overlay p { color: rgba(255,255,255,0.9); margin-bottom: 1rem; font-size: 0.95rem; }
.space-overlay ul { display: inline-block; text-align: left; }
.space-overlay li { margin-bottom: 0.55rem; color: #fff; font-size: 0.92rem; }
.space-overlay li i { color: var(--gold); margin-right: 0.6rem; width: 18px; }

.space-info { padding: 2rem 1.85rem; }

.space-info h3 { color: var(--primary); margin-bottom: 0.85rem; font-weight: 800; }
.space-info p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; font-size: 0.95rem; }

.space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(0, 48, 143, 0.08);
    color: var(--primary);
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(0, 48, 143, 0.12);
    transition: var(--transition);
}

.feature-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.space-info .btn { width: 100%; }

/* --- Section: Location ------------------------------------------------- */
.location { background: var(--bg-alt); }

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: stretch;
}

.map-info {
    background: #ffffff;
    color: var(--text);
    padding: 2.25rem 2rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    border-left: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-info::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 48, 143, 0.06), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.map-info-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 48, 143, 0.08);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-info-tag i { color: var(--gold); font-size: 0.85rem; }

.map-info h3 {
    color: var(--dark);
    margin-bottom: 0.85rem;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.map-info-lede {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--border);
}

.map-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-info-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.95rem;
    align-items: flex-start;
}

.map-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 48, 143, 0.08), rgba(212, 175, 55, 0.12));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.map-info-list li:hover .map-info-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: rotate(-4deg);
}

.map-info-list li > div { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }

.map-info-list li strong {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    font-weight: 700;
}

.map-info-list li span,
.map-info-list li a {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
    word-break: break-word;
    text-decoration: none;
    transition: var(--transition);
}

.map-info-list li a:hover { color: var(--primary); text-decoration: underline; }

.map-info-cta {
    width: 100%;
    margin-top: auto;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 480px;
    border: 1px solid var(--border-soft);
    background: var(--bg-soft);
    position: relative;
}

.map-wrapper iframe { display: block; width: 100%; height: 100%; min-height: 480px; border: 0; }

/* --- Section: Contact -------------------------------------------------- */
.contact {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    position: relative;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    background: var(--bg-alt);
    padding: 2.25rem 1.85rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.08));
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.contact-item:hover::before { height: 100%; }

.contact-item > i {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 24px -6px rgba(0, 48, 143, 0.35);
    position: relative;
    transition: var(--transition);
}

.contact-item:hover > i {
    transform: rotate(-6deg) scale(1.05);
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.contact-item h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.05rem; font-weight: 800; }
.contact-item p { color: var(--text-muted); margin: 0; font-size: 0.94rem; word-break: break-word; position: relative; }

/* --- Social (footer & contact) ----------------------------------------- */
.social-links-wrap {
    text-align: center;
    margin: 1.5rem 0 0;
}
.contact .social-links-wrap {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-soft);
}
.social-links-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--text-soft);
    margin-bottom: 0.9rem;
}
.footer .social-links-label { color: rgba(255,255,255,0.45); }
.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--dark);
    font-size: 1.15rem;
}
.footer .social-link {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.12);
}
.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,48,143,0.12);
}
.footer .social-link--instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366); color: #fff; border-color: transparent; }
.footer .social-link--tiktok:hover { background: #000; color: #fff; border-color: #25f4ee; }
.footer .social-link--facebook:hover { background: #1877f2; color: #fff; border-color: transparent; }
.footer .social-link--whatsapp:hover { background: #25d366; color: #fff; border-color: transparent; }
.footer .social-link--youtube:hover { background: #ff0000; color: #fff; border-color: transparent; }
.contact .social-link--instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366); color: #fff; border-color: transparent; }
.contact .social-link--tiktok:hover { background: #000; color: #fff; border-color: #25f4ee; }
.contact .social-link--facebook:hover { background: #1877f2; color: #fff; border-color: transparent; }
.contact .social-link--whatsapp:hover { background: #25d366; color: #fff; border-color: transparent; }
.contact .social-link--youtube:hover { background: #ff0000; color: #fff; border-color: transparent; }

/* --- Footer ------------------------------------------------------------ */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 4.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

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

.footer-brand h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
    list-style: none;
}

.footer-col ul li a,
.footer-col p {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }

.footer-col p { display: flex; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-col p i { color: var(--gold); width: 18px; margin-top: 0.2rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-bottom p { color: rgba(255,255,255,0.5); margin: 0; }

/* --- Animations -------------------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-col:nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 968px) {
    .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-text h2 { text-align: center; }
    .about-text .eyebrow { justify-content: center; }
    .about-stats { grid-template-columns: repeat(3, 1fr); text-align: center; }
    .stat { text-align: center; }
    .map-container { grid-template-columns: 1fr; }
    .map-wrapper { min-height: 320px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 1rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid var(--gold);
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.85rem 1rem; }
    .nav-links a.btn-primary { margin: 0.5rem 0 0; }

    .mobile-menu { display: block; }
    .navbar { padding: 0.75rem 1rem; height: 68px; }
    .logo { font-size: 0.85rem; }
    .logo .logo-img { height: 42px; max-width: 36px; }

    .hero { padding: 100px 1rem 80px; min-height: 90vh; }
    .hero-scroll { display: none; }

    .about-features { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; gap: 1.5rem; }

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 0.65rem; }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

    .spaces-grid { grid-template-columns: 1fr; }
    .space-image { height: 240px; }

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

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    section { padding: 4rem 0; }
}
