:root {
  --wine-950: #3f0f0c;
  --wine-900: #661914;
  --wine-800: #8f241e;
  --wine-700: #ad3129;
  --cream-50: #fffaf0;
  --cream-100: #f7ecd7;
  --cream-200: #ead3ac;
  --gold-500: #c6913f;
  --gold-650: #956427;
  --green-800: #254229;
  --ink: #2a1711;
  --muted: #73584b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(63, 15, 12, 0.16);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(247, 236, 215, 0.92)),
    var(--cream-50);
  color: var(--ink);
  font-family:
    "Trebuchet MS",
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-warm {
  background:
    linear-gradient(180deg, rgba(102, 25, 20, 0.04), rgba(198, 145, 63, 0.08)),
    var(--cream-100);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(16px, calc((100vw - var(--max-width)) / 2));
  color: var(--cream-50);
  background: linear-gradient(180deg, rgba(63, 15, 12, 0.92), rgba(63, 15, 12, 0.6));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
}

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

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 250, 240, 0.55);
  border-radius: 50%;
  background: var(--wine-800);
  color: var(--cream-50);
  font-family: Georgia, serif;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.header-cta {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--cream-50);
  color: var(--wine-900);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 112px 16px 64px;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(63, 15, 12, 0.93) 0%, rgba(63, 15, 12, 0.76) 43%, rgba(63, 15, 12, 0.25) 100%),
    url("../img/hero-cuscuz.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(255, 250, 240, 0.96));
}

.hero-content {
  width: min(100%, 680px);
  margin-inline: auto;
  color: var(--cream-50);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 16vw, 6.5rem);
  text-wrap: balance;
}

h2 {
  color: var(--wine-900);
  font-size: clamp(2rem, 8vw, 3.4rem);
  text-wrap: balance;
}

h3 {
  color: var(--wine-900);
  font-size: 1.55rem;
}

.hero-subtitle {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(1.08rem, 4vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, var(--wine-700), var(--wine-900));
  color: var(--cream-50);
  box-shadow: 0 14px 28px rgba(63, 15, 12, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(63, 15, 12, 0.34);
}

.button-ghost {
  border: 1px solid rgba(255, 250, 240, 0.55);
  color: var(--cream-50);
  background: rgba(255, 250, 240, 0.08);
}

.pickup-notice {
  display: inline-flex;
  margin: 22px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 240, 0.38);
  border-radius: 999px;
  color: var(--cream-50);
  background: rgba(63, 15, 12, 0.45);
  font-weight: 800;
}

.intro-grid,
.order-grid {
  display: grid;
  gap: 32px;
}

.section-copy p:not(.eyebrow),
.order-copy p {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.highlights {
  display: grid;
  gap: 14px;
}

.highlights div,
.menu-card,
.order-form,
.order-note {
  border: 1px solid rgba(143, 36, 30, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: var(--shadow);
}

.highlights div {
  padding: 20px;
}

.highlights strong,
.highlights span {
  display: block;
}

.highlights strong {
  color: var(--wine-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.highlights span {
  margin-top: 6px;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream-200);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.menu-grid {
  display: grid;
  gap: 18px;
}

.menu-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--wine-800), var(--gold-500));
}

.menu-label {
  margin: 0 0 8px;
  color: var(--gold-650);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-list,
.flavor-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(143, 36, 30, 0.25);
}

.price-list span,
.flavor-list li {
  color: var(--muted);
  font-weight: 800;
}

.price-list strong {
  color: var(--wine-900);
  font-size: 1.12rem;
}

.flavor-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flavor-list li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(143, 36, 30, 0.08);
  text-align: center;
}

.order-note {
  margin-top: 24px;
  padding: 16px;
  color: var(--wine-900);
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--wine-900);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(115, 88, 75, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--wine-700);
  box-shadow: 0 0 0 3px rgba(173, 49, 41, 0.16);
}

.form-row textarea {
  resize: vertical;
}

.selected-price {
  margin: 0;
  color: var(--green-800);
  font-weight: 900;
}

.form-submit {
  width: 100%;
}

.site-footer {
  padding: 34px 0;
  background: var(--wine-950);
  color: var(--cream-50);
}

.footer-grid {
  display: grid;
  gap: 18px;
  align-items: center;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.78);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-feature {
    grid-column: span 2;
  }

  .order-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
  }

  .form-row-full,
  .selected-price,
  .form-submit {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 840px) {
  .site-nav {
    display: flex;
  }

  .hero-content {
    width: min(100% - 32px, var(--max-width));
  }

  .intro-grid,
  .order-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1.18fr 1fr 1fr;
  }

  .gallery-feature {
    grid-row: span 2;
    grid-column: auto;
  }

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

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .pickup-notice {
    border-radius: var(--radius);
  }
}
