/* ============================================================
   GRILLOVA — Flame Grilled Perfection
   Design tokens
   ============================================================ */
:root {
  --cream: #efe6d9;
  --ink: #17120e;
  --orange: #e8622c;
  --orange-deep: #c24e1d;
  --gold: #f6a821;
  --red: #d8232a;
  --warm-white: #fff7ee;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
}

img {
  max-width: none;
}

/* ============ Keyframes ============ */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(90px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.5;
  }
}
@keyframes flick {
  0%,
  100% {
    transform: scale(1) rotate(-2deg);
  }
  30% {
    transform: scale(1.08) rotate(2deg);
  }
  60% {
    transform: scale(0.96) rotate(-1deg);
  }
}

/* ============ Shared ============ */
.accent {
  color: var(--orange);
}

.outline-orange {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}

.outline-cream {
  color: transparent;
  -webkit-text-stroke: 2px var(--warm-white);
}

.kicker {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.26em;
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head__title {
  margin: 0;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-head__title--cream {
  color: var(--warm-white);
}

.section-head__note {
  font-size: 15px;
  color: rgba(23, 18, 14, 0.6);
  font-weight: 500;
}

.section-head__note--cream {
  color: rgba(255, 247, 238, 0.8);
  font-weight: 600;
}

/* Scroll reveal (applied by JS to [data-reveal] elements below the fold) */
.will-reveal {
  opacity: 0;
  transform: translateY(54px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
}

.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;

  background: rgba(239, 230, 217, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 98, 44, 0.18);
}

.nav__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo {
  height: 40px;
  display: block;
  mix-blend-mode: multiply;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav__link {
  color: var(--ink);
  text-decoration: none;
}
.nav__link:hover {
  color: var(--orange);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(232, 98, 44, 0.35);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--red);
}

/* Hamburger toggle (mobile only) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.3s var(--ease-smooth),
    opacity 0.2s ease;
}

.nav--open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav--open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav--open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 5vw 0;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1100px 700px at 78% 42%,
    rgba(232, 98, 44, 0.16),
    rgba(232, 98, 44, 0) 60%
  );
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(232, 98, 44, 0.5);
  color: var(--orange);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  animation: fadeIn 1s 0.1s both;
}

.hero__title {
  margin: 28px 0 0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(44px, 7.6vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero__line--last {
  padding-bottom: 0.08em;
}

.hero__word {
  display: inline-block;
}
.hero__word--1 {
  animation: riseIn 1s 0.15s var(--ease-out) both;
}
.hero__word--2 {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--orange);
  animation: riseIn 1s 0.3s var(--ease-out) both;
}
.hero__word--3 {
  color: var(--orange);
  animation: riseIn 1s 0.45s var(--ease-out) both;
}

.hero__lede {
  margin: 30px 0 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(23, 18, 14, 0.75);
  animation: fadeIn 1s 0.8s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  animation: fadeIn 1s 1s both;
}

.hero__btn {
  background: var(--ink);
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 34px;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.hero__btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.hero__phone {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
}

.hero__phone:hover {
  color: var(--orange);
}

.hero__visual {
  position: relative;
  justify-self: center;
  width: min(44vw, 520px);
  aspect-ratio: 1;
}

.hero__ring {
  position: absolute;
  inset: -5.5%;
  border: 2px solid rgba(232, 98, 44, 0.55);
  border-radius: 50%;
  animation: ringPulse 5s ease-in-out infinite;
}

.hero__dot {
  position: absolute;
  top: -2%;
  right: 6%;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
}

.hero__img-parallax {
  position: absolute;
  inset: 0;
}

.hero__img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(120, 45, 10, 0.35);
  animation: bob 7s ease-in-out infinite;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.hero__stamp {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: 150px;
  height: 150px;
  animation: spinSlow 22s linear infinite;
}

.hero__stamp svg {
  width: 100%;
  height: 100%;
}

.hero__stamp-text {
  font-family: "Poppins", sans-serif;
  font-size: 8.4px;
  font-weight: 700;
  letter-spacing: 0.22em;
  fill: var(--orange);
}

.hero__scroll-hint-wrap {
  position: relative;
  margin-top: auto;
  padding-top: 60px;
}

.hero__scroll-hint {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(23, 18, 14, 0.5);
  font-weight: 600;
  padding-bottom: 18px;
}

/* ============ Ticker marquee ============ */
.ticker {
  background: var(--orange);
  color: var(--warm-white);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 14px 34px rgba(232, 98, 44, 0.3);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.ticker__item {
  padding: 0 26px;
}
.ticker__star {
  color: var(--gold);
}

/* ============ Signature ============ */
.signature {
  position: relative;
  padding: 140px 5vw 120px;
  max-width: 1500px;
  margin: 0 auto;
}

.signature__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}

.signature__media {
  position: relative;
}

.signature__photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(120, 45, 10, 0.28);
}

.signature__photo-img {
  width: 100%;
  display: block;
  aspect-ratio: 0.92;
  object-fit: cover;
  transform: scale(1.05);
}

.signature__badge-photo {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 44px rgba(120, 45, 10, 0.3);
}

.signature__badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
}

.signature__title {
  margin: 18px 0 0;
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.signature__copy {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(23, 18, 14, 0.75);
  max-width: 520px;
}

.signature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.chip {
  border: 1.5px solid rgba(232, 98, 44, 0.45);
  color: var(--orange-deep);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
}

/* ============ Giant scroll type ============ */
.giant-type-wrap {
  overflow: hidden;
  padding: 10px 0 30px;
}

.giant-type {
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(90px, 13vw, 210px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(232, 98, 44, 0.4);
  will-change: transform;
}

/* ============ Menu ============ */
.menu {
  position: relative;
  padding: 90px 3.5vw 40px;
  max-width: 1680px;
  margin: 0 auto;
}

/* Shared menu rows */
.menu-list {
  display: grid;
  gap: 5px;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.menu-row--sm {
  gap: 12px;
}

.menu-row__name {
  font-weight: 600;
  font-size: 19px;
}
.menu-row--sm .menu-row__name {
  font-size: 17px;
}

.menu-row__detail {
  font-weight: 400;
  font-size: 14px;
  color: rgba(23, 18, 14, 0.55);
}

.menu-row--sm .menu-row__detail {
  font-size: 13px;
}
.menu-row__detail--dark {
  color: rgba(255, 247, 238, 0.55);
}

.menu-row__dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255, 247, 238, 0.45);
  transform: translateY(-4px);
}

.menu-row__dots--orange {
  border-bottom-color: rgba(232, 98, 44, 0.4);
}
.menu-row__dots--faint {
  border-bottom-color: rgba(255, 247, 238, 0.35);
}

.menu-row__price {
  font-weight: 800;
  font-size: 22px;
}
.menu-row--sm .menu-row__price {
  font-size: 20px;
}
.menu-row__price--orange {
  color: var(--orange);
}
.menu-row__price--gold {
  color: var(--gold);
}

/* Flame grilled chicken panel */
.menu-chicken {
  position: relative;
  margin-top: 70px;
  background: var(--orange);
  border-radius: 36px;
  padding: 54px 60px;
  color: var(--warm-white);
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(232, 98, 44, 0.25);
}

.menu-chicken__media {
  position: relative;
  margin: -110px 0 -60px -20px;
}

.menu-chicken__ring {
  position: absolute;
  inset: -7%;
  border: 2px solid rgba(255, 247, 238, 0.7);
  border-radius: 50%;
}

.menu-chicken__photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: 0 24px 50px rgba(80, 25, 0, 0.35);
}

.menu-chicken__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.menu-chicken__title {
  margin: 0 0 26px;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* Burgers panel */
.menu-burgers {
  position: relative;
  margin-top: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: center;
}

.menu-burgers__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-burgers__note {
  margin: 0 0 26px;
  color: rgba(23, 18, 14, 0.6);
  font-size: 15px;
}

.menu-burgers__media {
  position: relative;
}

.menu-burgers__photo {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--orange);
  box-shadow: 0 26px 54px rgba(120, 45, 10, 0.3);
}

.menu-burgers__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 50%;
  transform: scale(1.28);
}

.menu-burgers__badge-photo {
  position: absolute;
  left: -70px;
  bottom: -50px;
  z-index: 3;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 18px 40px rgba(120, 45, 10, 0.3);
}

.menu-burgers__badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%;
  transform: scale(1.3);
}

/* Wraps + Dinners duo */
.menu-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 100px;
}

.menu-card {
  border-radius: 36px;
  padding: 46px 48px;
  position: relative;
  overflow: hidden;
}

.menu-card--dark {
  background: var(--ink);
  color: var(--warm-white);
}

.menu-card--cream {
  background: var(--warm-white);
  border: 2px solid rgba(232, 98, 44, 0.25);
}

.menu-card__photo {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
}

.menu-card__photo--wraps {
  right: -60px;
  top: -60px;
  width: 230px;
  height: 230px;
  opacity: 0.95;
}

.menu-card__photo--roast {
  right: -60px;
  bottom: -70px;
  width: 240px;
  height: 240px;
}

.menu-card__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.menu-card__photo-img--roast {
  transform: scale(1.15);
}

.menu-card__title {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
}

.menu-card__title--ink {
  color: var(--ink);
}

.menu-card__note {
  margin: 0 0 24px;
  color: rgba(255, 247, 238, 0.65);
  font-size: 14.5px;
  position: relative;
  max-width: 60%;
}

.menu-card__note--ink {
  color: rgba(23, 18, 14, 0.6);
  max-width: 62%;
}

.menu-card__list {
  display: grid;
  gap: 14px;
  position: relative;
}
.menu-card__list--narrow {
  max-width: 68%;
}

/* Single / combo two-price rows */
.menu-row__price {
  min-width: 46px;
  text-align: right;
}

.menu-row__combo {
  min-width: 46px;
  text-align: right;
  font-weight: 800;
  font-size: 18px;
  color: rgba(23, 18, 14, 0.5);
}

.menu-row--sm .menu-row__combo {
  font-size: 16px;
}
.menu-row__combo--gold {
  color: rgba(255, 247, 238, 0.7);
}

.menu-row__detail--light {
  color: rgba(255, 247, 238, 0.6);
}

.menu-combo-key {
  font-weight: 800;
  color: var(--orange);
}
.menu-combo-key--combo {
  color: rgba(23, 18, 14, 0.5);
}

.menu-burgers__note--foot {
  margin: 22px 0 0;
  font-size: 13px;
}

/* Reversed category panels (image on the opposite side) */
.menu-chicken--rev {
  grid-template-columns: minmax(0, 1fr) 300px;
}
.menu-chicken--rev .menu-chicken__media {
  margin: -110px -20px -60px 0;
}

.menu-burgers--rev {
  grid-template-columns: 320px minmax(0, 1fr);
}

/* ============================================================
   Menu — pinned category tabs (Yoda-style scroll)
   Base = graceful fallback: every category flows normally.
   .is-enhanced (added by JS on wide, motion-OK screens) pins the
   stage and cross-fades one category at a time on scroll.
   ============================================================ */
.menu-scroll {
  position: relative;
}

.menu-pin {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 40px;
}

/* Category rail = step indicator */
.menu-rail {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.menu-rail__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(23, 18, 14, 0.45);
  font-weight: 700;
  margin: 0 0 12px;
  padding-left: 14px;
}

.menu-rail__link {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 0 999px 999px 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: rgba(23, 18, 14, 0.6);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  padding: 9px 14px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.menu-rail__link:hover {
  color: var(--orange);
  background: rgba(232, 98, 44, 0.07);
}

.menu-rail__link.is-active {
  color: var(--orange);
  font-weight: 700;
  border-left-color: var(--orange);
  background: rgba(232, 98, 44, 0.1);
}

/* Stage + slides */
.menu-stage {
  position: relative;
}

.menu-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: center;
}

.menu-slide + .menu-slide {
  margin-top: 96px;
}

.menu-slide__title {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.menu-slide__line {
  width: 100%;
  height: 2px;
  background: rgba(232, 98, 44, 0.25);
  margin: 20px 0 22px;
}

.menu-slide__note {
  margin: 22px 0 0;
  font-size: 14px;
  color: rgba(23, 18, 14, 0.6);
  font-weight: 500;
}

.menu-slide__media {
  height: 100%;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(120, 45, 10, 0.28);
  aspect-ratio: square;
}

.menu-slide__media img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  object-position: center;
  display: block;
  /* transform: scale(1.05); */
}

/* --- Enhanced: pin + cross-fade --- */
.menu-scroll.is-enhanced {
  height: calc(var(--menu-steps, 9) * 80vh);
}

.menu-scroll.is-enhanced .menu-pin {
  position: sticky;
  top: 7vh;
  height: 86vh;
  align-content: center;
  margin-top: 0;
}

.menu-scroll.is-enhanced .menu-stage {
  height: 100%;
}

.menu-scroll.is-enhanced .menu-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  /* visibility fades with the same curve so the outgoing slide eases out
     instead of vanishing mid-fade */
  transition:
    opacity 0.8s var(--ease-smooth),
    visibility 0.8s var(--ease-smooth);
}

.menu-scroll.is-enhanced .menu-slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* Text column eases up gently */
.menu-scroll.is-enhanced .menu-slide__body {
  transform: translateY(22px);
  transition: transform 0.85s var(--ease-smooth);
}

.menu-scroll.is-enhanced .menu-slide.is-active .menu-slide__body {
  transform: none;
}

.menu-scroll.is-enhanced .menu-slide__media {
  aspect-ratio: square;
  height: 66vh;
  transform: translateY(34px);
  opacity: 0.35;
  transition:
    transform 0.95s var(--ease-smooth),
    opacity 0.8s var(--ease-smooth);
}

.menu-scroll.is-enhanced .menu-slide.is-active .menu-slide__media {
  transform: translateY(0);
  opacity: 1;
}

/* Sides strip */
.sides {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 90px;
}

.sides__item {
  text-align: center;
}

.sides__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid rgba(232, 98, 44, 0.35);
  transition: transform 0.3s ease;
}

.sides__photo--tilt-left:hover {
  transform: scale(1.06) rotate(-3deg);
}
.sides__photo--tilt-right:hover {
  transform: scale(1.06) rotate(3deg);
}

.sides__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.sides__img--salad {
  transform: scale(1.15);
}

.sides__name {
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
}

.sides__price {
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  margin-top: 4px;
}

/* ============ Family deals ============ */
.deals {
  position: relative;
  margin-top: 110px;
  background: var(--orange);
  padding: 110px 5vw 120px;
}

.deals__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.deals__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px 32px;
  margin-top: 84px;
}

.deals__grid .deal-card {
  width: min(340px, 100%);
}

.deal-card {
  background: var(--cream);
  border-radius: 30px;
  padding: 40px 36px 44px;
  position: relative;
  transition: transform 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-10px);
}
.deal-card--tilt-left:hover {
  transform: translateY(-10px) rotate(-0.5deg);
}
.deal-card--tilt-right:hover {
  transform: translateY(-10px) rotate(0.5deg);
}

.deal-card__photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: -90px auto 20px;
  border: 7px solid var(--orange);
  box-shadow: 0 18px 40px rgba(80, 25, 0, 0.35);
}

.deal-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.deal-card__img--salad {
  object-position: 60% 50%;
  transform: scale(1.25);
}

.deal-card__title {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--ink);
}

.deal-card__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(23, 18, 14, 0.72);
  font-size: 15.5px;
  line-height: 2;
  text-align: center;
}

.deal-card__price {
  width: 92px;
  height: 92px;
  margin: 24px auto 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 30%,
    var(--gold),
    var(--orange) 75%
  );
  display: grid;
  place-items: center;
  color: var(--warm-white);
  font-weight: 800;
  font-size: 27px;
  box-shadow: 0 12px 26px rgba(232, 98, 44, 0.45);
  animation: flick 3.4s ease-in-out infinite;
}

.deal-card__price--d1 {
  animation-delay: 0.5s;
}
.deal-card__price--d2 {
  animation-delay: 1s;
}

.deals__catering {
  margin-top: 70px;
  text-align: center;
  color: var(--warm-white);
}

.deals__catering-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.02em;
}

.deals__catering-note {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255, 247, 238, 0.85);
  font-style: italic;
}

.deals__catering-link {
  color: var(--warm-white);
  font-weight: 700;
  text-decoration: underline;
}

/* ============ Story ============ */
.story {
  position: relative;
  padding: 140px 5vw;
  max-width: 1500px;
  margin: 0 auto;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: center;
}

.story__title {
  margin: 18px 0 0;
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
}

.story__copy {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(23, 18, 14, 0.75);
  max-width: 540px;
}

.story__stats {
  display: flex;
  gap: 44px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.story__stat-value {
  font-weight: 800;
  font-size: 34px;
  color: var(--orange);
}

.story__stat-label {
  font-size: 14px;
  color: rgba(23, 18, 14, 0.6);
  font-weight: 500;
}

.story__media {
  position: relative;
}

.story__photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(120, 45, 10, 0.28);
  rotate: 1.5deg;
}

.story__photo-img {
  width: 100%;
  display: block;
  aspect-ratio: 0.95;
  object-fit: cover;
  object-position: 55% 50%;
  transform: scale(1.18);
}

.story__badge-photo {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 44px rgba(120, 45, 10, 0.3);
}

.story__badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

/* ============ Visit ============ */
.visit {
  position: relative;
  padding: 20px 5vw 130px;
  max-width: 1500px;
  margin: 0 auto;
}

.visit__panel {
  background: var(--ink);
  border-radius: 40px;
  padding: 76px 70px;
  color: var(--warm-white);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.visit__ring {
  position: absolute;
  right: -110px;
  top: -110px;
  width: 340px;
  height: 340px;
  border: 2px solid rgba(232, 98, 44, 0.5);
  border-radius: 50%;
}

.visit__dot {
  position: absolute;
  right: -60px;
  top: 130px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
}

.visit__title {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
}

.visit__copy {
  margin: 24px 0 0;
  color: rgba(255, 247, 238, 0.7);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 460px;
}

.visit__cta {
  display: inline-block;
  margin-top: 34px;
  background: var(--orange);
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(232, 98, 44, 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.visit__cta:hover {
  transform: translateY(-3px);
  background: var(--gold);
}

.visit__info {
  display: grid;
  gap: 26px;
  position: relative;
}

.visit__info-label {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 12px;
}

.visit__info-value {
  font-size: 19px;
  font-weight: 600;
  margin-top: 6px;
}

/* ============ Map / Location ============ */
.map {
  position: relative;
  padding: 30px 5vw 120px;
  max-width: 1500px;
  margin: 0 auto;
}

.map__panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.map__title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.map__copy {
  margin: 20px 0 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(23, 18, 14, 0.72);
  max-width: 420px;
}

.map__rows {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.map__row-label {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.map__row-value {
  font-size: 17px;
  font-weight: 600;
  margin-top: 5px;
}

.map__link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.map__link:hover {
  color: var(--orange);
}

.map__cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--orange);
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(232, 98, 44, 0.35);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.map__cta:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.map__media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 3px solid rgba(232, 98, 44, 0.25);
  box-shadow: 0 34px 70px rgba(120, 45, 10, 0.28);
}

.map__embed {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

/* ============ Footer ============ */
.footer {
  overflow: hidden;
  padding: 30px 0 0;
  border-top: 1px solid rgba(232, 98, 44, 0.2);
}

.footer__marquee-wrap {
  overflow: hidden;
  padding: 26px 0 10px;
}

.footer__marquee {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 1;
  color: var(--orange);
}

.footer__marquee-item {
  padding-right: 60px;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 5vw 34px;
  font-size: 13.5px;
  color: rgba(23, 18, 14, 0.55);
  font-weight: 500;
}

.footer__phone {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

/* ============================================================
   Responsive (breakpoints added for production; the design
   prototype was desktop-only)
   ============================================================ */
@media (max-width: 1100px) {
  .signature__grid,
  .story__grid {
    gap: 48px;
  }

  .menu-rail {
    display: none;
  }

  .menu-pin {
    grid-template-columns: 1fr;
  }

  .menu-burgers {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .menu-burgers--rev {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .menu-burgers__photo {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 12px 20px;
  }

  .nav__toggle {
    display: flex;
  }

  /* Links collapse into a dropdown panel toggled by the hamburger */
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 20px 18px;
    background: rgba(239, 230, 217, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 98, 44, 0.18);
    box-shadow: 0 24px 40px rgba(120, 45, 10, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s var(--ease-smooth),
      visibility 0.25s ease;
  }

  .nav--open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__link {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(232, 98, 44, 0.12);
  }

  .nav__cta {
    align-self: flex-start;
    margin-top: 16px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero__visual {
    width: min(78vw, 420px);
    justify-self: center;
  }

  .signature__grid {
    grid-template-columns: 1fr;
  }

  .signature__badge-photo {
    right: 0;
  }

  .menu-chicken {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 32px 44px;
    margin-top: 130px;
    text-align: left;
  }

  .menu-chicken__media {
    margin: -70px auto 0;
  }

  .menu-chicken--rev {
    margin-top: 90px;
  }

  .menu-chicken--rev .menu-chicken__media {
    margin: 24px auto 0;
  }

  .menu-chicken__photo {
    width: 240px;
    height: 240px;
  }

  .menu-burgers {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-burgers__media {
    justify-self: center;
    margin-top: 20px;
    padding-left: 40px;
  }

  .menu-duo {
    grid-template-columns: 1fr;
  }

  /* Pinned tabs fall back to a normal stacked menu on small screens */
  .menu-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-slide__media {
    aspect-ratio: 16 / 10;
  }

  .menu-slide + .menu-slide {
    margin-top: 64px;
  }

  .menu-card__list--narrow {
    max-width: none;
  }

  .sides {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .deals__grid {
    gap: 96px 24px;
    margin-top: 64px;
  }

  .story__grid {
    grid-template-columns: 1fr;
  }

  .story__badge-photo {
    left: -12px;
  }

  .visit__panel {
    grid-template-columns: 1fr;
    padding: 56px 36px;
    gap: 44px;
  }

  .map__panel {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 36px;
  }

  .map__embed {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .signature {
    padding: 84px 6vw 88px;
  }

  .story {
    padding: 84px 6vw;
  }

  .menu {
    padding: 60px 5vw 10px;
  }

  .deals {
    padding: 84px 6vw 90px;
  }

  .visit {
    padding: 8px 5vw 84px;
  }

  .map {
    padding: 16px 5vw 84px;
  }

  .story__stats {
    gap: 26px;
  }

  .menu-slide__media {
    aspect-ratio: 16 / 11;
  }

  .map__embed {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .nav__cta {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .menu-card {
    padding: 40px 30px;
  }

  .menu-card__note {
    max-width: 100%;
  }

  .signature__badge-photo {
    width: 130px;
    height: 130px;
    bottom: -20px;
  }

  .menu-burgers__badge-photo {
    left: -30px;
    width: 130px;
    height: 130px;
  }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__badge,
  .hero__word--1,
  .hero__word--2,
  .hero__word--3,
  .hero__lede,
  .hero__actions,
  .hero__ring,
  .hero__img-wrap,
  .hero__stamp,
  .ticker__track,
  .footer__marquee,
  .deal-card__price {
    animation: none;
  }

  .will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
