:root {
  --paper: #fbf8f2;
  --card: #f2ead9;
  --ink: #1c1712;
  --muted: #6f6355;
  --line: #e6ddcc;
  --ember: #ff4d1f;
  --ember-deep: #c93c14;
  --citrus: #cfe05e;
  --citrus-deep: #5f6e19;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'IBM Plex Sans', sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--ember); color: var(--paper); }

:focus-visible { outline: 2px solid var(--ember-deep); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

/* Announcement */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ember);
  color: #fff8f2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.announce .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff8f2;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Header (announcement + nav stack together) */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 44px);
  background: rgba(251,248,242,0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(19px, 3vw, 23px);
  color: var(--ink);
  text-decoration: none;
}

.brand .accent { color: var(--ember); }

.brand .tagline {
  margin-left: 3px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a.plain { text-decoration: none; color: var(--muted); }
.nav-links a.plain:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn.ember { background: var(--ember); color: #fff8f2; animation: glow 3.2s ease-in-out infinite; }
.btn.ember:hover { background: var(--ember-deep); transform: translateY(-1px); }

.btn.line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn.line:hover { border-color: var(--ember-deep); color: var(--ember-deep); }

.btn.big { min-height: 54px; padding: 0 30px; font-size: 14px; }

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 rgba(255,77,31,0); }
  50% { box-shadow: 0 10px 26px rgba(255,77,31,0.28); }
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--ember-deep);
  font-size: 12px;
  font-weight: 600;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; background: #0e0c0a; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 55%; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14,11,9,0.12) 0%, rgba(14,11,9,0.32) 45%, rgba(14,11,9,0.86) 100%);
}

.hero-inner { padding: clamp(120px, 18vw, 210px) 0 clamp(56px, 8vw, 84px); }

.hero .eyebrow { color: var(--citrus); }
.hero h1 { color: #fff8f2; }

.hero-copy {
  max-width: 62ch;
  margin: 20px 0 0;
  color: rgba(255,248,242,0.86);
  font-size: 18px;
  line-height: 1.6;
}

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

.btn.line.light { border-color: rgba(255,248,242,0.55); color: #fff8f2; }
.btn.line.light:hover { border-color: #fff8f2; color: #fff8f2; }

.framed {
  margin-top: clamp(40px, 6vw, 64px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,23,18,0.14);
  background: #0e0c0a;
}

.framed img { width: 100%; height: auto; transition: transform 0.5s ease; }
.framed:hover img { transform: scale(1.015); }

/* Page header (non-hero page intro, e.g. Menu, Gallery pages) */
.page-head { padding: clamp(56px, 9vw, 96px) 0 clamp(40px, 6vw, 64px); }
.page-head .wrap { max-width: 760px; }
.page-head h1 { font-size: clamp(32px, 5vw, 54px); }
.page-head p {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Gallery */
.gallery { padding: 0 0 clamp(64px, 9vw, 108px); }

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(28,23,18,0.1);
  background: #0e0c0a;
}

.gallery-item a { display: block; cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.03); }

.gallery-item figcaption {
  padding: 10px 14px;
  background: var(--paper);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
}

@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}

/* Featured carousel */
.feat { padding: clamp(48px, 7vw, 76px) 0; }

.feat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.feat-head h2 {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.1;
  color: var(--ink);
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.feat-link svg { width: 14px; height: 14px; }
.feat-link:hover { border-color: var(--ember-deep); color: var(--ember-deep); }

.feat-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 4px;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.feat-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.feat-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 14px 30px rgba(28,23,18,0.1);
}

.feat-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feat-card:hover .feat-photo img { transform: scale(1.04); }

.feat-photo.swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(28,23,18,0.05) 0 2px, transparent 2px 14px),
    var(--card);
}
.feat-photo.swatch > svg { width: 42%; height: 42%; color: var(--ember-deep); opacity: 0.55; }

.feat-plus {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff8f2;
  box-shadow: 0 6px 16px rgba(28,23,18,0.22);
  transition: background 0.15s ease;
}
.feat-plus svg { width: 15px; height: 15px; color: var(--ink); }
.feat-card:hover .feat-plus { background: var(--ember); }
.feat-card:hover .feat-plus svg { color: #fff8f2; }

.feat-card strong {
  display: block;
  margin-top: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.3;
  color: var(--ink);
}

.feat-desc {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

/* About */
.about { padding: clamp(56px, 8vw, 92px) 0; }

.about-split {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

.about-photo { margin-top: 0; }
.about-photo img { aspect-ratio: 4 / 5; object-fit: cover; }

.about h2 {
  margin: 10px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  color: var(--ink);
}
.about p { margin: 18px 0 0; max-width: 62ch; color: var(--muted); font-size: 16.5px; line-height: 1.75; }

.about-cta { margin-top: 28px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Order section */
.order-section { padding: clamp(64px, 9vw, 108px) 0; }

.order-head { max-width: 46ch; margin-bottom: clamp(32px, 5vw, 52px); }
.order-head h2 {
  margin: 10px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  color: var(--ink);
}

.order-head p { margin: 14px 0 0; color: var(--muted); font-size: 16.5px; line-height: 1.7; }

.order-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.order-photo img { aspect-ratio: 4 / 5; object-fit: cover; }

.cater-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

.cater-text h2 {
  margin: 10px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  color: var(--ink);
}

.cater-text p { margin: 14px 0 0; max-width: 52ch; color: var(--muted); font-size: 16.5px; line-height: 1.7; }

.cater-ticket { margin-top: 28px; max-width: 380px; }

.cater-photo { margin-top: 0; }
.cater-photo img { aspect-ratio: 4 / 5; object-fit: cover; }

/* Ticket */
.ticket {
  position: relative;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 24px 22px;
  box-shadow: 0 20px 44px rgba(28,23,18,0.1);
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}

.ticket:hover { transform: rotate(0deg); }

.ticket-head {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.15;
}

.ticket-head span {
  display: block;
  margin-top: 3px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.perf { position: relative; height: 1px; margin: 18px -24px; border-top: 1px dashed rgba(28,23,18,0.28); }
.perf::before, .perf::after { content: ""; position: absolute; top: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); }
.perf::before { left: -6px; }
.perf::after { right: -6px; }

.t-row { display: flex; align-items: baseline; gap: 6px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; padding: 5px 0; }
.t-row .k { color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.t-row .leader { flex: 1; border-bottom: 1px dotted rgba(28,23,18,0.28); margin-bottom: 3px; }
.t-row .v { font-weight: 600; white-space: nowrap; text-align: right; }

.ticket .btn.ember { width: 100%; margin-top: 6px; }
.ticket .btn.line { width: 100%; margin-top: 8px; }

.ticket-call { display: block; margin-top: 12px; text-align: center; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--muted); text-decoration: none; }
.ticket-call:hover { color: var(--ember-deep); }

.barcode {
  height: 22px;
  margin-top: 18px;
  opacity: 0.45;
  background-image: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 5px,
    var(--ink) 5px 6px, transparent 6px 9px,
    var(--ink) 9px 12px, transparent 12px 16px,
    var(--ink) 16px 17px, transparent 17px 21px,
    var(--ink) 21px 23px, transparent 23px 27px);
}

/* Two sides / category grid */
.sides { padding: 0 0 clamp(64px, 9vw, 108px); }

.sides .framed { margin-top: 0; margin-bottom: clamp(40px, 6vw, 64px); }
.sides .framed img { max-height: 360px; width: 100%; object-fit: cover; }

.sides-head { max-width: 46ch; margin-bottom: clamp(32px, 5vw, 52px); }
.sides-head h2 {
  margin: 10px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  color: var(--ink);
}

.sides-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }

.side { background: var(--paper); }

.side-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.side-photo a { display: block; height: 100%; }
.side-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.side:hover .side-photo img { transform: scale(1.03); }

.side-body { padding: clamp(28px, 4vw, 40px); }

.side .tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.side.oven .tag { background: rgba(255,77,31,0.12); color: var(--ember-deep); }
.side.juice .tag { background: rgba(207,224,94,0.35); color: var(--citrus-deep); }

.side h3 { margin: 0 0 12px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); color: var(--ink); }
.side p { margin: 0; max-width: 38ch; color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* FAQ */
.faq { padding: 0 0 clamp(64px, 9vw, 108px); }

.faq-head { max-width: 46ch; margin-bottom: clamp(24px, 4vw, 36px); }
.faq-head h2 {
  margin: 10px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  color: var(--ink);
}

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  cursor: pointer;
  list-style: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: var(--ember-deep);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: -4px 0 22px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* Closing CTA */
.closer { padding: clamp(64px, 9vw, 100px) 0; border-top: 1px solid var(--line); }

.closer-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(240px, 320px); gap: clamp(28px, 5vw, 52px); align-items: center; }

.closer h2 {
  margin: 10px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: var(--ink);
}

.closer p { max-width: 44ch; margin: 16px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

.closer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.closer-photo { border-radius: 10px; aspect-ratio: 1 / 1; }
.closer-photo img { width: 100%; height: 100%; object-fit: cover; }

.map-frame {
  margin-top: clamp(36px, 5vw, 56px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(28,23,18,0.1);
  aspect-ratio: 16 / 6;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 4vw, 44px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .nav-links a.plain { display: none; }
  .nav .btn.line { display: none; }
  .hero { min-height: 62vh; }
  .hero-bg img { object-position: 78% 60%; }
  .order-grid { grid-template-columns: 1fr; }
  .order-photo { order: -1; }
  .about-split { grid-template-columns: 1fr; }
  .cater-grid { grid-template-columns: 1fr; }
  .cater-ticket { max-width: none; }
  .gallery-grid { column-count: 2; }
  .about-photo { order: -1; }
  .sides-grid { grid-template-columns: 1fr; }
  .closer-grid { grid-template-columns: 1fr; }
  .closer-photo { order: -1; aspect-ratio: 16 / 9; }
  .map-frame { aspect-ratio: 4 / 3; }
}
