/* =========================================================
   KISS YO MAMA — Jamaican Soul Food, Vancouver
   Warm vibrant island palette · Playfair Display + Karla
   ========================================================= */

:root {
  /* Palette — warm vibrant island */
  --cream:        #FBF5E9;
  --cream-2:      #F4E9D2;
  --ink:          #1C1712;   /* warm near-black */
  --ink-soft:     #4A4036;
  --green:        #0E7A4D;   /* jungle */
  --green-deep:   #0A5638;
  --gold:         #F2B705;   /* sun gold */
  --gold-deep:    #D99A00;
  --spice:        #D7263D;   /* scotch bonnet */
  --spice-deep:   #A81729;
  --paper:        #FFFFFF;
  --line:         #E6D8BE;

  /* Semantic */
  --bg:           var(--cream);
  --fg:           var(--ink);
  --muted:        var(--ink-soft);

  /* Type */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 16px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 240ms;

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(28,23,18,.08);
  --shadow-md: 0 14px 40px rgba(28,23,18,.14);
  --shadow-lg: 0 30px 70px rgba(28,23,18,.22);

  /* z-index scale */
  --z-nav: 100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }

.section__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
.section__head h2::after,
.about__text h2::after,
.dishes__intro h2::after,
.visit__info h2::after,
.contact__copy h2::after {
  content: ""; display: block; width: 56px; height: 3px; margin-top: 1rem;
  border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.section__note, .section__head .section__note { color: var(--muted); margin-top: .6rem; font-size: .95rem; }

.eyebrow {
  font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  font-size: .76rem; color: var(--green); margin-bottom: .9rem;
}
.eyebrow--gold { color: var(--gold-deep); }

.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-150%);
  background: var(--ink); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 12px 12px;
  z-index: 1000; transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 700;
  border: 2px solid transparent; min-height: 48px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-md); }

.btn--green { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--green:hover { background: var(--green-deep); box-shadow: var(--shadow-md); }

.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--cream); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  padding-block: .9rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav.is-scrolled { background: rgba(251,245,233,.9); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding-block: .55rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { display: inline-grid; place-items: center; flex: 0 0 auto; transition: transform var(--dur) var(--ease); }
.brand__mark img { width: 42px; height: 42px; border-radius: 11px; object-fit: cover; border: 1.5px solid var(--gold); box-shadow: var(--shadow-sm); }
.brand:hover .brand__mark { transform: rotate(-6deg); }
.brand__wrap { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  color: var(--ink); letter-spacing: -.02em;
}
.brand__sub {
  font-family: var(--font-body); font-weight: 700; font-size: .58rem;
  text-transform: uppercase; letter-spacing: .24em; color: var(--gold-deep); margin-top: 3px;
}
/* Nav sits over the light cream big-hero, so default text stays dark ink */
/* …unless the page has a full-bleed photo hero: then go light until scrolled */
.photo-hero .nav:not(.is-scrolled) .brand__name,
.photo-hero .nav:not(.is-scrolled) .nav__links a:not(.btn) {
  color: var(--cream); text-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.photo-hero .nav:not(.is-scrolled) .brand__sub { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__links a:not(.btn) { font-weight: 600; position: relative; padding-block: .3rem; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width var(--dur) var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding-block: .6rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   BIG PHOTO-LETTER HERO
   ========================================================= */
.bighero {
  position: relative; background: var(--cream);
  min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(4.5rem, 9vw, 8rem);
  overflow: hidden;
}
.bighero__motif {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
  width: min(120vh, 96vw); height: auto; color: rgba(216,154,0,.20);
  z-index: 0; pointer-events: none;
}
/* draw-on: lines sketch themselves in, starting after the name has shown,
   staggered top→bottom (stem first, then each leaf pair downward) */
.bighero__motif path {
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: drawMotif 1.5s ease forwards;
}
.bighero__motif path:nth-child(1)              { animation-delay: 1.1s; }
.bighero__motif path:nth-child(2),
.bighero__motif path:nth-child(3)              { animation-delay: 1.4s; }
.bighero__motif path:nth-child(4),
.bighero__motif path:nth-child(5)              { animation-delay: 1.65s; }
.bighero__motif path:nth-child(6),
.bighero__motif path:nth-child(7)              { animation-delay: 1.9s; }
.bighero__motif path:nth-child(8),
.bighero__motif path:nth-child(9)              { animation-delay: 2.15s; }
@keyframes drawMotif { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .bighero__motif path { stroke-dashoffset: 0; animation: none; }
}
.bighero__badge {
  position: absolute; top: clamp(74px, 11vw, 116px); left: clamp(1rem, 3vw, 2rem);
  z-index: 3; width: clamp(76px, 9vw, 116px); aspect-ratio: 1;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md);
  border: 3px solid var(--gold); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.bighero__badge img { width: 100%; height: 100%; object-fit: cover; }
.bighero__badge:hover { transform: translateY(-3px) rotate(-3deg); box-shadow: var(--shadow-lg); }

.bighero__inner { position: relative; z-index: 2; width: 100%; }
.bighero__eyebrow {
  text-align: center; font-family: var(--font-head); font-style: italic; font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.6rem); color: var(--gold-deep); margin-bottom: -.2em;
}
.bighero__word {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 18px 40px rgba(28,23,18,.18));
}
.bighero__foot {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end; margin-top: clamp(1rem, 2.5vw, 2rem);
}
.bighero__headline {
  font-family: var(--font-head); font-style: italic; font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.04; color: var(--ink);
}
.bighero__copy p { color: var(--muted); max-width: 42ch; }
.bighero__welcome {
  font-family: var(--font-head); font-style: italic; font-weight: 700;
  color: var(--green-deep); margin-top: .7rem;
}
.bighero__scroll {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--gold-deep); border-radius: 14px; z-index: 3;
}
.bighero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
  background: var(--gold-deep); transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite;
}
@media (max-width: 760px) {
  .bighero { min-height: auto; padding-top: clamp(5rem, 16vw, 7rem); }
  .bighero__foot { grid-template-columns: 1fr; gap: 1.2rem; }
  .bighero__headline { font-size: clamp(1.5rem, 6vw, 2.2rem); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 9vh, 7rem); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14,12,9,.92) 0%, rgba(14,12,9,.45) 40%, rgba(14,12,9,.25) 70%, rgba(14,12,9,.4) 100%);
}
.hero__content { position: relative; z-index: 1; color: #fff; }
.hero .eyebrow { color: var(--gold); }

.hero__title {
  font-size: clamp(3.4rem, 14vw, 9rem); line-height: .92; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .4rem; text-shadow: 0 6px 40px rgba(0,0,0,.4);
}
.hero__title span { display: inline-block; margin-right: .25em; }
.hero__title-accent { color: var(--gold); font-style: italic; }

.hero__tag { font-size: clamp(1.05rem, 2.4vw, 1.5rem); max-width: 36ch; color: rgba(255,255,255,.92); }
.hero__tag em { color: var(--gold); font-style: italic; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; z-index: 1;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
  background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--green); color: var(--cream); overflow: hidden;
  border-block: 3px solid var(--gold); padding-block: .85rem;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap;
  font-family: var(--font-head); font-size: clamp(1.1rem,2.6vw,1.7rem); font-weight: 700; font-style: italic;
  animation: marquee 26s linear infinite; will-change: transform;
}
.marquee__track .dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 5/7; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* catering slideshow: cross-fade slides stacked in place */
.about__slides { aspect-ratio: 4/5; cursor: pointer; }
.about__slides .about__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  aspect-ratio: auto; opacity: 0; transition: opacity .8s ease;
  pointer-events: none;
}
.about__slides .about__slide.is-active { opacity: 1; }
.about__slides .about__badge { z-index: 2; }
.about__dots {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 14px;
  display: flex; justify-content: center; gap: .5rem;
}
.about__dot {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255,255,255,.6); box-shadow: 0 1px 4px rgba(0,0,0,.35);
  cursor: pointer; transition: background .25s ease, transform .25s ease;
}
.about__dot:hover { background: rgba(255,255,255,.9); }
.about__dot.is-active { background: var(--gold); transform: scale(1.25); }
.about__dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .about__slides .about__slide { transition: none; }
}
.about__badge {
  position: absolute; right: -14px; bottom: -14px; background: var(--gold); color: var(--ink);
  border-radius: 50%; width: 118px; height: 118px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); transform: rotate(-8deg); padding: 8px;
}
.about__badge-num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.about__badge-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.about__text h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.1rem; }
.about__text p { color: var(--muted); margin-bottom: 1rem; max-width: 52ch; }
.about__list { list-style: none; padding: 0; margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.about__list li {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem 1rem; font-weight: 600; font-size: .92rem;
}
.about__list li::before { content: "✦ "; color: var(--spice); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--ink); color: var(--cream); }
.services .eyebrow { color: var(--gold); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.services__grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.svc:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: var(--gold); }
.svc__icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  background: var(--green); color: #fff; margin-bottom: 1.1rem;
}
.svc__icon svg { width: 28px; height: 28px; }
.svc:nth-child(2) .svc__icon { background: var(--spice); }
.svc:nth-child(3) .svc__icon { background: var(--gold); color: var(--ink); }
.svc:nth-child(4) .svc__icon { background: var(--green-deep); }
.svc h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.svc p { color: rgba(251,245,233,.72); font-size: .95rem; }

/* =========================================================
   MENU
   ========================================================= */
.menu { background: var(--bg); position: relative; overflow: hidden; }

/* ambient falling ingredients */
.menu__fall { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.menu > .container { position: relative; z-index: 1; }
.fall-item { position: absolute; top: 0; transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }
.fall-item img {
  display: block; width: 100%; height: auto;
  animation: ingredientFall var(--dur) linear var(--delay) infinite;
  will-change: transform;
}
@keyframes ingredientFall {
  from { transform: translateY(-180px) rotate(var(--r0)); }
  to   { transform: translateY(var(--fh)) rotate(var(--r1)); }
}
.fall-item--back img  { filter: blur(2.4px); }
.fall-item--mid img   { filter: blur(0.8px); }
@media (prefers-reduced-motion: reduce) { .menu__fall { display: none; } }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(1.5rem, 4vw, 3rem); }
.menu__cat {
  font-size: 1.5rem; color: var(--green); padding-bottom: .6rem; margin-bottom: 1rem;
  border-bottom: 2px solid var(--line);
}
.menu__sub {
  margin: -.5rem 0 1.1rem; color: var(--spice); font-weight: 600;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .06em;
}
.menu__tag { display: block; margin-top: .2rem; font-size: .85rem; font-style: italic; color: var(--muted); }
.menu--alt { background: color-mix(in srgb, var(--green) 7%, var(--bg)); }

/* big centered "Menu" title (reference layout) */
.menu__head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.menu__intro {
  max-width: 52ch; margin: 1.2rem auto 0; color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem); line-height: 1.6;
}
.menu__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700; color: var(--green);
  font-size: clamp(2.8rem, 9vw, 5.5rem); line-height: 1;
  letter-spacing: .04em; text-transform: uppercase; margin: .3rem 0 0;
}

/* alternating text / floating photo "course" rows */
.course {
  display: grid; align-items: center;
  grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 8vw, 6rem);
}
.course:last-of-type { margin-bottom: 0; }
.course--flip .course__text { order: 2; }
.course__photo {
  margin: 0; border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
  transform: rotate(-1.5deg);
}
.course--flip .course__photo { transform: rotate(1.5deg); }
.course__photo img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .6s ease;
}
.course:hover .course__photo img { transform: scale(1.04); }
@media (max-width: 760px) {
  .course { grid-template-columns: 1fr; }
  .course--flip .course__text { order: 0; }
  .course__photo, .course--flip .course__photo { transform: none; }
}

.menu__note {
  margin-top: clamp(2rem, 5vw, 3rem); padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0;
  background: rgba(255,255,255,.6);
}
.menu__note p { color: var(--ink); font-size: .98rem; line-height: 1.55; margin: 0; }

/* =========================================================
   PHOTO SLIDER — continuous auto-scroll marquee
   ========================================================= */
.slider {
  overflow: hidden; padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.slider__track { display: flex; width: max-content; animation: sliderScroll 38s linear infinite; }
.slider:hover .slider__track { animation-play-state: paused; }
.slider__set { display: flex; gap: clamp(.8rem, 2vw, 1.4rem); margin: 0; padding: 0 clamp(.4rem, 1vw, .7rem) 0 0; list-style: none; }
.slider__slide {
  flex: 0 0 auto;
  width: clamp(230px, 26vw, 320px); aspect-ratio: 4 / 3;
  border-radius: 16px; overflow: hidden; box-shadow: 0 10px 26px rgba(0,0,0,.12);
}
.slider__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes sliderScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .slider__track { animation: none; }
  .slider { overflow-x: auto; }
}
.menu__list { list-style: none; padding: 0; display: grid; gap: 1.3rem; }
/* clickable dishes: hover preview + active highlight */
.menu__item[data-img] { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.menu__item[data-img] .menu__name { transition: color .2s ease; }
.menu__item[data-img]:hover .menu__name,
.menu__item[data-img].is-active .menu__name { color: var(--green); }
.menu__item[data-img].is-active .menu__name { position: relative; }
.menu__item[data-img].is-active .menu__name::before {
  content: ""; position: absolute; left: -.85rem; top: 50%;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  transform: translateY(-50%);
}
.menu__item[data-img]:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 6px;
}
.menu__row { display: flex; align-items: baseline; gap: .5rem; }
.menu__name { font-weight: 700; font-size: 1.08rem; }
.menu__dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-3px); }
.menu__price { font-family: var(--font-head); font-weight: 700; color: var(--spice); font-variant-numeric: tabular-nums; }
.menu__desc { color: var(--muted); font-size: .92rem; margin-top: .2rem; }
.menu__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: clamp(2rem,5vw,3rem); }
.menu__quote { margin-top: clamp(2rem,5vw,3rem); text-align: center; font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: clamp(1.25rem,3vw,1.75rem); line-height: 1.4; max-width: 38ch; margin-left: auto; margin-right: auto; }

/* =========================================================
   DISHES (PARALLAX)
   ========================================================= */
.dishes { background: var(--ink); color: var(--cream); }
.dishes__intro { padding-block: clamp(3.5rem, 9vw, 7rem) clamp(1.5rem, 4vw, 2.5rem); }
.dishes__intro .eyebrow { color: var(--gold); }
.dishes__intro h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); }

.dish {
  position: relative; overflow: hidden;
  min-height: clamp(420px, 78vh, 760px);
  display: flex; align-items: center;
}
.dish__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.dish.is-in .dish__media img { transform: scale(1.06); }
.dish__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(14,12,9,.9) 0%, rgba(14,12,9,.7) 45%, rgba(14,12,9,.15) 100%);
}
.dish__body { position: relative; z-index: 2; width: 100%; }
.dish__body--right { display: flex; justify-content: flex-end; text-align: left; }

.dish__card {
  max-width: 440px;
  background: rgba(28,23,18,.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242,183,5,.35);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.dish__num {
  font-family: var(--font-head); font-style: italic; font-weight: 700;
  font-size: 1.1rem; color: var(--gold); display: block; margin-bottom: .4rem;
}
.dish__name { font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: #fff; margin-bottom: .4rem; }
.dish__tag { color: var(--gold); font-style: italic; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 1.2rem; }
.dish__ingredients { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.dish__ingredients li {
  font-weight: 600; font-size: .9rem;
  background: rgba(251,245,233,.08); border: 1px solid rgba(251,245,233,.18);
  border-radius: 999px; padding: .42rem .95rem; color: var(--cream);
}
.dish__ingredients li::before { content: "•"; color: var(--spice); margin-right: .45rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--cream-2); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  grid-auto-flow: dense;
  padding-inline: var(--pad); max-width: 1400px; margin-inline: auto;
}
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform 600ms var(--ease); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--tall img { aspect-ratio: 1/2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--wide img { aspect-ratio: 2/1; }
.gallery__item:hover img { transform: scale(1.06); }

/* =========================================================
   VISIT
   ========================================================= */
.visit { background: var(--bg); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: stretch; }
.visit__info h2 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 1.8rem; }
.visit__block { margin-bottom: 1.8rem; }
.visit__block h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--green); }
.visit__line { color: var(--muted); }
.hours { width: 100%; max-width: 380px; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 600; color: var(--ink); }
.hours td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.visit__hint { font-size: .82rem; color: var(--muted); margin-top: .5rem; font-style: italic; }
.visit__contacts { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.4rem; }
.visit__contact { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; min-height: 44px; transition: color var(--dur) var(--ease); }
.visit__contact svg { width: 22px; height: 22px; color: var(--spice); flex: 0 0 auto; }
.visit__contact:hover { color: var(--green); }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; box-shadow: var(--shadow-md); }
.map-placeholder {
  height: 100%; min-height: 340px; display: grid; place-content: center; gap: .8rem; justify-items: center;
  background:
    repeating-linear-gradient(45deg, var(--cream-2) 0 18px, var(--cream) 18px 36px);
  color: var(--green-deep); border: 2px dashed var(--line); text-align: center; padding: 2rem;
}
.map-placeholder svg { width: 48px; height: 48px; }
.map-placeholder span { font-weight: 700; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--green-deep); color: var(--cream); position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(242,183,5,.18), transparent 45%);
  pointer-events: none;
}
.contact__inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.contact__copy h2 { font-size: clamp(2rem,5vw,3.4rem); margin-bottom: 1rem; }
.contact__copy p { color: rgba(251,245,233,.85); max-width: 42ch; }

.contact__form { background: var(--cream); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.5rem); box-shadow: var(--shadow-lg); display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .92rem; }
.field label span { color: var(--spice); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem .9rem; border: 2px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink); width: 100%; min-height: 48px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(14,122,77,.15);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--spice); }
.field__help { color: var(--muted); font-size: .82rem; }
.field__error { color: var(--spice-deep); font-size: .82rem; font-weight: 600; min-height: 1em; }
.contact__submit { width: 100%; margin-top: .4rem; }
.contact__status { font-weight: 600; min-height: 1.2em; text-align: center; }
.contact__status.is-ok { color: var(--green-deep); }
.contact__status.is-err { color: var(--spice-deep); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--cream-2); }
.faq__list { max-width: 800px; display: grid; gap: .9rem; }
.faq__item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item[open] { border-color: var(--gold); box-shadow: var(--shadow-md); }
.faq__q {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink); padding: 1.1rem 1.3rem; min-height: 56px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; font-family: var(--font-body); font-weight: 700; font-size: 1.5rem; line-height: 1;
  color: var(--green); flex: 0 0 auto; transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); color: var(--spice); }
.faq__q:hover { color: var(--green); }
.faq__a { padding: 0 1.3rem 1.2rem; }
.faq__a p { color: var(--muted); max-width: 64ch; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--cream); padding-block: clamp(2.5rem,6vw,4rem) 1.5rem; border-top: 4px solid; border-image: linear-gradient(90deg, var(--gold), var(--gold-deep), var(--gold)) 1; }
.footer__col h4 { position: relative; }
.footer__col h4::after { content: ""; display: block; width: 32px; height: 2px; margin-top: .5rem; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand__name--lg { color: var(--gold); font-size: 1.6rem; display: block; margin-bottom: .4rem; }
.footer__brand p { color: rgba(251,245,233,.65); }
.footer__col h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; color: var(--gold); margin-bottom: .9rem; }
.footer__col a { display: block; color: rgba(251,245,233,.8); padding: .25rem 0; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: var(--cream);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding-top: 1.5rem; font-size: .85rem; color: rgba(251,245,233,.55); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0s); will-change: opacity, transform;
}
[data-reveal="down"]  { transform: translateY(-28px); }
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal="blur"]  { transform: translateY(20px); filter: blur(10px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-in   { opacity: 1; transform: none; filter: none; }

/* keep the legacy .reveal class working */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* Staggered children: parent toggles is-in, kids cascade by --i */
[data-stagger] .stagger-child {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
[data-stagger].is-in .stagger-child { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] .stagger-child { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    background: var(--cream); padding: 2rem var(--pad); box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform var(--dur) var(--ease); z-index: var(--z-nav);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a:not(.btn) { color: var(--ink) !important; text-shadow: none !important; font-size: 1.3rem; font-family: var(--font-head); }
  .nav__cta { width: 100%; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; }
  .menu__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--tall img { aspect-ratio: 1; }
  /* placeholder: drop the desktop right-column pin on small screens */
  .gallery__item--ph { grid-column: auto !important; grid-row: auto !important; }
  .gallery__item--ph img { aspect-ratio: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero { align-items: center; padding-top: 6rem; }
  .dish__body--right { justify-content: flex-start; }
  .dish__scrim { background: linear-gradient(180deg, rgba(14,12,9,.45) 0%, rgba(14,12,9,.85) 100%); }
  .dish__card { max-width: 100%; }
}

/* =========================================================
   OUR STORY PAGE — page hero + values
   ========================================================= */
.pagehero {
  background: var(--cream); position: relative; overflow: hidden;
  padding: clamp(7rem, 16vw, 10rem) 0 clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.pagehero__inner { max-width: 760px; position: relative; z-index: 1; }

/* full-bleed dish photo hero (menu page) */
.pagehero--photo {
  display: flex; align-items: center; min-height: 58vh;
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(20,14,8,.62), rgba(20,14,8,.72)),
    var(--hero-img, url("assets/img/menu-hero.jpg"));
  background-size: cover;
  background-position: center;
  border-bottom: none;
}
.pagehero--photo .eyebrow { color: var(--gold); }
.pagehero--photo .pagehero__title { color: var(--cream); }
.pagehero--photo .pagehero__lead { color: rgba(251,245,233,.9); }

/* cutout-bowl variant: brand-green base, contained bowl centered, dark overlay on top */
.pagehero--bowl {
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(20,14,8,.42), rgba(20,14,8,.55)),
    var(--hero-img);
  background-size: cover, contain;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.pagehero__title {
  font-family: var(--font-head); font-style: italic; font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.4rem); line-height: 1.02; color: var(--ink); margin-top: .3rem;
}
.pagehero__lead { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 52ch; margin-top: 1.1rem; }
.pagehero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }

.values { background: var(--bg); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.value {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.value:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.value__icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  background: var(--green); color: #fff; margin-bottom: 1.1rem;
}
.value__icon svg { width: 28px; height: 28px; }
.value:nth-child(2) .value__icon { background: var(--spice); }
.value:nth-child(3) .value__icon { background: var(--gold); color: var(--ink); }
.value h3 { font-size: 1.25rem; margin-bottom: .5rem; color: var(--ink); }
.value p { color: var(--muted); font-size: .95rem; }

.contact__inner--center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.contact__inner--center .contact__copy p { max-width: 52ch; }

@media (max-width: 860px) { .values__grid { grid-template-columns: 1fr; } }

.svc__actions { display: flex; justify-content: center; margin-top: clamp(2rem, 5vw, 3rem); }

.contact__head { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.5rem); margin-bottom: 1.2rem; }
.contact__head-text .eyebrow { margin-bottom: .4rem; }
.contact__head-text h2 { margin: 0; }
.contact__logo {
  flex: 0 0 auto; width: clamp(80px, 12vw, 120px); height: auto; aspect-ratio: 1 / 1;
  object-fit: contain; border-radius: 16px;
}
@media (max-width: 460px) { .contact__head { flex-direction: column; align-items: flex-start; } }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.catering { background: var(--bg); }

/* luxurious event tag list */
.taglist { list-style: none; padding: 0; margin: 1.6rem 0 .4rem; display: flex; flex-wrap: wrap; gap: .6rem .55rem; }
.tag {
  position: relative; padding: .55rem 1.15rem; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--gold) 60%, var(--line));
  background: rgba(255,255,255,.55); color: var(--ink);
  font-size: .92rem; font-weight: 600; letter-spacing: .015em;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.tag:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); }
.catering__note { margin-top: 1.4rem; font-family: var(--font-head); font-style: italic; font-size: 1.05rem; color: var(--green); }
.catering__note span { color: var(--spice); margin-right: .3rem; }

/* cooking class card */
.classes .section__head { margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.classcard {
  max-width: 880px; margin: 0 auto; padding: clamp(1.6rem, 4vw, 2.8rem);
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.classcard__photo {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 1.8rem; display: block;
}
.classcard__head { text-align: center; margin-bottom: 1.8rem; }
.classcard__head h3 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin-bottom: .4rem; }
.classcard__head p { color: var(--muted); }
.class-stats {
  list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center;
}
.class-stat { padding: 1.1rem .6rem; border-radius: var(--radius); background: color-mix(in srgb, var(--green) 6%, var(--bg)); border: 1px solid var(--line); }
.class-stat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--spice); }
.class-stat__label { display: block; margin-top: .35rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.class-feats { list-style: none; padding: 0; margin: 0 auto 1.8rem; display: grid; gap: .7rem; max-width: 420px; }
.class-feats li { position: relative; padding-left: 1.8rem; font-weight: 600; }
.class-feats li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.classcard .pagehero__actions { justify-content: center; }

/* closing sign-off block */
.signoff { background: var(--bg); text-align: center; }
.signoff__inner { max-width: 720px; margin: 0 auto; }
.signoff__chef { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.4rem, 3.4vw, 2.1rem); color: var(--ink); }
.signoff__brand { font-family: var(--font-head); font-style: italic; font-size: 1.15rem; color: var(--green); margin-top: .3rem; }
.signoff__brand--alt { color: var(--spice); }
.signoff .menu__quote { margin-top: 1.8rem; }

@media (max-width: 560px) { .class-stats { grid-template-columns: 1fr; } }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { height: 100%; }
}
