:root {
  --color-ink: #17130f;
  --color-ink-soft: #241e18;
  --color-cream: #f7efe2;
  --color-paper: #fff9ef;
  --color-gold: #c99a3d;
  --color-gold-soft: #e7c879;
  --color-green: #2f6b4f;
  --color-green-dark: #173d2c;
  --color-terracotta: #b85c38;
  --color-muted: #7a6e60;
  --color-border: #e5d7c2;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(23, 19, 15, 0.16);
  --container: min(100% - 40px, 1180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-gold-soft);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.hero,
.menu,
.order {
  padding-block: clamp(72px, 10vw, 128px);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 154, 61, 0.2), transparent 34%),
    linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-soft) 52%, #0f2018 100%);
}

.hero__grid,
.order__grid {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
}

.hero__copy {
  max-width: 780px;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: 3rem;
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: 2.2rem;
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 820;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.08;
  font-weight: 820;
}

.hero__lead,
.section-heading p,
.order__copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 24px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.btn--primary {
  background: var(--color-gold);
  color: var(--color-ink);
}

.btn--primary:hover {
  background: var(--color-gold-soft);
}

.btn--secondary {
  background: transparent;
  border-color: currentColor;
}

.btn--dark {
  color: var(--color-white);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero__meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero__visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(23, 19, 15, 0.72));
  z-index: 1;
}

.hero__note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(23, 19, 15, 0.78);
  backdrop-filter: blur(12px);
}

.hero__note span {
  color: rgba(255, 255, 255, 0.76);
}

.menu {
  background:
    linear-gradient(180deg, var(--color-paper), var(--color-cream));
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.section-heading p {
  color: var(--color-muted);
}

.menu__layout {
  display: grid;
  gap: 22px;
}

.dish-card,
.menu-item,
.order-form {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(23, 19, 15, 0.08);
}

.dish-card {
  overflow: hidden;
  border-radius: 28px;
}

.dish-card--featured img {
  aspect-ratio: 1 / 0.78;
}

.dish-card--small {
  display: grid;
}

.dish-card--small img {
  aspect-ratio: 1.3 / 1;
}

.dish-card__body {
  padding: 24px;
}

.dish-card p,
.menu-item p,
.form-note {
  color: var(--color-muted);
}

.dish-card__tag {
  margin-bottom: 10px;
  color: var(--color-terracotta);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-green-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.menu__list {
  display: grid;
  gap: 18px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
}

.order {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(23, 61, 44, 0.96), rgba(23, 19, 15, 0.98)),
    var(--color-green-dark);
}

.order__copy {
  align-self: center;
}

.order__copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  color: var(--color-gold-soft);
  font-weight: 800;
}

.contact-lines a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.order-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  color: var(--color-ink);
  background: var(--color-paper);
}

.order-form label {
  font-weight: 850;
}

.form-status {
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-ink);
  font-weight: 750;
  line-height: 1.45;
}

.form-status.is-success {
  border-color: rgba(47, 107, 79, 0.22);
  background: rgba(47, 107, 79, 0.12);
  color: var(--color-green-dark);
}

.form-status.is-error {
  border-color: rgba(184, 92, 56, 0.28);
  background: rgba(184, 92, 56, 0.12);
  color: #7f351d;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-ink);
  background: var(--color-white);
}

.order-form select {
  min-height: 56px;
}

.order-form textarea {
  resize: vertical;
}

.order-form .btn {
  width: 100%;
  margin-top: 6px;
}

.demo-note {
  margin-top: clamp(44px, 7vw, 72px);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
}

@media (max-width: 419px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .btn {
    width: 100%;
  }

  .hero__visual {
    min-height: 360px;
    border-radius: 28px;
  }

  .menu-item {
    display: grid;
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero__lead,
  .section-heading p,
  .order__copy > p {
    font-size: 1.16rem;
  }

  .menu__layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
    align-items: start;
  }

  .dish-card--small {
    grid-template-columns: 0.82fr 1fr;
    align-items: stretch;
  }

  .dish-card--small img {
    aspect-ratio: auto;
  }
}

@media (min-width: 940px) {
  h1 {
    font-size: 7.2rem;
  }

  h2 {
    font-size: 4.4rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero__lead,
  .section-heading p,
  .order__copy > p {
    font-size: 1.24rem;
  }

  .hero__grid,
  .order__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
  }

  .hero__visual {
    min-height: min(72vh, 690px);
  }
}
