/* ============================================
   CRAVE — Diner Modernity
   ============================================ */

:root {
  --red: #E32B1D;
  --red-deep: #BE0503;
  --red-shadow: #8a0301;
  --black: #0E0E0E;
  --ink: #1A1A1A;
  --bone: #F6F2EA;
  --paper: #FFFDF8;
  --mute: #6f6864;
  --check-size: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--black);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body { overflow-x: hidden; }

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }

/* Type */
.display {
  font-family: 'Bagel Fat One', 'Epilogue', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.script {
  font-family: 'Bagel Fat One', serif;
}
.label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.body-lg { font-size: 18px; line-height: 1.55; font-weight: 500; }

/* Checker patterns */
.check-rw {
  background-image: conic-gradient(var(--red) 25%, var(--bone) 0 50%, var(--red) 0 75%, var(--bone) 0);
  background-size: calc(var(--check-size) * 2) calc(var(--check-size) * 2);
}
.check-rb {
  background-image: conic-gradient(var(--red) 25%, var(--black) 0 50%, var(--red) 0 75%, var(--black) 0);
  background-size: calc(var(--check-size) * 2) calc(var(--check-size) * 2);
}
.check-bw {
  background-image: conic-gradient(var(--black) 25%, var(--bone) 0 50%, var(--black) 0 75%, var(--bone) 0);
  background-size: calc(var(--check-size) * 2) calc(var(--check-size) * 2);
}

.check-strip {
  height: 16px;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid var(--black);
  background: var(--bone);
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 120ms ease, box-shadow 120ms ease;
  cursor: pointer;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--black); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--black); }

.btn-primary {
  background: var(--red);
  color: var(--bone);
  border-color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--bone);
  border-color: var(--black);
}
.btn-ghost {
  background: transparent;
  border-color: var(--bone);
  color: var(--bone);
  box-shadow: 4px 4px 0 var(--bone);
}
.btn-ghost:hover { box-shadow: 2px 2px 0 var(--bone); }

/* Card */
.card {
  background: var(--paper);
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
}
.card-red {
  background: var(--paper);
  border: 2px solid var(--red);
  box-shadow: 6px 6px 0 var(--red);
}

/* Marquees */
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: scroll-x 30s linear infinite;
  flex-shrink: 0;
  min-width: 100%;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.marquee-reverse .marquee-track { animation-direction: reverse; }

.marquee-text {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  white-space: nowrap;
}

/* Badge */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--black);
  color: var(--bone);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 999px;
}
.pill-red { background: var(--red); }

/* Dotted leader (menu) */
.leader {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.leader .dots {
  flex: 1;
  border-bottom: 2px dotted var(--black);
  transform: translateY(-6px);
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
}

/* Sections */
section { position: relative; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: 2px solid var(--black);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 28px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-btn { padding: 10px 14px; font-size: 12px; white-space: nowrap; }
.nav-burger { display: none; width: 40px; height: 40px; border: 2px solid var(--black); background: var(--bone); flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--black); }
.nav-mobile {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 18px 22px;
  border-top: 2px solid var(--black);
  background: var(--bone);
}
.nav-mobile a { font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; padding: 8px 0; cursor: pointer; }
.nav-mobile a:hover { color: var(--red); }

@media (max-width: 1080px) {
  .nav-links { gap: 20px; font-size: 12px; }
  .nav-btn { padding: 9px 12px; font-size: 11px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-btn.btn-ghost { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  .nav-inner { height: 56px; }
  .nav-btn { display: none; }
  .nav-burger { display: flex; }
  .nav-logo { height: 24px; }
}

/* HERO common */
.hero {
  position: relative;
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}

/* HERO 1 — Bold typographic */
.h1-wrap {
  background: var(--bone);
  padding: 28px 0 0;
  position: relative;
}
.h1-mega {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(140px, 28vw, 460px);
  line-height: 0.78;
  color: var(--red);
  text-align: center;
  margin: 0;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 0;
  position: relative;
  z-index: 2;
}
.h1-tag {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 18px;
}
.h1-tag .since {
  font-family: 'Bagel Fat One', serif;
  font-size: 22px;
  color: var(--black);
}
.h1-tag .desc {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.h1-stamp {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: var(--red);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Bagel Fat One', serif;
  font-size: 18px;
  line-height: 1;
  transform: rotate(-12deg);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  z-index: 3;
}

/* HERO 2 — Split red/white grid */
.h2-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 640px;
}
@media (max-width: 880px) {
  .h2-grid { grid-template-columns: 1fr; min-height: 0; }
}
.h2-left {
  background: var(--red);
  color: var(--bone);
  padding: 60px 56px 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}
@media (max-width: 640px) {
  .h2-left { padding: 36px 24px 32px; }
}
.h2-left h1 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.01em;
}
.h2-left h1 em {
  font-style: normal;
  display: inline-block;
  background: var(--black);
  color: var(--red);
  padding: 0 12px;
  transform: rotate(-2deg);
}
.h2-right {
  background: var(--bone);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h2-right .photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h2-right::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid var(--black);
  pointer-events: none;
}
@media (max-width: 880px) {
  .h2-right::after { border-left: none; border-top: 2px solid var(--black); }
}
.h2-corner-checker {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  --check-size: 20px;
}

/* HERO 3 — Checkered marquee */
.h3 {
  background: var(--bone);
  padding: 0;
}
.h3-marquee-row {
  position: relative;
  height: clamp(110px, 14vw, 180px);
  border-bottom: 2px solid var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.h3-marquee-row.red { background: var(--red); color: var(--bone); }
.h3-marquee-row.dark { background: var(--black); color: var(--bone); }
.h3-marquee-row .marquee-text { padding-right: 48px; }
.h3-marquee-row .dot {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: currentColor;
  margin: 0 36px;
  vertical-align: middle;
}
.h3-center {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: stretch;
  border-bottom: 2px solid var(--black);
}
@media (max-width: 880px) { .h3-center { grid-template-columns: 1fr; } }
.h3-center .col {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.h3-center .col.checker {
  border-right: 2px solid var(--black);
  --check-size: 24px;
  min-height: 240px;
}
.h3-center .col.middle {
  border-right: 2px solid var(--black);
  text-align: center;
  padding: 56px 32px;
  background: var(--bone);
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.h3-flames {
  width: clamp(160px, 22vw, 280px);
  height: auto;
  margin-bottom: 4px;
}
.h3-meta-row {
  margin-top: 14px;
  justify-content: center;
}
@media (max-width: 880px) {
  .h3-center { grid-template-columns: 1fr; }
  .h3-center .col.checker { border-right: none; border-bottom: 2px solid var(--black); min-height: 180px; }
  .h3-center .col.middle { border-right: none; border-bottom: 2px solid var(--black); padding: 40px 20px; }
  .h3-side:last-child { display: none; }
  .h3-flames { width: 200px; }
}
.h3-center h1 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  margin: 0 0 20px;
  color: var(--black);
}
.h3-center h1 .red { color: var(--red); }
.h3-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.h3-meta {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* HERO 4 — People-first photo */
.h4 {
  position: relative;
  height: clamp(560px, 78vh, 820px);
  background: var(--black);
  overflow: hidden;
}
.h4 .bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.h4 .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 30%, rgba(0,0,0,.55) 80%, rgba(0,0,0,.85) 100%);
}
.h4 .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0;
}
.h4 .top {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--bone);
}
.h4 .ticker {
  background: var(--red);
  border-block: 2px solid var(--black);
  color: var(--bone);
  padding: 10px 0;
  font-family: 'Bagel Fat One', serif;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.h4 .head {
  color: var(--bone);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: 36px;
  padding: 16px 0 24px;
}
.h4 h1 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.9;
  margin: 0;
  min-width: 0;
  word-break: break-word;
}
.h4 h1 .red { color: var(--red); }
.h4 .right-stack {
  display: flex; flex-direction: column; gap: 10px;
  text-align: right;
  max-width: 320px;
}
@media (max-width: 880px) {
  .h4 .head { grid-template-columns: 1fr; }
  .h4 .right-stack { text-align: left; }
}

/* HERO 5 — Burger collage */
.h5 {
  background: var(--paper);
  padding: 24px 0;
  border-bottom: 2px solid var(--black);
}
.h5-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 12px;
}
@media (max-width: 880px) {
  .h5-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
}
.h5-tile {
  border: 2px solid var(--black);
  overflow: hidden;
  position: relative;
  background: var(--bone);
}
.h5-tile img { width: 100%; height: 100%; object-fit: cover; }
.h5-tile .pill { position: absolute; top: 10px; left: 10px; }
.h5-headline {
  background: var(--red);
  color: var(--bone);
  padding: 28px 24px;
  border: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.h5-headline .display {
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 0.92;
}
.h5-cta-block {
  background: var(--black);
  color: var(--bone);
  padding: 24px;
  border: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

/* MENU */
.menu-wrap {
  background: var(--bone);
  padding: 96px 0 100px;
  position: relative;
}
.menu-head { text-align: center; margin-bottom: 56px; }
.menu-head .eyebrow { color: var(--red); }
.menu-head h2 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(56px, 8vw, 110px);
  margin: 8px 0 12px;
  line-height: 0.9;
  color: var(--black);
}
.menu-head h2 .red { color: var(--red); }
.menu-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-card {
  background: var(--paper);
  border: 2px solid var(--black);
  position: relative;
}
.menu-card .top-strip {
  height: 14px;
  --check-size: 14px;
  border-bottom: 2px solid var(--black);
}
.menu-card .body {
  padding: 28px 32px 30px;
}
.menu-card h3 {
  font-family: 'Bagel Fat One', serif;
  color: var(--red);
  margin: 0 0 22px;
  font-size: clamp(32px, 3.5vw, 44px);
  text-transform: uppercase;
  line-height: 1;
}
.menu-card .row {
  display: flex; align-items: baseline; gap: 8px;
  padding: 10px 0;
  font-size: 16px;
}
.menu-card .row .name { font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.menu-card .row .price {
  font-family: 'Bagel Fat One', serif;
  color: var(--red); font-size: 20px;
}
.menu-card .row .dots {
  flex: 1;
  border-bottom: 2px dotted var(--black);
  transform: translateY(-5px);
}
.menu-tabs {
  display: inline-flex;
  border: 2px solid var(--black);
  margin-bottom: 28px;
  background: var(--paper);
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 22px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-right: 2px solid var(--black);
  background: var(--paper);
  color: var(--black);
  flex: 0 0 auto;
}
.menu-tab:last-child { border-right: none; }
.menu-tab.active { background: var(--red); color: var(--bone); }

/* Mobile: collapse 5 tabs into a single row that fits 375px+ widths.
   Reduces padding/letter-spacing to keep all tabs visible without wrapping,
   which avoids the missing horizontal divider between wrapped rows. */
@media (max-width: 640px) {
  .menu-tabs {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
  }
  .menu-tab {
    flex: 1 1 0;
    padding: 14px 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: center;
    min-width: 0;
  }
}
.menu-foot {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aside-photo {
  border: 2px solid var(--black);
  height: 320px;
  overflow: hidden;
  position: relative;
  box-shadow: 8px 8px 0 var(--red);
}
.aside-photo img { width:100%; height:100%; object-fit: cover; }
.aside-photo .tag {
  position: absolute; bottom: 12px; left: 12px;
}
.aside-quote {
  background: var(--black);
  color: var(--bone);
  border: 2px solid var(--black);
  padding: 28px;
  font-family: 'Bagel Fat One', serif;
  font-size: 26px;
  line-height: 1.1;
}
.aside-quote .red { color: var(--red); }

/* LOCATIONS */
.loc-wrap {
  background: var(--black);
  color: var(--bone);
  padding: 100px 0 110px;
  border-block: 2px solid var(--black);
  position: relative;
}
.loc-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; flex-wrap: wrap; gap: 18px; }
.loc-head h2 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9; margin: 0;
}
.loc-head h2 .red { color: var(--red); }
.loc-tabs {
  display: inline-flex;
  border: 2px solid var(--bone);
}
.loc-tab {
  padding: 12px 24px;
  font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0.12em;
  border-right: 2px solid var(--bone);
  color: var(--bone);
  background: transparent;
}
.loc-tab:last-child { border-right: none; }
.loc-tab.active { background: var(--red); color: var(--bone); }
.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card {
  border: 2px solid var(--bone);
  padding: 36px;
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.loc-card .name {
  font-family: 'Bagel Fat One', serif;
  font-size: 56px;
  line-height: 0.95;
  color: var(--bone);
}
.loc-card .name .red { color: var(--red); }
.loc-card .addr { font-size: 16px; line-height: 1.55; max-width: 360px; }
.loc-hours {
  display: grid; grid-template-columns: 1fr auto;
  row-gap: 8px;
  font-size: 14px;
  border-top: 1px solid rgba(246,242,234,.2);
  border-bottom: 1px solid rgba(246,242,234,.2);
  padding: 18px 0;
}
.loc-hours .day { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.loc-hours .time { text-align: right; font-family: 'Bagel Fat One', serif; color: var(--red); font-size: 16px; }
.loc-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.loc-map {
  border: 2px solid var(--bone);
  background: #1a1a1a;
  color: var(--black);
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.map-frame {
  position: relative;
  flex: 1;
  background: #0a0a0a;
  overflow: hidden;
}
.map-frame iframe {
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95) contrast(0.95);
  width: 100%;
  height: 100%;
}
.map-pin {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pin-stamp {
  background: var(--red);
  color: var(--bone);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  padding: 8px 16px;
  font-size: 22px;
  transform: translateY(-20px);
}
.loc-map .footer {
  border-top: 2px solid var(--bone);
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; text-transform: uppercase; font-weight: 800; letter-spacing: 0.08em;
  background: var(--black);
  color: var(--bone);
}
.loc-map .footer a:hover { opacity: 0.8; }

/* GALLERY */
.gal-wrap {
  background: var(--bone);
  padding: 100px 0;
}
.gal-head { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 18px; margin-bottom: 36px; }
.gal-head h2 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9; margin: 0;
}
.gal-head h2 .red { color: var(--red); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 240px;
}
@media (max-width: 980px) { .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px;} }
.gal-tile { border: 2px solid var(--black); overflow: hidden; position: relative; }
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gal-tile:hover img { transform: scale(1.05); }
.gal-tile.tall { grid-row: span 2; }
.gal-tile.wide { grid-column: span 2; }
.gal-tile .stamp {
  position: absolute;
  bottom: 10px; left: 10px;
}

/* STORY */
.story-wrap {
  background: var(--red);
  color: var(--bone);
  padding: 100px 0 110px;
  border-block: 2px solid var(--black);
  position: relative;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story-head .label { background: var(--black); color: var(--bone); padding: 6px 12px; }
.story-head h2 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.92;
  margin: 18px 0 24px;
}
.story-head h2 em { font-style: italic; color: var(--black); }
.story-head p { font-size: 18px; line-height: 1.55; max-width: 520px; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 2px solid var(--black);
  background: var(--black);
}
.stat { padding: 18px; background: var(--red); }
.stat:nth-child(2) { border-left: 2px solid var(--black); border-right: 2px solid var(--black); }
.stat .num { font-family: 'Bagel Fat One', serif; font-size: 36px; line-height: 1; }
.stat .lbl { font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; margin-top: 6px; }
.story-photo {
  border: 2px solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ORDER CTA */
.order-wrap {
  background: var(--bone);
  padding: 90px 0;
}
.order-card {
  background: var(--black);
  color: var(--bone);
  border: 2px solid var(--black);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .order-card { grid-template-columns: 1fr; padding: 36px 28px; } }
.order-card h2 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 0.9; margin: 0 0 16px;
}
.order-card h2 .red { color: var(--red); }
.order-card .platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.order-platform {
  border: 2px solid var(--bone);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  background: transparent;
  text-align: left;
  color: var(--bone);
  transition: background 120ms ease, color 120ms ease;
}
.order-platform .name {
  font-family: 'Bagel Fat One', serif;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}
.order-platform:hover { background: var(--red); border-color: var(--red); color: var(--bone); }

/* FOOTER */
.foot {
  background: var(--black);
  color: var(--bone);
  padding: 64px 0 24px;
  border-top: 2px solid var(--black);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot h4 {
  font-family: 'Bagel Fat One', serif;
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--red);
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 8px; font-size: 14px; }
.foot a:hover { color: var(--red); }
.foot-mega {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  color: var(--red);
  letter-spacing: -0.02em;
  border-block: 2px solid var(--bone);
  padding: 24px 0;
  margin: 0;
  text-align: center;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 24px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(246,242,234,.6);
  flex-wrap: wrap; gap: 12px;
}
.foot-credit {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(246,242,234,.1);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,242,234,.5);
}
.foot-credit a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 120ms ease;
}
.foot-credit a:hover { color: var(--bone); }
.foot-credit .foot-heart {
  color: var(--red);
  vertical-align: middle;
  flex-shrink: 0;
}

/* Hero switcher pills (visible always) */
.hero-switch {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  display: flex;
  gap: 6px;
  background: var(--bone);
  border: 2px solid var(--black);
  padding: 6px;
  box-shadow: 4px 4px 0 var(--black);
}
.hero-switch button {
  width: 28px; height: 28px;
  font-family: 'Bagel Fat One', serif;
  font-size: 14px;
  border: 2px solid var(--black);
  background: var(--bone);
  color: var(--black);
  cursor: pointer;
}
.hero-switch button.active { background: var(--red); color: var(--bone); }

.hero-num {
  display: none;
}
.hero-num .dot { width: 10px; height: 10px; background: var(--red); border-radius: 999px; }

/* Misc utilities */
.spacer-sm { height: 24px; }
.spacer { height: 64px; }
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Modal */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(14,14,14,0.85);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadein 200ms ease;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bone);
  border: 2px solid var(--black);
  box-shadow: 12px 12px 0 var(--red);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: 2px solid var(--black);
  background: var(--bone);
  font-family: 'Bagel Fat One', serif;
  font-size: 18px;
  cursor: pointer;
}
.modal-close:hover { background: var(--red); color: var(--bone); }

/* Modal grids */
.modal-twocol {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.modal-threecol {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--black);
}
@media (max-width: 720px) {
  .modal-twocol { grid-template-columns: 1fr; gap: 28px; }
  .modal-threecol { grid-template-columns: 1fr; gap: 24px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* CONTACT — match Crave's diner-modernity language */
.contact-wrap {
  background: var(--bone);
  padding: 100px 0;
  border-top: 2px solid var(--black);
}
.contact-card {
  background: var(--paper);
  border: 2px solid var(--black);
  box-shadow: 12px 12px 0 var(--red);
  padding: 56px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-card { grid-template-columns: 1fr; padding: 36px 24px; box-shadow: 6px 6px 0 var(--red); gap: 32px; }
}
@media (max-width: 640px) {
  .contact-wrap { padding: 64px 0; }
  .contact-card { padding: 28px 20px; }
}

.contact-head h2 {
  font-family: 'Bagel Fat One', serif;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 0.9;
  margin: 12px 0 18px;
  color: var(--black);
}
.contact-head h2 .red { color: var(--red); }
.contact-head p {
  font-size: 17px; line-height: 1.55;
  color: var(--ink); margin: 0 0 24px; max-width: 360px;
}
.contact-direct {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 0; border-top: 2px dotted var(--black);
}
.contact-direct .contact-handle {
  font-family: 'Bagel Fat One', serif;
  font-size: 26px; color: var(--red);
  line-height: 1;
  transition: color 120ms ease;
}
.contact-direct .contact-handle:hover { color: var(--black); }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .contact-form .form-row { grid-template-columns: 1fr; gap: 14px; } }

.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form .field span {
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px; color: var(--black);
}

.contact-form input,
.contact-form textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; line-height: 1.4;
  padding: 14px 16px;
  border: 2px solid var(--black);
  background: var(--bone);
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
  box-shadow: 4px 4px 0 var(--black);
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mute); opacity: 1;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 4px 4px 0 var(--red);
  background: var(--paper);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 28px;
  font-size: 14px;
}
.contact-submit:disabled {
  opacity: 0.6; cursor: not-allowed;
}
.contact-submit:disabled:hover {
  transform: none;
  box-shadow: 4px 4px 0 var(--black);
}

.contact-msg {
  padding: 14px 18px;
  font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 13px;
  border: 2px solid var(--black);
  margin-top: 8px;
  line-height: 1.4;
}
.contact-msg.success { background: var(--bone); color: var(--black); box-shadow: 4px 4px 0 var(--red); }
.contact-msg.error { background: var(--red); color: var(--bone); box-shadow: 4px 4px 0 var(--black); }

