/* ═══════════════════════════════════════════════════════
   CHEF FAISAL AL NASHMI — LIGHT THEME
   ═══════════════════════════════════════════════════════ */

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

:root {
  --black:       #0d0d0d;
  --white:       #ffffff;

  /* Light palette */
  --bg-primary:  #ffffff;
  --bg-secondary:#f7f6f4;
  --bg-tertiary: #f0ede8;
  --bg-card:     #faf9f7;

  --text-primary:   #0d0d0d;
  --text-secondary: #3a3a3a;
  --text-muted:     #6b6b6b;
  --text-subtle:    #9a9a9a;

  --border-light:  rgba(0,0,0,0.08);
  --border:        rgba(0,0,0,0.14);
  --border-strong: rgba(0,0,0,0.22);

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 36px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-dm:     'DM Sans', system-ui, sans-serif;

  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 120px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--black);
  color: var(--white);
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #bbb; border-radius: 0; }

/* ── UTILITY ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header          { margin-bottom: 72px; }
.section-header.centered { text-align: center; }

.section-mini-title {
  display: inline-block;
  font-family: var(--font-dm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  position: relative;
  padding-left: 24px;
}

.section-mini-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1px;
  background: var(--text-primary);
}

.section-header.centered .section-mini-title {
  padding-left: 0;
}
.section-header.centered .section-mini-title::before {
  display: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-title em {
  font-style: italic;
  color: var(--text-muted);
}

/* ── LANGUAGE SWITCHER ────────────────────────────────── */
.lang-switch {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8000;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: var(--font-dm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: box-shadow 0.25s, transform 0.25s;
}
.lang-switch:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* ── IN-NAVBAR LANGUAGE SWITCHER ─────────────────────── */
.nav-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-dm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid currentColor;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar:not(.scrolled) .nav-lang-switch {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
.navbar:not(.scrolled) .nav-lang-switch:hover {
  color: var(--white);
  border-color: var(--white);
}
.navbar.scrolled .nav-lang-switch {
  color: var(--text-muted);
  border-color: var(--border-strong);
}
.navbar.scrolled .nav-lang-switch:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.nav-lang-switch:hover { transform: translateY(-1px); }
.nav-lang-switch svg   { flex-shrink: 0; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-dm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-primary:hover::after  { transform: translateX(0); }

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.btn-primary:hover span,
.btn-primary:hover svg {
  color: var(--black);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-dm);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid var(--border-strong);
  transition: var(--transition);
}

.btn-ghost:hover {
  color: var(--black);
  border-color: var(--black);
  background: rgba(0,0,0,0.03);
}

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 16px;
  line-height: 1;
  /* On hero: white; after scroll: dark */
  transition: color 0.4s;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.4s;
}

/* Hero state: white logo (over dark bg) */
.navbar:not(.scrolled) .logo-icon,
.navbar:not(.scrolled) .logo-text { color: var(--white); }

/* Scrolled state: dark logo */
.navbar.scrolled .logo-icon,
.navbar.scrolled .logo-text { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-dm);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* Hero state: white links */
.navbar:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.85);
}
.navbar:not(.scrolled) .nav-link::after {
  background: var(--white);
}
.navbar:not(.scrolled) .nav-link:hover {
  color: var(--white);
}

/* Scrolled state: dark links */
.navbar.scrolled .nav-link {
  color: var(--text-muted);
}
.navbar.scrolled .nav-link::after {
  background: var(--text-primary);
}
.navbar.scrolled .nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after { transform: scaleX(1); }

/* CTA nav button */
.btn-nav-cta {
  font-family: var(--font-dm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  margin-left: 16px;
  border: 1px solid;
  transition: var(--transition);
}

.navbar:not(.scrolled) .btn-nav-cta {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}
.navbar:not(.scrolled) .btn-nav-cta:hover {
  background: transparent;
  color: var(--white);
}

.navbar.scrolled .btn-nav-cta {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}
.navbar.scrolled .btn-nav-cta:hover {
  background: transparent;
  color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-toggle span { background: var(--white); }
.navbar.scrolled       .nav-toggle span { background: var(--text-primary); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Cinematic overlay — subtle vignette on pure black */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  from { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  to   { transform: translateY(-20px) translateX(30px); opacity: 0; }
}

/* ── HERO VIDEO THUMBNAIL CARD ───────────────────────── */
.hero-thumb-card {
  position: relative;
  width: 100%;          /* fills .hero-thumb-col */
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease;
  aspect-ratio: 16/9;
  background: #111;
}

.hero-thumb-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 56px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.2);
}

.thumb-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Dark gradient overlay */
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
}
.hero-thumb-card:hover .thumb-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.42) 100%
  );
}

/* Centered play button */
.thumb-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  transition: background 0.25s, transform 0.25s;
}
.hero-thumb-card:hover .thumb-play-btn {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}

/* Pulsing ring on play icon */
.thumb-play-btn::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  animation: playPulse 2.2s ease-out infinite;
}

@keyframes playPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0;   }
}

/* "Watch Intro" label at bottom of card */
.thumb-label {
  font-family: var(--font-dm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Mobile: thumbnail slightly narrower */
@media (max-width: 520px) {
  .hero-thumb-card { width: 100%; }
}

/* ── VIDEO MODAL ─────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}

.video-modal.open {
  visibility: visible;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.video-modal.open .video-modal-backdrop { opacity: 1; }

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
}
.video-modal.open .video-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.video-modal-box video {
  display: block;
  width: 100%;
  max-height: 80vh;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s;
}
.video-modal-close:hover { background: rgba(0,0,0,0.9); }

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

/* Left column */
.hero-text-col {
  display: flex;
  flex-direction: column;
}

/* Right column */
.hero-thumb-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-dm);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title em { font-style: italic; font-weight: 400; }

.hero-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

/* Hero CTA — white fill */
.hero-actions .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.hero-actions .btn-primary::after { background: rgba(255,255,255,0.12); }
.hero-actions .btn-primary:hover span,
.hero-actions .btn-primary:hover svg { color: var(--white); }

.hero-actions .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.35);
}
.hero-actions .btn-ghost:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}


.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.hero-scroll-indicator span {
  font-family: var(--font-dm);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

/* ── ABOUT US ────────────────────────────────────────── */
.about-us {
  background: var(--bg-secondary);
  overflow: hidden;
}

/* ── GALLERY CAROUSEL ───────────────────────────────── */
.gallery-carousel {
  position: relative;
  margin-bottom: 56px;
}

.gallery-viewport {
  width: 100%;
  aspect-ratio: 2 / 1;      /* exactly 2:1 — matches your 2000×1000 images */
  overflow: hidden;
  position: relative;
  background: var(--bg-tertiary);
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.gallery-track:active { cursor: grabbing; }

.gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.8s ease;
}

.gallery-slide:hover img { transform: scale(1.03); }

/* Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.gallery-arrow:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  border-radius: 0;
}

.gallery-dot.active {
  background: var(--black);
  width: 28px;
}

/* Metrics — 4-up row below carousel */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}


.metric-card {
  background: var(--white);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--black);
  transition: width 0.5s ease;
}

.metric-card:hover::after { width: 100%; }
.metric-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.metric-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.metric-number span { font-size: 1.4rem; color: var(--text-subtle); }

.metric-icon { color: var(--text-subtle); transition: color 0.3s; }
.metric-icon svg { width: 22px; height: 22px; }

.metric-label {
  font-family: var(--font-dm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── ABOUT CHEF ───────────────────────────────────────── */
.about-chef { background: var(--bg-primary); }

.chef-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.chef-image-wrapper { position: relative; }

.chef-image-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.chef-image-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(0,0,0,0.08), transparent 60%, rgba(0,0,0,0.03));
  z-index: 1;
  pointer-events: none;
}

.chef-portrait {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  display: block;
  transition: filter 0.6s;
}

.chef-image-wrapper:hover .chef-portrait { filter: grayscale(70%) contrast(1.05); }

.chef-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  z-index: 2;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
}

.badge-sub {
  display: block;
  font-family: var(--font-dm);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

.chef-text-col { padding: 20px 0; }

.chef-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.chef-bio p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
}

.chef-quote {
  font-family: var(--font-serif) !important;
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  color: var(--text-primary) !important;
  border-left: 2px solid var(--black);
  padding-left: 20px;
  margin-top: 8px;
}

.chef-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-family: var(--font-dm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 7px 14px;
  transition: var(--transition);
}

.tag:hover {
  color: var(--text-primary);
  border-color: var(--black);
  background: rgba(0,0,0,0.03);
}

/* ── RECIPES ─────────────────────────────────────────── */
.recipes-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 72px;
}

.recipe-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: var(--transition);
}

.recipe-card:hover { box-shadow: var(--shadow-lg); }

/* ── RECIPE FAN (poker card spread) ─────────────────── */
.recipe-fan {
  position: relative;
  z-index: 2;          /* floats above .recipe-info at all times */
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.fan-card {
  position: absolute;
  width: 160px;
  height: 140px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  transform-origin: bottom center;
  border: 2px solid rgba(255,255,255,0.9);
}

/* ── RESTING STATE: stacked with slight rotation ── */
.fan-card-1 {
  transform: rotate(-6deg) translateX(-14px) translateY(4px);
  z-index: 1;
}
.fan-card-2 {
  transform: rotate(0deg) translateX(0px) translateY(0px);
  z-index: 3;
}
.fan-card-3 {
  transform: rotate(6deg) translateX(14px) translateY(4px);
  z-index: 2;
}

/* ── HOVER STATE: fan out like dealt cards ── */
.recipe-card:hover .fan-card-1 {
  transform: rotate(-14deg) translateX(-55px) translateY(6px);
  z-index: 1;
  box-shadow: -4px 10px 24px rgba(0,0,0,0.2);
}
.recipe-card:hover .fan-card-2 {
  transform: rotate(0deg) translateX(0px) translateY(-8px);
  z-index: 3;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}
.recipe-card:hover .fan-card-3 {
  transform: rotate(14deg) translateX(55px) translateY(6px);
  z-index: 2;
  box-shadow: 4px 10px 24px rgba(0,0,0,0.2);
}

/* Stagger the fan animation slightly */
.recipe-card:hover .fan-card-1 { transition-delay: 0s; }
.recipe-card:hover .fan-card-2 { transition-delay: 0.04s; }
.recipe-card:hover .fan-card-3 { transition-delay: 0.08s; }


.recipe-info {
  position: relative;
  z-index: 1;          /* always below the fan */
  padding: 28px 24px 32px;
  border-top: 1px solid var(--border-light);
  background: var(--white);
  transition: background 0.3s;
}

.recipe-card:hover .recipe-info { background: var(--bg-card); }

.recipe-tag {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.recipe-card:hover .recipe-tag { color: var(--border-strong); }

.recipe-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.recipe-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

.recipes-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.recipes-cta-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
}

/* ── FOOD CHAINS ─────────────────────────────────────── */
.food-chains { background: var(--bg-primary); }

.chains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.chain-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
}

.chain-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.chain-card:hover .chain-img {
  transform: scale(1.06);
}

.chain-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 30%,
    transparent 55%
  );
  z-index: 1;
  transition: var(--transition);
}

.chain-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.8),
    0 2px 12px rgba(0,0,0,0.6),
    0 4px 24px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}

.chain-ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-dm);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.chain-card:hover .chain-ig { opacity: 1; transform: translateY(0); }

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-it-works { background: var(--bg-secondary); overflow: hidden; }

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 72px;
}

.steps-line {
  position: absolute;
  top: 60px;
  left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
  z-index: 0;
}

.step-card {
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-right: none;
  transition: var(--transition);
}

.step-card:last-child { border-right: 1px solid var(--border-light); }
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.step-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--border);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}

.step-card:hover .step-num { color: var(--border-strong); }

.step-icon { color: var(--text-primary); margin-bottom: 20px; }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.steps-cta { text-align: center; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section { background: var(--bg-primary); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg-secondary); }
.faq-item.open .faq-question { background: var(--bg-secondary); }

.faq-question span:first-child {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.faq-icon {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner { padding: 0 32px 28px; }

.faq-answer-inner p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
}

.faq-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-cta p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--text-primary);
  border-top: none;
  padding: 64px 32px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-icon,
.footer-logo .logo-text { color: var(--white); }

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 8px; }

.footer-nav a {
  font-family: var(--font-dm);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 6px 12px;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--white); }

.footer-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.15); }

.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .recipes-grid  { grid-template-columns: repeat(2, 1fr); }
  .chains-grid   { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }

  .about-us-grid { grid-template-columns: 1fr; gap: 56px; }
  .chef-layout   { grid-template-columns: 1fr; gap: 56px; }
  .chef-portrait { height: 450px; }

  .steps-track { grid-template-columns: 1fr; }
  .steps-line  { display: none; }

  .step-card           { border-right: 1px solid var(--border-light); border-bottom: none; }
  .step-card:last-child{ border-bottom: 1px solid var(--border-light); }

  .chains-grid { grid-template-columns: 1fr; }
  .chain-card  { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 20px; height: 64px; }
  .nav-toggle    { display: flex; }

  /* Mobile order: logo | lang switch | hamburger */
  .nav-logo                        { order: 1; }
  .nav-container > .nav-lang-switch{ order: 2; margin-inline: auto; }
  .nav-toggle                      { order: 3; }
  .nav-links                       { order: 4; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  /* Mobile nav links are always dark */
  .navbar .nav-links .nav-link { font-size: 14px; padding: 14px 24px; color: var(--text-primary) !important; }
  .navbar .nav-links .nav-link::after { background: var(--black) !important; }
  .navbar .nav-links .btn-nav-cta {
    margin-left: 0;
    margin-top: 16px;
    background: var(--black) !important;
    color: var(--white) !important;
    border-color: var(--black) !important;
  }

  /* Lang switcher: always visible on mobile, outside the hamburger */
  .nav-container > .nav-lang-switch {
    display: inline-flex;   /* always show — never toggled */
    padding: 6px 12px;
    font-size: 11px;
  }

  /* Mobile unscrolled state (hero dark background) */
  .navbar:not(.scrolled) > .nav-container > .nav-lang-switch {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.45);
  }

  /* Mobile scrolled state */
  .navbar.scrolled > .nav-container > .nav-lang-switch {
    color: var(--text-primary);
    border-color: var(--border-strong);
  }

  .hero-content {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-thumb-col { width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-title   { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-scroll-indicator { right: 20px; bottom: 24px; }

  .container     { padding: 0 20px; }
  .gallery-mosaic{ grid-template-rows: 160px 160px 160px; }
  .recipes-grid  { grid-template-columns: 1fr 1fr; }
  .recipe-fan    { height: 185px; }
  .fan-card      { width: 128px; height: 112px; }
  .recipe-card:hover .fan-card-1 { transform: rotate(-12deg) translateX(-42px) translateY(5px); }
  .recipe-card:hover .fan-card-3 { transform: rotate(12deg)  translateX(42px)  translateY(5px); }
  .metrics-grid  { grid-template-columns: 1fr 1fr; gap: 2px; }
  .metric-card   { padding: 18px 14px; gap: 7px; }
  .metric-number { font-size: 2rem; }
  .metric-number span { font-size: 1.1rem; }
  .metric-icon svg { width: 18px; height: 18px; }
  .section-title { font-size: clamp(2rem, 7vw, 3rem); }

  .faq-question    { padding: 22px 20px; }
  .faq-answer-inner{ padding: 0 20px 22px; }
}

@media (max-width: 520px) {
  .chains-grid { grid-template-columns: 1fr; }
  .metrics-grid{ grid-template-columns: 1fr 1fr; }
  .metric-card { padding: 14px 12px; gap: 6px; }
  .metric-number { font-size: 1.7rem; }
  .metric-number span { font-size: 1rem; }
  .metric-label { font-size: 9px; letter-spacing: 0.08em; }

  .recipes-grid  { grid-template-columns: 1fr; }
  .recipe-fan    { height: 175px; }
  .fan-card      { width: 112px; height: 98px; }
  .recipe-card:hover .fan-card-1 { transform: rotate(-11deg) translateX(-36px) translateY(5px); }
  .recipe-card:hover .fan-card-3 { transform: rotate(11deg)  translateX(36px)  translateY(5px); }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary,
  .btn-ghost    { width: 100%; justify-content: center; }
  .chef-badge   { right: 0; bottom: -8px; }
}

/* ── TOUCH DEVICES: fan always open (no hover available) ── */
@media (hover: none) {
  .fan-card-1 {
    transform: rotate(-14deg) translateX(-55px) translateY(6px) !important;
    box-shadow: -4px 10px 24px rgba(0,0,0,0.2);
  }
  .fan-card-2 {
    transform: rotate(0deg) translateX(0px) translateY(-8px) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,0.22);
  }
  .fan-card-3 {
    transform: rotate(14deg) translateX(55px) translateY(6px) !important;
    box-shadow: 4px 10px 24px rgba(0,0,0,0.2);
  }
}
