:root {
  --black: #050505;
  --charcoal: #111111;
  --cream: #f7f1e6;
  --white: #ffffff;
  --pink: #f60068;
  --orange: #ff7900;
  --yellow: #ffbc00;
  --blue: #1b7ed6;
  --max: 1800px;
  --pad: clamp(20px, 4vw, 72px);
  --display: "Anton", Impact, sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --marker: "Permanent Marker", "Comic Sans MS", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--condensed);
  font-size: 18px;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--pink); color: white; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-180%);
  background: var(--yellow);
  color: var(--black);
  padding: 12px 18px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--black);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader img { width: min(260px, 45vw); animation: loaderPulse .9s ease-in-out infinite alternate; }
.loader p { margin: 0; font-family: var(--display); letter-spacing: .11em; font-size: 15px; }
.loader__track { width: min(330px, 62vw); height: 8px; background: #292929; transform: skewX(-18deg); overflow: hidden; }
.loader__track span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--pink)); animation: loadBar 1.15s cubic-bezier(.5,0,.2,1) forwards; }
.loader__smoke { position: absolute; width: 280px; height: 280px; border-radius: 50%; filter: blur(55px); opacity: .16; }
.loader__smoke--one { background: var(--pink); transform: translate(-45%, -35%); }
.loader__smoke--two { background: var(--orange); transform: translate(45%, 35%); }
@keyframes loaderPulse { to { transform: scale(1.04) rotate(-1deg); } }
@keyframes loadBar { to { width: 100%; } }

.top-ribbon {
  height: 34px;
  overflow: hidden;
  background: var(--pink);
  color: white;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .08em;
  position: relative;
  z-index: 101;
}
.top-ribbon__track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  animation: ticker 24s linear infinite;
}
.top-ribbon b { color: var(--yellow); }
@keyframes ticker { to { transform: translateX(-50%); } }

.site-header {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 100;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.brand, .site-nav, .menu-toggle { pointer-events: auto; }
.brand img { width: clamp(84px, 8vw, 128px); filter: drop-shadow(0 10px 18px rgba(0,0,0,.45)); transition: transform .25s ease; }
.brand:hover img { transform: rotate(-4deg) scale(1.04); }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 40px); font-size: 15px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 3px; background: var(--pink); transition: right .2s ease; transform: skewX(-18deg); }
.site-nav a:hover::after { right: 0; }
.nav-cta { padding: 13px 19px; background: var(--white); color: var(--black); transform: skewX(-7deg); box-shadow: 5px 5px 0 var(--pink); }
.menu-toggle { display: none; border: 0; background: transparent; width: 48px; height: 44px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 3px; margin: 5px 0; background: white; transition: .25s ease; }

.hero {
  min-height: min(960px, calc(100svh - 34px));
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(20px, 3vw, 58px);
  padding: clamp(150px, 13vw, 210px) var(--pad) clamp(80px, 8vw, 130px);
  width: min(100%, var(--max));
  margin: 0 auto;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 52% 0 calc(50% - 50vw);
  background: linear-gradient(145deg, #0a0a0a, #191919);
  z-index: -4;
}
.hero::after {
  content: "";
  position: absolute;
  top: 7%;
  right: -12%;
  width: 63%;
  height: 84%;
  background: var(--orange);
  clip-path: polygon(15% 0, 100% 7%, 89% 100%, 0 89%);
  z-index: -5;
  transform: rotate(2deg);
}
.hero__noise, .food::before, .catering::before, .story::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: -1;
}
.hero__copy { position: relative; z-index: 3; }
.eyebrow { margin: 0 0 18px; font-size: 15px; letter-spacing: .16em; font-weight: 900; }
.eyebrow span { color: var(--yellow); }
.hero h1 { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(76px, 8.35vw, 152px); line-height: .78; letter-spacing: -.025em; text-transform: uppercase; }
.hero__line { display: block; width: max-content; max-width: 100%; }
.hero__line--white { transform: rotate(-1deg); }
.hero__line--pink { color: var(--pink); text-shadow: 8px 8px 0 rgba(0,0,0,.25); transform: rotate(1deg) translateX(clamp(0px, 2vw, 35px)); }
.hero__intro { max-width: 660px; font-size: clamp(20px, 1.5vw, 27px); line-height: 1.24; font-weight: 600; margin: 30px 0; color: #e7e7e7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; padding: 0 22px; text-transform: uppercase; font-family: var(--display); font-size: 17px; letter-spacing: .04em; transform: skewX(-7deg); transition: transform .2s ease, box-shadow .2s ease; }
.button > * { transform: skewX(7deg); }
.button b { font-family: var(--condensed); font-size: 24px; }
.button:hover { transform: skewX(-7deg) translate(-3px, -3px); }
.button--pink { background: var(--pink); color: white; box-shadow: 7px 7px 0 var(--orange); }
.button--pink:hover { box-shadow: 11px 11px 0 var(--orange); }
.button--ghost { border: 2px solid white; }
.button--ghost:hover { background: white; color: black; }
.button--black { background: black; color: white; box-shadow: 7px 7px 0 rgba(255,255,255,.25); }
.button--orange { background: var(--orange); color: black; box-shadow: 7px 7px 0 var(--pink); margin-top: 28px; }
.hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.25); padding-top: 20px; gap: 18px; }
.hero__proof div { display: grid; }
.hero__proof strong { font-family: var(--display); font-size: clamp(30px, 2.3vw, 42px); font-weight: 400; color: var(--yellow); }
.hero__proof span { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #aaa; }
.hero__visual { position: relative; min-height: 650px; z-index: 2; }
.hero__poster { position: absolute; inset: 3% 2% 2% 10%; transform: rotate(2.5deg); clip-path: polygon(5% 0, 100% 4%, 95% 100%, 0 94%); background: #111; box-shadow: 22px 25px 0 rgba(0,0,0,.24); overflow: hidden; }
.hero__poster img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.06) saturate(1.1); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.hero__visual:hover .hero__poster img { transform: scale(1.04); }
.hero__poster::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 70px rgba(0,0,0,.38); pointer-events: none; }
.hero__logo-orbit { position: absolute; left: -2%; bottom: 0; width: clamp(155px, 14vw, 245px); aspect-ratio: 1; display: grid; place-items: center; }
.hero__logo-orbit img { width: 72%; position: relative; z-index: 2; filter: drop-shadow(0 10px 16px rgba(0,0,0,.55)); }
.orbit-text { position: absolute; inset: 0; border: 2px dashed white; border-radius: 50%; font-family: var(--display); font-size: 11px; letter-spacing: .12em; display: grid; place-items: end center; padding-bottom: 10px; animation: orbitSpin 14s linear infinite; color: transparent; }
.orbit-text::before { content: "SMOKE • SAUCE • STACK • REPEAT •"; color: white; position: absolute; inset: 7px; display: grid; place-items: start center; padding-top: 3px; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.hero__stamp { position: absolute; right: -2%; top: 3%; width: 124px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--yellow); color: black; font-family: var(--display); font-size: 22px; line-height: .9; transform: rotate(11deg); border: 4px solid black; box-shadow: 8px 8px 0 var(--pink); }
.hero__scroll { position: absolute; left: var(--pad); bottom: 26px; font-size: 12px; font-weight: 900; letter-spacing: .13em; color: #999; }
.hero__scroll span { color: var(--pink); margin-left: 10px; }
.hero__smoke { position: absolute; border-radius: 50%; filter: blur(75px); opacity: .17; z-index: -2; animation: smokeDrift 9s ease-in-out infinite alternate; }
.hero__smoke--one { width: 460px; height: 280px; background: var(--pink); left: 20%; top: 16%; }
.hero__smoke--two { width: 350px; height: 300px; background: white; right: 6%; bottom: 5%; animation-delay: -3s; }
@keyframes smokeDrift { to { transform: translate(35px, -25px) scale(1.12); opacity: .1; } }

.next-event {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: 760px;
  display: grid;
  grid-template-columns: 130px minmax(0, .9fr) minmax(420px, 1.05fr);
  background: var(--pink);
  color: white;
  overflow: hidden;
}
.next-event::before { content: ""; position: absolute; width: 46%; height: 32px; left: 31%; top: 11%; background: black; transform: rotate(-4deg); opacity: .25; }
.next-event__label { background: black; writing-mode: vertical-rl; transform: rotate(180deg); display: flex; align-items: center; justify-content: center; gap: 22px; padding: 20px; font-family: var(--display); letter-spacing: .08em; }
.next-event__label span { color: var(--orange); font-size: 42px; }
.next-event__label p { margin: 0; font-size: 20px; line-height: .9; }
.next-event__content { padding: clamp(70px, 7vw, 120px) clamp(30px, 5vw, 95px); align-self: center; position: relative; z-index: 2; }
.scribble { margin: 0 0 6px; font-family: var(--marker); color: var(--yellow); font-size: clamp(24px, 2.4vw, 42px); transform: rotate(-4deg); }
.next-event h2, .catering h2, .story h2, .contact h2 { margin: 0; font-family: var(--display); font-weight: 400; line-height: .82; letter-spacing: -.025em; }
.next-event h2 { font-size: clamp(78px, 8.4vw, 154px); }
.next-event h2 span, .next-event h2 small { display: block; }
.next-event h2 small { font-size: .62em; color: var(--yellow); transform: translateX(8%); }
.next-event__details { margin: 42px 0 32px; border-top: 2px solid rgba(255,255,255,.42); border-bottom: 2px solid rgba(255,255,255,.42); }
.next-event__details div { display: grid; grid-template-columns: 80px 1fr; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.next-event__details div:last-child { border-bottom: 0; }
.next-event__details span { font-size: 12px; letter-spacing: .15em; font-weight: 900; color: #ffb4d2; }
.next-event__details strong { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2vw, 32px); letter-spacing: .025em; }
.next-event__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link { font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: 14px; }
.text-link span { color: var(--yellow); border-bottom: 2px solid var(--yellow); }
.next-event__image { position: relative; min-height: 100%; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 94%); overflow: hidden; background: black; }
.next-event__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.08) contrast(1.04); }
.next-event__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,0,104,.35), transparent 30%); }
.next-event__burst { position: absolute; z-index: 2; right: 4%; bottom: 5%; width: 152px; aspect-ratio: 1; display: grid; place-items: center; text-align: center; background: var(--blue); font-family: var(--display); font-size: 22px; line-height: .9; clip-path: polygon(50% 0,60% 17%,79% 8%,82% 29%,100% 33%,87% 50%,100% 66%,80% 71%,78% 93%,59% 83%,50% 100%,39% 83%,20% 93%,18% 72%,0 66%,13% 50%,0 34%,19% 29%,21% 8%,40% 17%); transform: rotate(7deg); }

.crave-strip { overflow: hidden; background: var(--yellow); color: black; transform: rotate(-1.5deg) scale(1.02); margin: -4px 0; position: relative; z-index: 4; }
.crave-strip__track { min-width: max-content; display: flex; align-items: center; gap: 28px; padding: 16px 0; font-family: var(--display); font-size: clamp(28px, 3vw, 52px); animation: tickerReverse 25s linear infinite; }
.crave-strip i { color: var(--pink); font-style: normal; }
@keyframes tickerReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.food { position: relative; padding: clamp(120px, 10vw, 180px) var(--pad); width: min(100%, var(--max)); margin: 0 auto; }
.food::after { content: "TASTE"; position: absolute; right: -3vw; top: 4%; font-family: var(--display); font-size: clamp(180px, 25vw, 420px); color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.05); z-index: -2; transform: rotate(5deg); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(270px, .48fr); gap: clamp(28px, 6vw, 100px); align-items: end; margin-bottom: 72px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin: 0; }
.section-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(70px, 9vw, 154px); line-height: .79; font-weight: 400; letter-spacing: -.025em; }
.section-heading h2 em, .catering h2 em, .story h2 em, .contact h2 em { color: var(--pink); font-style: normal; }
.section-heading > p:last-child { font-size: clamp(20px, 1.45vw, 26px); line-height: 1.3; color: #bbb; margin: 0 0 10px; }
.food-mosaic { display: grid; gap: 18px; }
.food-panel { min-height: 430px; display: grid; grid-template-columns: 1.22fr .78fr; position: relative; overflow: hidden; background: #181818; }
.food-panel:nth-child(even) { grid-template-columns: .78fr 1.22fr; }
.food-panel:nth-child(even) .food-panel__photo { order: 2; }
.food-panel__photo { min-width: 0; overflow: hidden; position: relative; }
.food-panel__photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(0,0,0,.45); }
.food-panel__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.food-panel:hover img { transform: scale(1.055); }
.food-panel--brisket img { object-position: 78% 5%; }
.food-panel--chicken img { object-position: 77% 44%; }
.food-panel--fries img { object-position: 75% 48%; }
.food-panel__copy { padding: clamp(32px, 5vw, 85px); display: flex; flex-direction: column; justify-content: center; position: relative; }
.food-panel__copy::before { content: ""; position: absolute; width: 130px; height: 14px; background: var(--pink); left: -35px; top: 55px; transform: rotate(-6deg); }
.food-panel:nth-child(2) .food-panel__copy::before { background: var(--blue); }
.food-panel:nth-child(3) .food-panel__copy::before { background: var(--orange); }
.food-panel__copy span { color: var(--yellow); font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.food-panel__copy h3 { margin: 16px 0; font-family: var(--display); font-size: clamp(50px, 5vw, 90px); font-weight: 400; line-height: .84; }
.food-panel__copy p { margin: 0; color: #bbb; font-size: 21px; line-height: 1.25; max-width: 470px; }
.food-callout { margin: 20px 0 0 auto; width: min(900px, 88%); background: var(--blue); color: white; padding: clamp(30px, 4vw, 68px); display: grid; grid-template-columns: .65fr 1.2fr .8fr; gap: 24px; align-items: center; transform: rotate(1deg); box-shadow: -12px 12px 0 var(--pink); }
.food-callout p, .food-callout span { margin: 0; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.food-callout strong { font-family: var(--display); font-size: clamp(46px, 5vw, 88px); font-weight: 400; line-height: .8; }
.food-callout span { font-size: 14px; line-height: 1.35; color: #dcefff; }

.catering { position: relative; width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 920px; background: var(--cream); color: var(--black); overflow: hidden; }
.catering::before { opacity: .12; mix-blend-mode: multiply; }
.catering__photo { position: relative; min-height: 100%; clip-path: polygon(0 0, 100% 5%, 91% 100%, 0 100%); overflow: hidden; }
.catering__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 44% center; filter: saturate(1.04) contrast(1.03); }
.catering__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5)); }
.award-badge { position: absolute; z-index: 2; bottom: 6%; right: 1%; width: clamp(190px, 18vw, 290px); aspect-ratio: 1; background: var(--yellow); border: 5px solid black; border-radius: 50%; display: grid; place-items: center; align-content: center; text-align: center; transform: rotate(-9deg); box-shadow: 12px 12px 0 var(--pink); }
.award-badge small { font-weight: 900; letter-spacing: .12em; }
.award-badge strong { font-family: var(--display); font-size: clamp(32px, 3.1vw, 50px); line-height: .85; font-weight: 400; margin: 7px 0; }
.catering__menu { padding: clamp(80px, 8vw, 145px) clamp(30px, 6vw, 110px); align-self: center; }
.catering h2 { font-size: clamp(76px, 8vw, 145px); }
.catering h2 em { color: var(--pink); }
.catering__lead { font-size: clamp(19px, 1.45vw, 25px); line-height: 1.3; max-width: 720px; }
.menu-lines { margin-top: 42px; border-top: 3px solid black; }
.menu-line { width: 100%; appearance: none; border: 0; border-bottom: 2px solid black; background: transparent; color: black; display: grid; grid-template-columns: 48px minmax(180px, .8fr) 1fr 30px; gap: 16px; align-items: center; padding: 17px 0; text-align: left; cursor: pointer; transition: padding .2s ease, background .2s ease; }
.menu-line:hover, .menu-line.is-active { padding-left: 12px; padding-right: 12px; background: var(--yellow); }
.menu-line span { color: var(--pink); font-weight: 900; }
.menu-line strong { font-family: var(--display); font-weight: 400; font-size: 24px; }
.menu-line small { font-size: 16px; font-weight: 700; color: #444; }
.menu-line b { font-size: 25px; }
.package-detail { margin-top: 24px; padding: 22px 25px; background: black; color: white; transform: skewX(-2deg); }
.package-detail span { color: var(--yellow); font-size: 12px; letter-spacing: .12em; font-weight: 900; }
.package-detail p { margin: 8px 0 0; line-height: 1.35; font-size: 18px; }

.story { position: relative; width: min(100%, var(--max)); margin: 0 auto; padding: clamp(120px, 11vw, 190px) var(--pad); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 150px); background: var(--black); overflow: hidden; }
.story::after { content: "2014"; position: absolute; font-family: var(--display); font-size: clamp(250px, 38vw, 640px); color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.04); bottom: -18%; left: 5%; z-index: 0; }
.story__heading, .story__body { position: relative; z-index: 1; }
.story h2 { font-size: clamp(70px, 7.6vw, 136px); }
.story__big { font-family: var(--display); font-size: clamp(34px, 3.5vw, 62px); font-weight: 400; line-height: 1.02; color: var(--yellow); margin-top: 0; }
.story__body > p:not(.story__big) { font-size: 22px; color: #bbb; line-height: 1.42; }
.story__numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 2px solid #333; margin-top: 45px; padding-top: 25px; }
.story__numbers div { display: grid; }
.story__numbers strong { font-family: var(--display); font-weight: 400; font-size: clamp(42px, 4vw, 72px); color: var(--pink); }
.story__numbers span { font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: #999; }

.reviews { background: var(--pink); color: white; padding: clamp(95px, 8vw, 150px) var(--pad); width: min(100%, var(--max)); margin: 0 auto; position: relative; overflow: hidden; }
.reviews::before { content: "★★★★★"; position: absolute; top: -50px; right: -25px; font-size: clamp(170px, 25vw, 420px); color: rgba(0,0,0,.08); letter-spacing: -.18em; }
.reviews__title { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; position: relative; z-index: 1; }
.reviews__title span, .reviews__title strong { font-family: var(--display); font-weight: 400; line-height: .82; }
.reviews__title span { font-size: clamp(58px, 8vw, 130px); }
.reviews__title strong { font-size: clamp(58px, 8vw, 130px); color: var(--yellow); }
.review-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 65px; position: relative; z-index: 1; }
.review-wall blockquote { margin: 0; padding: clamp(30px, 4vw, 60px); background: black; min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; transform: rotate(-1deg); }
.review-wall blockquote:nth-child(2) { background: var(--cream); color: black; transform: rotate(1.5deg) translateY(25px); }
.review-wall blockquote:nth-child(3) { background: var(--blue); transform: rotate(-.5deg); }
.stars { color: var(--yellow); letter-spacing: .12em; font-size: 18px; }
.review-wall p { font-family: var(--display); font-size: clamp(25px, 2.1vw, 37px); font-weight: 400; line-height: 1.12; }
.review-wall cite { font-style: normal; font-weight: 900; letter-spacing: .08em; font-size: 13px; }

.contact { position: relative; width: min(100%, var(--max)); margin: 0 auto; min-height: 760px; padding: clamp(90px, 8vw, 150px) var(--pad); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 130px); align-items: center; background: linear-gradient(135deg, #101010, #040404); overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 48%; aspect-ratio: 1; background: var(--orange); border-radius: 50%; left: -9%; top: 8%; filter: blur(1px); box-shadow: 0 0 100px rgba(255,121,0,.3); }
.contact::after { content: "LET'S EAT"; position: absolute; bottom: -5%; left: 0; right: 0; text-align: center; font-family: var(--display); font-size: clamp(130px, 19vw, 330px); color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.06); }
.contact__logo { width: min(540px, 90%); position: relative; z-index: 2; filter: drop-shadow(0 25px 28px rgba(0,0,0,.5)); animation: floatLogo 5s ease-in-out infinite alternate; }
@keyframes floatLogo { to { transform: translateY(-14px) rotate(-2deg); } }
.contact__copy { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(78px, 9vw, 160px); }
.contact__copy > p:not(.scribble) { font-size: clamp(20px, 1.6vw, 28px); color: #bbb; max-width: 690px; }
.contact__links { margin-top: 42px; border-top: 2px solid #444; }
.contact__links a { display: grid; grid-template-columns: 85px 1fr 30px; gap: 14px; align-items: center; padding: 19px 0; border-bottom: 2px solid #444; transition: padding .2s ease, color .2s ease; }
.contact__links a:hover { padding-left: 14px; color: var(--yellow); }
.contact__links span { font-size: 12px; letter-spacing: .15em; font-weight: 900; color: var(--pink); }
.contact__links strong { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.3vw, 38px); }
.contact__links b { font-size: 25px; }
.contact__smoke { position: absolute; width: 520px; height: 300px; background: white; opacity: .08; filter: blur(80px); right: 8%; top: 10%; border-radius: 50%; }

footer { width: min(100%, var(--max)); margin: 0 auto; padding: 28px var(--pad) 35px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #777; font-size: 12px; font-weight: 900; letter-spacing: .09em; background: #020202; }
footer p { margin: 0; }
footer a { color: white; border-bottom: 1px solid var(--pink); }
.mobile-event { display: none; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal--late { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1801px) {
  body { background: #070707; }
  .hero, .next-event, .food, .catering, .story, .reviews, .contact, footer { box-shadow: 0 0 0 1px rgba(255,255,255,.03); }
}

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr .9fr; }
  .hero__visual { min-height: 570px; }
  .next-event { grid-template-columns: 95px 1fr .9fr; }
  .section-heading { grid-template-columns: 1fr .6fr; }
  .catering { grid-template-columns: .8fr 1.2fr; }
  .menu-line { grid-template-columns: 40px minmax(160px, .9fr) 1fr 26px; }
}

@media (max-width: 900px) {
  .site-header { position: absolute; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 34px 0 0; background: var(--black); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 90px var(--pad); gap: 16px; transform: translateX(105%); transition: transform .35s cubic-bezier(.2,.8,.2,1); font-family: var(--display); font-size: clamp(38px, 9vw, 70px); }
  .site-nav.is-open { transform: translateX(0); }
  .nav-cta { margin-top: 20px; font-size: 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }
  .hero::after { width: 90%; height: 47%; top: auto; bottom: 4%; right: -15%; }
  .hero__visual { min-height: 660px; }
  .hero__poster { inset: 0 4% 4% 4%; }
  .hero__logo-orbit { left: 0; bottom: -2%; }
  .hero__stamp { right: 0; }
  .next-event { grid-template-columns: 72px 1fr; }
  .next-event__image { grid-column: 1 / -1; min-height: 650px; clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); }
  .next-event__label { grid-row: 1; }
  .next-event__content { grid-row: 1; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow { grid-column: auto; }
  .food-panel, .food-panel:nth-child(even) { grid-template-columns: 1fr; }
  .food-panel:nth-child(even) .food-panel__photo { order: 0; }
  .food-panel__photo { min-height: 420px; }
  .food-callout { width: 100%; grid-template-columns: 1fr 1.4fr; }
  .food-callout span { grid-column: 1 / -1; }
  .catering { grid-template-columns: 1fr; }
  .catering__photo { min-height: 720px; clip-path: polygon(0 0, 100% 0, 96% 93%, 0 100%); }
  .story { grid-template-columns: 1fr; }
  .review-wall { grid-template-columns: 1fr; }
  .review-wall blockquote:nth-child(2) { transform: rotate(1deg); }
  .contact { grid-template-columns: 1fr; text-align: center; }
  .contact__logo { margin: 0 auto; width: min(420px, 80%); }
  .contact__copy > p:not(.scribble) { margin-left: auto; margin-right: auto; }
  .contact__links { text-align: left; }
  footer { flex-direction: column; align-items: flex-start; padding-bottom: 100px; }
  .mobile-event { display: grid; position: fixed; z-index: 95; bottom: 0; left: 0; right: 0; background: var(--yellow); color: black; grid-template-columns: auto 1fr; gap: 13px; padding: 13px 18px; font-weight: 900; box-shadow: 0 -8px 30px rgba(0,0,0,.45); }
  .mobile-event span { color: var(--pink); }
  .mobile-event strong { text-align: right; letter-spacing: .03em; }
}

@media (max-width: 620px) {
  :root { --pad: 18px; }
  .top-ribbon { height: 30px; }
  .site-header { top: 30px; padding-top: 13px; }
  .brand img { width: 84px; }
  .hero { padding-top: 132px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(66px, 22vw, 100px); }
  .hero__line--pink { transform: rotate(1deg); }
  .hero__intro { margin: 24px 0; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .hero__proof { grid-template-columns: 1fr; gap: 8px; margin-top: 36px; }
  .hero__proof div { grid-template-columns: 80px 1fr; align-items: center; }
  .hero__visual { min-height: 500px; }
  .hero__poster { inset: 0; }
  .hero__logo-orbit { width: 135px; }
  .hero__stamp { width: 92px; font-size: 16px; top: -7%; }
  .hero__scroll { display: none; }
  .next-event { grid-template-columns: 1fr; }
  .next-event__label { writing-mode: horizontal-tb; transform: none; min-height: 70px; flex-direction: row; grid-row: auto; justify-content: flex-start; }
  .next-event__label p br { display: none; }
  .next-event__content { grid-row: auto; padding: 65px 20px; }
  .next-event h2 { font-size: clamp(68px, 21vw, 104px); }
  .next-event h2 small { transform: none; }
  .next-event__details div { grid-template-columns: 65px 1fr; }
  .next-event__image { min-height: 490px; }
  .next-event__burst { width: 112px; font-size: 17px; }
  .section-heading h2 { font-size: clamp(64px, 20vw, 102px); }
  .food { padding-top: 100px; }
  .food-panel__photo { min-height: 310px; }
  .food-panel__copy { padding: 36px 24px 42px; }
  .food-panel__copy::before { top: 18px; }
  .food-callout { grid-template-columns: 1fr; width: calc(100% - 10px); }
  .food-callout span { grid-column: auto; }
  .catering__photo { min-height: 500px; }
  .award-badge { width: 180px; right: 4%; }
  .catering__menu { padding-left: 20px; padding-right: 20px; }
  .catering h2, .story h2, .contact h2 { font-size: clamp(66px, 20vw, 105px); }
  .menu-line { grid-template-columns: 34px 1fr 25px; gap: 9px; }
  .menu-line small { grid-column: 2 / -1; }
  .story__numbers { grid-template-columns: 1fr; }
  .story__numbers div { grid-template-columns: 100px 1fr; align-items: center; }
  .reviews__title { display: grid; }
  .review-wall { margin-top: 40px; }
  .review-wall blockquote { min-height: 300px; padding: 28px; }
  .contact { padding-bottom: 120px; }
  .contact__links a { grid-template-columns: 55px 1fr 20px; }
  .contact__links strong { font-size: 22px; overflow-wrap: anywhere; }
  .mobile-event { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .loader { display: none; }
}

/* =========================================================
   REFINEMENT PASS 02
   Ultrawide ticker continuity, cleaner navigation/menu tabs,
   stable hero badge and deliberate mobile scaling.
   ========================================================= */

/* Continuous tickers: each duplicated group always fills at least one viewport. */
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  min-width: 200vw;
  will-change: transform;
}
.ticker-group {
  flex: 0 0 auto;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(18px, 1.7vw, 42px);
  padding-inline: clamp(12px, 1.5vw, 34px);
  white-space: nowrap;
}
.top-ribbon__track {
  height: 100%;
  animation: tickerLoop 28s linear infinite;
}
.top-ribbon__track .ticker-group { height: 100%; }
.crave-strip__track {
  min-width: 200vw;
  padding: 0;
  animation: tickerLoopReverse 30s linear infinite;
}
.crave-strip__track .ticker-group {
  padding-block: 16px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 52px);
}
@keyframes tickerLoop { to { transform: translate3d(-50%, 0, 0); } }
@keyframes tickerLoopReverse {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* Cleaner desktop navigation tabs without losing the loud FG personality. */
.site-nav {
  gap: 4px;
  padding: 5px;
  background: rgba(5, 5, 5, .82);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 8px 8px 0 rgba(246,0,104,.28);
  backdrop-filter: blur(12px);
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a:not(.nav-cta)::after { display: none; }
.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}
.nav-cta {
  min-height: 42px;
  padding: 0 16px !important;
  box-shadow: 4px 4px 0 var(--pink);
}

/* Keep the centre logo locked while only the surrounding ring rotates. */
.hero__logo-orbit { isolation: isolate; }
.hero__logo-orbit img {
  animation: none !important;
  transform: none !important;
}
.orbit-text {
  animation: orbitSpin 16s linear infinite;
  transform-origin: 50% 50%;
}

/* Catering choices now behave like intentional tabs, not shifting table rows. */
.menu-lines {
  margin-top: 36px;
  border: 0;
  display: grid;
  gap: 11px;
}
.menu-line {
  grid-template-columns: 42px minmax(170px, .72fr) minmax(190px, 1fr) 38px;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  border: 2px solid black;
  background: rgba(255,255,255,.38);
  box-shadow: 5px 5px 0 black;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.menu-line:hover,
.menu-line.is-active {
  padding: 14px 16px;
  background: var(--yellow);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--pink);
}
.menu-line span {
  align-self: start;
  padding-top: 5px;
  font-size: 13px;
  letter-spacing: .08em;
}
.menu-line strong {
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1;
}
.menu-line small {
  line-height: 1.18;
  color: #272727;
}
.menu-line b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.menu-line.is-active b {
  transform: rotate(45deg);
  background: black;
  color: white;
}
.package-detail {
  margin-top: 20px;
  transform: none;
  border-left: 7px solid var(--pink);
}

/* Keep large displays energetic while preventing content from becoming tiny islands. */
@media (min-width: 1801px) {
  :root { --max: 2160px; --pad: clamp(72px, 4.2vw, 150px); }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(680px, 1.1fr); }
  .hero__visual { min-height: 760px; }
  .site-header { width: min(100%, var(--max)); }
}

@media (max-width: 1180px) {
  .site-nav a { padding-inline: 10px; }
  .menu-line { grid-template-columns: 38px minmax(150px, .72fr) minmax(170px, 1fr) 36px; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .site-nav {
    inset: 30px 0 0;
    padding: 92px max(22px, 7vw) 110px;
    gap: 7px;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow-y: auto;
  }
  .site-nav a {
    width: 100%;
    min-height: auto;
    padding: 7px 0;
    background: transparent !important;
    transform: none !important;
  }
  .site-nav a:not(.nav-cta) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav-cta {
    width: max-content !important;
    min-height: 52px !important;
    padding: 0 20px !important;
  }
  .hero {
    padding-top: 142px;
    gap: 55px;
  }
  .hero h1 { font-size: clamp(68px, 14vw, 106px); }
  .hero__visual {
    min-height: 0;
    aspect-ratio: 1 / .92;
  }
  .hero__poster { inset: 0 4% 2%; }
  .next-event__image { min-height: 0; aspect-ratio: 1 / .86; }
  .food-panel__photo { min-height: 0; aspect-ratio: 16 / 10; }
  .catering__photo { min-height: 0; aspect-ratio: 1 / 1.05; }
  .contact { min-height: auto; }
}

@media (max-width: 700px) {
  :root { --pad: 18px; }
  .top-ribbon { height: 30px; }
  .top-ribbon__track { font-size: 12px; }
  .site-header { top: 30px; padding: 12px var(--pad) 0; }
  .brand img { width: 82px; }

  .hero {
    padding: 122px var(--pad) 66px;
    gap: 44px;
  }
  .hero::before { right: 0; }
  .hero::after {
    width: 108%;
    height: 42%;
    right: -32%;
    bottom: 1%;
  }
  .hero h1 {
    font-size: clamp(52px, 15.7vw, 82px);
    line-height: .84;
  }
  .hero__line { width: 100%; }
  .hero__line--pink { transform: rotate(1deg); }
  .hero__intro {
    font-size: 18px;
    line-height: 1.28;
    margin: 22px 0 25px;
  }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 55px; font-size: 16px; }
  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
    padding-top: 16px;
  }
  .hero__proof div { display: block; }
  .hero__proof strong { display: block; font-size: 28px; }
  .hero__proof span { display: block; font-size: 9px; line-height: 1.15; }
  .hero__visual { aspect-ratio: 4 / 5; }
  .hero__poster { inset: 0 0 2%; transform: rotate(1deg); }
  .hero__logo-orbit { width: 118px; left: -6px; bottom: -2%; }
  .hero__stamp { width: 88px; right: -4px; top: -5%; font-size: 15px; box-shadow: 5px 5px 0 var(--pink); }
  .hero__scroll { display: none; }

  .next-event { grid-template-columns: 1fr; }
  .next-event__label {
    grid-row: auto;
    min-height: 62px;
    padding: 12px 18px;
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
    justify-content: flex-start;
  }
  .next-event__label p br { display: none; }
  .next-event__content {
    grid-row: auto;
    padding: 52px var(--pad) 58px;
  }
  .next-event h2 { font-size: clamp(58px, 17vw, 86px); }
  .next-event h2 small { transform: none; }
  .next-event__details div { grid-template-columns: 66px minmax(0, 1fr); }
  .next-event__details strong { font-size: 18px; }
  .next-event__image { grid-column: auto; aspect-ratio: 1 / 1.02; }
  .next-event__burst { width: 105px; font-size: 16px; }

  .crave-strip__track .ticker-group { padding-block: 11px; font-size: 27px; }
  .section-heading h2 { font-size: clamp(57px, 17vw, 82px); }
  .section-heading > p:last-child { font-size: 18px; }
  .food { padding-top: 88px; }
  .food-panel__photo { aspect-ratio: 4 / 3; }
  .food-panel__copy { padding: 33px 20px 38px; }
  .food-panel h3 { font-size: clamp(43px, 13vw, 66px); }
  .food-callout { width: 100%; grid-template-columns: 1fr; padding: 28px 22px; }
  .food-callout span { grid-column: auto; }

  .catering__photo { aspect-ratio: 4 / 5; }
  .award-badge { width: 158px; }
  .catering__menu { padding: 72px var(--pad); }
  .catering h2, .story h2, .contact h2 { font-size: clamp(56px, 16vw, 82px); }
  .catering__lead { font-size: 18px; }
  .menu-lines { gap: 9px; }
  .menu-line,
  .menu-line:hover,
  .menu-line.is-active {
    grid-template-columns: 31px minmax(0, 1fr) 34px;
    gap: 9px;
    min-height: 0;
    padding: 14px 12px;
  }
  .menu-line span { grid-column: 1; grid-row: 1 / 3; }
  .menu-line strong { grid-column: 2; grid-row: 1; font-size: 21px; }
  .menu-line small { grid-column: 2; grid-row: 2; font-size: 14px; }
  .menu-line b { grid-column: 3; grid-row: 1 / 3; align-self: center; }
  .package-detail { padding: 19px 18px; }
  .package-detail p { font-size: 16px; }

  .story { padding-top: 90px; padding-bottom: 95px; gap: 38px; }
  .story__big { font-size: 30px; }
  .story__body > p:not(.story__big) { font-size: 18px; }
  .story__numbers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }
  .story__numbers div { display: block; }
  .story__numbers strong { display: block; font-size: 35px; }
  .story__numbers span { display: block; font-size: 9px; }

  .reviews { padding-top: 82px; padding-bottom: 92px; }
  .reviews__title span, .reviews__title strong { font-size: clamp(51px, 15vw, 76px); }
  .review-wall { margin-top: 34px; }
  .review-wall blockquote { min-height: 255px; padding: 26px 23px; transform: none !important; }
  .review-wall p { font-size: 25px; }

  .contact { padding: 82px var(--pad) 120px; gap: 35px; }
  .contact::before { width: 78%; left: -28%; }
  .contact__logo { width: min(330px, 82%); }
  .contact__copy > p:not(.scribble) { font-size: 18px; }
  .contact__links a { grid-template-columns: 52px minmax(0, 1fr) 20px; }
  .contact__links strong { font-size: 21px; overflow-wrap: anywhere; }

  footer {
    padding: 27px var(--pad) 96px;
    align-items: center;
    text-align: center;
  }
  .mobile-event {
    grid-template-columns: 90px minmax(0, 1fr);
    padding: 12px 14px;
    gap: 10px;
    font-size: 11px;
  }
  .mobile-event strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(49px, 15.4vw, 65px); }
  .eyebrow { font-size: 12px; letter-spacing: .11em; }
  .hero__visual { aspect-ratio: 4 / 5.35; }
  .hero__logo-orbit { width: 105px; }
  .orbit-text { font-size: 9px; }
  .next-event h2 { font-size: clamp(54px, 16vw, 69px); }
  .section-heading h2,
  .catering h2,
  .story h2,
  .contact h2 { font-size: clamp(52px, 15.5vw, 67px); }
  .food-panel h3 { font-size: clamp(41px, 12vw, 54px); }
  .story__big { font-size: 27px; }
  .reviews__title span, .reviews__title strong { font-size: clamp(47px, 14vw, 60px); }
  .review-wall p { font-size: 23px; }
}

/* Final scale and overflow safeguards. */
.top-ribbon,
.crave-strip {
  width: 100%;
  max-width: 100vw;
  overflow: clip;
  contain: layout paint;
}
.hero__copy,
.hero__visual,
.next-event__content,
.next-event__image,
.section-heading,
.food-panel,
.food-panel__copy,
.catering__photo,
.catering__menu,
.story__heading,
.story__body,
.contact__copy {
  min-width: 0;
  max-width: 100%;
}
.hero h1,
.next-event h2,
.section-heading h2,
.food-panel h3,
.catering h2,
.story h2,
.contact h2 {
  max-width: 100%;
}
.catering h2 em { display: block; }

/* Proper circular type ring: the centre logo remains completely still. */
.orbit-text { display: none; }
.orbit-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: orbitSpin 18s linear infinite;
  transform-origin: 50% 50%;
}
.orbit-ring circle {
  fill: rgba(5,5,5,.28);
  stroke: white;
  stroke-width: 2;
  stroke-dasharray: 5 7;
}
.orbit-ring text {
  fill: white;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 1.4px;
}

@media (max-width: 900px) and (min-width: 701px) {
  .hero h1 { font-size: clamp(65px, 12.3vw, 94px); }
}

@media (max-width: 700px) {
  .catering h2 {
    font-size: clamp(45px, 12.2vw, 56px);
    line-height: .9;
    overflow-wrap: anywhere;
  }
  .catering h2 em { letter-spacing: -.02em; }
}

@media (max-width: 420px) {
  .orbit-ring text { font-size: 10px; }
}

/* Prevent decorative motion layers from influencing responsive page width. */
html,
body { overflow-x: clip; }
.hero { overflow: clip; }
.crave-strip { transform: none; margin: 0; }

@media (max-width: 900px) {
  .next-event h2 small { transform: none; }
}
