/* =========================================================
   CANELLI — Made to Crave
   Theme: Sweet Side (white) / Savory Side (black) + dark red
   ========================================================= */

:root {
  --cream:      #FAF4EA;   /* sweet background */
  --cream-2:    #F2E9D8;
  --white:      #ffffff;
  --ink:        #121212;   /* savory background / black */
  --ink-2:      #1b1b1b;
  --ink-3:      #2a2a2a;

  --red:        #C0211F;   /* primary dark-red accent */
  --red-deep:   #9B1714;
  --ember:      #E5421E;   /* warm brand vermilion (sparingly) */

  --text:       #1a1a1a;
  --muted:      #6b6258;
  --muted-dark: #b6ada1;

  --maxw: 1180px;
  --radius: 18px;
  --shadow: 0 18px 50px -22px rgba(0,0,0,.35);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", cursive;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

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

/* ---------- Shared type ---------- */
.kicker {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.kicker--center { display: flex; justify-content: center; }
.kicker--light { color: var(--ember); }

.h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.h2--center { text-align: center; }
.h2--light { color: var(--white); }

/* Animated red underline */
.ul { position: relative; white-space: nowrap; }
.ul::after {
  content: "";
  position: absolute;
  left: 0; bottom: -.08em;
  height: .12em;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
.ul--center::after { left: 0; }
.reveal.is-in .ul::after,
.section-head.is-in .ul::after { transform: scaleX(1); }
/* fallback so underline still draws if it's not inside a reveal element */
h1 .ul::after, .h2:not(.reveal *) .ul::after { transform: scaleX(1); }

.section-sub {
  margin-top: 1rem;
  color: var(--muted);
  max-width: min(44ch, 100%);
}
.section-sub--light { color: var(--muted-dark); }
.h2--center + .section-sub,
.section-head .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

.caveat { font-family: var(--script); font-size: 1.35em; color: var(--red); }

/* ---------- 3 red ticks motif ---------- */
.ticks { display: inline-flex; gap: 3px; align-items: flex-end; }
.ticks i {
  width: 3px; height: 13px; border-radius: 3px;
  background: var(--red);
  display: block;
  transform-origin: bottom;
  animation: tickPop 2.4s var(--ease) infinite;
}
.ticks i:nth-child(1) { height: 9px;  animation-delay: 0s;   }
.ticks i:nth-child(2) { height: 15px; animation-delay: .15s; }
.ticks i:nth-child(3) { height: 11px; animation-delay: .3s;  }
.ticks--dark i { background: var(--red); }
@keyframes tickPop {
  0%, 60%, 100% { transform: scaleY(1); opacity: 1; }
  20%           { transform: scaleY(1.5); opacity: .85; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--solid {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px -12px rgba(192,33,31,.7);
}
.btn--solid:hover { background: var(--red-deep); transform: translateY(-3px); }
.btn--ghost {
  border-color: currentColor;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-3px); }

/* =========================================================
   LOADING SPLASH
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(60% 60% at 50% 42%, #232323 0%, var(--ink) 55%, #050505 100%);
  /* auto-fades even without JS */
  animation: loaderHide .6s var(--ease) 2.9s forwards;
}
@keyframes loaderHide { to { opacity: 0; visibility: hidden; } }
body.is-loading { overflow: hidden; }

.loader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.3rem;
  animation: loaderIn .6s var(--ease) both;
}
@keyframes loaderIn { from { opacity: 0; transform: translateY(12px); } }

.loader__roll {
  position: relative;
  width: clamp(150px, 42vw, 200px);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
}
.loader__img { width: 100%; height: auto; display: block; animation: rollBob 2.2s ease-in-out infinite; }
@keyframes rollBob { 50% { transform: translateY(-7px) rotate(-1.5deg); } }

.loader__steam {
  position: absolute;
  left: 50%; top: -32%;
  transform: translateX(-50%);
  width: 68%; height: 54%;
  overflow: visible;
  z-index: 2;
}
/* hotter, faster steam for the splash */
.loader__steam .steam { stroke-width: 6; animation-duration: 1.7s; }

.loader__logo { width: clamp(120px, 34vw, 170px); height: auto; }
.loader__tag {
  font-weight: 800; text-transform: uppercase; letter-spacing: .3em;
  font-size: .72rem; color: var(--ember); margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .loader { animation: loaderHide .4s linear 2s forwards; }
  .loader__img { animation: none; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: .55rem 0;
}
.nav.is-scrolled {
  background: rgba(250,244,234,.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { height: 38px; width: auto; transition: height .35s var(--ease); }
.nav.is-scrolled .nav__logo { height: 32px; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.navlink {
  position: relative;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  padding: .25rem 0;
}
.navlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.navlink:hover::after { transform: scaleX(1); }
.navlink--cta {
  background: var(--ink);
  color: var(--white);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.navlink--cta::after { display: none; }
.navlink--cta:hover { background: var(--red); transform: translateY(-2px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 26px; height: 2.5px; border-radius: 3px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO — photo-forward sweet / savory
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(110% 90% at 12% 8%, var(--white) 0%, var(--cream) 50%, var(--cream-2) 100%);
}
/* diagonal savory panel behind the photo stack */
.hero__panel {
  position: absolute;
  inset: 0 -8% 0 auto;
  width: 54%;
  z-index: 0;
  background: radial-gradient(120% 120% at 80% 25%, var(--ink-3) 0%, var(--ink) 55%, #050505 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
/* red seam along the panel's diagonal edge */
.hero__panel::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--red);
  clip-path: polygon(22% 0, 23.4% 0, 1.4% 100%, 0 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem clamp(1rem,4vw,2rem) 4.5rem;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__left { max-width: 31rem; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  color: var(--red);
  margin-bottom: 1.3rem;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 4.7rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--ink);
}
.hero__title .amp { color: var(--red); }
.hero__sub {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 40ch;
}
.hero__sub strong { color: var(--ink); font-weight: 700; }
.hero__cta {
  margin-top: 2rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
}
.pin {
  width: 11px; height: 11px; border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(192,33,31,.18);
}

/* ----- hero video ----- */
.hero__media { position: relative; display: grid; place-items: center; min-height: 440px; }
.hero__video {
  position: relative;
  margin: 0;
  width: min(82%, 330px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
  background: #000;
  transform: rotate(2deg);
}
.hero__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__chip {
  position: absolute; bottom: .7rem; left: .7rem; z-index: 2;
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem .7rem; border-radius: 999px;
  background: #fff; color: var(--ink);
}
.hero__chip--sweet  { background: #fff; color: var(--ink); }
.hero__steam {
  position: absolute; z-index: 4;
  top: -22px; right: 24%;
  width: 84px; height: 64px;
  overflow: visible;
}
.steam {
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  fill: none;
  opacity: 0;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: steamRise 3s ease-in-out infinite;
}
.steam--1 { animation-delay: 0s;   }
.steam--2 { animation-delay: .5s;  }
.steam--3 { animation-delay: 1s;   }
@keyframes steamRise {
  0%   { opacity: 0; stroke-dashoffset: 90; transform: translateY(8px); }
  35%  { opacity: .9; }
  70%  { opacity: .5; stroke-dashoffset: 0; }
  100% { opacity: 0; stroke-dashoffset: -30; transform: translateY(-6px); }
}

/* ----- scroll cue ----- */
.hero__scroll {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--red);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--red);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0);} 40% {opacity:1;} 80%{opacity:0; transform: translateY(14px);} 100%{opacity:0;} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: .9rem 0;
  overflow: hidden;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.marquee__track {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  width: max-content;
  animation: scrollX 28s linear infinite;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .95rem;
}
.marquee__track .dot { color: var(--red); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* =========================================================
   SWEET / SAVORY FEATURES
   ========================================================= */
.features { padding: clamp(3.5rem, 8vw, 6rem) 0 0; }
.features .section-head { padding: 0 clamp(1rem,4vw,2rem); }

.feature {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature__media { position: relative; }
.feature__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.feature__body .h2 { margin: .3rem 0 1rem; }
.feature__body p { color: var(--muted); margin-bottom: 1.6rem; max-width: 46ch; }

.side-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 900; text-transform: uppercase; letter-spacing: .14em;
  font-size: .82rem;
}
.side-tag--sweet  { color: var(--red); }
.side-tag--savory { color: var(--ember); }

/* savory feature = dark card, media on the right */
.feature--savory {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.feature--savory::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--red) 0 36px, transparent 36px 72px);
}
.feature--savory .feature__media { order: 2; }
.feature--savory .feature__body  { order: 1; }
.feature--savory .feature__body p { color: var(--muted-dark); }
.feature--savory .feature__media img { border-color: var(--ink-3); }

/* =========================================================
   MENU
   ========================================================= */
.menu {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 2rem) clamp(4rem,8vw,7rem);
}
.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); text-align: center; }

/* full menu image */
.menu__image {
  margin: 0 auto;
  max-width: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  background: var(--cream);
}
.menu__image img { display: block; width: 100%; height: auto; }

.course {
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.4rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.course:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.course--sweet {
  background: var(--white);
  border: 1px solid var(--cream-2);
}
.course--savory {
  background: var(--ink);
  color: var(--cream);
}
.course--savory .course__note { color: var(--muted-dark); }
.course--split {
  background: linear-gradient(120deg, var(--white) 0% 48%, var(--ink) 52% 100%);
  color: var(--text);
  overflow: hidden;
}

.course__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.course__head--split { color: var(--ink); }
.course__icon {
  font-size: 1.8rem;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--cream-2);
}
.course--savory .course__icon { background: var(--ink-3); border-color: var(--ink-3); }
.course__title { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 900; letter-spacing: -.01em; }
.course__note { font-size: .92rem; color: var(--muted); font-weight: 500; }
.price-tag {
  align-self: start;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: .4rem .9rem;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -10px rgba(192,33,31,.8);
}

.flavors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem 1.5rem;
}
.flavors li {
  position: relative;
  padding-left: 1.3rem;
  font-weight: 500;
  font-size: 1rem;
}
.flavors li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.flavors--chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.flavors--chips li {
  padding: .35rem .9rem;
  background: var(--ink-3);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
}
.flavors--chips li::before { display: none; }

/* split course */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,3vw,2.5rem); }
.split__label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  margin-bottom: .9rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.split__label::after {
  content: ""; width: 22px; height: 3px; background: var(--red); border-radius: 3px;
}
.split__col--sweet { color: var(--ink); }
.split__col--savory { color: var(--cream); }
.split__col--savory .flavors li { color: var(--cream); }
.split .flavors { grid-template-columns: 1fr; }

/* =========================================================
   THIS WEEK / EVENTS
   ========================================================= */
.week {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem);
  position: relative;
}
.week::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--red) 0 40px, transparent 40px 80px);
}
.events {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.event {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.event::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.event:hover { transform: translateY(-5px); border-color: var(--red); }
.event:hover::before { transform: scaleY(1); }
.event.is-today { border-color: var(--red); background: linear-gradient(160deg, #20100f, var(--ink-2)); }
.event.is-today::before { transform: scaleY(1); }

.event__day {
  display: flex; align-items: baseline; gap: .6rem;
  margin-bottom: .9rem;
}
.event__dow {
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.event__date {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red);
}
.event__today-pill {
  margin-left: auto;
  align-self: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: .25rem .6rem;
  border-radius: 999px;
}
.event__venue { font-weight: 800; font-size: 1.1rem; margin-bottom: .35rem; }
.event__addr { color: var(--muted-dark); font-size: .92rem; margin-bottom: 1rem; flex: 1; }
.event__time {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .9rem; color: var(--cream);
  margin-bottom: 1.1rem;
}
.event__time::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ember);
  box-shadow: 0 0 0 3px rgba(229,66,30,.25);
}
.event__map {
  align-self: flex-start;
  font-weight: 700;
  font-size: .9rem;
  color: var(--cream);
  display: inline-flex; align-items: center; gap: .4rem;
  position: relative;
}
.event__map::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.event__map:hover::after { transform: scaleX(1); }
.event__map svg { width: 15px; height: 15px; }

/* =========================================================
   FIND US
   ========================================================= */
.find {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.find__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.find__text p { color: var(--muted); margin-bottom: 1.4rem; max-width: 46ch; }
.find__actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem,6vw,4.5rem) clamp(1rem,4vw,2rem) 2rem;
  border-top: 4px solid var(--red);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__logo { height: 46px; margin-bottom: 1rem; }
.footer__tag { color: var(--muted-dark); font-size: .95rem; }
.footer__links { display: flex; flex-direction: column; gap: .7rem; }
.footer__links .navlink { color: var(--cream); }
.footer__links .navlink::after { background: var(--red); }
.footer__contact { display: flex; flex-direction: column; gap: .7rem; font-weight: 600; }
.footer__ig { display: inline-flex; align-items: center; gap: .5rem; color: var(--cream); transition: color .25s var(--ease); }
.footer__ig:hover { color: var(--ember); }
.footer__phone { color: var(--cream); }
.footer__loc { color: var(--muted-dark); font-weight: 500; }

.footer__base {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-3);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--muted-dark);
}
.footer__credit { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.footer__webmart {
  max-width: var(--maxw);
  margin: 1.4rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .76rem;
  color: var(--muted-dark);
  transition: color .2s var(--ease);
}
.footer__webmart img { width: 18px; height: 18px; display: block; }
.footer__webmart strong { color: var(--cream); font-weight: 700; }
.footer__webmart:hover { color: var(--cream); }

/* =========================================================
   VIDEO COMPONENT
   ========================================================= */
.video {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 4 / 5;
}
.video--portrait { aspect-ratio: 9 / 16; }
.video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video__play {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(192,33,31,.8);
  transition: transform .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
}
.video__play svg { width: 30px; height: 30px; margin-left: 3px; }
.video__play:hover { transform: scale(1.08); background: var(--red-deep); }
.video.is-playing .video__play,
.video.is-playing .video__cap { opacity: 0; pointer-events: none; }
.video__cap {
  position: absolute; left: .9rem; bottom: .9rem;
  background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px);
  font-size: .74rem; font-weight: 700; letter-spacing: .03em;
  padding: .35rem .7rem; border-radius: 999px;
  transition: opacity .25s var(--ease);
}

/* =========================================================
   CATERING (main point of sale)
   ========================================================= */
.catering {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}
.catering__halo {
  position: absolute; top: -8%; left: 50%; transform: translateX(-50%);
  width: min(90vw, 900px); height: 55vh;
  background: radial-gradient(closest-side, rgba(192,33,31,.30), transparent 72%);
  pointer-events: none;
}
.catering .section-head { position: relative; z-index: 1; }
.catering__grid {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.catering__pitch .video { aspect-ratio: 4 / 5; }
.perks { margin-top: 1.6rem; display: grid; gap: 1rem; }
.perks li { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; color: var(--muted-dark); }
.perks strong { color: var(--cream); }
.perks__ic {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink-3); display: grid; place-items: center; font-size: 1.1rem;
}

/* ----- order builder ----- */
.builder {
  background: var(--cream); color: var(--text);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}
.builder__title { font-weight: 900; font-size: 1.35rem; letter-spacing: -.01em; margin-bottom: 1.3rem; }
.field { display: block; border: none; padding: 0; margin: 0 0 1.2rem; min-inline-size: 0; }
.field__label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .5rem; color: var(--ink); }
.field__opt { font-weight: 500; color: var(--muted); }
.field__hint { font-size: .82rem; color: var(--muted); margin-top: .6rem; }
.field__hint.is-warn { color: var(--red); font-weight: 600; }

.input {
  width: 100%; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--cream-2);
  border-radius: 12px; padding: .7rem .85rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,33,31,.15); }
textarea.input { resize: vertical; min-height: 64px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

.toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.toggle__opt { position: relative; cursor: pointer; display: block; }
.toggle__opt input { position: absolute; opacity: 0; inset: 0; }
.toggle__face {
  display: block; padding: .8rem .9rem; border-radius: 12px; height: 100%;
  border: 1.5px solid var(--cream-2); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.toggle__t { display: block; font-weight: 800; font-size: .92rem; }
.toggle__s { display: block; font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.toggle__opt input:checked + .toggle__face { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,33,31,.15); }
.toggle__opt input:focus-visible + .toggle__face { outline: 2px solid var(--red); outline-offset: 2px; }

.qtys { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.qty { background: #fff; border: 1.5px solid var(--cream-2); border-radius: 12px; padding: .7rem .8rem; }
.qty--sweet  { border-top: 3px solid var(--red); }
.qty--savory { border-top: 3px solid var(--ink); }
.qty__name { display: block; font-weight: 700; font-size: .82rem; margin-bottom: .5rem; }
.stepper { display: flex; align-items: center; gap: .4rem; }
.stepper__btn {
  width: 34px; height: 34px; flex: none; border-radius: 9px;
  border: 1.5px solid var(--cream-2); background: var(--cream);
  font-size: 1.15rem; font-weight: 700; line-height: 1; cursor: pointer; color: var(--ink);
  transition: background .15s, border-color .15s, color .15s;
}
.stepper__btn:hover { border-color: var(--red); color: var(--red); }
.stepper__val {
  width: 100%; text-align: center; font: inherit; font-weight: 800; font-size: 1.05rem;
  border: none; background: transparent; color: var(--ink); -moz-appearance: textfield;
}
.stepper__val::-webkit-outer-spin-button,
.stepper__val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* product chooser */
.prods { display: grid; gap: .7rem; }
.prod { background: #fff; border: 1.5px solid var(--cream-2); border-radius: 12px; padding: .7rem .8rem; }
.prod__head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.prod__info { display: flex; flex-direction: column; }
.prod__name { font-weight: 800; font-size: .95rem; }
.prod__price { font-size: .78rem; color: var(--muted); }
.prod__flavors { margin-top: .7rem; padding-top: .7rem; border-top: 1px dashed var(--cream-2); }
.prod__flavlabel { font-size: .78rem; font-weight: 700; color: var(--ink); margin: .35rem 0 .45rem; }
.prod__opt { font-weight: 500; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .3rem; }
.chip {
  font: inherit; font-size: .8rem; font-weight: 600; cursor: pointer;
  padding: .32rem .7rem; border-radius: 999px;
  border: 1.5px solid var(--cream-2); background: var(--cream); color: var(--ink);
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.is-on { background: var(--red); border-color: var(--red); color: #fff; }
.chip.is-on:hover { color: #fff; }

.field__hint.is-good { color: var(--red-deep); font-weight: 600; }

.estimate { background: var(--ink); color: var(--cream); border-radius: 14px; padding: 1.1rem 1.2rem; margin: .4rem 0 1.3rem; }
.estimate__rows .row--sub {
  margin-top: .45rem; padding-top: .45rem;
  border-top: 1px solid var(--ink-3); color: var(--cream); font-weight: 600;
}
.estimate__rows .row--disc span { color: var(--ember); font-weight: 700; }

/* low-key celebration toast */
.toast {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 140%);
  background: var(--ink); color: #fff; border: 1.5px solid var(--red);
  padding: .6rem 1.05rem; border-radius: 999px;
  font-weight: 700; font-size: .88rem; letter-spacing: .01em;
  box-shadow: var(--shadow); z-index: 200; opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }
.toast .pct { color: var(--ember); }
@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity .3s; transform: translate(-50%, 0); }
}
.estimate__rows { display: grid; gap: .35rem; font-size: .88rem; color: var(--muted-dark); }
.estimate__rows .row { display: flex; justify-content: space-between; gap: 1rem; }
.estimate__rows .row span:last-child { color: var(--cream); font-weight: 600; }
.estimate__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: .7rem; padding-top: .7rem; border-top: 1px solid var(--ink-3); font-weight: 700;
}
.estimate__total strong { font-size: 1.6rem; color: #fff; }
.estimate__note { font-size: .74rem; color: var(--muted-dark); margin-top: .5rem; }

.btn--block { width: 100%; justify-content: center; }
.builder__alt { text-align: center; font-size: .85rem; color: var(--muted); margin-top: .8rem; }
.builder__alt a { color: var(--red); font-weight: 700; }
.builder__ok {
  margin-top: 1rem; padding: .9rem 1rem; border-radius: 12px;
  background: rgba(192,33,31,.1); border: 1px solid rgba(192,33,31,.3);
  color: var(--ink); font-weight: 600; font-size: .92rem; text-align: center;
}

/* =========================================================
   RESPONSIVE — new sections
   ========================================================= */
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__panel { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 6rem clamp(1rem,4vw,2rem) 3.5rem; }
  .hero__left { max-width: none; }
  .hero__media { min-height: 0; max-width: 460px; margin-bottom: 1.5rem; }
  .feature, .feature--savory, .catering__grid { grid-template-columns: 1fr; }
  .feature--savory .feature__media,
  .feature--savory .feature__body { order: 0; }
}
@media (max-width: 520px) {
  .grid2, .qtys, .toggle { grid-template-columns: 1fr; }
  .hero__video { width: min(86%, 290px); }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .roll__svg, .ticks i, .steam, .marquee__track, .hero__scroll span { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    background: var(--cream);
    padding: 2rem 2.2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.4);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links .navlink { font-size: 1.3rem; }
  .nav__burger { display: flex; z-index: 101; }

  .story, .find { grid-template-columns: 1fr; }
  .find__media { order: -1; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 560px) {
  .flavors { grid-template-columns: 1fr; }
  .course--split { background: var(--white); }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .split__col--savory {
    background: var(--ink);
    margin: 0 -1.5rem -1.5rem;
    padding: 1.5rem;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .course__head { grid-template-columns: auto 1fr; }
  .price-tag { grid-column: 2; justify-self: start; margin-top: .3rem; }
  .hero__half--sweet { clip-path: polygon(0 0, 100% 0, 100% 42%, 0 58%); }
  .hero__half--savory { clip-path: polygon(0 58%, 100% 42%, 100% 100%, 0 100%); }
  .hero::before { background: linear-gradient(to bottom right, transparent calc(50% - 1.5px), var(--red) calc(50% - 1.5px), var(--red) calc(50% + 1.5px), transparent calc(50% + 1.5px)); }
}
