/* ============================================
  TODAY 4 U - Premium Restaurant Styles
  Million-Dollar Scroll Animation Edition
  ============================================ */

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

:root {
  --deep-green: #1a2e1a;
  --forest: #2d4a2d;
  --leaf: #4a7c59;
  --bright-leaf: #6b9b3a;
  --cream: #f5e6c8;
  --warm-cream: #efe0c6;
  --terracotta: #c17a52;
  --carrot: #e67e22;
  --tomato: #c0392b;
  --mushroom: #8e6f47;
  --gold: #d4a855;
  --dark-bg: #0d1a0d;
  --darker-bg: #080f08;
  --card-bg: rgba(26, 46, 26, 0.35);
  --text-primary: #f5e6c8;
  --text-secondary: rgba(245, 230, 200, 0.6);
  --text-muted: rgba(245, 230, 200, 0.35);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--darker-bg);
  color: var(--text-primary);
  overflow-x: clip;
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

a { text-decoration: none; color: inherit; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--darker-bg); }
::-webkit-scrollbar-thumb { background: var(--leaf); border-radius: 3px; }

/* === Cursor Glow === */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9997;
  top: -250px;
  left: -250px;
  mix-blend-mode: screen;
  will-change: transform;
}
@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* === Film Grain === */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* === Floating Ingredients === */
.floating-ingredients {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ingredient {
  position: absolute;
  will-change: transform;
  filter: blur(0.5px);
  animation: ingredientFloat 20s ease-in-out infinite;
}
.ingredient--leaf-1 { width: 80px; top: 8%; left: 4%; animation-duration: 22s; }
.ingredient--leaf-2 { width: 50px; top: 28%; right: 6%; animation-delay: -3s; animation-duration: 18s; }
.ingredient--tomato { width: 45px; top: 58%; left: 10%; animation-delay: -7s; animation-duration: 25s; }
.ingredient--carrot { width: 35px; top: 18%; right: 14%; animation-delay: -5s; animation-duration: 20s; }
.ingredient--pepper { width: 40px; top: 72%; right: 18%; animation-delay: -10s; animation-duration: 23s; }
.ingredient--leaf-3 { width: 60px; top: 42%; left: 78%; animation-delay: -2s; animation-duration: 19s; }
.ingredient--mushroom { width: 55px; top: 82%; left: 22%; animation-delay: -8s; animation-duration: 21s; }
.ingredient--basil { width: 40px; top: 12%; left: 58%; animation-delay: -12s; animation-duration: 24s; }

@keyframes ingredientFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.2; }
  25% { transform: translateY(-25px) rotate(5deg) scale(1.04); opacity: 0.3; }
  50% { transform: translateY(-12px) rotate(-3deg) scale(0.96); opacity: 0.15; }
  75% { transform: translateY(-35px) rotate(7deg) scale(1.06); opacity: 0.25; }
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  z-index: 100;
  transition: all 0.6s var(--ease-out-expo);
}
.nav--scrolled {
  background: rgba(8, 15, 8, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(74, 124, 89, 0.12);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}
.nav__links { display: flex; gap: 2.5rem; }
.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--leaf);
  transition: width 0.5s var(--ease-out-expo);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

/* ============================================
   REVEAL ANIMATION SYSTEM
   ============================================ */

/* Fade Up */
.reveal-up {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Right */
.reveal-slide-right {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-slide-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide Left */
.reveal-slide-left {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-slide-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Blur In */
.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out-expo), filter 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-blur.revealed {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* Scale In */
.reveal-scale {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-spring);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Rotate In (for dish cards) */
.reveal-rotate-in {
  opacity: 0;
  transform: perspective(800px) rotateY(25deg) translateY(40px) scale(0.92);
  transition: opacity 1.1s var(--ease-out-expo), transform 1.1s var(--ease-out-expo);
}
.reveal-rotate-in.revealed {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg) translateY(0) scale(1);
}

/* Menu item reveal */
.menu__item {
  opacity: 0;
  transform: translateY(30px) translateX(-20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo),
              background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.menu__item.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Line reveals */
.menu__category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.3), transparent);
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out-expo);
}
.menu__category-line.revealed {
  transform: scaleX(1);
}

/* Character reveal spans */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.char.revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Word reveal spans */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo), filter 0.7s var(--ease-out-expo);
}
.word.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-hero-cta { transition-delay: 1.4s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero__bg-layer--1 {
  background:
    radial-gradient(ellipse at 25% 35%, rgba(74, 124, 89, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(230, 126, 34, 0.07) 0%, transparent 45%),
    var(--darker-bg);
}
.hero__bg-layer--2 {
  background:
    radial-gradient(ellipse at 80% 15%, rgba(107, 155, 58, 0.08) 0%, transparent 35%),
    radial-gradient(ellipse at 15% 85%, rgba(193, 122, 82, 0.05) 0%, transparent 35%);
  animation: heroBgPulse 18s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  0% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.08) rotate(0.5deg); }
}

/* Animated Blobs */
.hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero__blob--1 {
  width: 400px; height: 400px;
  background: rgba(74, 124, 89, 0.12);
  top: 10%; left: 15%;
  animation: blobDrift1 20s ease-in-out infinite;
}
.hero__blob--2 {
  width: 300px; height: 300px;
  background: rgba(230, 126, 34, 0.08);
  top: 50%; right: 10%;
  animation: blobDrift2 25s ease-in-out infinite;
}
.hero__blob--3 {
  width: 250px; height: 250px;
  background: rgba(193, 122, 82, 0.06);
  bottom: 15%; left: 40%;
  animation: blobDrift3 22s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.08); }
  66% { transform: translate(20px, -15px) scale(0.92); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.12); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

/* Eyebrow */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 1.8rem;
  perspective: 600px;
  padding: 0.18em 0 0;
}
.hero__title-line {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--cream);
  letter-spacing: -0.02em;
}
.hero__title-line--accent {
  font-size: clamp(5.5rem, 16vw, 14rem);
  color: var(--cream);
  text-shadow:
    0 0 80px rgba(212, 168, 85, 0.3),
    0 0 40px rgba(74, 124, 89, 0.2);
}

/* Subtitle */
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  overflow: hidden;
}

/* CTA */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.8rem;
  border: 1px solid rgba(74, 124, 89, 0.4);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(74, 124, 89, 0.08);
  backdrop-filter: blur(12px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.hero__cta-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.6s ease;
}
.hero__cta:hover .hero__cta-shine {
  left: 100%;
}
.hero__cta:hover {
  background: rgba(74, 124, 89, 0.2);
  border-color: var(--leaf);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(74, 124, 89, 0.25), 0 0 20px rgba(74, 124, 89, 0.1);
}
.hero__cta-arrow {
  width: 18px; height: 18px;
  transition: transform 0.4s var(--ease-out-expo);
}
.hero__cta:hover .hero__cta-arrow {
  transform: translateY(4px);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll-text {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.hero__mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(245, 230, 200, 0.18);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  box-shadow: 0 0 12px rgba(74, 124, 89, 0.12), inset 0 0 8px rgba(74, 124, 89, 0.04);
}
.hero__mouse-wheel {
  width: 2px;
  height: 7px;
  background: var(--leaf);
  border-radius: 2px;
  animation: mouseWheel 2s ease-in-out infinite;
}
@keyframes mouseWheel {
  0% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(8px); opacity: 0; }
  56% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   STORY
   ============================================ */
.story {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
}
.story__ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}
.story__ambient--1 {
  width: 500px; height: 500px;
  background: rgba(74, 124, 89, 0.08);
  top: 10%; left: -5%;
  animation: ambientFloat1 25s ease-in-out infinite;
}
.story__ambient--2 {
  width: 400px; height: 400px;
  background: rgba(230, 126, 34, 0.05);
  bottom: 10%; right: -5%;
  animation: ambientFloat2 30s ease-in-out infinite;
}
@keyframes ambientFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, 30px); }
}
@keyframes ambientFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, -20px); }
}

.story__container {
  display: flex;
  align-items: center;
  gap: 6rem;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.story__visual {
  position: relative;
  flex-shrink: 0;
  width: 300px; height: 400px;
}
.story__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
}
.story__ring--1 {
  width: 260px; height: 260px;
  transform: translate(-50%, -50%);
  border-color: rgba(74, 124, 89, 0.15);
  animation: ringRotate 35s linear infinite;
}
.story__ring--2 {
  width: 190px; height: 190px;
  transform: translate(-50%, -50%);
  border-color: rgba(230, 126, 34, 0.1);
  animation: ringRotate 28s linear infinite reverse;
}
.story__ring--3 {
  width: 110px; height: 110px;
  transform: translate(-50%, -50%);
  border-color: rgba(193, 122, 82, 0.12);
  animation: ringRotate 22s linear infinite;
}
@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.story__plant {
  position: absolute;
  width: 160px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.story__stem {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  transition: stroke-dashoffset 1.8s var(--ease-out-expo);
}
.story__leaf {
  opacity: 0;
  transform-origin: bottom center;
  transform: scale(0) rotate(-10deg);
  transition: all 0.9s var(--ease-spring);
}
.story__bud {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: all 0.7s var(--ease-spring);
  transition-delay: 1.4s;
}
.story.in-view .story__stem { stroke-dashoffset: 0; }
.story.in-view .story__leaf--1 {
  opacity: 1; transform: scale(1) rotate(0deg);
  transition-delay: 0.6s;
}
.story.in-view .story__leaf--2 {
  opacity: 1; transform: scale(1) rotate(0deg);
  transition-delay: 0.9s;
}
.story.in-view .story__leaf--3 {
  opacity: 1; transform: scale(1) rotate(0deg);
  transition-delay: 1.1s;
}
.story.in-view .story__bud { opacity: 1; transform: scale(1); }

.story__text { flex: 1; }
.story__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.story__heading em {
  color: var(--leaf);
  font-style: italic;
}
.story__description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}
.story__accent-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--carrot));
  margin-top: 2rem;
  border-radius: 1px;
}

/* ============================================
   FEATURED
   ============================================ */
.featured {
  position: relative;
  padding: 8rem 2rem;
  background: var(--dark-bg);
  overflow: hidden;
}
.featured__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.featured__header {
  text-align: center;
  margin-bottom: 4rem;
}
.featured__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.featured__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
}
.featured__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Dish Cards */
.dish-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(74, 124, 89, 0.1);
  cursor: pointer;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}
.dish-card__number {
  position: absolute;
  top: 1rem; left: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  z-index: 3;
}
.dish-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(74, 124, 89, 0.08);
}
.dish-card__image-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.dish-card__image {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s var(--ease-out-expo);
}
.dish-card__image svg { width: 100%; height: 100%; }
.dish-card:hover .dish-card__image {
  transform: scale(1.12);
}
.dish-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 15, 8, 0.9) 100%);
}
.dish-card__info { padding: 1.5rem; }
.dish-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}
.dish-card:hover .dish-card__name { color: var(--bright-leaf); }
.dish-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-secondary);
}
.dish-card__border-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: border-color 0.5s ease;
  pointer-events: none;
}
.dish-card:hover .dish-card__border-glow {
  border-color: rgba(74, 124, 89, 0.3);
}

/* ============================================
   TRANSITION
   ============================================ */
.transition-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  overflow: hidden;
}
.transition-section__vine {
  position: absolute;
  width: 100%; height: 200px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
.vine-svg { width: 100%; height: 100%; }
.vine-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.5s var(--ease-out-expo);
}
.transition-section.in-view .vine-path {
  stroke-dashoffset: 0;
}
.transition-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.transition-section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.transition-section__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
}
.transition-section__arrow {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.transition-section__arrow svg { display: none; }
.transition-section__arrow::before,
.transition-section__arrow::after,
.transition-section__arrow-dot3 {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  opacity: 0;
  animation: dotChase 1.6s ease-in-out infinite;
}
.transition-section__arrow::after {
  animation-delay: 0.25s;
}
@keyframes dotChase {
  0%, 100% { opacity: 0; transform: translateY(-6px); }
  50% { opacity: 0.55; transform: translateY(6px); }
}

/* ============================================
   MENU
   ============================================ */
.menu {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: var(--darker-bg);
  min-height: 100vh;
  min-height: 100dvh;
}
.menu__ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.4;
}
.menu__ambient--1 {
  width: 500px; height: 500px;
  background: rgba(74, 124, 89, 0.06);
  top: 20%; left: -10%;
  animation: ambientFloat1 30s ease-in-out infinite;
}
.menu__ambient--2 {
  width: 400px; height: 400px;
  background: rgba(193, 122, 82, 0.04);
  bottom: 20%; right: -10%;
  animation: ambientFloat2 35s ease-in-out infinite;
}

.menu__header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.menu__header-ornament {
  margin-bottom: 1rem;
  opacity: 0.5;
}
.menu__header-ornament svg { width: 140px; height: 40px; }
.menu__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.menu__label {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--leaf);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.menu__divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--leaf), transparent);
  margin: 2rem auto 0;
}

/* Category */
.menu__category {
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}
.menu__category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.menu__category-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.menu__category-icon { width: 32px; height: 32px; opacity: 0.65; }

/* Menu Items */
.menu__items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.menu__item {
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
}
.menu__item:hover {
  background: rgba(74, 124, 89, 0.07);
  border-color: rgba(74, 124, 89, 0.14);
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.menu__item-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.menu__item-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.menu__item:hover .menu__item-name { color: var(--bright-leaf); }
.menu__item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-muted);
  min-width: 20px;
  margin-bottom: 4px;
}
.menu__item-price {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--carrot);
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.menu__item:hover .menu__item-price { color: var(--gold); }
.menu__item-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* Footer */
.menu__footer {
  text-align: center;
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(74, 124, 89, 0.08);
  position: relative;
  z-index: 1;
}
.menu__footer-leaf {
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.menu__footer-leaf svg { width: 80px; height: 50px; }
.menu__footer-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.menu__footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 230, 200, 0.55);
  letter-spacing: 0.12em;
  line-height: 1.7;
  max-width: 560px;
  margin: 0.35rem auto;
}

/* ============================================
   STORY PHILOSOPHY
   ============================================ */
.story__philosophy {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-top: 1.2rem;
  max-width: 520px;
  opacity: 0.85;
}

/* ============================================
   VEGETARIAN INFO SECTION
   ============================================ */
.veg-info {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--darker-bg) 0%, rgba(26, 46, 26, 0.15) 50%, var(--darker-bg) 100%);
  overflow: hidden;
}
.veg-info__ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.35;
}
.veg-info__ambient--1 {
  width: 450px; height: 450px;
  background: rgba(74, 124, 89, 0.08);
  top: 10%; right: -8%;
  animation: ambientFloat1 28s ease-in-out infinite;
}
.veg-info__ambient--2 {
  width: 350px; height: 350px;
  background: rgba(193, 122, 82, 0.05);
  bottom: 10%; left: -8%;
  animation: ambientFloat2 32s ease-in-out infinite;
}
.veg-info__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.veg-info__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.veg-info__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.veg-info__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
}
.veg-info__divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--leaf), transparent);
  margin: 1.5rem auto 0;
}
.veg-info__intro {
  text-align: center;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.veg-info__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.veg-info__card {
  background: var(--card-bg);
  border: 1px solid rgba(74, 124, 89, 0.12);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.veg-info__card:hover {
  border-color: rgba(74, 124, 89, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.veg-info__card-icon {
  width: 40px; height: 40px;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.veg-info__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}
.veg-info__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.veg-info__list li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 1rem;
  position: relative;
}
.veg-info__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
}
.veg-info__card--benefits .veg-info__list li::before {
  background: var(--bright-leaf);
}
.veg-info__card--restrictions .veg-info__list li::before {
  background: var(--tomato);
}
.veg-info__list li strong {
  color: var(--cream);
  font-weight: 500;
}
.veg-info__source {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(74, 124, 89, 0.06);
  border: 1px solid rgba(74, 124, 89, 0.1);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.veg-info__source-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--leaf);
  margin-top: 2px;
}
.veg-info__source p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}
.veg-info__link {
  color: var(--bright-leaf);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107, 155, 58, 0.4);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.veg-info__link:hover {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

/* ============================================
   MENU ITEM CLICKABLE
   ============================================ */
.menu__item[data-dish] {
  cursor: pointer;
}
.menu__item[data-dish]::after {
  content: 'Tap for nutrition info';
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu__item[data-dish]:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NUTRITION MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: linear-gradient(170deg, rgba(26, 46, 26, 0.97) 0%, rgba(13, 26, 13, 0.98) 100%);
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s var(--ease-out-expo);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(74, 124, 89, 0.08);
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 50%;
  background: rgba(74, 124, 89, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover {
  background: rgba(74, 124, 89, 0.2);
  border-color: var(--leaf);
  color: var(--cream);
}

/* Modal Header */
.modal__header {
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}
.modal__dish-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.modal__dish-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Nutrition Label */
.modal__nutrition-label {
  background: rgba(245, 230, 200, 0.04);
  border: 2px solid var(--cream);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.modal__label-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
  border-bottom: 1px solid var(--cream);
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
}
.modal__label-serving {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}
.modal__label-divider {
  height: 1px;
  background: rgba(245, 230, 200, 0.15);
  margin: 0.2rem 0;
}
.modal__label-divider--thick {
  height: 8px;
  background: var(--cream);
  margin: 0.4rem 0;
}
.modal__label-divider--medium {
  height: 3px;
  background: var(--cream);
  margin: 0.3rem 0;
}
.modal__label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.15rem 0;
}
.modal__label-row--bold {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}
.modal__label-row strong {
  font-weight: 600;
  color: var(--cream);
}

/* Macro Breakdown */
.modal__macros {
  margin-bottom: 1.5rem;
}
.modal__macros-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}
.modal__macro-bars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.modal__macro-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal__macro-label {
  width: 55px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.modal__macro-track {
  flex: 1;
  height: 10px;
  background: rgba(245, 230, 200, 0.06);
  border-radius: 5px;
  overflow: hidden;
}
.modal__macro-fill {
  height: 100%;
  border-radius: 5px;
  width: 0%;
  transition: width 0.8s var(--ease-out-expo);
}
.modal__macro-fill--protein { background: linear-gradient(90deg, #6b9b3a, #4a7c59); }
.modal__macro-fill--carbs { background: linear-gradient(90deg, #e67e22, #d4a855); }
.modal__macro-fill--fat { background: linear-gradient(90deg, #c0392b, #c17a52); }
.modal__macro-value {
  width: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: right;
}

/* Donut Chart */
.modal__macro-chart {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
}
.modal__donut {
  width: 90px; height: 90px;
  transform: rotate(-90deg);
}
.modal__donut-ring {
  fill: none;
  stroke: rgba(245, 230, 200, 0.06);
  stroke-width: 12;
}
.modal__donut-segment {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 0 314.16;
  transition: stroke-dasharray 0.8s var(--ease-out-expo);
}
.modal__donut-segment--protein { stroke: #6b9b3a; }
.modal__donut-segment--carbs { stroke: #e67e22; }
.modal__donut-segment--fat { stroke: #c0392b; }
.modal__donut-legend {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modal__legend-item {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.modal__legend-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
}
.modal__legend-item--protein::before { background: #6b9b3a; }
.modal__legend-item--carbs::before { background: #e67e22; }
.modal__legend-item--fat::before { background: #c0392b; }

/* Vegetarian Note */
.modal__veg-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 10px;
  padding: 1rem 1.2rem;
}
.modal__veg-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.modal__veg-note p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .featured__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .story__container { gap: 3rem; }
  .story__visual { width: 220px; height: 300px; }
  .veg-info__columns { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav--scrolled { padding: 0.8rem 1.5rem; }
  .nav__logo { font-size: 1.2rem; }
  .nav__links { gap: 1.5rem; }
  .nav__link { font-size: 0.72rem; }
  .hero__content { padding: 1rem; }
  .hero__blob { display: none; }
  .story { padding: 5rem 1.5rem; }
  .story__container { flex-direction: column; text-align: center; gap: 3rem; }
  .story__visual { width: 200px; height: 280px; }
  .featured { padding: 5rem 1.5rem; }
  .featured__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .menu { padding: 4rem 1rem 3rem; }
  .menu__category { margin-bottom: 3rem; }
  .menu__category-header { gap: 0.75rem; }
  .menu__category-title { font-size: 1.1rem; }
  .menu__item { padding: 1rem; }
  .menu__item-name { font-size: 0.98rem; }
  .menu__item-desc { font-size: 0.78rem; }
  .transition-section { min-height: 35vh; }
  .ingredient { opacity: 0.12 !important; }
  .ingredient--mushroom, .ingredient--pepper, .ingredient--basil { display: none; }
  .veg-info { padding: 5rem 1.5rem; }
  .veg-info__columns { grid-template-columns: 1fr; }
  .veg-info__intro { font-size: 0.9rem; }
  .modal { padding: 1.5rem; max-height: 85vh; }
  .modal__dish-name { font-size: 1.3rem; }
  .modal__macro-chart { flex-direction: column; }
  .menu__item[data-dish]::after { content: 'Tap for nutrition info'; opacity: 0.5; transform: translateY(0); }
}

@media (max-width: 480px) {
  .hero__title-line { font-size: 3.5rem; }
  .hero__title-line--accent { font-size: 5rem; }
  .hero__subtitle { font-size: 0.78rem; letter-spacing: 0.1em; }
  .hero__cta { padding: 0.9rem 2rem; font-size: 0.72rem; }
  .story__heading { font-size: 2.2rem; }
  .featured__heading { font-size: 1.8rem; }
  .menu__title { font-size: 2.5rem; }
  .menu__item-dots { display: none; }
  .menu__item-price { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .reveal-slide-right, .reveal-slide-left,
  .reveal-blur, .reveal-scale, .reveal-rotate-in,
  .menu__item, .char, .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .floating-ingredients, .grain, .hero__blobs { display: none; }
}
