:root {
  color-scheme: light;
  --font-display: "Clash Display", "Cooper Black", "Arial Black", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Satoshi", "Plus Jakarta Sans", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --ink: #24130c;
  --muted: #7a4b35;
  --cream: #fff6df;
  --yellow: #f5b915;
  --yellow-soft: #ffd96b;
  --red: #d52418;
  --red-dark: #8d1f16;
  --brown: #4a2116;
  --white: #fffdf5;
  --line: rgba(74, 33, 22, 0.16);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow: 0 26px 70px rgba(116, 58, 17, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(213, 36, 24, 0.18), transparent 20rem),
    linear-gradient(180deg, #fff6df 0%, #fff0c6 48%, #fff8e6 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { overflow-wrap: anywhere; text-wrap: pretty; }
h1, h2, h3, .brand, .primary-button, .header-cta { font-family: var(--font-display); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 60;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 86px;
  padding: 16px clamp(18px, 6vw, 84px);
  background: rgba(255, 253, 245, 0.94);
  box-shadow: 0 12px 32px rgba(74, 33, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.order-summary,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  color: var(--red);
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-links {
  justify-content: center;
  gap: clamp(12px, 2.5vw, 34px);
  color: var(--brown);
  font-weight: 800;
}

.nav-links a {
  padding: 10px 0;
  transition: color 350ms var(--ease);
}

.nav-links a:hover { color: var(--red); }

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 450ms var(--ease), background 450ms var(--ease), color 450ms var(--ease);
}

.header-cta,
.primary-button {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 34px rgba(213, 36, 24, 0.24);
}

.secondary-button {
  color: var(--brown);
  background: var(--yellow);
}

.header-cta:hover,
.primary-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.secondary-button:hover {
  background: var(--yellow-soft);
  transform: translateY(-2px);
}

.header-cta:active,
.primary-button:active,
.secondary-button:active { transform: scale(0.98); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(213, 36, 24, 0.28);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  min-height: calc(100dvh - 86px);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 84px) clamp(54px, 7vw, 90px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -8% auto auto;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 -40px 0 rgba(213, 36, 24, 0.1);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
}

.price-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
}

h1 {
  max-width: 8ch;
  margin: 0;
  color: var(--red);
  font-size: clamp(4.6rem, 11vw, 10.6rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.hero-copy {
  max-width: 46ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  font-weight: 650;
  line-height: 1.6;
}

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

.hero-plate {
  position: relative;
  z-index: 2;
}

.hero-plate img {
  display: block;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.discount-badge {
  position: absolute;
  right: 2%;
  top: 5%;
  display: grid;
  place-items: center;
  width: clamp(138px, 16vw, 188px);
  aspect-ratio: 1;
  padding: 18px;
  border: 8px solid var(--cream);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  background: var(--red);
  box-shadow: 0 18px 38px rgba(74, 33, 22, 0.22);
}

.discount-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.8;
}

.discount-badge span {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
}

.deal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(50px, 7vw, 82px) clamp(18px, 6vw, 84px);
  background: var(--white);
}

.deal-card {
  min-height: 310px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 28px;
  color: var(--brown);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.deal-card-dark {
  color: var(--white);
  background: var(--brown);
}

.deal-card-red {
  color: var(--white);
  background: var(--red);
}

.deal-card span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-card strong {
  display: block;
  margin: 4px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.deal-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1;
}

.deal-card p {
  max-width: 28ch;
  line-height: 1.55;
  font-weight: 650;
}

.deal-card a {
  display: inline-flex;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.ingredients,
.menu-section,
.order-section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 6vw, 84px);
}

.section-title {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title span,
.order-banner span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title h2,
.order-banner h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2.7rem, 6vw, 6rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.ingredient-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.ingredient-list {
  display: grid;
  gap: 20px;
}

.ingredient-list article {
  padding: 0 0 20px;
  border-bottom: 2px dashed rgba(74, 33, 22, 0.2);
}

.ingredient-list h3 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 1.6rem;
}

.ingredient-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.58;
}

.ingredient-image img {
  display: block;
  width: 100%;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.menu-section { background: var(--white); }

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

.menu-item {
  overflow: hidden;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.menu-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.05 / 0.82;
  object-fit: cover;
}

.menu-item div {
  padding: 24px;
}

.menu-item h3 {
  margin: 0;
  color: var(--brown);
  font-size: 1.72rem;
  line-height: 1;
}

.menu-item strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.56;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--yellow);
}

.order-banner {
  position: sticky;
  top: 110px;
}

.order-banner p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.62;
}

.order-form {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(74, 33, 22, 0.16);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf0;
  font: inherit;
  font-weight: 650;
}

textarea { resize: vertical; }
input::placeholder,
textarea::placeholder { color: #9a715e; }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(213, 36, 24, 0.12);
}

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

.field-error {
  min-height: 18px;
  margin: 0;
  color: var(--red-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.order-summary {
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0 18px;
  padding: 18px;
  border-radius: 20px;
  color: var(--white);
  background: var(--brown);
}

.order-summary span { font-weight: 800; color: rgba(255, 253, 245, 0.78); }
.order-summary strong {
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.submit-button { width: 100%; }

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 6vw, 84px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

footer span {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 950;
}

footer a { font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .hero,
  .deal-strip,
  .ingredient-layout,
  .menu-grid,
  .order-section,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 42px;
  }
  .hero::before {
    inset: auto -24% 9% auto;
    width: 92vw;
  }
  h1 { font-size: clamp(4.2rem, 18vw, 7rem); }
  .discount-badge {
    right: -2%;
    top: -2%;
  }
  .order-banner { position: static; }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 74px;
    padding-inline: 14px;
  }
  .brand span:last-child { max-width: 122px; }
  .header-cta {
    min-height: 46px;
    padding-inline: 16px;
  }
  .hero-actions a,
  .submit-button { width: 100%; }
  .discount-badge {
    width: 122px;
    border-width: 6px;
  }
  .section-title h2,
  .order-banner h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
