/* =============================================
   BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--light);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.85;
    margin: 0;
}

h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom   { background-color: var(--primary) !important; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 0.75rem 0;
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.navbar.scrolled {
    background: rgba(244,247,251,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 2px 20px rgba(30,58,95,.08);
}

.navbar.navbar-solid {
    background: rgb(255 248 215);
    border-bottom: 1px solid rgba(232,200,50,.25);
}

.navbar.navbar-solid.scrolled {
    background: rgba(244,247,251,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 2px 20px rgba(30,58,95,.08);
}

.navbar .container { position: relative; height: 90px;}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgb(255 248 215);
        margin: 0 -12px;
        padding: 0.5rem 1.5rem 1rem;
        border-top: 1px solid rgba(232,200,50,.25);
    }
    .navbar.scrolled .navbar-collapse {
        background: rgba(244, 247, 251, 0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .navbar-brand { position: static; left: auto; transform: none; }
}

.navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: .5rem 1rem !important;
    transition: color .25s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--dark) !important; font-weight: 600; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-book {
    background: transparent;
    border: 1.5px solid var(--dark);
    color: var(--dark);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .45rem 1.4rem;
    border-radius: 0;
    transition: all .25s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.btn-book:hover { background: var(--dark); color: #fff; }

.btn-gold {
    background: var(--primary);
    color: var(--dark) !important;
    border: none;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .65rem 2rem;
    border-radius: 0;
    transition: background .25s, transform .2s;
    text-decoration: none;
    display: inline-block;
}
.btn-gold:hover { background: var(--primary-dark); color: var(--dark) !important; transform: translateY(-1px); }

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid rgba(30,58,95,.35);
    color: var(--dark);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .08em;
    padding: .65rem 1.6rem;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: all .25s;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

.btn-banner {
    display: inline-block;
    padding: .9rem 3rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.75);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, border-color .25s, color .25s;
}
.btn-banner:hover { background: #fff; border-color: #fff; color: var(--dark); }

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--dark);
}

.section-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: .5rem;
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--primary);
    letter-spacing: .1em;
}

.divider-gold {
    width: 48px; height: 2px;
    background: var(--primary);
    margin: .75rem 0 1.25rem;
}
.divider-gold.center { margin: .75rem auto 1.25rem; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HERO — 3-Column Noir-inspired
   ============================================= */
.hero {
    background: linear-gradient(to bottom, rgba(232,200,50,0.2) 0%, rgba(244,247,251,0.1) 70%, rgba(244,247,251,0) 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,200,50,.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-left  { padding: 60px 0; }
.hero-center { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 0; gap: 1.2rem; }
.hero-right  { padding: 60px 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; text-align: right; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--dark);
    background: rgba(232,200,50,.18);
    border: 1px solid rgba(232,200,50,.45);
    padding: .3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

.hero h1 { font-size: clamp(2.8rem, 4vw, 4.2rem); line-height: 1.08; font-weight: 500; color: var(--dark); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--primary); position: relative; }
.hero-desc { font-size: 1rem; color: var(--text-muted); max-width: 420px; line-height: 1.85; margin-bottom: 2.25rem; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 3rem; }

.hero-info-strip { display: flex; gap: 0; border-top: 1px solid rgba(30,58,95,.12); padding-top: 1.75rem; }
.hero-info-block { flex: 1; display: flex; flex-direction: column; gap: .3rem; }
.hero-info-label { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dark); opacity: .7; }
.hero-info-label i { color: var(--primary); margin-right: .3rem; }
.hero-info-value { font-size: .9rem; color: var(--text); line-height: 1.5; font-weight: 400; }
.hero-info-divider { width: 1px; background: rgba(30,58,95,.12); margin: 0 1.5rem; }

.hero-oval-wrap { position: relative; }
.hero-oval-wrap img {
    width: 100%; max-width: 400px; aspect-ratio: 3/4;
    object-fit: cover; border-radius: 300px; display: block;
    box-shadow: 0 30px 80px rgba(30,58,95,.18);
    border: 4px solid rgba(232,200,50,.35);
    position: relative; z-index: 1;
    transition: opacity .8s ease;
}
.hero-oval-wrap::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 300px;
    border: 1.5px solid rgba(232,200,50,.45);
    z-index: 0;
}

.hero-img-badge {
    position: absolute;
    bottom: 28px; left: -28px;
    background: var(--dark);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: .8rem 1.1rem;
    z-index: 2;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 8px 24px rgba(30,58,95,.25);
}
.hero-img-badge .badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: 1; color: var(--primary); font-weight: 600; display: block; }
.hero-img-badge .badge-lbl { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-top: .2rem; display: block; }

.hero-info-panel { background: none; border: none; border-radius: 0; padding: 0; box-shadow: none; width: 100%; text-align: right; }
.hero-panel-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .85rem; display: block; text-align: right; }
.hero-hours-row { display: flex; justify-content: space-between; flex-direction: row; font-size: .92rem; color: var(--text); line-height: 2; gap: 2rem; max-width: 300px; margin-left: auto; }
.hero-hours-day  { color: var(--text-muted); text-align: left; }
.hero-hours-time { text-align: right; }

.hero-panel-contact { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(30,58,95,.08); }
.hero-panel-contact a { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--dark); text-decoration: none; margin-bottom: .6rem; transition: color .2s; }
.hero-panel-contact a:hover { color: var(--primary); }
.hero-panel-contact i { color: var(--primary); font-size: 1rem; width: 18px; }

/* Hero slide dots */
.hero-slide-dots { display: flex; justify-content: center; gap: .5rem; position: relative; z-index: 2; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(30,58,95,.2); border: 1.5px solid rgba(30,58,95,.3); cursor: pointer; transition: all .3s; display: inline-block; }
.hero-dot.active { background: var(--primary); border-color: var(--primary); transform: scale(1.3); }

/* Hero entrance animations */
@keyframes hero-fade-left  { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hero-fade-right { from { opacity: 0; transform: translateX(30px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes hero-fade-up    { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: translateY(0); } }
.hero-animate-left  { animation: hero-fade-left .8s ease forwards; }
.hero-animate-right { animation: hero-fade-right .9s ease .2s both; }

/* Hero responsive */
@media (max-width: 1199.98px) {
    .hero-inner { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
    .hero-right { grid-column: 1 / -1; padding: 0 0 50px; align-items: flex-end; text-align: right; }
    .hero-info-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: right; }
}
@media (max-width: 991.98px) {
    .hero-inner { grid-template-columns: 1fr; grid-template-areas: "center" "left" "right"; min-height: auto; padding-top: 100px; gap: 0; }
    .hero-left   { order: 2; padding: 20px 0 10px; }
    .hero-center { order: 1; padding: 20px 0; }
    .hero-right  { order: 3; padding: 10px 0 50px; align-items: flex-start; text-align: left; }
    .hero-info-panel { text-align: left; grid-template-columns: 1fr; }
    .hero-panel-heading { text-align: left; }
    .hero-hours-row { flex-direction: row; margin-left: 0; }
    .hero-social-links { justify-content: center !important; }
    .hero-oval-wrap img { max-width: 300px; }
    .hero-oval-wrap::before { display: none; }
    .hero-info-divider { display: none; }
    .hero-info-block { min-width: 100%; }
    .hero-info-strip { flex-direction: column; gap: 1rem; }
}
@media (max-width: 575.98px) {
    .hero h1 { font-size: 2.4rem; }
    .hero-oval-wrap img { max-width: 300px; }
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
    background: var(--dark);
    overflow: hidden;
    padding: .85rem 0;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: #fff; padding: 0 2.5rem; white-space: nowrap; }
.marquee-item:nth-child(odd) { color: var(--primary); }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   BANNER STRIP
   ============================================= */
.banner-strip { position: relative; overflow: hidden; padding: 80px 20px; text-align: center; }
.banner-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/shutterstock_235640083.jpg') center/cover no-repeat;
    filter: brightness(.45);
    transform: scale(1.03);
    transition: transform 8s ease;
}
.banner-strip:hover::before { transform: scale(1.07); }
.banner-strip .content { position: relative; z-index: 1; }
.banner-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 2.2rem; text-shadow: 0 2px 20px rgba(0,0,0,.35); }

/* =============================================
   FEATURED SERVICES — Tilted Staggered Cards
   ============================================= */
.featured-services { padding: 100px 0 80px; background: var(--light); overflow: hidden; }

.svc-stagger-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: start; }
.svc-stagger-card { position: relative; border-radius: 16px; overflow: visible; background: #fff; box-shadow: 0 8px 32px rgba(30,58,95,.1); transition: transform .35s ease, box-shadow .35s ease; }
.svc-stagger-card:nth-child(odd)  { margin-top: 30px; }
.svc-stagger-card:hover { transform: translateY(-8px) !important; box-shadow: 0 24px 60px rgba(30,58,95,.18); z-index: 2; }
.svc-stagger-card::before { content: ''; position: absolute; top: -2px; left: -2px; width: 40px; height: 40px; border-top: 3px solid var(--primary); border-left: 3px solid var(--primary); border-radius: 16px 0 0 0; z-index: 3; transition: width .3s, height .3s; }
.svc-stagger-card::after  { content: ''; position: absolute; bottom: -2px; right: -2px; width: 40px; height: 40px; border-bottom: 3px solid var(--primary); border-right: 3px solid var(--primary); border-radius: 0 0 16px 0; z-index: 3; transition: width .3s, height .3s; }
.svc-stagger-card:hover::before, .svc-stagger-card:hover::after { width: 65px; height: 65px; }
.svc-stagger-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px 16px 0 0; display: block; }
.svc-stagger-body { padding: 1.4rem 1.5rem 1.75rem; }
.svc-stagger-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: rgba(232,200,50,.25); line-height: 1; margin-bottom: -.4rem; }
.svc-stagger-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--dark); margin-bottom: .6rem; }
.svc-stagger-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.1rem; }
.svc-stagger-link { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dark); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: color .2s, gap .2s; }
.svc-stagger-link:hover { color: var(--primary); gap: .7rem; }

@media (max-width: 991.98px) {
    .svc-stagger-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .svc-stagger-card:nth-child(odd), .svc-stagger-card:nth-child(even) { transform: none; margin-top: 0; }
}
@media (max-width: 575.98px) { .svc-stagger-grid { grid-template-columns: 1fr; } }

/* =============================================
   MENU SECTION
   ============================================= */
#menu { padding: 90px 0; background: linear-gradient(135deg, rgba(232,200,50,0.1) 0%, rgba(244,247,251,1) 45%, rgba(214,228,248,0.55) 100%); }
.menu-thumb { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; }
.menu-category-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--dark); letter-spacing: .08em; margin-bottom: 1rem; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: .7rem 0; border-bottom: 1px solid rgba(0,0,0,.08); gap: 1rem; }
.menu-item:last-child { border-bottom: none; }
.menu-item-name  { font-size: 1.05rem; font-weight: 400; color: var(--text); flex: 1; }
.menu-item-desc  { font-size: .88rem; color: var(--text-muted); margin-top: .2rem; }
.menu-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--dark); white-space: nowrap; }

.alt-section { padding: 70px 0; background: linear-gradient(135deg, rgba(214,228,248,0.6) 0%, rgba(244,247,251,1) 50%, rgba(232,200,50,0.07) 100%); }
.alt-section .menu-category-title { font-size: 1.5rem; }
#addons { background: linear-gradient(135deg, rgba(232,200,50,0.08) 0%, rgba(244,247,251,1) 45%, rgba(214,228,248,0.55) 100%) !important; }
.alt-note { font-size: .95rem; color: var(--text-muted); font-style: italic; }

@media (max-width: 767.98px) { .menu-thumb { height: 220px; margin-bottom: 2rem; } }

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section { padding: 90px 0; background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; cursor: zoom-in; aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: '\F52A'; font-family: 'Bootstrap-icons'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; background: rgba(18,37,64,.35); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }

.lb-backdrop { display: none; position: fixed; inset: 0; background: rgba(10,15,25,.92); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.lb-backdrop.active { display: flex; }
.lb-img-wrap { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-img-wrap img { max-width: 90vw; max-height: 85vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.6); display: block; }
.lb-close { position: fixed; top: 1.25rem; right: 1.5rem; font-size: 2rem; color: #fff; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .2s; background: none; border: none; z-index: 10000; }
.lb-close:hover { opacity: 1; }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); font-size: 2.2rem; color: #fff; cursor: pointer; opacity: .7; transition: opacity .2s; background: none; border: none; z-index: 10000; padding: .5rem 1rem; }
.lb-arrow:hover { opacity: 1; }
.lb-arrow.prev { left: 1rem; }
.lb-arrow.next { right: 1rem; }

@media (max-width: 991.98px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; } }

/* =============================================
   EXPERIENCE SECTION
   ============================================= */
.experience-section { padding: 90px 0; background: var(--light); }
.experience-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.stat-block  { text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--primary); line-height: 1; }
.stat-label  { font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 90px 0; background: #EEF2F7; }
.testimonial-card { background: var(--card-bg); padding: 2rem; border-radius: 4px; box-shadow: 0 2px 18px rgba(0,0,0,.05); height: 100%; }
.testimonial-card .stars { color: var(--primary); font-size: 1.1rem; }
.testimonial-card p { font-style: italic; font-size: 1.05rem; color: var(--text-muted); margin: 1rem 0; }
.testimonial-card .reviewer { display: flex; align-items: center; gap: .75rem; }
.testimonial-card .reviewer img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial-card .reviewer strong { font-size: 1rem; font-weight: 500; }

/* =============================================
   ABOUT PAGE — Hero
   ============================================= */
.about-hero { position: relative; height: 55vh; min-height: 420px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding-top: 72px; }
.about-hero::before { content: ''; position: absolute; inset: 0; background: url('../images/bg (2).jpg') center/cover no-repeat; filter: brightness(.48); }
.about-hero-content { position: relative; z-index: 2; text-align: center; }
.about-hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 600; color: #fff; letter-spacing: .04em; text-shadow: 0 4px 30px rgba(0,0,0,.25); margin: .25rem 0 .5rem; }
.about-hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; letter-spacing: .05em; margin: 0; }

/* =============================================
   ABOUT PAGE — Story Section
   ============================================= */
.story-section { padding: 100px 0; background: #fff; }
.story-img-wrap { position: relative; padding-bottom: 40px; padding-right: 30px; }
.story-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; display: block; }
.story-img-accent { position: absolute; width: 55%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; bottom: 0; right: 0; border: 6px solid #fff; box-shadow: 0 12px 40px rgba(30,58,95,.15); }
.story-badge { position: absolute; top: 24px; left: -20px; background: var(--dark); color: #fff; padding: 1rem 1.4rem; border-radius: 4px; text-align: center; box-shadow: 0 8px 24px rgba(30,58,95,.25); }
.story-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--primary); line-height: 1; }
.story-badge .lbl { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--footer-bg); color: var(--footer-text); padding: 70px 0 30px; }
footer h5 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; }
footer p, footer li, footer address { font-size: 1rem; color: var(--footer-text); line-height: 2; }
footer a { color: var(--footer-text); text-decoration: none; }
footer a:hover { color: var(--primary); }
footer .footer-logo { width: 150px; margin-bottom: 1rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; font-size: .9rem; margin-right: .4rem; transition: all .25s; }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 2rem 0 1.5rem; }
.footer-bottom  { font-size: .9rem; color: rgba(255,255,255,.35); }
.footer-map iframe { width: 100%; height: 160px; border: none; border-radius: 4px; opacity: .85; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767.98px) {
    .navbar-nav { padding: .5rem 0; }
    .story-img-accent { display: none; }
    .story-badge { left: 0; top: 12px; }
    .story-img-wrap { padding-bottom: 0; padding-right: 0; }
}