/* ================================================
   Netra Café — FULL CSS
   ================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Smooch:wght@400&display=swap');

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #080705;
    --bg-dark2: #100e0b;
    --bg-card: #161310;
    --bg-card2: #1c1916;
    --gold: #caac82;
    --gold-light: #e0c06e;
    --gold-pale: #f0dfa0;
    --gold-dim: rgba(201, 168, 76, 0.12);
    --gold-dim2: rgba(201, 168, 76, 0.22);
    --cream: #f5f0e8;
    --cream-dim: rgba(245, 240, 232, 0.65);
    --white: #ffffff;
    --text-body: #9a9080;
    --border: rgba(201, 168, 76, 0.16);
    --border-light: rgba(255, 255, 255, 0.06);
    --border-mid: rgba(201, 168, 76, 0.28);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-ui: 'Space Grotesk', system-ui, sans-serif;
    --font-hero: 'Bebas Neue', sans-serif;
    --nav-h: 100px;
    --nav-top-h: 28px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-pad {
    padding: 0 0 100px 0;
    background: #FDEFE4;
}

.dark-section {
    background: var(--bg-dark2);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid #000000;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-tag.light {
    color: var(--gold-light);
    border-color: rgba(224, 192, 110, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-title.light {
    color: var(--white);
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

/* ========================================
   SMOKE PARTICLE KEYFRAME (used by hero JS)
   ======================================== */
@keyframes smokeFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.65;
    }

    100% {
        transform: translateY(-220px) scale(2.2);
        opacity: 0;
    }
}

/* ════════════════════════════════════════════════
   NETRA CAFÉ — PREMIUM PAGE LOADER  (v3)
   Black bg · Gold logo · Steaming CSS cup
   ════════════════════════════════════════════════ */

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #080503;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1),
        visibility .7s cubic-bezier(.4, 0, .2, 1);
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ── Inner wrapper ── */
.ncl {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 420px;
    padding: 0 24px;
    user-select: none;
}

/* ── Radial warm glow ── */
.ncl__glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 55% at 50% 42%,
            rgba(200, 137, 42, .14) 0%,
            transparent 70%);
    animation: nclGlowPulse 3.5s ease-in-out infinite;
}

@keyframes nclGlowPulse {

    0%,
    100% {
        opacity: .7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* ── Dot grid ── */
.ncl__grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(200, 137, 42, .1) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .6;
}

/* ── Corner accents ── */
.ncl__corner {
    position: fixed;
    width: 56px;
    height: 56px;
    pointer-events: none;
}

.ncl__corner--tl {
    top: 28px;
    left: 28px;
    border-top: 1px solid rgba(200, 137, 42, .35);
    border-left: 1px solid rgba(200, 137, 42, .35);
}

.ncl__corner--tr {
    top: 28px;
    right: 28px;
    border-top: 1px solid rgba(200, 137, 42, .35);
    border-right: 1px solid rgba(200, 137, 42, .35);
}

.ncl__corner--bl {
    bottom: 28px;
    left: 28px;
    border-bottom: 1px solid rgba(200, 137, 42, .35);
    border-left: 1px solid rgba(200, 137, 42, .35);
}

.ncl__corner--br {
    bottom: 28px;
    right: 28px;
    border-bottom: 1px solid rgba(200, 137, 42, .35);
    border-right: 1px solid rgba(200, 137, 42, .35);
}

/* ── Scene (cup + steam + beans) ── */
.ncl__scene {
    position: relative;
    width: 180px;
    height: 200px;
    flex-shrink: 0;
    animation: nclSceneFloat 3.5s ease-in-out infinite;
    margin-bottom: -8px;
}

@keyframes nclSceneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ── Cup SVG ── */
.ncl__cup {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(200, 137, 42, .3)) drop-shadow(0 4px 12px rgba(0, 0, 0, .8));
    animation: nclCupIn .9s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes nclCupIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(24px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* ── Steam wisps ── */
.ncl__steams {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 90px;
    pointer-events: none;
}

.ncl__steam {
    position: absolute;
    bottom: 0;
    width: 6px;
    border-radius: 50px;
    background: linear-gradient(to top, rgba(200, 137, 42, .55), rgba(255, 255, 255, .12), transparent);
    animation: nclSteamRise 2.4s ease-in-out infinite;
    transform-origin: bottom center;
}

.ncl__steam--1 {
    left: 18px;
    height: 52px;
    animation-delay: 0s;
    animation-duration: 2.2s;
}

.ncl__steam--2 {
    left: 36px;
    height: 70px;
    animation-delay: .6s;
    animation-duration: 2.6s;
}

.ncl__steam--3 {
    left: 54px;
    height: 48px;
    animation-delay: 1.2s;
    animation-duration: 2.0s;
}

@keyframes nclSteamRise {
    0% {
        opacity: 0;
        transform: scaleX(1) translateY(0) rotate(-2deg);
    }

    20% {
        opacity: .75;
    }

    60% {
        opacity: .5;
        transform: scaleX(1.4) translateY(-40px) rotate(4deg);
    }

    100% {
        opacity: 0;
        transform: scaleX(.6) translateY(-80px) rotate(-6deg);
    }
}

/* ── Floating coffee beans ── */
.ncl__beans {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ncl__bean {
    position: absolute;
    width: 11px;
    height: 7px;
    background: #7a3e10;
    border-radius: 50%;
    opacity: 0;
    animation: nclBeanFloat linear infinite;
}

/* Bean crease line */
.ncl__bean::after {
    content: '';
    position: absolute;
    left: 1.5px;
    right: 1.5px;
    top: 50%;
    height: 1px;
    background: #3a1a06;
    transform: translateY(-50%);
    border-radius: 2px;
}

.ncl__bean--1 {
    left: 10px;
    bottom: 55px;
    --dur: 3.2s;
    --del: 0s;
    width: 10px;
    height: 6px;
}

.ncl__bean--2 {
    left: 55px;
    bottom: 60px;
    --dur: 4.1s;
    --del: .8s;
    width: 13px;
    height: 8px;
}

.ncl__bean--3 {
    right: 8px;
    bottom: 50px;
    --dur: 3.6s;
    --del: 1.5s;
    width: 9px;
    height: 5px;
}

.ncl__bean--4 {
    right: 40px;
    bottom: 70px;
    --dur: 4.8s;
    --del: 2.2s;
    width: 11px;
    height: 7px;
}

@keyframes nclBeanFloat {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }

    15% {
        opacity: .6;
    }

    85% {
        opacity: .35;
    }

    100% {
        opacity: 0;
        transform: translateY(-110px) rotate(360deg);
    }
}

.ncl__bean {
    animation-duration: var(--dur, 3.5s);
    animation-delay: var(--del, 0s);
}

/* ── Logo ── */
.ncl__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    animation: nclLogoIn .8s cubic-bezier(.16, 1, .3, 1) .15s both;
}

@keyframes nclLogoIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ncl__logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(200, 137, 42, .45));
    animation: nclLogoRotate 12s linear infinite;
}

@keyframes nclLogoRotate {
    0% {
        filter: drop-shadow(0 4px 16px rgba(200, 137, 42, .45));
    }

    50% {
        filter: drop-shadow(0 4px 24px rgba(200, 137, 42, .75));
    }

    100% {
        filter: drop-shadow(0 4px 16px rgba(200, 137, 42, .45));
    }
}

.ncl__logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 5px;
    color: #fff;
    line-height: .9;
}

.ncl__logo-name em {
    display: block;
    font-style: normal;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    letter-spacing: 8px;
    color: #c8892a;
    font-weight: 600;
    margin-top: 3px;
}

/* ── Progress bar ── */
.ncl__bar-wrap {
    width: 100%;
    max-width: 280px;
    animation: nclLogoIn .8s cubic-bezier(.16, 1, .3, 1) .3s both;
}

.ncl__bar-track {
    width: 100%;
    height: 2px;
    background: rgba(200, 137, 42, .18);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ncl__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c8892a, #e0c06e, #c8892a);
    background-size: 200% 100%;
    border-radius: 2px;
    transition: width .4s ease;
    animation: nclShimmer 2s linear infinite;
}

@keyframes nclShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.ncl__bar-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(200, 137, 42, .55);
    text-align: center;
    transition: opacity .3s;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion:reduce) {

    .ncl *,
    .ncl__glow,
    .ncl__steam,
    .ncl__bean,
    .ncl__cup,
    .ncl__logo,
    .ncl__bar-fill {
        animation: none !important;
        transition-duration: .01ms !important;
    }

    #page-loader.hidden {
        opacity: 0;
    }
}

/* Old canvas wrap — safe to remove but kept for fallback */
.loader-canvas-wrap {
    display: none !important;
}

/* ========================================
   NAVBAR
   ======================================== */
.nav-topbar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-light);
    height: var(--nav-top-h);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: opacity var(--transition), transform var(--transition);
}

.nav-topbar.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.nav-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-info span {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-info span i {
    color: var(--gold);
    font-size: 10px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-social a {
    font-size: 11px;
    color: var(--text-body);
    transition: color var(--transition);
}

.topbar-social a:hover {
    color: var(--gold);
}

.topbar-divider {
    width: 1px;
    height: 12px;
    background: var(--border-light);
}

.navbar {
    position: fixed;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 7, 5, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.4);
    top: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1580px;
    margin: 25px auto 0 auto;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    z-index: 10;
    padding: 0 20px;
}

.nav-logo-center img {
    height: 110px;
    width: 110px;
}

.nav-logo-center:hover img {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 6px 20px rgba(201, 168, 76, 0.45));
}

.logo-ornament {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-ornament-line {
    display: block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.logo-ornament-line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.logo-ornament-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.8;
}

.logo-tagline {
    font-family: var(--font-ui);
    font-size: 8.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    opacity: 0.75;
    text-align: center;
}

.nav-right-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-link-item {
    font-family: "Caviar Dreams";
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: var(--cream-dim);
    padding: 8px 15px;
    transition: color var(--transition), background var(--transition);
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link-item:hover {
    color: var(--gold);
    background: var(--gold-dim);
}

.nav-link-item.active {
    color: #caac82 !important;
    border-bottom: 1px solid #caac82;
    padding: 0 0 5px 0 !important;
    margin: 20px;
}

.nav-sep {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, transparent, var(--border-mid) 40%, var(--border-mid) 60%, transparent);
    margin: 0 8px;
    flex-shrink: 0;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-toggle .chev {
    font-size: 9px;
    transition: transform 0.22s;
    opacity: 0.6;
}

.nav-dropdown:hover .dropdown-toggle .chev {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    padding: 6px;
    min-width: 185px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(201, 168, 76, 0.1) inset;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 18px;
    width: 8px;
    height: 8px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-mid);
    border-left: 1px solid var(--border-mid);
    transform: rotate(45deg);
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--cream-dim);
    padding: 10px 13px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.dropdown-panel a:hover {
    background: var(--gold-dim2);
    color: var(--gold);
}

.dropdown-panel a i {
    width: 15px;
    color: var(--gold);
    opacity: 0.65;
    font-size: 12px;
    flex-shrink: 0;
}

.nav-cta {
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--bg-dark);
    background: var(--gold);
    padding: 11px 24px;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 14px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.nav-cta:hover::before {
    left: 140%;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 14px;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--nav-top-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: rgba(8, 7, 5, 0.99);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    max-height: calc(100vh - var(--nav-top-h) - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.navbar.scrolled~.mobile-menu {
    top: var(--nav-h);
}

.mobile-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo-row img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(201, 168, 76, 0.3));
}

.mobile-menu ul {
    padding: 8px 24px 28px;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--cream-dim);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.mobile-menu ul li a i {
    font-size: 12px;
    color: var(--gold);
    opacity: 0.7;
    width: 14px;
}

.mobile-sub-title {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 20px 0 6px;
    opacity: 0.75;
    font-weight: 700;
}

.mobile-menu .mobile-cta-wrap {
    padding: 20px 0 4px;
}

.mobile-cta {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--bg-dark) !important;
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 700;
    padding: 14px 0;
    border-radius: 30px;
    letter-spacing: 0.5px;
    border-bottom: none !important;
    transition: background var(--transition), box-shadow var(--transition) !important;
}

.mobile-cta:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
    padding-left: 0 !important;
}

/* ============================================
   Netra Café — New Navbar CSS
   File: navbar-new.css
   ============================================ */

/* ---------- ANNOUNCEMENT BAR ---------- */
.nc-announce {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #4a1e0a;
    height: 44px;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.nc-announce.nc-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.nc-announce-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nc-announce-icon {
    font-size: 15px;
    line-height: 1;
}

.nc-announce-inner p {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(245, 240, 232, 0.85);
    letter-spacing: 0.2px;
    margin: 0;
}

.nc-announce-inner p a {
    color: #e0c06e;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.2s;
}

.nc-announce-inner p a:hover {
    color: #fff;
}

/* ---------- NAVBAR ---------- */
.nc-nav {
    position: fixed;
    top: 44px;
    /* height of announce bar */
    left: 0;
    right: 0;
    z-index: 1050;
    height: 80px;
    background: #faf6f0;
    border-bottom: 1px solid rgba(139, 90, 43, 0.12);
    transition: top 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* When announce bar is hidden, nav slides up */
.nc-nav.nc-no-announce {
    top: 0;
}

/* When scrolled down */
.nc-nav.nc-scrolled {
    background: rgba(250, 246, 240, 0.97);
    box-shadow: 0 2px 24px rgba(80, 40, 10, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nc-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    gap: 24px;
}

/* ---------- LOGO ---------- */
.nc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nc-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nc-logo:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.nc-logo-name {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2c1206;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.1;
}

.nc-logo-name em {
    display: block;
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    font-weight: 600;
    color: #c8892a;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: italic;
}

/* ---------- PILL NAV (CoLabs style) ---------- */
.nc-pill-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #fff;
    border: 1px solid rgba(139, 90, 43, 0.14);
    border-radius: 100px;
    padding: 6px 8px;
    box-shadow: 0 1px 6px rgba(80, 40, 10, 0.07);
}

.nc-pill-link {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #5a3a1e;
    padding: 7px 14px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.22s ease, color 0.22s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.nc-pill-link:hover {
    background: rgba(200, 137, 42, 0.1);
    color: #c8892a;
}

.nc-pill-link.nc-pill-active {
    background: #c8892a;
    color: #fff;
    font-weight: 600;
}

.nc-chev {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.22s ease;
}

/* ---------- PAGES DROPDOWN ---------- */
.nc-dropdown {
    position: relative;
}

.nc-dropdown-toggle {
    font-family: 'Space Grotesk', system-ui, sans-serif;
}

.nc-dropdown:hover .nc-chev,
.nc-dropdown.nc-open .nc-chev {
    transform: rotate(180deg);
}

.nc-dropdown-panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid rgba(139, 90, 43, 0.14);
    border-radius: 16px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    box-shadow: 0 12px 40px rgba(80, 40, 10, 0.14);
    z-index: 10;
}

.nc-dropdown:hover .nc-dropdown-panel,
.nc-dropdown.nc-open .nc-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Arrow tip */
.nc-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #fff;
    border-top: 1px solid rgba(139, 90, 43, 0.14);
    border-left: 1px solid rgba(139, 90, 43, 0.14);
}

.nc-dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #5a3a1e;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.nc-dropdown-panel a:hover {
    background: rgba(200, 137, 42, 0.1);
    color: #c8892a;
}

.nc-dropdown-panel a i {
    font-size: 12px;
    color: #c8892a;
    opacity: 0.75;
    width: 14px;
    flex-shrink: 0;
}

/* ---------- RIGHT SIDE ---------- */
.nc-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ---------- CTA BUTTON ---------- */
.nc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    background: #c8892a;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.nc-cta-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nc-cta-btn:hover {
    background: #b57820;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 137, 42, 0.35);
}

.nc-cta-btn:hover i {
    transform: translateX(3px);
}

.nc-cta-full {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 15px;
}

/* ---------- HAMBURGER ---------- */
.nc-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid rgba(139, 90, 43, 0.2);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.nc-hamburger:hover {
    border-color: #c8892a;
    background: rgba(200, 137, 42, 0.06);
}

.nc-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #2c1206;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nc-hamburger.nc-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nc-hamburger.nc-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.3);
}

.nc-hamburger.nc-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */
.nc-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #faf6f0;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nc-mobile-menu.nc-open {
    transform: translateX(0);
}

.nc-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
    flex-shrink: 0;
}

.nc-mobile-close {
    background: none;
    border: 1px solid rgba(139, 90, 43, 0.18);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5a3a1e;
    font-size: 13px;
    transition: background 0.2s, border-color 0.2s;
}

.nc-mobile-close:hover {
    background: rgba(200, 137, 42, 0.1);
    border-color: #c8892a;
    color: #c8892a;
}

.nc-mobile-links {
    list-style: none;
    padding: 12px 16px;
    flex: 1;
    margin: 0;
}

.nc-mobile-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #3a1e08;
    padding: 13px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nc-mobile-links li a:hover {
    background: rgba(200, 137, 42, 0.1);
    color: #c8892a;
}

.nc-mobile-links li a i {
    font-size: 13px;
    color: #c8892a;
    opacity: 0.75;
    width: 16px;
    flex-shrink: 0;
}

.nc-mobile-sep {
    padding: 16px 14px 4px;
}

.nc-mobile-sep span {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8892a;
    font-weight: 700;
    opacity: 0.8;
}

.nc-mobile-footer {
    padding: 20px 16px 32px;
    border-top: 1px solid rgba(139, 90, 43, 0.1);
    flex-shrink: 0;
}

.nc-mobile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.nc-mobile-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: #7a5030;
}

.nc-mobile-info span i {
    color: #c8892a;
    font-size: 12px;
    width: 14px;
}

/* ---------- OVERLAY ---------- */
.nc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 10, 0, 0.45);
    z-index: 1150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.nc-overlay.nc-open {
    opacity: 1;
    visibility: visible;
}

/* ---------- BODY OFFSET (so content sits below fixed bars) ---------- */
body.nc-body-offset {
    padding-top: calc(44px + 76px);
    /* announce + nav */
}

body.nc-body-no-announce {
    padding-top: 76px;
}

/* ---------- RESPONSIVE ---------- */

/* Hide pill nav, show hamburger */
@media (max-width: 1100px) {
    .nc-pill-nav {
        display: none;
    }

    .nc-hamburger {
        display: flex;
    }
}

/* Tighten nav padding on tablet */
@media (max-width: 768px) {
    .nc-nav-inner {
        padding: 0 20px;
    }

    .nc-logo-name {
        font-size: 15px;
    }

    .nc-cta-btn:not(.nc-cta-full) {
        display: none;
    }
}

/* Announcement bar wraps on small screens */
@media (max-width: 600px) {
    .nc-announce {
        height: auto;
        min-height: 44px;
        padding: 8px 0;
    }

    .nc-announce-inner p {
        font-size: 12px;
    }

    .nc-announce-inner {
        padding-right: 44px;
    }

    /* Recalculate nav top */
    .nc-nav {
        top: 60px;
    }
}

@media (max-width: 360px) {
    .nc-announce-inner p {
        font-size: 11px;
    }

    .nc-mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   HERO NEW — Beanro-style Animated Hero
   ======================================== */
.bh {
    position: relative;
    width: 100%;
    /* min-height: 92vh; */
    background: #f0e6d8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* ---------- SUBTLE GRID TEXTURE ---------- */
.bh__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .07) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
    pointer-events: none;
}

/* ---------- RADIAL WARM GLOW ---------- */
.bh__glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, #e8d5b5 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 0;
    pointer-events: none;
}

/* ---------- STAMP ---------- */
.bh__stamp {
    position: absolute;
    right: 72px;
    top: 110px;
    width: 90px;
    height: 90px;
    z-index: 20;
    animation: bhStampSpin 30s linear infinite;
}

@keyframes bhStampSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- EYEBROW ---------- */
.bh__eyebrow {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 72px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #b8791a;
}

.bh__eyebrow .el {
    display: block;
    width: 34px;
    height: 1px;
    background: #b8791a;
    opacity: .5;
}

/* ---------- HEADLINE ---------- */
.bh__headline {
    position: relative;
    z-index: 10;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 9vw, 116px);
    color: #2b1506;
    letter-spacing: 4px;
    line-height: .9;
    text-align: center;
    margin-top: 14px;
    /* entrance animation */
    animation: bhHeadIn .9s cubic-bezier(.16, 1, .3, 1) both;
}

.bh__headline em {
    font-style: normal;
    color: #c8892a;
}

@keyframes bhHeadIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- SCENE AREA ---------- */
/* Everything (splash + cup) lives in this box */
.bh__scene {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 420px;
    margin-top: -30px;
    z-index: 5;
    flex-shrink: 0;
}

/* ---------- SPLASH IMAGE ---------- */
.bh__splash {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -46%);
    width: 88%;
    max-width: 1000px;
    height: auto;
    pointer-events: none;
    /* entrance */
    animation: bhSplashIn 1.1s cubic-bezier(.16, 1, .3, 1) .15s both,
        bhSplashFloat 5s ease-in-out 1.3s infinite;
    filter: drop-shadow(0 20px 60px rgba(160, 80, 20, .22));
}

@keyframes bhSplashIn {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -46%);
    }
}

@keyframes bhSplashFloat {

    0%,
    100% {
        transform: translate(-50%, -46%);
    }

    50% {
        transform: translate(-50%, -49%);
    }
}

/* ---------- CUP IMAGE ---------- */
.bh__cup {
    position: absolute;
    left: 50%;
    bottom: -18px;
    /* transform: translateX(-50%); */
    width: min(420px, 35vw);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    z-index: 8;
    pointer-events: none;
    animation: bhCupIn 1s cubic-bezier(.16, 1, .3, 1) .4s both,
        bhCupFloat 4.5s ease-in-out 1.5s infinite;
    filter: drop-shadow(0 30px 50px rgba(100, 50, 10, .28));
}

@keyframes bhCupIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px) rotate(-8deg) scale(.92);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) rotate(-8deg) scale(1);
    }
}

@keyframes bhCupFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateX(-50%) translateY(-10px) rotate(-8deg);
    }
}

/* ---------- SIDE LABELS ---------- */
.bh__label {
    position: absolute;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: bhLabelIn .8s ease .7s both;
}

@keyframes bhLabelIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bh__label.right {
    animation-name: bhLabelInR;
}

@keyframes bhLabelInR {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bh__label.left {
    left: 48px;
    bottom: 80px;
}

.bh__label.right {
    right: 48px;
    bottom: 80px;
    text-align: right;
}

.bh__label-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.bh__label.right .bh__label-icon {
    justify-content: flex-end;
}

.bh__label-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke-width: 2.8;
}

.bh__label-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: #ff8342;
    letter-spacing: 3px;
    font-weight: 400;
}

.bh__label-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #7a5030;
    line-height: 1.55;
    /* max-width: 150px; */
    font-weight: 700;
}

/* ---------- CTA ROW ---------- */
.bh__cta {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 16px;
    padding-bottom: 48px;
    flex-wrap: wrap;
    animation: bhCTAIn .7s ease .8s both;
}

@keyframes bhCTAIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bh__btn-fill {
    background: #c8892a;
    color: #fff;
    padding: 14px 38px;
    border-radius: 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .25s, transform .25s, box-shadow .25s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.bh__btn-fill:hover {
    background: #d9982f;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 137, 42, .32);
    color: #fff;
}

.bh__btn-ghost {
    background: transparent;
    color: #2b1506;
    border: 1.5px solid rgba(43, 21, 6, .3);
    padding: 14px 38px;
    border-radius: 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
    display: inline-block;
}

.bh__btn-ghost:hover {
    border-color: #c8892a;
    color: #c8892a;
    background: rgba(200, 137, 42, .06);
}

/* ---------- SCROLL HINT ---------- */
.bh__scroll {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bh__scroll span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #c8892a;
    opacity: .7;
}

.bh__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #c8892a, transparent);
    animation: bhScrollPulse 2s ease infinite;
}

@keyframes bhScrollPulse {

    0%,
    100% {
        opacity: .7;
        transform: scaleY(1);
    }

    50% {
        opacity: .3;
        transform: scaleY(.55);
    }
}

/* ---------- FLOATING COFFEE BEANS ---------- */
.bh__beans {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.bh__bean {
    position: absolute;
    width: 14px;
    height: 9px;
    border-radius: 50%;
    background: #7a3e10;
    opacity: 0;
    animation: bhBeanFloat linear infinite;
}

.bh__bean::after {
    content: '';
    position: absolute;
    left: 1px;
    right: 1px;
    top: 50%;
    height: 1.2px;
    background: #4a2008;
    transform: translateY(-50%);
    border-radius: 2px;
}

@keyframes bhBeanFloat {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }

    10% {
        opacity: .55;
    }

    90% {
        opacity: .45;
    }

    100% {
        opacity: 0;
        transform: translateY(-180px) rotate(360deg);
    }
}

/* ---------- PARALLAX DOTS ---------- */
.bh__dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 137, 42, .18);
    pointer-events: none;
    animation: bhDotPulse ease-in-out infinite;
}

@keyframes bhDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .18;
    }

    50% {
        transform: scale(1.6);
        opacity: .08;
    }
}

.hero-new {
    position: relative;
    min-height: 100vh;
    background: #f5ede0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(var(--nav-top-h) + var(--nav-h));
}

.hero-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, #e8d5b7 0%, #f5ede0 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    z-index: 0;
}

.hero-stamp {
    position: absolute;
    right: 60px;
    top: calc(var(--nav-top-h) + var(--nav-h) + 30px);
    z-index: 10;
    width: 95px;
    height: 95px;
}

.hero-text-block {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 36px;
    text-align: center;
}

.hero-eyebrow-new {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
    margin-bottom: 18px;
}

.hero-eyebrow-new .eline {
    display: block;
    width: 32px;
    height: 1px;
    background: #c8892a;
    opacity: 0.6;
}

.hero-main-title {
    font-family: var(--font-hero);
    font-size: clamp(52px, 8vw, 100px);
    color: #1e1007;
    letter-spacing: 5px;
    line-height: 0.95;
    margin-bottom: 16px;
}

.hero-main-title em {
    font-style: normal;
    color: #c8892a;
}

.hero-sub-new {
    font-family: var(--font-body);
    font-size: 15px;
    color: #7a5c3e;
    max-width: 400px;
    line-height: 1.75;
    margin: 0 auto;
}

.hero-canvas-wrap {
    position: relative;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    margin-top: -10px;
}

#heroSplashCanvas {
    display: block;
    width: 100%;
    max-width: 960px;
    height: auto;
}

.hero-side-label {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-side-label.left {
    left: 48px;
    bottom: 180px;
}

.hero-side-label.right {
    right: 48px;
    bottom: 190px;
    text-align: right;
}

.hero-side-label .sl-tag {
    font-family: var(--font-hero);
    font-size: 13px;
    color: #c8892a;
    letter-spacing: 2.5px;
}

.hero-side-label .sl-desc {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: #7a5c3e;
    line-height: 1.5;
    max-width: 140px;
}

.hero-watermark {
    font-family: var(--font-hero);
    font-size: clamp(64px, 14vw, 130px);
    color: rgba(44, 26, 14, 0.065);
    letter-spacing: 16px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
    margin-top: -30px;
    flex-wrap: wrap;
}

.hero-btn-gold {
    background: #c8892a;
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.hero-btn-gold:hover {
    background: #e09a35;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 137, 42, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: #2c1a0e;
    border: 1.5px solid rgba(44, 26, 14, 0.28);
    padding: 14px 34px;
    border-radius: 30px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.hero-btn-outline:hover {
    border-color: #c8892a;
    color: #c8892a;
    background: rgba(200, 137, 42, 0.06);
}

.hero-scroll-new {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-new span {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8892a;
    opacity: 0.75;
}

.hero-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, #c8892a, transparent);
    animation: scrollPulseNew 2s ease infinite;
}

@keyframes scrollPulseNew {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(0.6);
        opacity: 0.3;
    }
}

.ba {
    position: relative;
    background: #f0e6d8;
    overflow: hidden;
    padding: 50px 120px 0 120px;
}

/* subtle grid — same as hero */
.ba::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* vertical column lines — beanro signature */
.ba__cols {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 0;
    padding: 0 8%;
}

.ba__col-line {
    width: 1px;
    height: 100%;
    background: rgba(139, 90, 43, .1);
}

.ba__inner {
    position: relative;
}

/* ---------- EYEBROW ---------- */

.ba__eyebrow {
    position: absolute;
    top: -35px;
    /* adjust karo */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    font-family: "Smooch", cursive;
    /* athva bijo script font */
    font-size: 80px;
    font-weight: 400;
    color: #ff8342;
    letter-spacing: 2px;
    text-transform: none;
    margin: 0;
    line-height: 1;
}

/* ---------- BIG HEADLINE ---------- */
.ba__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: #4A1E0A;
    letter-spacing: 2px;
    line-height: .95;
    text-align: center;
    margin: 0 auto 72px;
    max-width: 1000px;
    font-weight: 600;
    animation: baHeadIn 1s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes baHeadIn {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* inline image inside headline */
.ba__inline-img {
    display: inline-block;
    width: clamp(48px, 6vw, 88px);
    height: clamp(48px, 6vw, 88px);
    object-fit: contain;
    vertical-align: middle;
    margin: 0 6px;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(100, 50, 10, .25));
    animation: baImgFloat 3.5s ease-in-out infinite;
    position: relative;
    top: -4px;
}

@keyframes baImgFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.ba__inline-bean {
    display: inline-block;
    width: clamp(36px, 4.5vw);
    height: clamp(36px, 4.5vw, 66px);
    object-fit: contain;
    vertical-align: middle;
    margin: 0 6px;
    filter: drop-shadow(0 3px 8px rgba(100, 50, 10, .3));
    animation: baImgFloat 4s ease-in-out .6s infinite;
    position: relative;
    top: -2px;
}

/* ---------- DIVIDER LINE ---------- */
.ba__divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 64px;
    max-width: 600px;
}

.ba__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 137, 42, .4), transparent);
}

.ba__divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8892a;
    flex-shrink: 0;
}

/* ---------- STATS ROW ---------- */
.ba__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 64px;
    border: 1px solid rgba(200, 137, 42, .2);
    border-radius: 20px;
    overflow: hidden;
}

.ba__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 40px 24px;
    background: rgba(255, 255, 255, .45);
    text-align: center;
    transition: background .3s;
    border-right: 1px solid rgba(200, 137, 42, .15);
}

.ba__stat:last-child {
    border-right: none;
}

.ba__stat:hover {
    background: rgba(200, 137, 42, .08);
}

.ba__stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    color: #2b1506;
    line-height: 1;
    letter-spacing: 2px;
}

.ba__stat-num em {
    font-style: normal;
    color: #c8892a;
}

.ba__stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7a5030;
}

/* ---------- BOTTOM GRID: text left + image right ---------- */
.ba__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 20px;
}

.ba__text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ba__sub-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
    border: 1px solid rgba(200, 137, 42, .35);
    padding: 6px 16px;
    border-radius: 30px;
    width: fit-content;
}

.ba__sub-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    color: #2b1506;
    letter-spacing: 2px;
    line-height: 1;
}

.ba__sub-title em {
    font-style: normal;
    color: #c8892a;
}

.ba__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: #7a5030;
    line-height: 1.8;
    max-width: 480px;
}

/* feature pills */
.ba__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.ba__feature {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(200, 137, 42, .1);
    border: 1px solid rgba(200, 137, 42, .22);
    border-radius: 30px;
    padding: 8px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #5a3010;
}

.ba__feature i {
    color: #c8892a;
    font-size: 12px;
}

/* CTA button */
.ba__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2b1506;
    color: #f5ede0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .25s, transform .25s, box-shadow .25s;
    width: fit-content;
    margin-top: 8px;
}

.ba__cta-link:hover {
    background: #c8892a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 137, 42, .3);
}

.ba__cta-link span {
    display: inline-block;
    transition: transform .25s;
}

.ba__cta-link:hover span {
    transform: translateX(4px);
}

/* ---------- IMAGE side ---------- */
.ba__img-wrap {
    position: relative;
}

.ba__img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(100, 50, 10, .18));
}

/* floating badge on image */
.ba__img-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: #fff;
    border: 1px solid rgba(200, 137, 42, .2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(44, 21, 6, .14);
    min-width: 210px;
}

.ba__badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 137, 42, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c8892a;
    flex-shrink: 0;
}

.ba__badge-text strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2b1506;
}

.ba__badge-text span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #7a5030;
}

/* top-right floating cup image */
.ba__img-float {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(100, 50, 10, .25));
    animation: baImgFloat 4s ease-in-out infinite;
}

/* =============================================
   POPULAR FLAVORS — Modern Minimal
   ============================================= */
.pf-section {
    background: #fff;
    padding: 70px 40px;
}

.pf-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.pf-section__eyebrow span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
}

.pf-section__eyebrow-line {
    width: 32px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.pf-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    color: #1a0a00;
    text-align: center;
    letter-spacing: 1px;
}

.pf-section__sub {
    text-align: center;
    font-size: 14px;
    color: #7a5030;
    margin-bottom: 44px;
}

.pf-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pf-section__card {
    background: #faf6f0;
    border: 1px solid rgba(139, 90, 43, .1);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
    text-align: center;
}

.pf-section__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .09);
    transform: translateY(-4px);
}

.pf-section__img-wrap {
    background: #faf7f4;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pf-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.pf-section__card:hover .pf-section__video {
    transform: scale(1.05);
}

.pf-section__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #c8892a;
    padding: 4px 12px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: .5px;
}

.pf-section__body {
    padding: 18px 20px 22px;
}

.pf-section__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a0a00;
    margin-bottom: 8px;
}

.pf-section__tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pf-section__tag {
    font-size: 11px;
    color: #7a5030;
    background: #f0e6d8;
    font-weight: 500;
    border-radius: 20px;
    padding: 3px 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.pf-section__desc {
    font-size: 13.5px;
    color: #7a5030;
    line-height: 1.65;
    margin-bottom: 16px;
}

.pf-section__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pf-section__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a0a00;
}

.pf-section__order-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    background: #c8892a;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .22s, transform .22s;
    border: none;
    cursor: pointer;
}

.pf-section__order-btn:hover {
    background: rgba(200, 137, 42, .2);
    color: #c8892a;
}

/* =============================================
   GALLERY SLIDER SECTION
   ============================================= */
.gl-section {
    background: #4a1e0a;
    padding: 64px 40px 72px;
}

.gl-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.gl-eyebrow span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.7);
}

.gl-eyebrow-line {
    width: 32px;
    height: 1px;
    background: rgba(245, 237, 224, 0.4);
}

.gl-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 44px;
}

.gl-slider-wrap {
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.gl-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gl-slide {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    position: relative;
}

.gl-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gl-slide:hover img {
    transform: scale(1.06);
}

.gl-slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(74, 30, 10, 0.78);
    padding: 14px 18px;
    color: #f5ede0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gl-slide:hover .gl-slide-label {
    transform: translateY(0);
}

.gl-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.gl-arr {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 237, 224, 0.3);
    background: transparent;
    color: #f5ede0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.gl-arr:hover {
    background: #c8892a;
    border-color: #c8892a;
}

.gl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.gl-dots .sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 237, 224, 0.25);
    cursor: pointer;
    transition: all 0.25s;
}

.gl-dots .sl-dot.active {
    background: #c8892a;
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   REVIEWS SLIDER SECTION
   ============================================= */
.rv-section {
    background: #faf6f0;
    padding: 64px 40px 72px;
}

.rv-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.rv-eyebrow span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
}

.rv-eyebrow-line {
    width: 32px;
    height: 1px;
    background: #c8892a;
    opacity: 0.5;
}

.rv-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: #1a0a00;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rv-sub {
    text-align: center;
    font-size: 14px;
    color: #7a5030;
    margin-bottom: 44px;
}

.rv-slider-wrap {
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.rv-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rv-stars {
    color: #c8892a;
    font-size: 16px;
    letter-spacing: 2px;
}

.rv-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: #5a3a1e;
    line-height: 1.75;
    flex: 1;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0e8dc;
    padding-top: 14px;
}

.rv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5ede0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #c8892a;
    flex-shrink: 0;
}

.rv-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2b1506;
}

.rv-handle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #7a5030;
    margin-top: 2px;
}

.rv-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.rv-arr {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 137, 42, 0.3);
    background: transparent;
    color: #c8892a;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.rv-arr:hover {
    background: #c8892a;
    border-color: #c8892a;
    color: #fff;
}

.rv-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.rv-dots .sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 137, 42, 0.25);
    cursor: pointer;
    transition: all 0.25s;
}

.rv-dots .sl-dot.active {
    background: #c8892a;
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   PROMO BANNER SECTION
   ============================================= */
.nc-promo {
    background: #f5ede0;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.nc-promo__grid {
    background-image:
        linear-gradient(rgba(139, 90, 43, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nc-promo__cup {
    position: absolute;
    bottom: -10px;
    width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(100, 50, 10, .22));
    pointer-events: none;
    animation: ncCupFloat 4s ease-in-out infinite;
}

.nc-promo__cup.left {
    left: 40px;
    transform: rotate(-8deg);
    --r: -8deg;
}

.nc-promo__cup.right {
    right: 40px;
    transform: rotate(8deg);
    --r: 8deg;
    animation-delay: 1.5s;
}

@keyframes ncCupFloat {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, -8deg));
    }

    50% {
        transform: translateY(-12px) rotate(var(--r, -8deg));
    }
}

.nc-promo__center {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.nc-promo__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nc-promo__tag::before,
.nc-promo__tag::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #c8892a;
    opacity: .55;
}

.nc-promo__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    line-height: .92;
    letter-spacing: 2px;
    color: #fff;
    background: #4a1e0a;
    padding: 18px 40px 22px;
    border-radius: 14px;
}

.nc-promo__headline em {
    font-style: normal;
    color: #ff9f52;
}

.nc-promo__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: #7a5030;
    line-height: 1.7;
    max-width: 380px;
}

.nc-promo__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c8892a;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .25s, transform .25s, box-shadow .25s;
    margin-top: 4px;
}

.nc-promo__btn:hover {
    background: #d9982f;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200, 137, 42, .32);
    color: #fff;
}

/* ================================================
           NETRA CAFÉ — COMPLETE MENU CSS
           ================================================ */

/* ── Hero ── */
.mn-hero {
    background: #2b1506;
    position: relative;
    overflow: hidden;
    padding: 80px 40px 60px;
    text-align: center;
}

.mn-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.mn-hero__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, #e8d5b5 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    pointer-events: none;
}

.mn-hero__eyebrow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
}

.mn-hero__eyebrow span {
    display: block;
    width: 30px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.mn-hero__title {
    position: relative;
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 10vw, 120px);
    color: #fff;
    letter-spacing: 4px;
    line-height: .9;
    margin-bottom: 20px;
}

.mn-hero__title em {
    font-style: normal;
    color: #c8892a;
}

.mn-hero__sub {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-style: italic;
    color: rgba(245, 237, 224, .7);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
}

/* ── Sticky Tabs ── */
.mn-tabs-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid rgba(139, 90, 43, .12);
    box-shadow: 0 2px 16px rgba(80, 40, 10, .07);
}

.mn-tabs {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.mn-tabs::-webkit-scrollbar {
    display: none;
}

.mn-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #7a5030;
    padding: 18px 18px;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color .22s, border-color .22s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    letter-spacing: .3px;
}

.mn-tab:hover {
    color: #c8892a;
}

.mn-tab.active {
    color: #c8892a;
    border-bottom-color: #c8892a;
}

.mn-tab-icon {
    font-size: 15px;
    line-height: 1;
}

/* ── Filter Bar ── */
.mn-filter-bar {
    background: #faf6f0;
    border-bottom: 1px solid rgba(139, 90, 43, .08);
    padding: 14px 40px;
}

.mn-filter-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(139, 90, 43, .18);
    border-radius: 30px;
    padding: 8px 16px;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.mn-search svg {
    width: 15px;
    height: 15px;
    stroke: #c8892a;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.mn-search input {
    border: none;
    outline: none;
    background: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #2b1506;
    width: 100%;
}

.mn-search input::placeholder {
    color: #b09070;
}

.mn-filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mn-pill {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #7a5030;
    background: #fff;
    border: 1px solid rgba(139, 90, 43, .2);
    border-radius: 30px;
    padding: 7px 14px;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .3px;
}

.mn-pill:hover,
.mn-pill.active {
    background: #c8892a;
    color: #fff;
    border-color: #c8892a;
}

/* ── Body ── */
.mn-body {
    background: #fff;
    min-height: 60vh;
}

.mn-section {
    display: none;
    max-width: 1300px;
    margin: 0 auto;
    padding: 52px 40px 80px;
}

.mn-section.active {
    display: block;
}

/* ── Section Head ── */
.mn-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(139, 90, 43, .1);
    padding-bottom: 18px;
    gap: 12px;
    flex-wrap: wrap;
}

.mn-sec-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #1a0a00;
    text-align: center;
    letter-spacing: 1px;
}

.mn-sec-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c8892a;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 4px;
}

/* ── Sub Label ── */
.mn-sub-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 36px 0 18px;
}

.mn-sub-label span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
    white-space: nowrap;
}

.mn-sub-label-line {
    flex: 1;
    height: 1px;
    background: rgba(200, 137, 42, .18);
}

/* ================================================
           DRINK CARDS — 3-column grid
           ================================================ */
.mn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mn-card {
    background: #faf6f0;
    border: 1px solid rgba(139, 90, 43, .1);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}

.mn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(74, 30, 10, .13);
}

.mn-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.mn-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.mn-card:hover .mn-card__img {
    transform: scale(1.06);
}

/* video support */
.mn-card__video {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.mn-card:hover .mn-card__video {
    transform: scale(1.06);
}

/* Badges */
.mn-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 4px 11px;
    border-radius: 30px;
    background: #fff;
    color: #c8892a;
    border: 1px solid rgba(200, 137, 42, .2);
}

.mn-card__badge.bestseller {
    background: #c8892a;
    color: #fff;
    border-color: #c8892a;
}

.mn-card__badge.new-badge {
    background: #4a1e0a;
    color: #f5ede0;
    border-color: #4a1e0a;
}

.mn-card__badge.seasonal {
    background: #7a3010;
    color: #f5ede0;
    border-color: #7a3010;
}

.mn-card__badge.veg {
    background: #e8f5e8;
    color: #2d6a2d;
    border-color: rgba(45, 106, 45, .2);
    top: auto;
    left: auto;
    right: 12px;
    bottom: 12px;
}

.mn-card__body {
    padding: 16px 18px 18px;
}

.mn-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a0a00;
    margin-bottom: 6px;
}

.mn-card__tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.mn-card__tag {
    font-size: 11px;
    color: #7a5030;
    background: #f0e6d8;
    border-radius: 20px;
    padding: 3px 9px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.mn-card__desc {
    font-size: 13.5px;
    color: #7a5030;
    line-height: 1.65;
    margin-bottom: 14px;
}

.mn-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mn-card__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a0a00;
}

.mn-card__price sup {
    font-size: 11px;
    font-weight: 600;
    vertical-align: super;
}

.mn-card__add {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    background: #c8892a;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .22s, transform .22s;
    border: none;
    cursor: pointer;
}

.mn-card__add:hover {
    background: #b57820;
    transform: translateY(-1px);
    color: #fff;
}

/* ================================================
           FOOD CARDS (Pizza / Pasta) — 4-column grid
           ================================================ */
.mn-grid-food {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mn-card-food {
    background: #fff;
    border: 1px solid rgba(139, 90, 43, .1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.mn-card-food:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(74, 30, 10, .13);
}

.mn-card-food__img-wrap {
    position: relative;
    height: 185px;
    overflow: hidden;
    flex-shrink: 0;
}

.mn-card-food__img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform .5s ease;
}

.mn-card-food:hover .mn-card-food__img {
    transform: scale(1.07);
}

/* dim overlay on food images */
.mn-card-food__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(20, 5, 0, .3) 100%);
    pointer-events: none;
}

.mn-card-food__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 3px 10px;
    border-radius: 30px;
    background: #fff;
    color: #c8892a;
    border: 1px solid rgba(200, 137, 42, .2);
}

.mn-card-food__badge.bestseller {
    background: #c8892a;
    color: #fff;
    border-color: #c8892a;
}

.mn-card-food__badge.new-badge {
    background: #4a1e0a;
    color: #f5ede0;
    border-color: #4a1e0a;
}

.mn-card-food__badge.veg {
    background: #e8f5e8;
    color: #2d6a2d;
    border-color: rgba(45, 106, 45, .2);
    left: auto;
    right: 10px;
}

.mn-card-food__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mn-card-food__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a0a00;
    margin-bottom: 5px;
    line-height: 1.3;
}

.mn-card-food__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #7a5030;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.mn-card-food__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.mn-card-food__sizes {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.mn-card-food__size-pair {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-right: 8px;
}

.mn-card-food__size-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #b09070;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mn-card-food__size-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #c8892a;
}

.mn-card-food__price-solo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a0a00;
}

.mn-card-food__btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #c8892a;
    padding: 8px 14px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .22s, transform .22s;
    white-space: nowrap;
    flex-shrink: 0;
}

.mn-card-food__btn:hover {
    background: #b57820;
    transform: translateY(-1px);
    color: #fff;
}

/* ================================================
           SANDWICH / BITES — Horizontal cards
           ================================================ */
.mn-grid-h {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mn-card-h {
    background: #fff;
    border: 1px solid rgba(139, 90, 43, .1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: transform .3s, box-shadow .3s;
}

.mn-card-h:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(74, 30, 10, .1);
}

.mn-card-h__img-wrap {
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    min-height: 120px;
}

.mn-card-h__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.mn-card-h:hover .mn-card-h__img {
    transform: scale(1.08);
}

.mn-card-h__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: #c8892a;
    color: #fff;
}

.mn-card-h__body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.mn-card-h__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a0a00;
    margin-bottom: 4px;
}

.mn-card-h__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #7a5030;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 10px;
}

.mn-card-h__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mn-card-h__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a0a00;
}

.mn-card-h__btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #c8892a;
    background: rgba(200, 137, 42, .1);
    border: none;
    border-radius: 20px;
    padding: 7px 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    display: inline-block;
}

.mn-card-h__btn:hover {
    background: rgba(200, 137, 42, .22);
    color: #c8892a;
}

/* ================================================
           SEASONAL — Featured + Cards
           ================================================ */
.mn-featured {
    background: #4a1e0a;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
}

.mn-featured__img {
    width: 100%;
    height: 380px;
    /* 280 → 380 */
    object-fit: cover;
    object-position: center top;
    /* top part focus */
    display: block;
}

.mn-featured__body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.mn-featured__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff9f52;
}

.mn-featured__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(30px, 3.5vw, 46px);
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
}

.mn-featured {
    grid-template-columns: 1.2fr 1fr;
    /* 1fr 1fr → 1.2fr 1fr */
}

.mn-featured__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: rgba(245, 237, 224, .75);
    line-height: 1.7;
    max-width: 320px;
}

.mn-featured__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #c8892a;
}

.mn-featured__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c8892a;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    width: fit-content;
    transition: background .25s, transform .25s;
}

.mn-featured__btn:hover {
    background: #d9982f;
    transform: translateY(-2px);
    color: #fff;
}

/* ── Empty State ── */
.mn-empty {
    text-align: center;
    padding: 80px 20px;
    display: none;
}

.mn-empty.show {
    display: block;
}

.mn-empty svg {
    width: 56px;
    height: 56px;
    stroke: rgba(200, 137, 42, .4);
    stroke-width: 1.5;
    fill: none;
    margin: 0 auto 18px;
}

.mn-empty p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: #b09070;
}

/* ── CTA Banner ── */
.mn-cta {
    background: #f0e6d8;
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mn-cta__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(139, 90, 43, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 90, 43, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.mn-cta__eyebrow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
}

.mn-cta__eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.mn-cta__title {
    position: relative;
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    color: #2b1506;
    letter-spacing: 3px;
}

.mn-cta__title em {
    font-style: normal;
    color: #c8892a;
}

.mn-cta__sub {
    position: relative;
    z-index: 2;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #7a5030;
    margin-bottom: 28px;
}

.mn-cta__btns {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.mn-cta__btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c8892a;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .25s, transform .25s, box-shadow .25s;
    margin-top: 4px;
}

.mn-cta__btn-fill:hover {
    background: #d9982f;
    transform: translateY(-2px);
    color: #fff;
}

.mn-cta__btn-ghost {
    background: transparent;
    color: #2b1506;
    border: 1.5px solid rgba(43, 21, 6, .25);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all .25s;
    display: inline-block;
}

.mn-cta__btn-ghost:hover {
    border-color: #c8892a;
    color: #c8892a;
    background: rgba(200, 137, 42, .06);
}

.mn-feat-new {
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 420px;
    margin-bottom: 32px;
}

.mn-feat-new__img-side {
    position: relative;
    overflow: hidden;
    background: #1a0800;
}

.mn-feat-new__img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.mn-feat-new__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, rgba(43, 21, 6, 0.6) 100%);
}

.mn-feat-new__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 159, 82, 0.15);
    border: 1px solid rgba(255, 159, 82, 0.45);
    border-radius: 30px;
    padding: 6px 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff9f52;
}

.mn-feat-new__limited {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(26, 8, 0, 0.72);
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mn-feat-new__limited span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(245, 237, 224, 0.85);
    letter-spacing: .5px;
}

.mn-feat-new__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff9f52;
    animation: featDotBlink 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes featDotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

.mn-feat-new__body {
    background: #2b1506;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.mn-feat-new__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff9f52;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mn-feat-new__tag::before,
.mn-feat-new__tag::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: #ff9f52;
    opacity: .5;
}

.mn-feat-new__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    color: #fff;
    letter-spacing: 3px;
    line-height: .93;
}

.mn-feat-new__divider {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mn-feat-new__divider-line {
    flex: 1;
    height: 1px;
    background: rgba(200, 137, 42, .25);
}

.mn-feat-new__divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c8892a;
    flex-shrink: 0;
}

.mn-feat-new__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: rgba(245, 237, 224, .72);
    line-height: 1.8;
    max-width: 290px;
}

.mn-feat-new__pills {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.mn-feat-new__pill {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #c8892a;
    background: rgba(200, 137, 42, .1);
    border: 1px solid rgba(200, 137, 42, .22);
    border-radius: 20px;
    padding: 5px 11px;
}

.mn-feat-new__foot {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 4px;
}

.mn-feat-new__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #c8892a;
}

.mn-feat-new__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c8892a;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .25s, transform .25s;
}

.mn-feat-new__btn:hover {
    background: #d9982f;
    transform: translateY(-2px);
    color: #fff;
}

/* =============================================
   OUR STORY PAGE — Netra Café
   ============================================= */

/* ── HERO ── */
.os-hero {
    background: #2b1506;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}

.os-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 232, 210, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 232, 210, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.os-hero__glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 137, 42, .18) 0%, transparent 65%);
    top: -200px;
    right: -160px;
    pointer-events: none;
}

.os-hero__glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 137, 42, .1) 0%, transparent 65%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

/* Diagonal split between dark hero and cream body */
.os-hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: #f0e6d8;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

.os-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    width: 100%;
}

.os-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
}

.os-hero__eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.os-hero__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 9vw, 116px);
    color: #fff;
    letter-spacing: 3px;
    line-height: .9;
    margin-bottom: 28px;
}

.os-hero__headline em {
    font-style: normal;
    color: #c8892a;
    display: block;
}

.os-hero__tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-style: italic;
    color: rgba(245, 237, 224, .7);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
}

/* Floating year stamp top-right */
.os-hero__stamp {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 110px;
    height: 110px;
    border: 1.5px solid rgba(200, 137, 42, .35);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    animation: osStampSpin 40s linear infinite;
}

.os-hero__stamp-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: #c8892a;
    letter-spacing: 2px;
    line-height: 1;
}

.os-hero__stamp-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(200, 137, 42, .7);
}

@keyframes osStampSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── OPENING STATEMENT ── */
.os-open {
    background: #f0e6d8;
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
}

.os-open__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.os-open__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.os-open__quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-style: italic;
    color: #2b1506;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 24px;
}

.os-open__quote em {
    font-style: normal;
    color: #c8892a;
}

.os-open__attr {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8892a;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.os-open__attr::before,
.os-open__attr::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #c8892a;
    opacity: .4;
}

/* ── TIMELINE ── */
.os-timeline {
    background: #fff;
    padding: 80px 40px 80px;
}

.os-timeline__head {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.os-timeline__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
    margin-bottom: 8px;
}

.os-timeline__eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.os-timeline__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 56px);
    color: #2b1506;
    letter-spacing: 2px;
    line-height: 1;
}

/* The timeline itself */
.os-tl {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Central spine */
.os-tl::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(200, 137, 42, .3) 8%, rgba(200, 137, 42, .3) 92%, transparent);
    transform: translateX(-50%);
}

.os-tl__item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    margin-bottom: 64px;
    position: relative;
}

.os-tl__item:last-child {
    margin-bottom: 0;
}

/* left side = text, right = image (alternates) */
.os-tl__item.reverse .os-tl__text {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding: 0 0 0 40px;
}

.os-tl__item.reverse .os-tl__media {
    grid-column: 1;
    grid-row: 1;
    padding: 0 40px 0 0;
}

.os-tl__item.reverse .os-tl__node {
    grid-column: 2;
    grid-row: 1;
}

.os-tl__text {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding: 0 40px 0 0;
}

.os-tl__node {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
    z-index: 2;
}

.os-tl__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c8892a;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1.5px #c8892a;
    flex-shrink: 0;
}

.os-tl__media {
    grid-column: 3;
    grid-row: 1;
    padding: 0 0 0 40px;
}

.os-tl__year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: #c8892a;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
}

.os-tl__label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2b1506;
    margin-bottom: 10px;
    line-height: 1.2;
}

.os-tl__body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #7a5030;
    line-height: 1.8;
    max-width: 340px;
    margin-left: auto;
}

.os-tl__item.reverse .os-tl__body {
    margin-left: 0;
}

.os-tl__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    filter: sepia(12%) contrast(1.04);
}

.os-tl__img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    background: #f0e6d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(200, 137, 42, .2);
    letter-spacing: 3px;
}

/* ── FOUNDER SECTION ── */
.os-founder {
    background: #4a1e0a;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.os-founder__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 232, 210, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 232, 210, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.os-founder__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.os-founder__img-side {
    position: relative;
}

.os-founder__img {
    width: 100%;
    /* aspect-ratio: 3/4; */
    object-fit: cover;
    border-radius: 20px;
    display: block;
    filter: sepia(10%) contrast(1.05);
}

.os-founder__img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    background: rgba(245, 232, 210, .08);
    border: 1px solid rgba(200, 137, 42, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(200, 137, 42, .3);
}

/* floating name card */
.os-founder__namecard {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #c8892a;
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.os-founder__namecard strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.os-founder__namecard span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
}

.os-founder__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.os-founder__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff9f52;
}

.os-founder__eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: #ff9f52;
    opacity: .5;
}

.os-founder__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    color: #fff;
    letter-spacing: 2px;
    line-height: .95;
}

.os-founder__title em {
    font-style: normal;
    color: #c8892a;
    display: block;
}

.os-founder__quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
    color: rgba(245, 237, 224, .8);
    line-height: 1.65;
    border-left: 3px solid #c8892a;
    padding-left: 18px;
}

.os-founder__body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: rgba(245, 237, 224, .65);
    line-height: 1.85;
}

.os-founder__sig {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-style: italic;
    color: #c8892a;
    font-weight: 600;
}

/* ── VALUES ── */
.os-values {
    background: #f0e6d8;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.os-values__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.os-values__head {
    max-width: 1200px;
    margin: 0 auto 52px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.os-values__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
}

.os-values__eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.os-values__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    color: #2b1506;
    letter-spacing: 2px;
    line-height: 1;
}

.os-values__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.os-val-card {
    background: #fff;
    border: 1px solid rgba(200, 137, 42, .12);
    border-radius: 20px;
    padding: 36px 30px;
    transition: transform .3s, box-shadow .3s;
}

.os-val-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(74, 30, 10, .1);
}

.os-val-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200, 137, 42, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.os-val-card__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    color: #c8892a;
    letter-spacing: 3px;
    margin-bottom: 8px;
    opacity: .7;
}

.os-val-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2b1506;
    margin-bottom: 12px;
    line-height: 1.2;
}

.os-val-card__body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: #7a5030;
    line-height: 1.8;
}

/* ── TEAM ── */
.os-team {
    background: #fff;
    padding: 80px 40px;
}

.os-team__head {
    max-width: 1200px;
    margin: 0 auto 52px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.os-team__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
    margin-bottom: 8px;
}

.os-team__eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.os-team__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    color: #2b1506;
    letter-spacing: 2px;
    line-height: 1;
}

.os-team__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.os-team-card {
    background: #faf6f0;
    border: 1px solid rgba(139, 90, 43, .1);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.os-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(74, 30, 10, .1);
}

.os-team-card__img-wrap {
    height: auto;
    overflow: hidden;
    position: relative;
    background: #f0e6d8;
}

.os-team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(8%) contrast(1.04);
    transition: transform .5s;
}

.os-team-card:hover .os-team-card__img {
    transform: scale(1.06);
}

.os-team-card__placeholder .os-founder__img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    /* display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px; */
}

.os-team-card__body {
    padding: 18px 20px 20px;
}

.os-team-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a0a00;
    margin-bottom: 4px;
}

.os-team-card__role {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: #c8892a;
    font-weight: 500;
    margin-bottom: 10px;
}

.os-team-card__bio {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: #7a5030;
    line-height: 1.65;
}

/* ── MILESTONES / STATS STRIP ── */
.os-stats {
    background: #2b1506;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
}

.os-stats__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 137, 42, .14) 0%, transparent 65%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.os-stats__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border: 1px solid rgba(200, 137, 42, .18);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.os-stat {
    padding: 44px 32px;
    background: rgba(255, 255, 255, .03);
    border-right: 1px solid rgba(200, 137, 42, .12);
    text-align: center;
    transition: background .3s;
}

.os-stat:last-child {
    border-right: none;
}

.os-stat:hover {
    background: rgba(200, 137, 42, .07);
}

.os-stat__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    color: #c8892a;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
}

.os-stat__num em {
    font-style: normal;
    color: rgba(200, 137, 42, .6);
    font-size: 0.6em;
}

.os-stat__label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 237, 224, .5);
}

/* ── CTA ── */
.os-cta {
    background: #f0e6d8;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.os-cta__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.os-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.os-cta__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8892a;
}

.os-cta__eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: #c8892a;
    opacity: .5;
}

.os-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    color: #2b1506;
    letter-spacing: 3px;
    line-height: .95;
    margin-bottom: 16px;
}

.os-cta__title em {
    font-style: normal;
    color: #c8892a;
}

.os-cta__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #7a5030;
    line-height: 1.75;
    margin-bottom: 32px;
}

.os-cta__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.os-cta__btn-fill {
    background: #c8892a;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .25s, transform .25s;
    display: inline-block;
    letter-spacing: .3px;
}

.os-cta__btn-fill:hover {
    background: #d9982f;
    transform: translateY(-2px);
    color: #fff;
}

.os-cta__btn-ghost {
    background: transparent;
    color: #2b1506 !important;
    border: 1.5px solid rgba(43, 21, 6, .25);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: all .25s;
    display: inline-block;
}

.os-cta__btn-ghost:hover {
    border-color: #c8892a;
    color: #c8892a;
    background: rgba(200, 137, 42, .06);
}

/* ── SCROLL REVEAL ── */
.os-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.os-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.os-reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .65s ease, transform .65s ease;
}

.os-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.os-reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.os-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
       NETRA CAFÉ — SERVICES PAGE  (Rebuilt)
       Sections: Hero → What We Offer → Deep Dives → Ticker
                 → Events → Gallery → FAQ → CTA
       Removed: Reviews slider
       Added:   Gallery / Instagram grid
       Hero:    Full-viewport cinematic overlay with floating card
       ================================================================ */

/* ── reset ── */
.sv *,
.sv *::before,
.sv *::after {
    box-sizing: border-box;
}

.sv a {
    text-decoration: none;
    color: inherit;
}

.sv img,
.sv video {
    max-width: 100%;
    display: block;
}

.sv button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ── design tokens ── */
.sv {
    --gold: #c8892a;
    --gold2: #e0a040;
    --gold-dim: rgba(200, 137, 42, .12);
    --gold-dim2: rgba(200, 137, 42, .22);
    --gold-bdr: rgba(200, 137, 42, .18);
    --espy: #2b1506;
    --brown: #4a1e0a;
    --cream: #f5ede0;
    --cream2: #faf6f0;
    --muted: #7a5030;
    --white10: rgba(255, 255, 255, .08);
    --white20: rgba(255, 255, 255, .18);
    --cream60: rgba(245, 237, 224, .6);
    --cream40: rgba(245, 237, 224, .4);
    --cream20: rgba(245, 237, 224, .2);

    --ff-h: 'Bebas Neue', sans-serif;
    --ff-s: 'Cormorant Garamond', Georgia, serif;
    --ff-b: 'DM Sans', system-ui, sans-serif;
    --ff-u: 'Space Grotesk', system-ui, sans-serif;

    --r: 16px;
    --r-lg: 22px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ── scroll reveal ── */
.sv .sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.sv .sr.sl {
    transform: translateX(-28px);
}

.sv .sr.sr-r {
    transform: translateX(28px);
}

.sv .sr.d1 {
    transition-delay: .1s;
}

.sv .sr.d2 {
    transition-delay: .2s;
}

.sv .sr.d3 {
    transition-delay: .3s;
}

.sv .sr.d4 {
    transition-delay: .4s;
}

.sv .sr.visible {
    opacity: 1;
    transform: translate(0);
}

/* ── eyebrow label ── */
.sv .ew {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-u);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.sv .ew::before,
.sv .ew::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
    opacity: .45;
    display: block;
}

.sv .ew.accent {
    color: #ff9f52;
}

.sv .ew.accent::before,
.sv .ew.accent::after {
    background: #ff9f52;
}

/* ─────────────────────────────────────────────────────────
       1.  HERO — cinematic full-viewport overlay
       ───────────────────────────────────────────────────────── */
.sv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--espy);
}

/* Background image layer */
.sv-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sv-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(18%) contrast(1.1) brightness(.55);
}

/* layered overlays */
.sv-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* dot grid texture */
.sv-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(rgba(200, 137, 42, .16) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* watermark */
.sv-hero__wm {
    position: absolute;
    z-index: 1;
    right: -20px;
    bottom: 60px;
    font-family: var(--ff-h);
    font-size: clamp(80px, 12vw, 180px);
    line-height: 1;
    letter-spacing: 6px;
    color: rgba(200, 137, 42, .05);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* golden glow top-right */
.sv-hero__glow {
    position: absolute;
    z-index: 1;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(200, 137, 42, .18) 0%, transparent 65%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: .7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

/* main content area */
.sv-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 48px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: flex-end;
    gap: 60px;
}

/* left — headline block */
.sv-hero__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sv-hero__pre {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sv-hero__pre-line {
    width: 36px;
    height: 1.5px;
    background: var(--gold);
}

.sv-hero__pre-txt {
    font-family: var(--ff-u);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.sv-hero__h1 {
    font-family: var(--ff-h);
    font-size: clamp(72px, 9.5vw, 116px);
    line-height: .87;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 22px;
    animation: heroIn .9s var(--ease-out) both;
}

.sv-hero__h1 em {
    font-style: normal;
    color: var(--gold);
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-hero__sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-style: italic;
    color: rgba(245, 237, 224, .7);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 36px;
}

.sv-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.sv-hero__btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: #fff;
    font-family: var(--ff-u);
    font-size: 13px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 100px;
    letter-spacing: .3px;
    transition: background .25s, transform .25s, box-shadow .25s;
}

.sv-hero__btn-fill:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(200, 137, 42, .4);
    color: #fff;
}

.sv-hero__btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    color: var(--cream60);
    border: 1px solid var(--cream20);
    font-family: var(--ff-u);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 100px;
    transition: all .25s;
    backdrop-filter: blur(6px);
}

.sv-hero__btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* stat strip */
.sv-hero__stats {
    display: flex;
    gap: 36px;
    border-top: 1px solid var(--gold-bdr);
    padding-top: 24px;
}

.sv-hero__stat-num {
    font-family: var(--ff-h);
    font-size: 38px;
    color: var(--gold);
    letter-spacing: 1.5px;
    line-height: 1;
}

.sv-hero__stat-lbl {
    font-family: var(--ff-u);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 237, 224, .32);
    margin-top: 4px;
}

/* right — floating info card */
.sv-hero__card {
    background: rgba(26, 8, 0, .62);
    border: 1px solid var(--gold-bdr);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: cardIn 1.1s var(--ease-out) .2s both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-hero__card-title {
    font-family: var(--ff-u);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.sv-hero__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200, 137, 42, .1);
}

.sv-hero__feature:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.sv-hero__feat-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-dim2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    transition: background .25s, transform .25s;
}

.sv-hero__feature:hover .sv-hero__feat-ico {
    background: var(--gold);
    color: #fff;
    transform: scale(1.06);
}

.sv-hero__feat-name {
    font-family: var(--ff-u);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.sv-hero__feat-sub {
    font-family: var(--ff-b);
    font-size: 12px;
    color: var(--cream40);
    margin-top: 3px;
    line-height: 1.5;
}

/* live badge inside card */
.sv-hero__live {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 137, 42, .08);
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid var(--gold-dim2);
}

.sv-hero__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.sv-hero__live-txt {
    font-family: var(--ff-u);
    font-size: 11px;
    font-weight: 600;
    color: var(--cream60);
    letter-spacing: .5px;
}

.sv-hero__live-txt strong {
    color: #fff;
}

/* scroll cue */
.sv-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sv-hero__scroll-txt {
    font-family: var(--ff-u);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream40);
}

.sv-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
    animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: .6;
    }

    50% {
        transform: scaleY(.4);
        opacity: 1;
    }
}

/* wave */
.sv-hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 5;
    height: 60px;
    background: var(--cream2);
    clip-path: ellipse(54% 100% at 50% 100%);
}

/* ─────────────────────────────────────────────────────────
       2.  WHAT WE OFFER — 4 cards
       ───────────────────────────────────────────────────────── */
.sv-offer {
    background: var(--cream2);
    padding: 48px 100px 100px;
    position: relative;
    overflow: hidden;
}

.sv-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .05) 1px, transparent 1px);
    background-size: 48px 48px;
}

.sv-offer__inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    z-index: 1;
}

.sv-offer__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.sv-offer__title {
    font-family: var(--ff-h);
    font-size: clamp(40px, 5vw, 64px);
    color: var(--espy);
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 10px;
}

.sv-offer__sub {
    font-family: var(--ff-b);
    font-size: 14px;
    color: var(--muted);
    max-width: 300px;
    line-height: 1.85;
    text-align: right;
}

.sv-offer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* offer card */
.sv-oc {
    background: #fff;
    border: 1px solid var(--gold-bdr);
    border-radius: var(--r-lg);
    padding: 32px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.sv-oc::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease);
}

.sv-oc:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(74, 30, 10, .13);
}

.sv-oc:hover::before {
    transform: scaleX(1);
}

.sv-oc__ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    transition: background .3s, transform .35s, color .3s;
}

.sv-oc:hover .sv-oc__ico {
    background: var(--gold);
    color: #fff;
    transform: rotate(-8deg) scale(1.07);
}

.sv-oc__num {
    font-family: var(--ff-h);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 3px;
    opacity: .65;
}

.sv-oc__name {
    font-family: var(--ff-u);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--espy);
    line-height: 1.2;
}

.sv-oc__desc {
    font-family: var(--ff-b);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.82;
    flex: 1;
}

.sv-oc__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ff-u);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 4px;
    transition: gap .25s;
}

.sv-oc:hover .sv-oc__link {
    gap: 14px;
}

/* ─────────────────────────────────────────────────────────
       3.  DEEP DIVE — alternating split rows
       ───────────────────────────────────────────────────────── */
.sv-deep {
    background: #fff;
}

.sv-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 560px;
    border-bottom: 1px solid rgba(139, 90, 43, .08);
}

.sv-row.alt {
    grid-template-columns: 1fr 1.15fr;
}

.sv-row.alt .sv-row__img {
    order: 2;
}

.sv-row.alt .sv-row__body {
    order: 1;
    background: var(--espy);
}

.sv-row__img {
    position: relative;
    overflow: hidden;
    background: #1a0800;
}

.sv-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(10%) contrast(1.06) brightness(.95);
    transition: transform .8s var(--ease);
}

.sv-row:hover .sv-row__img img {
    transform: scale(1.04);
}

.sv-row__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(43, 21, 6, .35) 0%, transparent 55%);
    pointer-events: none;
}

.sv-row__itag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(200, 137, 42, .14);
    border: 1px solid rgba(200, 137, 42, .45);
    border-radius: 30px;
    padding: 5px 14px;
    font-family: var(--ff-u);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.sv-row.alt .sv-row__itag {
    left: auto;
    right: 20px;
}

.sv-row__chip {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(26, 8, 0, .74);
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-row.alt .sv-row__chip {
    left: auto;
    right: 20px;
}

.sv-row__chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff9f52;
    animation: chipDot 1.8s ease-in-out infinite;
}

@keyframes chipDot {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.sv-row__chip span {
    font-family: var(--ff-u);
    font-size: 10px;
    font-weight: 600;
    color: var(--cream60);
    letter-spacing: .4px;
}

.sv-row__body {
    background: var(--cream2);
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.sv-row__title {
    font-family: var(--ff-h);
    font-size: clamp(34px, 3.5vw, 52px);
    color: var(--espy);
    letter-spacing: 2px;
    line-height: .95;
    margin-top: 8px;
}

.sv-row.alt .sv-row__title {
    color: #fff;
}

.sv-row__title em {
    font-style: normal;
    color: var(--gold);
    display: block;
}

.sv-row__divider {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 160px;
}

.sv-row__divider-line {
    flex: 1;
    height: 1px;
    background: rgba(200, 137, 42, .22);
}

.sv-row__divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.sv-row__desc {
    font-family: var(--ff-b);
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.88;
    max-width: 370px;
}

.sv-row.alt .sv-row__desc {
    color: rgba(245, 237, 224, .6);
}

.sv-row__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sv-row__pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ff-u);
    font-size: 11px;
    font-weight: 600;
    color: #5a3010;
    background: var(--gold-dim);
    border: 1px solid var(--gold-dim2);
    border-radius: 30px;
    padding: 6px 13px;
}

.sv-row.alt .sv-row__pill {
    color: var(--cream60);
    background: rgba(200, 137, 42, .1);
}

.sv-row__pill i {
    color: var(--gold);
    font-size: 11px;
}

.sv-row__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: var(--espy);
    color: var(--cream);
    font-family: var(--ff-u);
    font-size: 12.5px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 100px;
    letter-spacing: .3px;
    transition: background .25s, transform .25s, box-shadow .25s;
}

.sv-row.alt .sv-row__cta {
    background: var(--gold);
    color: #fff;
}

.sv-row__cta:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 137, 42, .3);
}

.sv-row.alt .sv-row__cta:hover {
    background: var(--gold2);
}

.sv-row__cta-arr {
    transition: transform .25s;
}

.sv-row__cta:hover .sv-row__cta-arr {
    transform: translateX(5px);
}

/* ─────────────────────────────────────────────────────────
       4.  MARQUEE TICKER
       ───────────────────────────────────────────────────────── */
.sv-tick {
    background: var(--gold);
    overflow: hidden;
    padding: 16px 0;
    white-space: nowrap;
}

.sv-tick__tr {
    display: inline-flex;
    animation: tickRun 28s linear infinite;
}

.sv-tick__tr:hover {
    animation-play-state: paused;
}

@keyframes tickRun {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.sv-tick__item {
    font-family: var(--ff-h);
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--espy);
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sv-tick__item i {
    font-size: 14px;
    opacity: .6;
}

/* ─────────────────────────────────────────────────────────
       5.  EVENTS
       ───────────────────────────────────────────────────────── */
.sv-ev {
    background: var(--brown);
    padding: 96px 48px;
    position: relative;
    overflow: hidden;
}

.sv-ev::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 232, 210, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 232, 210, .04) 1px, transparent 1px);
    background-size: 52px 52px;
}

.sv-ev__inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.sv-ev__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.sv-ev__title {
    font-family: var(--ff-h);
    font-size: clamp(38px, 5vw, 62px);
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 10px;
}

.sv-ev__sub {
    font-family: var(--ff-b);
    font-size: 14px;
    color: var(--cream40);
    max-width: 300px;
    line-height: 1.78;
    text-align: right;
}

.sv-ev__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* event card */
.sv-ec {
    background: var(--white10);
    border: 1px solid var(--gold-bdr);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}

.sv-ec:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .4);
    border-color: rgba(200, 137, 42, .5);
}

.sv-ec__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--ease);
    filter: sepia(14%) contrast(1.06);
}

.sv-ec:hover .sv-ec__img {
    transform: scale(1.06);
}

.sv-ec__body {
    padding: 22px 20px 24px;
}

.sv-ec__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sv-ec__tag {
    font-family: var(--ff-u);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(200, 137, 42, .25);
    border-radius: 20px;
    padding: 3px 10px;
}

.sv-ec__date {
    font-family: var(--ff-u);
    font-size: 10px;
    font-weight: 600;
    color: var(--cream40);
    letter-spacing: .4px;
}

.sv-ec__title {
    font-family: var(--ff-u);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 8px;
}

.sv-ec__desc {
    font-family: var(--ff-b);
    font-size: 12.98px;
    color: rgba(245, 237, 224, .55);
    line-height: 1.78;
    margin-bottom: 16px;
}

.sv-ec__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(200, 137, 42, .14);
    padding-top: 13px;
}

.sv-ec__seats {
    font-family: var(--ff-u);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--cream40);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sv-ec__seats i {
    color: var(--gold);
}

.sv-ec__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-u);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(200, 137, 42, .25);
    border-radius: 30px;
    padding: 7px 15px;
    transition: background .22s, color .22s;
}

.sv-ec__btn:hover {
    background: var(--gold);
    color: #fff;
}

/* ─────────────────────────────────────────────────────────
       6.  GALLERY / INSTAGRAM GRID  (NEW)
       ───────────────────────────────────────────────────────── */
.sv-gallery {
    background: var(--cream);
    padding: 96px 48px;
    position: relative;
    overflow: hidden;
}

.sv-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .05) 1px, transparent 1px);
    background-size: 44px 44px;
}

.sv-gallery__inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.sv-gallery__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.sv-gallery__title {
    font-family: var(--ff-h);
    font-size: clamp(38px, 5vw, 62px);
    color: var(--espy);
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 10px;
}

.sv-gallery__ig-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-u);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    border: 1.5px solid var(--gold-bdr);
    border-radius: 100px;
    padding: 10px 22px;
    transition: background .25s, color .25s, border-color .25s;
}

.sv-gallery__ig-link:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.sv-gallery__ig-link i {
    font-size: 15px;
}

/* Masonry-style grid */
.sv-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 10px;
}

/* layout: cell 1 spans 2 cols + 2 rows (big feature), rest fill */
.sv-gc {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    background: var(--espy);
}

.sv-gc:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.sv-gc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(8%) contrast(1.06);
    transition: transform .7s var(--ease), filter .5s;
}

.sv-gc:hover img {
    transform: scale(1.07);
    filter: sepia(0%) contrast(1.1) brightness(1.05);
}

/* hover overlay */
.sv-gc__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 21, 6, .8) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.sv-gc:hover .sv-gc__overlay {
    opacity: 1;
}

.sv-gc__caption {
    font-family: var(--ff-u);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .4px;
}

.sv-gc__sub {
    font-family: var(--ff-b);
    font-size: 11px;
    color: var(--cream60);
    margin-top: 3px;
}

/* Instagram icon badge top-right */
.sv-gc__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(26, 8, 0, .6);
    border-radius: 9px;
    padding: 6px 10px;
    font-family: var(--ff-u);
    font-size: 10px;
    font-weight: 600;
    color: var(--cream60);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(4px);
}

.sv-gc:hover .sv-gc__badge {
    opacity: 1;
}

.sv-gc__badge i {
    color: var(--gold);
}

/* ─────────────────────────────────────────────────────────
       7.  FAQ — sticky sidebar + accordion
       ───────────────────────────────────────────────────────── */
.sv-faq {
    background: #2b1506;
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.sv-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 90, 43, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 90, 43, .06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.sv-faq__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.sv-faq__left {
    position: sticky;
    top: 100px;
}

.sv-faq__title {
    font-family: var(--ff-h);
    font-size: clamp(42px, 5vw, 64px);
    color: #fff;
    letter-spacing: 2px;
    line-height: .92;
    margin-top: 12px;
    margin-bottom: 14px;
}

.sv-faq__title em {
    font-style: normal;
    color: var(--gold);
    display: block;
}

.sv-faq__sub {
    font-family: var(--ff-b);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.sv-faq__img-wrap {
    position: relative;
}

.sv-faq__img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    filter: sepia(10%) contrast(1.05);
}

.sv-faq__badge {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: var(--gold);
    border-radius: 14px;
    padding: 15px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 152px;
}

.sv-faq__badge-num {
    font-family: var(--ff-h);
    font-size: 34px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
}

.sv-faq__badge-lbl {
    font-family: var(--ff-u);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

/* accordion */
.sv-acc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-ai {
    background: #fff;
    border: 1px solid var(--gold-bdr);
    border-radius: var(--r);
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}

.sv-ai.open {
    box-shadow: 0 8px 30px rgba(74, 30, 10, .1);
    border-color: rgba(200, 137, 42, .35);
}

.sv-ai__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    cursor: pointer;
    gap: 14px;
    user-select: none;
}

.sv-ai__q {
    font-family: var(--ff-u);
    font-size: 14px;
    font-weight: 600;
    color: var(--espy);
    line-height: 1.3;
}

.sv-ai__ico {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--muted);
    flex-shrink: 0;
    transition: background .25s, border-color .25s, transform .38s, color .25s;
}

.sv-ai.open .sv-ai__ico {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: rotate(45deg);
}

.sv-ai__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .42s ease;
}

.sv-ai__body.open {
    max-height: 320px;
}

.sv-ai__ans {
    font-family: var(--ff-b);
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.82;
    padding: 0 22px 20px;
}

/* ─────────────────────────────────────────────────────────
       8.  CTA BANNER
       ───────────────────────────────────────────────────────── */
.sv-cta {
    background: #f0e6d8;
    padding: 110px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* radial glow */
.sv-cta::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 137, 42, .16) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* dot grid */
.sv-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(200, 137, 42, .14) 1px, transparent 1px);
    background-size: 30px 30px;
}

.sv-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sv-cta__title {
    font-family: var(--ff-h);
    font-size: clamp(52px, 8vw, 96px);
    color: #2b1506;
    letter-spacing: 3px;
    line-height: .88;
    margin-top: 14px;
}

.sv-cta__title em {
    font-style: normal;
    color: var(--gold);
    display: block;
}

.sv-cta__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #7a5030;
    line-height: 1.78;
    max-width: 420px;
}

.sv-cta__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.sv-cta__fill {
    background: var(--gold);
    color: #fff;
    font-family: var(--ff-u);
    font-size: 13.5px;
    font-weight: 700;
    padding: 15px 42px;
    border-radius: 100px;
    letter-spacing: .3px;
    display: inline-block;
    transition: background .25s, transform .25s, box-shadow .25s;
}

.sv-cta__fill:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(200, 137, 42, .4);
    color: #fff;
}

.sv-cta__ghost {
    background: transparent;
    color: var(--cream60);
    border: 1.5px solid var(--cream20);
    font-family: var(--ff-u);
    font-size: 13.5px;
    font-weight: 600;
    padding: 15px 42px;
    border-radius: 100px;
    display: inline-block;
    transition: all .25s;
}

.sv-cta__ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}


/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--bg-dark);
    background: var(--gold);
    padding: 14px 34px;
    border-radius: 30px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--cream);
    background: transparent;
    border: 1px solid rgba(245, 240, 232, 0.38);
    padding: 14px 34px;
    border-radius: 30px;
    transition: all var(--transition);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.35);
    padding: 14px 28px;
    border-radius: 30px;
    transition: all var(--transition);
}

.btn-ghost-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #4a1e0a;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    opacity: 0.95;
}

.footer-bg-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: auto;
    mix-blend-mode: screen;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    border-top: 1px solid var(--border-light);
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 20px;
    color: #f0e6d8;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #f0e6d8;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #c8892a;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: #c8892a;
    border-color: var(--gold);
    color: #f0e6d8;
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8892a;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 18px;
    color: #f0e6d8;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact p,
.footer-hours p {
    font-size: 18px;
    color: #f0e6d8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i,
.footer-hours p i {
    color: #c8892a;
    margin-top: 7px;
    font-size: 15px;
    flex-shrink: 0;
}

.footer-hours {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 20px;
    color: #f0e6d8;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 18px;
    color: #f0e6d8;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========================================
   LOADER BREAKPOINTS
   ======================================== */
@media (min-width: 1920px) {
    .loader-canvas-wrap {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .loader-canvas-wrap {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .loader-canvas-wrap {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .loader-canvas-wrap {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 599px) {
    .loader-canvas-wrap {
        width: 140px;
        height: 140px;
        max-width: 65vw;
        max-height: 65vw;
    }
}

@media (max-width: 380px) {
    .loader-canvas-wrap {
        width: 100px;
        height: 100px;
        max-width: 60vw;
        max-height: 60vw;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .ambiance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bg-img {
        width: 70%;
        opacity: 0.18;
    }

    .mn-grid-food {
        grid-template-columns: repeat(3, 1fr);
    }

    .sv-offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-ev__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 200px;
    }

    .sv-gallery__grid .sv-gc:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .sv-faq__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sv-faq__left {
        position: static;
    }

    .sv-faq__img-wrap {
        max-width: 440px;
    }

    .sv-hero__inner {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }
}

@media (max-width: 1024px) {

    .nav-left,
    .nav-right-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo-center {
        position: static;
        transform: none;
        margin: 20px 0 20px 0;
        padding: 0;
    }

    .about-grid,
    .dish-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .img-accent,
    .about-badge {
        display: none;
    }

    .about-text {
        padding-left: 0;
    }

    .menu-tab-content {
        grid-template-columns: 1fr;
    }

    .menu-img-side {
        width: 100%;
        position: static;
    }

    .menu-img-side img {
        height: 240px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .bh__label {
        display: none;
    }

    .bh__scene {
        height: 360px;
    }

    .ba__bottom {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ba__img-float {
        display: none;
    }

    .ba__img-badge {
        left: 0;
    }

    .mn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mn-grid-food {
        grid-template-columns: repeat(2, 1fr);
    }

    .mn-featured {
        grid-template-columns: 1fr;
    }

    .mn-featured__img {
        height: 220px;
    }

    .os-tl::before {
        left: 28px;
    }

    .os-tl__item,
    .os-tl__item.reverse {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
    }

    .os-tl__node {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
        padding-top: 6px;
    }

    .os-tl__text,
    .os-tl__item.reverse .os-tl__text {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding: 0 0 0 20px;
    }

    .os-tl__media,
    .os-tl__item.reverse .os-tl__media {
        grid-column: 2;
        grid-row: 2;
        padding: 16px 0 0 20px;
    }

    .os-tl__body {
        margin-left: 0;
        max-width: 100%;
    }

    .os-founder__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .os-founder__img-side {
        max-width: 440px;
        margin: 0 auto;
    }

    .os-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-stat {
        border-bottom: 1px solid rgba(200, 137, 42, .12);
    }

    .sv-hero__inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 32px 72px;
    }

    .sv-hero__card {
        display: none;
    }

    .sv-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sv-row.alt {
        grid-template-columns: 1fr;
    }

    .sv-row.alt .sv-row__img {
        order: 0;
    }

    .sv-row.alt .sv-row__body {
        order: 0;
    }

    .sv-row__img {
        height: 300px;
    }

    .sv-row__body {
        padding: 44px 36px;
    }

    .sv-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 180px 180px;
    }

    .sv-gallery__grid .sv-gc:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 80px;
        --nav-top-h: 24px;
    }

    .section-pad {
        padding: 70px 0;
    }

    .container {
        padding: 0 20px;
    }

    .ambiance-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stats {
        gap: 24px;
    }

    .video-thumb img {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bg-img {
        width: 100%;
        opacity: 0.12;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-stamp {
        width: 72px;
        height: 72px;
        right: 16px;
    }

    .hero-side-label {
        display: none;
    }

    .hero-bg-circle {
        width: 420px;
        height: 420px;
    }

    .hero-cta-row {
        margin-top: -50px;
    }

    .hero-watermark {
        bottom: 50px;
    }

    .dish-img-wrap img {
        height: 340px;
    }

    .topbar-info span:not(:first-child) {
        display: none;
    }

    .bh__stamp {
        width: 66px;
        height: 66px;
        right: 14px;
        top: 82px;
    }

    .bh__scene {
        height: 280px;
        margin-top: -20px;
    }

    .bh__cup {
        width: min(340px, 55vw);
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .bh__splash {
        width: 110%;
    }

    .bh__cta {
        margin-top: 8px;
    }

    .bh__glow {
        width: 500px;
        height: 500px;
    }

    .ba {
        padding: 72px 0 90px;
    }

    .ba__inner {
        padding: 0 20px;
    }

    .ba__stats {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .ba__stat {
        border-right: none;
        border-bottom: 1px solid rgba(200, 137, 42, .15);
    }

    .ba__stat:last-child {
        border-bottom: none;
    }

    .ba__img-badge {
        display: none;
    }

    .ba__cols {
        display: none;
    }

    .pf-section__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sb-section__panel {
        grid-template-columns: 1fr 1fr;
    }

    .sb-section__head {
        grid-template-columns: 1fr;
    }

    .pf-section__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gl-slide {
        flex: 0 0 calc(50% - 10px);
    }

    .rv-card {
        flex: 0 0 calc(50% - 10px);
    }

    .nc-promo__cup {
        width: 150px;
    }

    .nc-promo__cup.left {
        left: 10px;
    }

    .nc-promo__cup.right {
        right: 10px;
    }

    .mn-hero {
        padding: 56px 20px 40px;
    }

    .mn-section {
        padding: 36px 16px 60px;
    }

    .mn-filter-bar {
        padding: 12px 16px;
    }

    .mn-tabs {
        padding: 0 12px;
    }

    .mn-tab {
        padding: 14px 12px;
        font-size: 12px;
    }

    .mn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .mn-grid-food {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .mn-grid-h {
        grid-template-columns: 1fr;
    }

    .mn-cta {
        padding: 48px 20px;
    }

    .mn-feat-new {
        grid-template-columns: 1fr;
    }

    .mn-feat-new__img-side {
        height: 260px;
    }

    .mn-feat-new__body {
        padding: 28px 24px;
    }

    .os-hero__inner {
        padding: 80px 20px 60px;
    }

    .os-hero__stamp {
        width: 80px;
        height: 80px;
        top: 20px;
        right: 20px;
    }

    .os-hero__stamp-year {
        font-size: 22px;
    }

    .os-open,
    .os-timeline,
    .os-founder,
    .os-values,
    .os-team,
    .os-stats,
    .os-cta {
        padding: 56px 20px;
    }

    .os-values__grid {
        grid-template-columns: 1fr;
    }

    .os-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-offer,
    .sv-ev,
    .sv-gallery,
    .sv-faq,
    .sv-cta {
        padding: 68px 20px;
    }

    .sv-offer__head,
    .sv-ev__head,
    .sv-gallery__head {
        flex-direction: column;
    }

    .sv-offer__sub,
    .sv-ev__sub {
        text-align: left;
        max-width: 100%;
    }

    .sv-ev__grid {
        grid-template-columns: 1fr;
    }

    .sv-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 160px 160px 160px;
    }

    .sv-hero__h1 {
        font-size: clamp(60px, 17vw, 90px);
    }

    .sv-hero__stats {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media(max-width:540px) {
    .sv-offer__grid {
        grid-template-columns: 1fr;
    }

    .sv-gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sv-faq__badge {
        right: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-top-h: 0px;
    }

    .nav-topbar {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-gold,
    .hero-btn-outline {
        width: 240px;
        text-align: center;
    }

    .hero-scroll-new {
        display: none;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .tab-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .menu-item-info {
        max-width: 60%;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-actions a {
        text-align: center;
        width: 100%;
        max-width: 280px;
    }

    .bh__eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .bh__cta {
        flex-direction: column;
        align-items: center;
        padding-bottom: 70px;
    }

    .bh__cup {
        width: min(280px, 70vw);
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .bh__btn-fill,
    .bh__btn-ghost {
        width: 260px;
        text-align: center;
    }

    .bh__scroll {
        display: none;
    }

    .bh__scene {
        margin-top: -20px;
    }

    .bh {
        width: 100%;
        min-height: auto;
    }

    .ba__headline {
        font-size: clamp(38px, 11vw, 62px);
        margin-bottom: 48px;
    }

    .ba__features {
        gap: 8px;
    }

    .pf-section__grid {
        grid-template-columns: 1fr;
    }

    .sb-section__panel {
        grid-template-columns: 1fr;
    }

    .pf-section__grid {
        grid-template-columns: 1fr;
    }

    .gl-section,
    .rv-section {
        padding: 48px 20px 56px;
    }

    .gl-slide {
        flex: 0 0 calc(100% - 0px);
    }

    .rv-card {
        flex: 0 0 calc(100% - 0px);
    }

    .nc-promo__cup {
        display: none;
    }

    .nc-promo {
        padding: 60px 20px;
    }

    .mn-grid {
        grid-template-columns: 1fr;
    }

    .mn-grid-food {
        grid-template-columns: 1fr;
    }

    .mn-card__img-wrap,
    .mn-card__img,
    .mn-card__video {
        height: 180px;
    }

    .mn-card-food__img-wrap {
        height: 170px;
    }

    .os-hero__stamp {
        display: none;
    }

    .os-team__grid {
        grid-template-columns: 1fr;
    }

    .os-stats__grid {
        grid-template-columns: 1fr;
    }

    .os-stat {
        border-right: none;
    }

    .os-founder__namecard {
        right: 0;
        bottom: -16px;
    }
}

@media(prefers-reduced-motion:reduce) {

    .sv *,
    .sv *::before,
    .sv *::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}