:root {
  --ink: #17130f;
  --aubergine: #2c1d4f;
  --gold: #ffbf37;
  --cream: #fff3dc;
  --paper: #fffaf0;
  --sage: #7e9b72;
  --tomato: #d65a31;
  --muted: #6d6259;
  --line: rgba(23, 19, 15, 0.12);
  --shadow: 0 24px 70px rgba(23, 19, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 8px;
  font-size: 0.85rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

nav a:hover,
nav a.is-active,
.notice-band a:hover,
footer a:hover {
  color: var(--tomato);
}

nav a {
  position: relative;
  padding-bottom: 5px;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 75px);
  padding: clamp(34px, 6vw, 86px) clamp(18px, 6vw, 92px) 48px;
  background:
    linear-gradient(120deg, rgba(255, 191, 55, 0.22), transparent 45%),
    radial-gradient(circle at 90% 16%, rgba(126, 155, 114, 0.22), transparent 28%),
    var(--cream);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.menu-label {
  margin: 0 0 10px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.contact-section p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
}

.button.primary {
  background: var(--gold);
}

.button.secondary {
  background: #ffffff;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-art {
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.notice-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 6vw, 92px);
  color: #ffffff;
  background: var(--aubergine);
}

.notice-band p {
  margin: 0;
  font-weight: 900;
}

.notice-band a {
  color: var(--gold);
  font-weight: 900;
}

.section,
.story-section,
.promo-band,
.split-section,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 92px);
  scroll-margin-top: 94px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #ffffff;
}

.story-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-category {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-category h3 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.menu-category-wide {
  grid-row: span 2;
}

.menu-category.feature {
  color: #ffffff;
  background: var(--aubergine);
}

.menu-category.feature h3 {
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-category.feature .menu-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.menu-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list li:first-child {
  padding-top: 0;
}

.menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-list strong,
.menu-list b {
  font-weight: 950;
}

.menu-list small {
  display: block;
  max-width: 440px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-category.feature .menu-list small {
  color: rgba(255, 255, 255, 0.76);
}

.menu-list b {
  flex: 0 0 auto;
  color: var(--tomato);
  white-space: nowrap;
}

.menu-category.feature .menu-list b {
  color: var(--gold);
}

.menu-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.menu-note {
  margin: 18px 0 12px;
  color: var(--muted);
  font-weight: 850;
}

.add-ons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.add-ons span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.promo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
  background: var(--aubergine);
}

.promo-band .eyebrow {
  color: var(--gold);
}

.promo-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.promo-band .button {
  flex: 0 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  background: #f4ead8;
}

.panel {
  min-height: 430px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: #ffffff;
}

.panel.dark {
  color: #ffffff;
  background: var(--ink);
}

.panel.dark .eyebrow {
  color: var(--gold);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 750;
}

.delivery-area {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.delivery-area h3 {
  margin-bottom: 10px;
}

.delivery-area p {
  color: var(--muted);
  font-weight: 750;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.area-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.event-callout {
  margin-top: 28px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--ink);
}

.event-callout h3 {
  margin-bottom: 8px;
}

.event-callout p:last-child {
  margin-bottom: 0;
  font-weight: 800;
}

.map-panel {
  display: flex;
  flex-direction: column;
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  flex: 1;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.02);
}

.contact-panel {
  grid-column: 1 / -1;
  min-height: auto;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
}

.contact-list span {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.contact-section img {
  overflow: hidden;
  border: 4px solid var(--aubergine);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thank-you {
  margin-top: 28px;
  padding: 22px;
  border-left: 6px solid var(--gold);
  background: #ffffff;
  border-radius: 8px;
}

.thank-you p {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.thank-you strong {
  color: var(--tomato);
  font-size: 1.05rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 92px);
  color: #ffffff;
  background: var(--aubergine);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 900px) {
  .hero,
  .story-section,
  .section-heading,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .promo-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    max-width: 520px;
  }

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

  .menu-category-wide {
    grid-row: auto;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .notice-band,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 3.7rem;
  }

  .hero-actions,
  .button,
  .promo-band .button {
    width: 100%;
  }

  .menu-board,
  .menu-list.compact {
    grid-template-columns: 1fr;
  }

  .menu-list li {
    gap: 12px;
  }
}
