*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #E4002B;
    --red-dark: #C8002A;
    --black: #111111;
    --black-soft: #1C1C1C;
    --white: #FFFFFF;
    --cream: #FAF7F2;
    --cream-mid: #F0EBE1;
    --cream-dark: #E5DDD3;
    --gold: #C9A84C;
    --gold-light: #DFC070;
    --text-dark: #181818;
    --text-mid: #444;
    --text-gray: #777;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); overflow-x: hidden; max-width: 100%; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 140px; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.45s ease, box-shadow 0.45s ease;
}
nav.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.04);
}
.nav-logo-wrap { position: relative; height: 120px; width: 120px; display: block; text-decoration: none; flex-shrink: 0; }
.nav-logo-wrap img { position: absolute; top: 0; left: 0; height: 120px; width: auto; transition: opacity 0.45s ease; }
.logo-for-dark  { opacity: 1; }
.logo-for-light { opacity: 0; }
nav.scrolled .logo-for-dark  { opacity: 0; }
nav.scrolled .logo-for-light { opacity: 1; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.8); text-decoration: none;
    transition: color 0.3s; position: relative;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--red); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-badge {
    display: flex; align-items: center; gap: 8px;
    background: var(--red); padding: 10px 18px; flex-shrink: 0;
}
.nav-badge .bs { color: #fff; font-size: 0.58rem; letter-spacing: 3px; }
.nav-badge span { font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }

/* Mobile hamburger + menu */
.nav-burger {
    display: none; position: relative; z-index: 1002;
    width: 44px; height: 44px; background: none; border: none; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-burger span {
    display: block; width: 24px; height: 2px; background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.45s ease;
}
nav.scrolled .nav-burger span { background: var(--text-dark); }
body.menu-open .nav-burger span { background: #fff !important; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
    position: fixed; inset: 0; z-index: 1001;
    background: linear-gradient(160deg, #1a0407 0%, #111111 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700;
    color: #fff; text-decoration: none; transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mm-rule { width: 44px; height: 2px; background: var(--red); }
.mobile-menu .mm-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh; background: linear-gradient(160deg, #1a0407 0%, #150305 60%, #111111 100%);
    position: relative; display: flex; align-items: center; overflow: hidden;
    padding-top: 180px; padding-bottom: 64px;
}
.hero-grid-pattern {
    position: absolute; inset: 0; opacity: 0.025;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero-glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 60% 45%, rgba(228,0,43,0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.hero-photo-stage {
    position: absolute; inset: 0;
}
.hero-photo-slide {
    position: absolute; inset: 0;
    background-repeat: no-repeat; background-size: 62% auto; background-position: 88% 62%;
    opacity: 0; transition: opacity 1.1s ease;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}
.hero-photo-slide.active { opacity: 1; }
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(19,3,6,0.95) 0%, rgba(24,3,7,0.86) 30%, rgba(38,4,10,0.4) 58%, rgba(56,4,12,0.08) 78%, rgba(56,4,12,0) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 48px; max-width: 860px;
}
.hero-pill {
    display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 36px; padding: 11px 22px;
    border: 1px solid rgba(228,0,43,0.35); background: rgba(228,0,43,0.08);
}
.hero-pill .pt { font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.hero-h1 {
    font-family: var(--font-serif);
    font-size: clamp(56px, 8.5vw, 104px);
    font-weight: 900; color: var(--white);
    line-height: 0.88; letter-spacing: -2px; margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--red); display: block; }
.hero-rule { width: 60px; height: 2px; background: linear-gradient(to right, var(--red), var(--red-dark)); margin-bottom: 24px; }
.hero-tagline {
    font-family: var(--font-serif); font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-meals-strip { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; flex-wrap: wrap; }
.hms-item { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.hms-photo { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.18); flex-shrink: 0; }
.hms-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.hms-item:hover .hms-photo img { transform: scale(1.12); }
.hms-item:hover .hms-photo { border-color: var(--red); }
.hms-text { display: flex; flex-direction: column; }
.hms-name { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.72); letter-spacing: 0.2px; }
.hms-price { font-family: var(--font-serif); font-size: 0.72rem; font-weight: 700; color: var(--gold-light); }
.hero-trust-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.hero-trust-bar .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.btn-red {
    display: inline-block; padding: 15px 42px;
    background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(228,0,43,0.3); }
.btn-ghost-white {
    display: inline-flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
    transition: color 0.3s;
}
.btn-ghost-white:hover { color: #fff; }
.btn-ghost-white .arr { width: 36px; height: 1px; background: currentColor; transition: width 0.3s; }
.btn-ghost-white:hover .arr { width: 52px; }
.hero-scroll-ind {
    position: absolute; bottom: 40px; right: 48px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-line {
    width: 1px; height: 52px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
    animation: sLine 2.2s ease-in-out infinite;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}
.scroll-txt { font-size: 0.55rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); writing-mode: vertical-rl; text-shadow: 0 1px 4px rgba(0,0,0,0.7); }
@keyframes sLine {
    0%   { transform-origin: top;    transform: scaleY(0); opacity: 0; }
    45%  { transform-origin: top;    transform: scaleY(1); opacity: 1; }
    55%  { transform-origin: bottom; transform: scaleY(1); opacity: 1; }
    100% { transform-origin: bottom; transform: scaleY(0); opacity: 0; }
}

/* ─── SHARED LAYOUT ─── */
.wrap { max-width: 1280px; margin: 0 auto; }
.sec-eye {
    display: flex; align-items: center; gap: 14px;
    font-size: 0.67rem; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.sec-eye::before { content: ''; display: block; width: 36px; height: 1.5px; background: var(--red); }
.sec-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700; color: var(--text-dark);
    line-height: 1.1; letter-spacing: -0.5px;
}

/* ─── ABOUT ─── */
.about { background: var(--cream); padding: 120px 48px; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 88px; align-items: start; }
.about-copy { font-size: 0.97rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-top: 26px; margin-bottom: 20px; }
.about-vision {
    margin-top: 40px; padding: 30px 34px;
    border-left: 3px solid var(--red); background: var(--white);
}
.about-vision p { font-family: var(--font-serif); font-size: 1.02rem; font-style: italic; color: var(--text-dark); line-height: 1.65; }
.about-vision strong { display: block; font-family: var(--font-sans); font-size: 0.62rem; font-style: normal; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-top: 14px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--cream-dark); margin-bottom: 1.5px; }
.stat-card { background: var(--white); padding: 36px 28px; text-align: center; }
.stat-n { font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 6px; }
.stat-l { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-gray); }
.mich-card {
    background: var(--black); padding: 32px 28px;
    display: flex; align-items: center; gap: 20px;
}
.mich-card .ms { color: var(--red); font-size: 1.3rem; letter-spacing: 6px; flex-shrink: 0; }
.mich-card h4 { font-family: var(--font-serif); font-size: 0.78rem; font-style: italic; color: var(--red); margin-bottom: 3px; }
.mich-card p { font-size: 0.58rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ─── CHEFS ─── */
.chefs { background: var(--white); padding: 120px 48px; }
.chefs-hdr { text-align: center; margin-bottom: 72px; }
.chefs-hdr .sec-eye { justify-content: center; }
.chefs-hdr .sec-eye::before { display: none; }
.chefs-hdr .sec-eye::after { content: ''; display: block; width: 36px; height: 1.5px; background: var(--red); }
.chefs-sub { font-size: 0.92rem; font-weight: 300; color: var(--text-mid); margin-top: 18px; letter-spacing: 0.02em; }
.chefs-avail-badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 22px; padding: 9px 20px;
    border: 1px solid rgba(228,0,43,0.25); background: rgba(228,0,43,0.05);
    font-size: 0.62rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--red);
}
.tier-label {
    font-size: 0.63rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--text-gray);
    margin-bottom: 22px; display: flex; align-items: center; gap: 18px;
}
.tier-label::before, .tier-label::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); }

/* Featured 2-star chef */
.featured-chef {
    display: grid; grid-template-columns: 1fr 1.35fr;
    background: var(--black); margin-bottom: 48px; min-height: 540px;
}
.fc-img { position: relative; overflow: hidden; }
.fc-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s ease; }
.featured-chef:hover .fc-img img { transform: scale(1.04); }
.fc-img img[alt="Chef Darren Teoh"] { transform: scale(1.12); transform-origin: center top; }
.featured-chef:hover .fc-img img[alt="Chef Darren Teoh"] { transform: scale(1.165); }
.fc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--black) 100%); }
.fc-content { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; }
.award-pill { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.award-pill .as { color: var(--red); font-size: 1rem; letter-spacing: 5px; }
.award-pill .at { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
.fc-name { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 6px; }
.fc-rest { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 32px; }
.fc-rule { width: 44px; height: 1.5px; background: var(--red); margin-bottom: 24px; }
.fc-meal-header { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; cursor: pointer; }
.fc-meal-thumb { position: relative; width: 76px; height: 76px; border-radius: 10px; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.3); transition: transform 0.25s ease; }
.fc-meal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fc-meal-header:hover .fc-meal-thumb { transform: scale(1.06); }
.fc-meal-thumb .zoom-badge { width: 24px; height: 24px; bottom: 4px; right: 4px; }
.fc-meal-thumb .zoom-badge svg { width: 13px; height: 13px; }
.fc-meal-eye { font-size: 0.6rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.fc-meal-en { font-family: var(--font-serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 600; color: #fff; line-height: 1.25; margin-bottom: 4px; }
.fc-meal-bm { font-family: var(--font-serif); font-size: 0.88rem; font-style: italic; color: rgba(255,255,255,0.3); }
.fc-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.52); margin-bottom: 32px; }
.btn-red-sm {
    display: inline-block; padding: 13px 34px;
    background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; width: fit-content;
    transition: background 0.25s;
}
.btn-red-sm:hover { background: var(--red-dark); }
.fc-buy-row { display: flex; align-items: center; gap: 26px; }
.fc-price { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: #fff; }
.fc-price span { font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-top: 2px; }

/* Chef grid (3-col) */
.chef-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--cream-dark); margin-bottom: 48px; }
.chef-card {
    background: var(--white); display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.chef-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease; z-index: 3;
}
.chef-card:hover { transform: translateY(-5px); box-shadow: 0 18px 52px rgba(0,0,0,0.1); z-index: 1; }
.chef-card:hover::before { transform: scaleX(1); }
.chef-photo { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: #1a1a1a; }
.chef-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.chef-card:hover .chef-photo img { transform: scale(1.05); }
.chef-photo img[alt="Chef Darren Chin"] { transform: scale(1.3); transform-origin: center 18%; }
.chef-card:hover .chef-photo img[alt="Chef Darren Chin"] { transform: scale(1.365); transform-origin: center 18%; }
.chef-photo img[alt="Chef Aidan Low"] { transform: scale(1.1); transform-origin: center top; }
.chef-card:hover .chef-photo img[alt="Chef Aidan Low"] { transform: scale(1.155); }
.chef-photo-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 28px 18px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.badge-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.badge-stars { color: var(--red); font-size: 0.65rem; letter-spacing: 3px; }
.badge-selected {
    font-size: 0.52rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--red); border: 1px solid rgba(228,0,43,0.6); padding: 2px 5px;
}
.badge-txt { font-size: 0.56rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.48); }
.chef-rest-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
.chef-info { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.chef-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; line-height: 1.2; }
.chef-rest { font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-gray); margin-bottom: 18px; }
.chef-div { width: 100%; height: 1px; background: var(--cream-mid); margin-bottom: 18px; }
.meal-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; cursor: pointer; }
.meal-thumb { position: relative; width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.15); transition: transform 0.25s ease; }
.meal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.meal-header:hover .meal-thumb { transform: scale(1.07); }
.zoom-badge {
    position: absolute; bottom: 3px; right: 3px; z-index: 2;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
}
.zoom-badge svg { width: 10px; height: 10px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }
.meal-header-text { min-width: 0; }
.meal-eye { font-size: 0.58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 7px; }
.meal-en { font-family: var(--font-serif); font-size: 0.97rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; margin-bottom: 3px; }
.meal-bm { font-family: var(--font-serif); font-size: 0.8rem; font-style: italic; color: var(--text-gray); }
.meal-desc { font-size: 0.78rem; font-weight: 300; line-height: 1.75; color: var(--text-gray); flex: 1; margin-bottom: 18px; }
.btn-outline-red {
    display: inline-block; padding: 9px 18px;
    border: 1.5px solid var(--red); color: var(--red);
    font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; width: fit-content; transition: all 0.2s;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }
.meal-buy-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.meal-price { font-family: var(--font-serif); font-size: 1.08rem; font-weight: 700; color: var(--text-dark); }

/* ─── STORIES ─── */
.stories-hdr {
    background: var(--red); padding: 76px 48px; text-align: center;
}
.stories-hdr .sec-eye { color: rgba(255,255,255,0.55); justify-content: center; }
.stories-hdr .sec-eye::before { background: rgba(255,255,255,0.4); }
.stories-hdr .sec-eye::after { content: ''; display: block; width: 36px; height: 1.5px; background: rgba(255,255,255,0.4); }
.stories-hdr .sec-title { color: #fff; margin-bottom: 14px; }
.stories-hdr p { font-size: 0.93rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.62); max-width: 600px; margin: 0 auto; }

.story-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.story-vid { position: relative; overflow: hidden; background: var(--black); }
.story-vid-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center top;
    filter: brightness(0.32) saturate(0.5);
    transition: transform 7s ease, filter 0.4s ease;
}
.story-row:hover .story-vid-bg { transform: scale(1.06); filter: brightness(0.38) saturate(0.55); }
.story-vid-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.play-btn {
    width: 84px; height: 84px; border-radius: 50%;
    background: rgba(228,0,43,0.88); border: 2px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: all 0.3s; margin-bottom: 18px;
}
.play-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); box-shadow: 0 0 0 14px rgba(228,0,43,0.12); }
.play-btn svg { width: 30px; height: 30px; fill: #fff; margin-left: 5px; }
.play-lbl { font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.vid-ghost { position: absolute; bottom: 20px; left: 22px; font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; pointer-events: none; }

.story-txt {
    padding: 64px 60px; display: flex; flex-direction: column; justify-content: center;
}
.story-row:nth-child(odd) .story-txt { background: var(--cream); }
.story-row:nth-child(even) .story-txt { background: var(--white); }
.story-chef-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 22px; }
.story-quote-wrap { position: relative; margin-bottom: 28px; }
.story-qmark { font-family: var(--font-serif); font-size: 8rem; line-height: 0.7; color: var(--red); opacity: 0.1; position: absolute; top: -6px; left: -10px; pointer-events: none; }
.story-q { font-family: var(--font-serif); font-size: clamp(0.95rem,1.7vw,1.2rem); font-style: italic; color: var(--text-dark); line-height: 1.65; padding-left: 18px; border-left: 2.5px solid var(--red); position: relative; z-index: 1; }
.story-attr { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); padding-left: 18px; margin-top: 12px; }
.story-p { font-size: 0.86rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-bottom: 18px; }
.story-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.6rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); }
.story-tag::before { content: ''; width: 26px; height: 1px; background: var(--red); }

/* ─── FOOTER ─── */
footer { background: var(--black); padding: 84px 48px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; max-width: 1280px; margin: 0 auto 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-img { height: 88px; width: auto; margin-bottom: 22px; }
.footer-desc { font-size: 0.83rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.38); max-width: 290px; margin-bottom: 28px; }
.footer-mich { display: inline-flex; align-items: center; gap: 16px; padding: 13px 20px; border: 1px solid rgba(228,0,43,0.28); background: rgba(228,0,43,0.07); }
.footer-mich .fms { color: var(--red); font-size: 0.95rem; letter-spacing: 5px; }
.footer-mich-txt .t1 { font-size: 0.58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); display: block; }
.footer-mich-txt .t2 { font-size: 0.52rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.22); display: block; margin-top: 2px; }
.footer-col h4 { font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.52); }
.footer-col ul li a { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.25s; }
.footer-col ul li a:hover { color: #fff; }
.social-row { display: flex; gap: 8px; margin-top: 26px; }
.soc-btn {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.68rem; font-weight: 700;
    transition: all 0.2s;
}
.soc-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-btm { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-btm p { font-size: 0.68rem; color: rgba(255,255,255,0.18); letter-spacing: 0.5px; }

/* ─── REVEAL ANIMATIONS ─── */
.rev     { opacity: 0; transform: translateY(32px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.rev-l   { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.rev-r   { opacity: 0; transform: translateX(32px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.rev.on, .rev-l.on, .rev-r.on { opacity: 1; transform: none; }

/* ─── VIDEO MODAL ─── */
.modal-bg {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--black-soft); max-width: 760px; width: 90%;
    padding: 52px 44px; text-align: center; position: relative;
}
.modal-x { position: absolute; top: 16px; right: 16px; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.6rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.modal-x:hover { color: #fff; }

/* ─── PHOTO LIGHTBOX ─── */
.photo-modal-box { background: none; max-width: 820px; width: 90%; padding: 0; text-align: center; position: relative; }
.photo-modal-box img { width: 100%; height: auto; max-height: 74vh; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,0.55); }
.photo-modal-x { position: absolute; top: -40px; right: 0; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.8rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.photo-modal-x:hover { color: #fff; }
.photo-modal-caption { margin-top: 22px; }
.photo-modal-dish { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: #fff; }
.photo-modal-chef { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-top: 6px; }
.modal-stars { color: var(--red); font-size: 1.1rem; letter-spacing: 6px; margin-bottom: 20px; }
.modal-chef { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.modal-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 28px; }
.modal-p { font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.52); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; gap: 52px; }
    .featured-chef { grid-template-columns: 1fr; min-height: auto; }
    .fc-img { aspect-ratio: 2/3; max-height: none; }
    .fc-img img[alt="Chef Darren Teoh"] { transform: scale(1.0); transform-origin: center top; }
    .featured-chef:hover .fc-img img[alt="Chef Darren Teoh"] { transform: scale(1.04); }
    .fc-img::after { background: linear-gradient(to bottom, transparent 70%, var(--black) 100%); }
    .chef-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
    .hero-photo-slide { background-size: 184% auto; background-position: 50% 88%; }
    .hero-photo-slide.active { opacity: 0.32; }
}
@media (max-width: 768px) {
    nav { padding: 0 20px; height: 80px; }
    .nav-logo-wrap { height: 68px; width: 68px; }
    .nav-logo-wrap img { height: 68px; }
    .hero { padding-top: 116px; padding-bottom: 48px; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .hero-content { padding: 0 20px; }
    .hero-meals-strip { gap: 16px; }
    .hms-photo { width: 42px; height: 42px; }
    .hero-trust-bar { gap: 8px; font-size: 0.56rem; }
    .about, .chefs { padding: 80px 20px; }
    .stories-hdr { padding: 60px 20px; }
    .story-row { grid-template-columns: 1fr; }
    .story-vid { min-height: 280px; order: 1; }
    .story-txt { padding: 48px 20px; order: 2; }
    .chef-grid { grid-template-columns: 1fr; }
    footer { padding: 60px 20px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-btm { flex-direction: column; gap: 10px; text-align: center; }
    .hero-scroll-ind { display: none; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .rev, .rev-l, .rev-r { opacity: 1; transform: none; }
}

/* ─── SUBPAGE HERO ─── */
.page-hero {
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #1a0407 0%, #150305 60%, #111111 100%);
    padding: 200px 48px 88px; text-align: center;
}
.page-hero.red { background: var(--red); }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero .hero-eyebrow { margin-bottom: 16px; }
.page-hero.red .hero-eyebrow { color: rgba(255,255,255,0.65); }
.page-hero h1 {
    font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 20px;
}
.page-hero p.ph-sub { font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 620px; margin: 0 auto; }
.page-hero .chefs-avail-badge { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); color: #fff; }

/* ─── NAV ACTIVE LINK ─── */
.nav-links a.active { color: #fff; }
nav.scrolled .nav-links a.active { color: var(--red); }
.nav-links a.active::after { width: 100%; }

/* ─── HOME: CHEFS PREVIEW ─── */
.chefs-preview { background: var(--white); padding: 110px 48px; }
.chefs-preview .chefs-hdr { margin-bottom: 56px; }
.cp-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 34px; max-width: 1180px; margin: 0 auto 56px; }
.cp-item { display: flex; flex-direction: column; align-items: center; text-align: center; width: 200px; text-decoration: none; }
.cp-photo {
    width: 128px; height: 128px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--cream-dark); margin-bottom: 16px;
    transition: border-color 0.3s, transform 0.3s;
}
.cp-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.cp-item:hover .cp-photo { border-color: var(--red); transform: translateY(-4px); }
.cp-stars { font-size: 0.55rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.cp-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.cp-meal { font-size: 0.72rem; font-weight: 300; color: var(--text-gray); line-height: 1.5; }
.cp-price { font-family: var(--font-serif); font-size: 0.8rem; font-weight: 700; color: var(--red); margin-top: 6px; }
.cp-cta { text-align: center; }

/* ─── HOME: STORIES TEASER ─── */
.stories-teaser { background: var(--red); padding: 96px 48px; text-align: center; }
.stories-teaser .sec-eye { color: rgba(255,255,255,0.55); justify-content: center; }
.stories-teaser .sec-eye::before { background: rgba(255,255,255,0.4); }
.stories-teaser .sec-eye::after { content: ''; display: block; width: 36px; height: 1.5px; background: rgba(255,255,255,0.4); }
.stories-teaser .sec-title { color: #fff; margin-bottom: 18px; }
.stories-teaser blockquote {
    font-family: var(--font-serif); font-size: clamp(1.05rem, 2vw, 1.35rem); font-style: italic;
    color: rgba(255,255,255,0.88); line-height: 1.7; max-width: 680px; margin: 0 auto 10px;
}
.stories-teaser .st-attr { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.btn-white-outline {
    display: inline-block; padding: 14px 38px;
    border: 1.5px solid rgba(255,255,255,0.75); color: #fff;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none;
    transition: all 0.25s;
}
.btn-white-outline:hover { background: #fff; color: var(--red); border-color: #fff; }

@media (max-width: 768px) {
    .page-hero { padding: 150px 20px 64px; }
    .chefs-preview { padding: 80px 20px; }
    .cp-grid { gap: 32px 18px; }
    .cp-item { width: 150px; }
    .cp-photo { width: 104px; height: 104px; }
    .stories-teaser { padding: 72px 20px; }
}

/* anchored sections clear the fixed nav */
[id] { scroll-margin-top: 110px; }
