/* ═══════════════════════════════════════
   MAHARAJA — V2 (Rethought Structure)
   Split hero · Horizontal scroll · Editorial
   ═══════════════════════════════════════ */

:root {
    --gold: #d4a843;
    --gold-light: #ecd07a;
    --gold-dark: #b08a2e;
    --orange: #f97316;
    --dark: #0F172A;
    --dark-2: #141d30;
    --dark-3: #1a2540;
    --dark-border: #253047;
    --cream: #fef7e7;
    --cream-dim: #d4c9b0;
    --text-body: #b0a898;
    --text-muted: #7a8290;
    --radius: 14px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--cream-dim);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* UTILITY */
.label-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(212,168,67,0.25);
    border-radius: 100px;
}
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    cursor: pointer; transition: all 0.3s var(--ease);
    border: none; text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--gold-dark));
    color: #fff;
    box-shadow: 0 4px 24px rgba(249,115,22,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,0.35); color: #fff; }
.btn-ghost {
    background: transparent; color: var(--gold);
    border: 1px solid rgba(212,168,67,0.3);
}
.btn-ghost:hover { background: rgba(212,168,67,0.08); color: var(--gold-light); }

/* ═══ TOP BAR ═══ */
.topbar {
    display: flex; justify-content: center; align-items: center; gap: 16px;
    padding: 10px 24px;
    background: var(--dark-2);
    font-size: 0.75rem; color: var(--text-muted);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--dark-border);
}
.topbar a { color: var(--gold); font-weight: 500; }
.topbar-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dark-border); }

/* ═══ NAV ═══ */
.nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(15,23,42,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 32px; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 42px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.85rem; color: var(--cream-dim); font-weight: 400; letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    padding: 9px 22px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 500;
    background: rgba(212,168,67,0.1); color: var(--gold);
    border: 1px solid rgba(212,168,67,0.25);
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }

/* ═══ HERO — SPLIT SCREEN ═══ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 68px);
    overflow: hidden;
    width: 100%;
}
.hero-left {
    display: flex; align-items: center;
    padding: 80px 64px 80px 0;
    position: relative;
}
.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(249,115,22,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.hero-left-inner {
    max-width: 580px; margin-left: auto;
    position: relative; z-index: 2;
    padding-left: 40px;
}

/* ── ELEPHANT — GLOW RING + SPIN-IN + PULSE ── */
.hero-elephant {
    position: relative;
    width: 130px; height: 130px;
    margin-bottom: 32px;
    animation: elephant-spin-in 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.hero-elephant::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--orange);
    border-right-color: var(--gold);
    animation: ring-spin 6s linear infinite;
    opacity: 0.6;
}
.hero-elephant::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, rgba(212,168,67,0.08) 40%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}
.hero-elephant-img {
    width: 130px; height: 130px; object-fit: contain;
    position: relative; z-index: 2;
    filter: drop-shadow(0 0 24px rgba(249,115,22,0.3)) drop-shadow(0 0 60px rgba(212,168,67,0.15));
    animation: elephant-breathe 4s ease-in-out 1.2s infinite;
}

@keyframes elephant-spin-in {
    0% { opacity: 0; transform: rotate(-180deg) scale(0.3); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes ring-spin {
    to { transform: rotate(360deg); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.08); }
}
@keyframes elephant-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* ── HERO TEXT — STAGGER ANIMATIONS ── */
.hero-line { display: block; }
.hero-line--1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--orange), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.05;
    animation: hero-slide-up 0.8s ease-out 0.3s both;
}
.hero-line--2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream-dim);
    letter-spacing: 3px;
    margin-top: 4px;
    animation: hero-slide-up 0.8s ease-out 0.5s both;
}
h1 { margin-bottom: 24px; }
.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; color: var(--text-body);
    line-height: 1.7; max-width: 440px;
    margin-bottom: 32px;
    animation: hero-slide-up 0.8s ease-out 0.7s both;
}
.hero-ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
    animation: hero-slide-up 0.8s ease-out 0.9s both;
}

@keyframes hero-slide-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── DECORATIVE LINE ACCENT ── */
.hero-left-inner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--orange), transparent);
    opacity: 0.3;
}

/* ── RIGHT PANEL — STRONGER OVERLAY + GLASS STAT CARDS ── */
.hero-right {
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    border-left: 1px solid var(--dark-border);
    background: var(--dark-2);
    min-width: 0;
}
.hero-right-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}
.hero-right-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.85) 50%, rgba(15,23,42,0.55) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero-right-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; gap: 20px;
    padding: 48px 40px;
    width: 100%;
    max-width: 320px;
}
.hero-stat {
    text-align: center;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 14px;
    padding: 28px 36px;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    /* entrance animation */
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    filter: blur(8px);
    animation: stat-reveal 0.8s var(--ease) forwards;
}
.hero-stat:nth-child(1) { animation-delay: 0.6s; }
.hero-stat:nth-child(3) { animation-delay: 1.0s; }
.hero-stat:nth-child(5) { animation-delay: 1.4s; }

@keyframes stat-reveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.hero-stat:hover {
    border-color: rgba(212,168,67,0.35);
    background: rgba(15,23,42,0.85);
}

/* dividers fade in between cards */
.hero-divider {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    align-self: center;
    opacity: 0;
    animation: divider-fade 0.5s var(--ease) forwards;
}
.hero-divider:nth-child(2) { animation-delay: 0.9s; }
.hero-divider:nth-child(4) { animation-delay: 1.3s; }

@keyframes divider-fade {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: 40px; }
}
.hero-stat-num {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.8rem; font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem; color: var(--cream-dim);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-top: 8px; line-height: 1.4;
}

/* ═══ MARQUEE STRIP ═══ */
.marquee-strip {
    overflow: hidden;
    padding: 16px 0;
    background: linear-gradient(135deg, var(--orange), var(--gold-dark));
}
.marquee-track {
    display: flex; gap: 24px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-track span {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.95rem; font-weight: 700;
    color: #fff; letter-spacing: 1px;
    text-transform: uppercase;
}
.marquee-diamond { font-size: 0.5rem; opacity: 0.5; align-self: center; }
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ═══ STORY — STICKY SCROLL ═══ */
.story {
    max-width: 1100px; margin: 0 auto;
    padding: 100px 32px 80px;
}

/* ── FULL-WIDTH HEADER ── */
.story-header {
    position: sticky;
    top: 68px;
    z-index: 10;
    padding: 32px 0 28px;
    background: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 48px;
}
.story-header .label-tag { margin-bottom: 12px; }
.story-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    max-width: 700px;
}

/* ── TWO-COLUMN STICKY LAYOUT ── */
.story-sticky-wrap {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 72px;
    align-items: start;
}
.story-sticky {
    position: sticky;
    top: 220px;
    padding-bottom: 40px;
}
.story-img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--dark-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── SCROLLING RIGHT COLUMN ── */
.story-scroll {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.story-block {
    padding: 44px 0;
    border-bottom: 1px solid var(--dark-border);
}
.story-block:first-child { padding-top: 0; }
.story-block:last-child { border-bottom: none; }
.story-block-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.story-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ── PILLARS INSIDE SCROLL ── */
.story-block--pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 44px;
}
.pillar {
    padding: 28px 24px;
    background: var(--dark-2);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.pillar:hover { border-color: rgba(212,168,67,0.2); transform: translateX(4px); }
.pillar-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(212,168,67,0.06);
    border: 1px solid rgba(212,168,67,0.12);
    border-radius: 12px;
    color: var(--gold);
}
.pillar h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.95rem; font-weight: 700;
    color: var(--cream); margin-bottom: 4px;
}
.pillar p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ═══ SIGNATURE DISHES — STICKY HORIZONTAL SCROLL ═══ */
.dishes-outer {
    position: relative;
    background: var(--dark-2);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.dishes-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.dishes-header {
    padding: 48px 32px 24px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    flex-shrink: 0;
}
.dishes-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--cream);
    line-height: 1.2; margin-bottom: 4px;
}

/* ── HORIZONTAL TRACK ── */
.dishes-track {
    display: flex;
    gap: 24px;
    padding: 0 32px;
    flex: 1;
    align-items: center;
    will-change: transform;
}
.dish-card {
    flex: 0 0 310px;
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
}
.dish-card:hover {
    border-color: rgba(212,168,67,0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.dish-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    opacity: 0; transition: opacity 0.3s;
}
.dish-card:hover::after { opacity: 1; }
.dish-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.dish-card--award { border-color: rgba(249,115,22,0.3); }
.dish-card--award::after { opacity: 1; }
.dish-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--orange); color: #fff;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    z-index: 2;
}
.dish-body { padding: 28px 24px; }
.dish-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem; font-weight: 400; font-style: italic;
    color: var(--gold); margin-bottom: 8px;
    letter-spacing: 1px;
}
.dish-card h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--cream); margin-bottom: 8px;
}
.dish-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem; color: var(--text-muted);
    line-height: 1.55; margin-bottom: 16px;
    min-height: 60px;
}
.dish-price {
    font-size: 1.1rem; font-weight: 600;
    color: var(--orange);
}

/* ── PROGRESS BAR ── */
.dishes-progress {
    flex-shrink: 0;
    height: 3px;
    background: var(--dark-border);
    margin: 0 32px 32px;
    border-radius: 3px;
    overflow: hidden;
}
.dishes-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 3px;
    transition: width 0.05s linear;
}

/* ═══ EXPERIENCE ═══ */
.experience {
    padding: 0;
}

/* ── PHOTO SECTION ── */
.exp-photo {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 450px;
    overflow: hidden;
}
.exp-photo-img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
}
.exp-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--dark) 0%, rgba(15,23,42,0.3) 40%, rgba(15,23,42,0.1) 100%);
    pointer-events: none;
}
.exp-photo-text {
    position: absolute;
    bottom: 48px;
    left: 0; right: 0;
    text-align: center;
    z-index: 2;
}
.exp-photo-text h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* ── CONTENT BELOW PHOTO ── */
.exp-content {
    background: var(--dark);
    padding: 64px 32px 80px;
}
.exp-content-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.exp-prose p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
}
.exp-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.exp-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 18px;
    background: var(--dark-2);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    text-decoration: none;
}
.exp-detail:hover {
    border-color: rgba(212,168,67,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.exp-detail-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(212,168,67,0.06);
    border: 1px solid rgba(212,168,67,0.12);
    border-radius: 10px;
    color: var(--gold);
}
.exp-detail-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.exp-detail strong {
    font-size: 0.88rem; color: var(--cream);
    line-height: 1.3;
}
.exp-detail span {
    font-size: 0.78rem; color: var(--text-muted);
    line-height: 1.5;
}

/* ═══ MOMENTS — VIDEO GALLERY ═══ */
.moments {
    padding: 88px 32px 96px;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    position: relative;
}
.moments::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212,168,67,0.05), transparent 60%),
        radial-gradient(ellipse at 85% 75%, rgba(249,115,22,0.04), transparent 65%);
    pointer-events: none;
}
.moments-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.moments-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin: 8px 0 14px;
}
.moments-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.moments-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.moment-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.moment-card:hover {
    border-color: rgba(212,168,67,0.35);
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}
.moment-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.moment-sound {
    position: absolute;
    top: 14px; right: 14px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212,168,67,0.25);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
    z-index: 2;
    padding: 0;
}
.moment-sound:hover {
    background: rgba(212,168,67,0.18);
    color: var(--gold-light);
    border-color: rgba(212,168,67,0.5);
}
.moment-sound .ico-unmute { display: none; }
.moment-sound[aria-pressed="true"] .ico-mute { display: none; }
.moment-sound[aria-pressed="true"] .ico-unmute { display: block; }
.moment-sound[aria-pressed="true"] {
    background: rgba(212,168,67,0.2);
    color: var(--gold-light);
    border-color: rgba(212,168,67,0.55);
}
@media (max-width: 960px) {
    .moments { padding: 64px 20px 72px; }
    .moments-grid { grid-template-columns: 1fr; max-width: 420px; gap: 20px; }
}

/* ═══ FIND US — MAP DOMINANT ═══ */
.find-us {
    position: relative;
    height: 650px;
    z-index: 10;
}
.find-map {
    position: absolute; inset: 0;
}
.find-map iframe { width: 100%; height: 100%; }
.find-card {
    position: absolute;
    top: 50%; left: 48px;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    z-index: 10;
}
.find-logo { width: 56px; margin-bottom: 16px; }
.find-card h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--cream); margin-bottom: 24px;
}
.find-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.find-row strong {
    display: block; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gold); font-weight: 600; margin-bottom: 3px;
}
.find-row span, .find-row a {
    font-size: 0.88rem; color: var(--cream-dim);
    line-height: 1.5;
}
.find-actions { display: flex; flex-direction: column; gap: 10px; }
.find-actions .btn { justify-content: center; width: 100%; }

/* ═══ FOOTER ═══ */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--dark-border);
    position: relative;
    z-index: 5;
    background: var(--dark);
}
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    padding: 0 32px;
    display: flex; justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.footer-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.footer-elephant { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.footer-name { display: block; font-size: 0.88rem; color: var(--cream); font-weight: 500; white-space: nowrap; }
.footer-addr { display: block; font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }
.footer-right { font-size: 0.72rem; color: var(--text-muted); flex-shrink: 0; text-align: right; display: flex; flex-direction: column; gap: 2px; }
.footer-right a.footer-credit { color: var(--text-muted); text-decoration: none; }
.footer-right a.footer-credit:hover { color: var(--text-muted); text-decoration: underline; }
.footer-socials { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.footer-socials a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
    color: var(--gold);
    transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
    border-color: rgba(212,168,67,0.45);
    background: rgba(212,168,67,0.08);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ═══ CALL FAB ═══ */
.call-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--orange), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
    transition: all 0.3s var(--ease);
}
.call-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(249,115,22,0.5); }

/* ═══ RESPONSIVE ═══ */

/* Nav close button - only visible in mobile menu */
.nav-close {
    display: none;
    position: absolute;
    top: 24px; right: 24px;
    background: none; border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 80px 32px 60px; }
    .hero-left-inner { margin: 0 auto; padding-left: 0; text-align: center; }
    .hero-left-inner::before { display: none; }
    .hero-elephant { margin-left: auto; margin-right: auto; }
    .hero-tagline {
    font-family: 'Cormorant Garamond', serif; margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-right { border-left: none; border-top: 1px solid var(--dark-border); }
    .hero-right-content { flex-direction: row; justify-content: center; padding: 20px 8px; max-width: 100%; gap: 0; }
    .hero-stat { padding: 10px 8px; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; border-radius: 0; flex: 1; }
    .hero-stat:nth-child(1), .hero-stat:nth-child(3), .hero-stat:nth-child(5) { animation-delay: 0s; opacity: 1; transform: none; filter: none; }
    .hero-stat-num { font-size: 1.6rem; margin-bottom: 0; }
    .hero-stat-label { font-size: 0.6rem !important; letter-spacing: 0.5px !important; line-height: 10px !important; margin-top: 2px !important; }
    .hero-divider { display: none; }
    .hero-right-overlay { background: rgba(15,23,42,0.8); }
    .hero-right-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: none !important; }
    .story-sticky-wrap { grid-template-columns: 1fr; gap: 40px; }
    .story-sticky { position: relative; top: auto; }
    .story-header { position: relative; top: auto; }
    .exp-container { grid-template-columns: 1fr; }
    .exp-content-inner { grid-template-columns: 1fr; gap: 40px; }
    .exp-elephant { display: none; }
    .find-us { height: auto; display: flex; flex-direction: column; }
    .find-map { position: relative; height: 350px; }
    .find-card {
        position: relative; top: auto; left: auto; transform: none;
        width: 100%; border-radius: 0;
    }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-links { display: none; position: fixed; top: 0; right: -100%; width: 260px; height: 100vh; background: var(--dark-2); flex-direction: column; padding: 100px 28px; gap: 20px; transition: right 0.3s var(--ease); z-index: 999; box-shadow: -8px 0 40px rgba(0,0,0,0.5); }
    .nav-links.open { display: flex; right: 0; }
    .nav-close { display: block; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero-line--1 { font-size: 2.4rem; }
    .story-pillars { grid-template-columns: 1fr; }
    .dish-card { flex: 0 0 280px; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-left { flex-direction: column; align-items: center; gap: 10px; }
    .footer-text { text-align: center; }
    .footer-right { text-align: center; align-items: center; }
    .exp-details { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   KITCHEN PORTHOLE — scroll-driven moments behind the pass
   ═══════════════════════════════════════════════════════════ */
.porthole {
    position: relative;
    background: var(--dark);
    /* Section is taller than viewport so the inner sticks while user scrolls */
    height: 320vh;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.porthole-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Subtle grain over the whole stage */
.porthole-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.06), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(176,138,46,0.04), transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.porthole-stage {
    position: relative;
    width: 100%;
    max-width: 1300px;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    z-index: 2;
}

/* ── PORTHOLE FRAME (the circular window) ── */
.porthole-frame {
    position: relative;
    width: min(46vw, 560px);
    aspect-ratio: 1 / 1;
    margin-left: auto;
    border-radius: 50%;
    overflow: visible; /* allow rotating ring to sit outside */
    isolation: isolate;
}
/* Inner clipped image stack */
.porthole-frame-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.porthole-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s var(--ease), transform 8s linear;
    will-change: opacity, transform;
}
.porthole-img.is-active {
    opacity: 1;
    transform: scale(1.0);
}
/* Static thin gold ring on the rim */
.porthole-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.28);
    pointer-events: none;
    z-index: 3;
}
/* Slow rotating arc — same technique as hero elephant ring */
.porthole-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--gold);
    border-right-color: rgba(212,168,67,0.4);
    animation: porthole-ring-spin 22s linear infinite;
    opacity: 0.7;
    pointer-events: none;
    z-index: 4;
}
/* Counter-rotating outer arc for depth */
.porthole-frame::after {
    content: '';
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: rgba(212,168,67,0.18);
    animation: porthole-ring-spin-reverse 38s linear infinite;
    pointer-events: none;
    z-index: 4;
}
@keyframes porthole-ring-spin {
    to { transform: rotate(360deg); }
}
@keyframes porthole-ring-spin-reverse {
    to { transform: rotate(-360deg); }
}
/* Vignette inside the porthole to draw eye to centre */
.porthole-frame-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 55%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
    z-index: 2;
}

/* ── PORTHOLE TEXT (right column) ── */
.porthole-text {
    max-width: 460px;
}
.porthole-title {
    font-family: 'Playfair Display', 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin: 12px 0 32px;
    letter-spacing: -0.5px;
}
.porthole-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

/* Captions cross-fade like documentary title cards */
.porthole-captions {
    position: relative;
    min-height: 84px;
    margin-bottom: 28px;
}
.porthole-caption {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    pointer-events: none;
}
.porthole-caption.is-active {
    opacity: 1;
    transform: translateY(0);
}
.cap-action {
    display: block;
    font-family: 'Playfair Display', 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.2;
    margin-bottom: 8px;
}
.cap-meta {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cream-dim);
    opacity: 0.7;
}

/* Pip indicators (tiny progress dots) */
.porthole-progress {
    display: flex;
    gap: 10px;
    align-items: center;
}
.porthole-pip {
    width: 24px;
    height: 2px;
    background: rgba(212,168,67,0.2);
    transition: background 0.4s var(--ease), width 0.4s var(--ease);
    display: inline-block;
}
.porthole-pip.is-active {
    background: var(--gold);
    width: 36px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .porthole {
        height: 280vh;
    }
    .porthole-stage {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
        text-align: center;
    }
    .porthole-frame {
        width: min(70vw, 380px);
        margin: 0 auto;
    }
    .porthole-text {
        max-width: 100%;
        margin: 0 auto;
    }
    .porthole-captions {
        min-height: 76px;
    }
    .porthole-progress {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .porthole {
        height: 240vh;
    }
    .porthole-frame {
        width: min(78vw, 320px);
    }
    .cap-action {
        font-size: 1.2rem;
    }
    .cap-meta {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}
