:root {
  --red: #d71920;
  --deep-red: #8f1118;
  --yellow: #ffd229;
  --leaf: #1f8f5f;
  --ink: #201716;
  --espresso: #3b1f1b;
  --cream: #fff8e9;
  --paper: #fffdf7;
  --white: #ffffff;
  --muted: #756260;
  --line: rgba(32, 23, 22, 0.13);
  --shadow: 0 26px 70px rgba(54, 20, 18, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid rgba(215, 25, 32, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
}

.brand img,
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.brand img {
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(215, 25, 32, 0.14);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  background: var(--red);
  color: var(--yellow);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(215, 25, 32, 0.09);
  color: var(--red);
}

.hero {
  position: relative;
  min-height: calc(88vh - 77px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(52px, 8vw, 118px) clamp(18px, 5vw, 78px) clamp(54px, 7vw, 100px);
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 210, 41, 0.32), transparent 34%),
    linear-gradient(110deg, rgba(255, 248, 233, 0.98) 0%, rgba(255, 248, 233, 0.92) 58%, rgba(215, 25, 32, 0.08) 100%),
    repeating-linear-gradient(135deg, rgba(215, 25, 32, 0.04) 0 2px, transparent 2px 18px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -64px -74px;
  width: min(55vw, 520px);
  aspect-ratio: 1;
  border: 36px solid rgba(255, 210, 41, 0.42);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero::after {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.kicker-row span,
.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(54, 20, 18, 0.08);
}

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

h1 {
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(4.2rem, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
  overflow-wrap: normal;
  white-space: nowrap;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

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

.tagline {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--espresso);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button,
.select-offer {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.select-offer:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.28);
}

.button.secondary {
  background: var(--white);
  color: var(--red);
  border: 1px solid rgba(215, 25, 32, 0.22);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 640px);
  margin: 28px 0 0;
}

.hero-facts div,
.quick-info div,
.order-highlight {
  border: 1px solid rgba(32, 23, 22, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 16px;
}

.hero-facts dt,
.quick-info dt {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd,
.quick-info dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.intro-band,
.contact-band,
.order-section,
.menu-showcase {
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 78px);
}

.intro-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
}

.intro-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.quick-info div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.quick-info dt {
  color: var(--yellow);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-showcase {
  position: relative;
  background:
    linear-gradient(180deg, var(--paper), #fff3dc),
    repeating-linear-gradient(90deg, rgba(215, 25, 32, 0.04) 0 1px, transparent 1px 22px);
}

.menu-poster {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-poster img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: var(--deep-red);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
}

.offer-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(215, 25, 32, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(54, 20, 18, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.offer-card:hover,
.offer-card.is-selected {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(54, 20, 18, 0.18);
}

.offer-card.featured {
  border-color: rgba(255, 210, 41, 0.8);
}

.offer-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 210, 41, 0.92), rgba(255, 255, 255, 0.86)),
    var(--yellow);
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.8rem;
  font-weight: 800;
}

.offer-photo::after {
  content: "";
  position: absolute;
  inset: auto -18px -36px -18px;
  height: 78px;
  background: var(--red);
  transform: rotate(-4deg);
}

.offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-body {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.offer-badge {
  justify-self: start;
  min-height: 28px;
  padding: 6px 9px;
  background: var(--yellow);
  color: var(--deep-red);
  box-shadow: none;
}

.offer-body p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-footer strong {
  color: var(--red);
  font-size: 1.08rem;
}

.select-offer {
  min-height: 40px;
  background: var(--ink);
  color: var(--white);
  padding: 9px 13px;
}

.offer-card.is-selected .select-offer {
  background: var(--red);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background:
    linear-gradient(110deg, var(--deep-red) 0%, var(--red) 48%, #f04a24 100%);
  color: var(--white);
}

.order-copy {
  position: sticky;
  top: 104px;
}

.order-copy .eyebrow {
  color: var(--yellow);
}

.order-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 700;
}

.order-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 520px;
  margin-top: 22px;
  background: rgba(32, 23, 22, 0.2);
  border-color: rgba(255, 255, 255, 0.18);
}

.order-highlight span {
  color: var(--white);
  font-weight: 900;
}

.order-highlight strong {
  color: var(--yellow);
}

.order-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.97);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cart-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: 8px;
  background: #fff8e9;
}

.cart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}

.cart-clear,
.cart-controls button {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 7px 10px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-clear {
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(215, 25, 32, 0.22);
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(32, 23, 22, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-controls span {
  min-width: 26px;
  color: var(--ink);
  text-align: center;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

label span {
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(32, 23, 22, 0.16);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
  font-weight: 650;
}

.form-control:focus {
  outline: 3px solid rgba(255, 210, 41, 0.55);
  border-color: var(--red);
}

textarea.form-control {
  resize: vertical;
}

.errorlist {
  margin: 0;
  padding-left: 18px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
}

.contact-band .eyebrow {
  color: var(--yellow);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  font-weight: 800;
}

address a:hover {
  color: var(--yellow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 78px);
  background: #110c0b;
  color: rgba(255, 255, 255, 0.72);
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

@media (max-width: 940px) {
  .hero,
  .intro-band,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .quick-info,
  .form-row {
    grid-template-columns: 1fr;
  }

  .order-copy {
    position: static;
  }
}

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

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

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 3.8rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .order-highlight,
  .offer-footer,
  .cart-item,
  .cart-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

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