/* ============================================================
   Rep. Nnamdi Ezechi — Official Website
   Brand Palette: Nigerian Green | Legislative Gold | Navy
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --green:      #008751;
    --green-dark: #006640;
    --green-light:#00a864;
    --gold:       #C9A84C;
    --gold-dark:  #a8852a;
    --gold-light: #e0c06e;
    --gold-xlight:#f5e9c8;
    --navy:       #0D1B2A;
    --navy-mid:   #162538;
    --navy-light: #1e3450;
    --white:      #FFFFFF;
    --warm-grey:  #F5F5F0;
    --warm-grey2: #EEEDE8;
    --text-dark:  #1a1a2e;
    --text-mid:   #4a4a6a;
    --text-light: #8a8aaa;
    --shadow-gold: 0 8px 32px rgba(201,168,76,.25);
    --shadow-nav:  0 4px 24px rgba(13,27,42,.4);
    --transition:  all .3s cubic-bezier(.4,0,.2,1);
    --radius:      12px;
    --radius-lg:   20px;
    --top-bar-h:   42px;
    --navbar-h:    74px;
    --offset:      116px;           /* top-bar + navbar */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--offset);
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ── Custom Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ── Bootstrap overrides ───────────────────────────────────── */
/* Re-assert our base resets after Bootstrap's normalize */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif !important; color: var(--text-dark) !important; background: var(--white) !important; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
    color: var(--navy);
    margin-top: 0;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
.text-gold { color: var(--gold) !important; }
.bg-navy   { background-color: var(--navy) !important; }

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner {
    position: relative;
    width: 80px;
    height: 80px;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(201,168,76,.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-emblem {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
}

.preloader-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.6;transform:scale(.9);} }

/* ── Rep Photo Logo ─────────────────────────────────────────── */
.brand-photo-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.2), 0 3px 10px rgba(0,0,0,.35);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.brand-photo-wrap.sm {
    width: 38px;
    height: 38px;
}

.brand-photo-icon {
    position: absolute;
    font-size: 1.4rem;
    color: var(--navy);
}

.brand-photo-wrap.sm .brand-photo-icon { font-size: 1.1rem; }

.brand-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
    display: block;
}

.navbar-brand:hover .brand-photo-wrap {
    box-shadow: 0 0 0 4px rgba(201,168,76,.4), 0 4px 16px rgba(0,0,0,.4);
    transform: scale(1.06);
}

/* ── Preloader text ─────────────────────────────────────────── */
.preloader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.preloader-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .04em;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-sub {
    font-size: .62rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .2em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 3px;
}

/* ── Page entrance transition ───────────────────────────────── */
@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

#main-content {
    animation: fadeInPage .45s ease forwards;
}

/* ── WhatsApp floating button ───────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 86px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 32px rgba(37,211,102,.55);
    color: #fff;
    text-decoration: none;
}

.whatsapp-float::before {
    content: 'Chat with us';
    position: absolute;
    right: 60px;
    background: var(--navy);
    color: rgba(255,255,255,.9);
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.whatsapp-float:hover::before { opacity: 1; }

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
    background: var(--navy);
    border-bottom: 1px solid rgba(201,168,76,.2);
    height: var(--top-bar-h);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    font-size: .78rem;
    color: var(--gold);
    letter-spacing: .02em;
}

.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-divider { color: rgba(201,168,76,.4); }

.top-social {
    color: rgba(201,168,76,.7);
    font-size: .95rem;
    padding: 4px 6px;
    border-radius: 4px;
    transition: var(--transition);
}
.top-social:hover {
    color: var(--gold);
    background: rgba(201,168,76,.12);
}

/* ── Navbar ────────────────────────────────────────────────── */
.site-navbar {
    background: rgba(13,27,42,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,.15);
    position: fixed;
    top: var(--top-bar-h);
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--navbar-h);
    transition: var(--transition);
    box-shadow: var(--shadow-nav);
    padding: 0;
}

.site-navbar.scrolled {
    background: rgba(13,27,42,1);
    box-shadow: 0 8px 40px rgba(13,27,42,.6);
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon-wrap {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
}

.brand-icon-wrap.small {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.navbar-brand:hover .brand-icon-wrap {
    transform: rotate(-5deg) scale(1.05);
}

.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.brand-tagline {
    font-size: .65rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Nav links */
.site-navbar .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .03em;
    padding: 8px 14px !important;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}

.site-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width .3s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--gold) !important;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
    width: 60%;
}

/* Toggler */
.navbar-toggler {
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--gold);
    font-size: 1.4rem;
    background: transparent;
    transition: var(--transition);
}
.navbar-toggler:hover {
    background: rgba(201,168,76,.1);
    border-color: var(--gold);
}
.navbar-toggler:focus { box-shadow: none; }

/* ── Nav Dropdown ──────────────────────────────────────────── */
.site-dropdown {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 12px;
    padding: 8px;
    min-width: 230px;
    box-shadow: 0 16px 48px rgba(13,27,42,.5);
    margin-top: 8px !important;
}

.site-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 12px !important;
    border-radius: 8px;
    color: rgba(255,255,255,.8) !important;
    text-decoration: none;
    transition: all .2s ease;
}

.site-dropdown-item:hover,
.site-dropdown-item.active {
    background: rgba(201,168,76,.12) !important;
    color: var(--gold) !important;
}

.site-dropdown-item i {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.site-dropdown-item span {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.site-dropdown-item strong {
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.2;
}

.site-dropdown-item small {
    font-size: .72rem;
    opacity: .6;
    font-weight: 400;
}

/* Hide Bootstrap caret on our custom toggle */
.site-navbar .dropdown-toggle::after { display: none; }

/* Add a small chevron via Remix Icon substitute */
.site-navbar .nav-link.dropdown-toggle::before {
    content: '';
}

/* Mobile nav */
@media (max-width: 991px) {
    .site-navbar .navbar-collapse {
        position: fixed;
        top: calc(var(--top-bar-h) + var(--navbar-h));
        left: 0;
        right: 0;
        z-index: 1029;
        background: var(--navy);
        border-top: 1px solid rgba(201,168,76,.18);
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: 0 16px 48px rgba(13,27,42,.7);
        max-height: calc(100vh - var(--offset));
        overflow-y: auto;
    }
    .site-navbar .nav-link::after { display: none; }

    /* Mobile dropdown: flat, inline */
    .site-navbar .site-dropdown {
        position: static !important;
        transform: none !important;
        background: rgba(255,255,255,.04);
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0 !important;
        padding: 0 0 4px 0;
    }

    .site-navbar .site-dropdown-item {
        padding: 9px 24px !important;
        border-radius: 0;
    }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy) !important;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .04em;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(201,168,76,.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.15);
    transform: translateX(-100%);
    transition: transform .3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,.45);
    color: var(--navy) !important;
}

.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:active { transform: translateY(0); }

.btn-gold-outline {
    background: transparent;
    color: var(--gold) !important;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .04em;
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 9px 24px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,.4);
}

.btn-green {
    background: var(--green);
    color: var(--white) !important;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    transition: var(--transition);
}
.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* ── Hero Section (split layout, CSS gradient — no background image) ── */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg,
        #0a1628 0%,
        var(--navy) 45%,
        #0d2418 100%
    );
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--offset);
}

/* Left flag accent strip */
.hero-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--green) 30%,
        var(--gold) 65%,
        transparent 100%
    );
    opacity: .75;
}

/* Dot grid overlay */
.hero-deco-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201,168,76,.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Glow blobs */
.hero-deco-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,135,81,.16) 0%, transparent 70%);
    top: -120px; right: -80px;
    animation: heroBlob 9s ease-in-out infinite alternate;
}

.hero-blob-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(201,168,76,.09) 0%, transparent 70%);
    bottom: -80px; left: 5%;
    animation: heroBlob 11s ease-in-out infinite alternate-reverse;
}

@keyframes heroBlob {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.12) translate(18px, -18px); }
}

/* Accent lines */
.hero-line-accent {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    pointer-events: none;
}

.hero-line-top {
    top: 0;
    background: linear-gradient(90deg, transparent, var(--gold) 35%, transparent);
    opacity: .4;
}

.hero-line-bottom {
    bottom: 0;
    background: linear-gradient(90deg, transparent, var(--green) 40%, transparent);
    opacity: .25;
}

/* ── Hero text ────────────────────────────────────────────────── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.28);
    color: var(--gold);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -.01em;
}

.hero-title .gold-text {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(.88rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,.72);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.65;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(.88rem, 1.6vw, 1rem);
    color: rgba(255,255,255,.48);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-ctas .btn-gold,
.hero-ctas .btn-gold-outline {
    font-size: .9rem;
    padding: 12px 28px;
    border-radius: 9px;
}

/* Trust row */
.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.52);
    font-size: .8rem;
    font-weight: 500;
}

.hero-trust-item i { color: var(--gold); font-size: 1rem; }

.hero-trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.16);
    margin: 0 16px;
}

/* ── Hero Photo Card ──────────────────────────────────────────── */
.hero-photo-card {
    position: relative;
    display: inline-block;
    max-width: 300px;
    width: 100%;
}

.hero-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,.35);
    box-shadow:
        0 0 0 6px rgba(201,168,76,.07),
        0 0 0 12px rgba(201,168,76,.03),
        0 28px 70px rgba(0,0,0,.55);
}

.hero-photo {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.94) contrast(1.06);
}

.hero-photo-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(201,168,76,.04) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* APC badge on photo */
.hero-photo-badge {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 9px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-size: .85rem;
    box-shadow: 0 6px 24px rgba(201,168,76,.5);
    letter-spacing: .06em;
    z-index: 2;
}

.hero-photo-badge i { font-size: .9rem; }

/* Dashed ring around frame */
.hero-photo-ring {
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    border: 1px dashed rgba(201,168,76,.2);
    pointer-events: none;
}

/* Decorative dot cluster */
.hero-photo-dots {
    position: absolute;
    top: -18px;
    left: -22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    pointer-events: none;
    z-index: 1;
}

.hero-photo-dots span {
    width: 5px;
    height: 5px;
    background: rgba(201,168,76,.32);
    border-radius: 50%;
    display: block;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.42);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}

.scroll-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,168,76,.32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    animation: bounce 2s ease-in-out infinite;
    font-size: .95rem;
}

@keyframes bounce {
    0%,100%{transform:translateY(0);opacity:1;}
    50%{transform:translateY(7px);opacity:.55;}
}

/* ── Hero responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-photo-card { max-width: 210px; }
    .hero-blob-1 { width: 320px; height: 320px; }
    .hero-blob-2 { width: 240px; height: 240px; }
}

@media (max-width: 767px) {
    .hero-photo-card { max-width: 158px; }
    .hero-photo-badge { right: -8px; bottom: -8px; padding: 7px 11px; font-size: .75rem; }
    .hero-trust-sep { margin: 0 10px; }
}

/* ── Stats Bar / Achievement Ticker ────────────────────────── */
.stats-bar {
    background: var(--navy);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
}

.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
}

.stats-ticker-wrap {
    overflow: hidden;
    position: relative;
}

/* Edge fade-out gradients */
.stats-ticker-wrap::before,
.stats-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.stats-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}

.stats-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

.stats-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: statsTicker 45s linear infinite;
}

.stats-track:hover { animation-play-state: paused; }

@keyframes statsTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.stat-chip i {
    font-size: 1.7rem;
    color: var(--gold);
    opacity: .7;
    flex-shrink: 0;
}

.sc-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.1;
}

.sc-label {
    font-size: .68rem;
    color: rgba(255,255,255,.48);
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
    margin-top: 3px;
    white-space: nowrap;
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(201,168,76,.14);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .stat-chip { padding: 20px 20px; gap: 10px; }
    .stat-chip i { font-size: 1.3rem; }
    .sc-val { font-size: 1.15rem; }
    .sc-label { font-size: .62rem; }
    .stats-ticker-wrap::before,
    .stats-ticker-wrap::after { width: 40px; }
}

/* ── Section Titles ────────────────────────────────────────── */
.section-wrap { padding: 90px 0; }
.section-wrap-dark {
    padding: 90px 0;
    background: var(--navy);
    position: relative;
}

.section-title-wrap { text-align: center; margin-bottom: 56px; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: .4;
    min-width: 24px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-underline span:first-child,
.section-underline span:last-child {
    display: block;
    width: 48px;
    height: 2px;
    background: rgba(201,168,76,.35);
    border-radius: 2px;
}

.section-underline span:nth-child(2) {
    display: block;
    width: 24px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
}

.section-desc.light { color: rgba(255,255,255,.6); }

/* ── Cards ─────────────────────────────────────────────────── */
.card-hover {
    transition: var(--transition);
    border-radius: var(--radius);
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

/* News Cards */
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201,168,76,.3);
}

.news-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.07); }

.news-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}

.news-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-date {
    font-size: .75rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 12px;
    transition: var(--transition);
}

.news-card:hover .news-card-title { color: var(--gold-dark); }

.news-card-excerpt {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: auto;
}

.read-more-link i { transition: transform .3s ease; }
.read-more-link:hover { color: var(--green); gap: 10px; }
.read-more-link:hover i { transform: translateX(4px); }

/* ── News Section (Home) ────────────────────────────────────── */
.news-section {
    padding: 80px 0 90px;
    background: #f7f5f0;
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.news-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s ease;
    flex-shrink: 0;
}

.news-view-all:hover {
    background: var(--navy);
    color: var(--gold);
}

.news-view-all i { transition: transform .25s ease; }
.news-view-all:hover i { transform: translateX(4px); }

/* Bento grid */
.news-bento {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start;
}

/* Featured card */
.news-featured {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    height: 520px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.news-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.news-featured-img {
    position: absolute;
    inset: 0;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}

.news-featured:hover .news-featured-img img { transform: scale(1.05); }

.news-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13,27,42,.98) 0%,
        rgba(13,27,42,.8)  35%,
        rgba(13,27,42,.35) 65%,
        rgba(13,27,42,.05) 100%
    );
}

.news-featured-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 2;
}

.news-featured-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.news-featured-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.news-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: rgba(255,255,255,.65);
}

.news-featured-meta i { color: var(--gold); font-size: .8rem; }

.news-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 12px;
    transition: color .25s ease;
}

.news-featured:hover .news-featured-title { color: var(--gold); }

.news-featured-excerpt {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin: 0 0 18px;
}

.news-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1.5px solid rgba(201,168,76,.4);
    padding: 8px 18px;
    border-radius: 100px;
    transition: all .25s ease;
}

.news-featured:hover .news-featured-cta {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.news-featured-cta i { transition: transform .25s ease; }
.news-featured:hover .news-featured-cta i { transform: translateX(4px); }

/* Side stack */
.news-side-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-side-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    text-decoration: none !important;
}

.news-side-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    border-color: rgba(201,168,76,.3);
}

.news-side-img {
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-side-card:hover .news-side-img img { transform: scale(1.08); }

.news-side-body {
    padding: 14px 14px 14px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.news-side-cat {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 5px;
}

.news-side-title {
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin: 0 0 6px;
    transition: color .25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-side-card:hover .news-side-title { color: var(--gold-dark); }

.news-side-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.news-side-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    color: var(--text-light);
}

.news-side-meta i { font-size: .72rem; color: var(--gold); }

.news-side-excerpt {
    font-size: .78rem;
    color: var(--text-mid);
    line-height: 1.5;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-side-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold-dark);
    margin-top: auto;
    transition: gap .2s ease, color .2s ease;
}

.news-side-card:hover .news-side-cta { gap: 8px; color: var(--green); }
.news-side-cta i { transition: transform .2s ease; }
.news-side-card:hover .news-side-cta i { transform: translateX(3px); }

/* More teaser row */
.news-more-teaser {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 10px;
    padding: 14px 18px;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    transition: background .25s ease, transform .25s ease;
}

.news-more-teaser:hover {
    background: var(--navy-mid, #1a2e47);
    color: var(--gold);
    transform: translateX(4px);
}

.news-more-teaser > i:first-child { font-size: 1.1rem; flex-shrink: 0; }
.news-more-teaser > i:last-child  { font-size: 1.3rem; }

/* Responsive */
@media (max-width: 1099px) {
    .news-bento { grid-template-columns: 1fr 320px; }
}

@media (max-width: 991px) {
    .news-bento { grid-template-columns: 1fr; }
    .news-featured { height: 420px; }
    .news-side-stack { display: grid; grid-template-columns: 1fr 1fr; }
    .news-more-teaser { grid-column: 1 / -1; }
    .news-section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 575px) {
    .news-section { padding: 56px 0 64px; }
    .news-featured { height: 360px; }
    .news-featured-body { padding: 20px; }
    .news-side-stack { grid-template-columns: 1fr; }
    .news-side-img { width: 100px; }
}

/* ── Reel Cards ────────────────────────────────────────────── */
.reel-thumb {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    background: var(--navy-mid);
    cursor: pointer;
    transition: var(--transition);
}

.reel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.reel-thumb:hover img { transform: scale(1.06); }

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    transition: var(--transition);
}

.reel-play-btn {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin: auto;
    align-self: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,.4);
}

.reel-thumb:hover .reel-play-btn {
    transform: scale(1.1);
    background: var(--gold);
    box-shadow: 0 8px 32px rgba(201,168,76,.6);
}

.reel-info { align-self: flex-end; width: 100%; }

.reel-title {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 6px;
}

.reel-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .75rem;
    color: rgba(255,255,255,.6);
}

.reel-meta span { display: flex; align-items: center; gap: 4px; }

/* ── Gallery Grid ──────────────────────────────────────────── */
.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}

@media (max-width: 991px) { .gallery-masonry { columns: 2; } }
@media (max-width: 575px) { .gallery-masonry { columns: 1; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-title {
    color: var(--white);
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    background: rgba(201,168,76,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom-icon { transform: translate(-50%, -50%) scale(1); }

/* ── Home Gallery Carousel (Swiper) ────────────────────────── */
.home-gallery-swiper {
    overflow: visible;
    padding-bottom: 40px;
}

.home-gallery-swiper .swiper-slide {
    height: auto;
}

.home-gallery-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    line-height: 0;
    text-decoration: none;
    aspect-ratio: 4/3;
    background: var(--navy-mid);
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}

.home-gallery-card:hover img { transform: scale(1.07); }

.home-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(13,27,42,.92) 0%,
        rgba(13,27,42,.3) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    opacity: 0;
    transition: opacity .3s ease;
}

.home-gallery-card:hover .home-gallery-overlay { opacity: 1; }

.home-gallery-zoom {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    margin: auto;
    transform: scale(.65);
    transition: transform .3s ease;
    box-shadow: 0 4px 16px rgba(201,168,76,.4);
}

.home-gallery-card:hover .home-gallery-zoom { transform: scale(1); }

.home-gallery-title {
    align-self: flex-end;
    color: var(--white);
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.home-gallery-pagination {
    bottom: 0 !important;
}

.home-gallery-pagination .swiper-pagination-bullet {
    background: var(--gold);
    opacity: .4;
}

.home-gallery-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

/* ── Contact Section ───────────────────────────────────────── */
.contact-section {
    background: var(--warm-grey);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--green));
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(201,168,76,.06);
    border-radius: 50%;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 200px; height: 200px;
    background: rgba(0,135,81,.06);
    border-radius: 50%;
}

.contact-rep-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-rep-title {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-message {
    font-size: .95rem;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    margin-bottom: 32px;
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
}

.contact-detail-list { list-style: none; padding: 0; margin: 0 0 28px; }

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.75);
    font-size: .88rem;
}

.contact-detail-list li i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }

.contact-social a {
    width: 38px;
    height: 38px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .95rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: 0 12px 60px rgba(13,27,42,.1);
    height: 100%;
}

.form-label-custom {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-control-custom {
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .92rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--warm-grey);
    width: 100%;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,168,76,.12);
}

.form-control-custom::placeholder { color: var(--text-light); }

textarea.form-control-custom { resize: vertical; min-height: 130px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
}

.footer-top { padding: 72px 0 56px; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-about {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(255,255,255,.55);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,168,76,.7);
    font-size: .9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,.2);
}

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

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.footer-links a i { color: var(--gold); font-size: .8rem; }

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}

.footer-contact li i {
    color: var(--gold);
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-input {
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(201,168,76,.25) !important;
    color: var(--white) !important;
    border-radius: 0 8px 8px 0 !important;
}

.newsletter-input:focus {
    border-color: var(--gold) !important;
    box-shadow: none !important;
    background: rgba(255,255,255,.08) !important;
}

.newsletter-input::placeholder { color: rgba(255,255,255,.3) !important; }

.input-group-text.bg-transparent.border-gold {
    background: rgba(201,168,76,.08) !important;
    border: 1px solid rgba(201,168,76,.25) !important;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
}

.footer-newsletter-text {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
}

.footer-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.45);
    font-size: .78rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,.25), transparent);
    margin: 0 24px;
}

.footer-bottom { padding: 20px 0; }

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255,255,255,.35);
}

/* ── Staff / Admin login button in footer ─────────────────────── */
.footer-staff-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: rgba(255,255,255,.3);
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.footer-staff-btn:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,.4);
}
.footer-staff-btn i { font-size: .8rem; }

/* ── Back to Top ───────────────────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,.4);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ── Dark Section Overlays ─────────────────────────────────── */
.section-wrap-dark .section-title,
.section-wrap-dark .section-desc { color: rgba(255,255,255,.85); }

.section-wrap-dark .section-desc { color: rgba(255,255,255,.55); }

/* ── About Section ─────────────────────────────────────────── */
.about-section {
    padding: 90px 0;
    background: var(--white);
    position: relative;
}

.about-photo-wrap {
    position: relative;
    display: block;
    max-width: 320px;
    width: 100%;
}

.about-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(13,27,42,.2);
    border: 3px solid var(--gold);
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3/4;
    display: block;
}

.about-verified-ring {
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    border: 1px dashed rgba(201,168,76,.3);
    pointer-events: none;
}

.about-party-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(201,168,76,.45);
}

.about-party-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-party-badge small {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .75;
    display: block;
    margin-top: 3px;
}

.about-role-tag {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .88rem;
    color: var(--green);
    font-weight: 600;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    line-height: 1.5;
}

.about-role-tag i { flex-shrink: 0; margin-top: 2px; }

.about-bio {
    font-size: .97rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1em;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .87rem;
    color: var(--text-dark);
    font-weight: 500;
    background: var(--warm-grey);
    padding: 11px 14px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.about-highlight-item:hover {
    background: var(--gold-xlight);
    border-left-color: var(--gold-dark);
}

.about-highlight-item i {
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.about-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .about-photo-wrap { max-width: 260px; }
    .about-party-badge { right: -10px; bottom: -10px; padding: 10px 16px; }
}

@media (max-width: 767px) {
    .about-section { padding: 64px 0; }
    .about-highlights { grid-template-columns: 1fr; }
    .about-photo-wrap { max-width: 200px; margin-bottom: 48px !important; }
    .about-ctas { flex-direction: column; }
    .about-ctas .btn-gold, .about-ctas .btn-gold-outline { text-align: center; }
}

/* ── Navbar Toggle Animation (Hamburger ↔ X) ─────────────────── */
.navbar-toggler .ri-close-line  { display: none; }
.navbar-toggler[aria-expanded="true"] .ri-menu-3-line { display: none; }
.navbar-toggler[aria-expanded="true"] .ri-close-line  { display: block; }

/* Mobile nav dropdown polish */
@media (max-width: 991px) {
    /* Items fill the full-width overlay panel */
    .site-navbar .navbar-collapse .navbar-nav {
        margin-left: 0 !important;
        width: 100%;
        padding: 8px 20px 20px;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    .site-navbar .navbar-collapse .nav-link {
        border-bottom: 1px solid rgba(255,255,255,.05) !important;
        border-radius: 0 !important;
        padding: 14px 4px !important;
        color: rgba(255,255,255,.85) !important;
        font-size: .95rem !important;
    }
    .site-navbar .navbar-collapse .nav-link.active { color: var(--gold) !important; }
    .site-navbar .contact-cta { border-bottom: none !important; padding-top: 8px; }
    .site-navbar .contact-cta .btn-gold {
        display: block !important;
        width: 100% !important;
        text-align: center;
        padding: 13px 24px;
        font-size: .9rem;
    }
}

/* ── Page Hero Short (Blog, Gallery, Reels inner pages) ─────── */
.page-hero-short {
    background: var(--navy);
    padding: calc(var(--offset) + 56px) 0 52px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201,168,76,.12);
}

.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(13,27,42,1) 0%,
        rgba(13,27,42,.85) 60%,
        rgba(0,135,81,.15) 100%);
}

.page-hero-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(201,168,76,.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(0,135,81,.05) 0%, transparent 40%);
}

.page-hero-inner { position: relative; z-index: 2; }

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.15;
}

.page-hero-sub {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    margin-bottom: 16px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0; margin: 0;
    font-size: .82rem;
    flex-wrap: wrap;
}

.breadcrumb-custom li { color: rgba(255,255,255,.45); }
.breadcrumb-custom li a { color: var(--gold); text-decoration: none; }
.breadcrumb-custom li a:hover { color: var(--gold-light); }
.breadcrumb-custom li i { font-size: .85rem; opacity: .5; }

/* ── Article Breadcrumb Bar (blog/show) ──────────────────────── */
.article-breadcrumb-bar {
    background: var(--navy-mid);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,.1);
}

/* ── ScrollCue Defaults ────────────────────────────────────── */
[data-cue] { opacity: 0; }

/* ── Utility ───────────────────────────────────────────────── */
.gap-y-4 { row-gap: 1.5rem; }
.fw-black { font-weight: 900; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 767px) {
    .section-wrap, .section-wrap-dark, .contact-section { padding: 64px 0; }
    .contact-info-card, .contact-form-card { padding: 32px 24px; }
    .hero-ctas .btn-gold, .hero-ctas .btn-gold-outline { padding: 11px 22px; font-size: .85rem; }
    .footer-top { padding: 48px 0 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    /* Inner page heroes: tighter on mobile */
    .page-hero-short { padding: calc(var(--offset) + 32px) 0 32px; }
    /* Gallery masonry: 2 cols on mobile */
    .gallery-masonry { columns: 2; }
}

@media (max-width: 575px) {
    :root { --top-bar-h: 36px; --navbar-h: 66px; }
    .top-bar-left i { display: none; }
}

/* ── Comments Section ───────────────────────────────────────── */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0; left: 0;
    height: 0; width: 0;
    z-index: -1;
    pointer-events: none;
}

.comments-section {
    border-top: 2px solid rgba(0,0,0,.07);
    padding-top: 40px;
}

.comments-header { margin-bottom: 28px; }

.comments-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.comments-title i { color: var(--gold); }

.comments-count {
    font-family: 'Inter', sans-serif;
    background: rgba(201,168,76,.12);
    color: var(--gold-dark);
    font-size: .8rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    min-width: 28px;
    text-align: center;
}

.comment-success-msg,
.comment-error-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.comment-success-msg {
    background: rgba(0,135,81,.07);
    border: 1px solid rgba(0,135,81,.22);
    color: var(--green-dark);
}

.comment-error-msg {
    background: rgba(220,53,69,.06);
    border: 1px solid rgba(220,53,69,.2);
    color: #b02a37;
}

/* Comment form */
.comment-form-wrap {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 36px;
}

.cf-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.cf-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.cf-grid .cf-group { margin-bottom: 0; }

.cf-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cf-label span { color: var(--gold); }
.cf-label small { font-weight: 400; text-transform: none; color: var(--text-light); }

.cf-input {
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    color: var(--text-dark);
    background: var(--warm-grey);
    transition: var(--transition);
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.cf-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,168,76,.1);
}

.cf-input::placeholder { color: var(--text-light); }
.cf-input.cf-invalid { border-color: #dc3545; }
.cf-textarea { resize: vertical; min-height: 110px; }

.cf-error {
    font-size: .78rem;
    color: #dc3545;
    margin-top: 3px;
}

/* Comments list */
.comments-list { display: flex; flex-direction: column; gap: 0; }

.comment-item {
    display: flex;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

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

.reply-item {
    margin-left: 54px;
    padding: 14px 0 14px 16px;
    border-left: 2px solid rgba(201,168,76,.2);
    border-bottom: none;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border: 2px solid rgba(201,168,76,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.reply-item .comment-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: .85rem;
}

.comment-content { flex: 1; min-width: 0; }

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy);
}

.comment-date {
    font-size: .75rem;
    color: var(--text-light);
}

.comment-text {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 10px;
    white-space: pre-line;
}

.comment-reply-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--gold-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.comment-reply-btn:hover { color: var(--green); }

/* Inline reply form */
.inline-reply {
    margin-top: 14px;
    background: var(--warm-grey);
    border-radius: 10px;
    padding: 18px;
    border: 1px solid rgba(0,0,0,.07);
}

.inline-reply .cf-grid { gap: 10px; margin-bottom: 10px; }
.inline-reply .cf-group { margin-bottom: 10px; }
.inline-reply .cf-grid .cf-group { margin-bottom: 0; }
.inline-reply .cf-input { font-size: .85rem; padding: 9px 12px; }

.rf-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rf-cancel {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-light);
    font-size: .8rem;
    cursor: pointer;
    transition: color .2s;
}

.rf-cancel:hover { color: var(--navy); }

/* Replies of replies get a smaller indent so nesting stays readable */
.replies-list .reply-item { margin-left: 28px; }
/* Cap at 2 levels — anything deeper sits at the same indent as level 2 */
.replies-list .replies-list .reply-item { margin-left: 16px; }

.replies-list {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
}

/* No comments */
.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.no-comments i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: .4;
    display: block;
    margin-bottom: 10px;
}

.no-comments p { font-size: .92rem; }

/* ── Textarea with emoji button overlay ───────────────────────── */
.cf-textarea-group { position: relative; }

.emoji-trigger {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 5px;
    transition: transform .15s;
    z-index: 2;
    opacity: .7;
}
.emoji-trigger:hover { transform: scale(1.25); opacity: 1; }

/* ── Global emoji picker panel ────────────────────────────────── */
#globalEmojiPicker {
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid rgba(0,0,0,.13);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.16);
    padding: 10px;
    width: 272px;
}
.ep-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
}
.ep-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1.35;
    transition: background .1s;
}
.ep-btn:hover { background: rgba(0,0,0,.07); }

/* ── Replies collapse / expand toggle ─────────────────────────── */
.replies-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: none;
    border: none;
    padding: 4px 0;
    margin-top: 6px;
    cursor: pointer;
    color: var(--gold-dark, #b8880a);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color .2s;
}
.replies-toggle:hover { color: var(--green, #2e7d32); }
.toggle-arrow { font-size: 1rem; transition: transform .25s; }

@media (max-width: 767px) {
    .cf-grid { grid-template-columns: 1fr; }
    .comment-form-wrap { padding: 20px 16px; }
    .reply-item { margin-left: 24px; }
}
