:root {
  --ink: #111111;
  --paper: #fff7e6;
  --cream: #fffaf0;
  --red: #d92828;
  --gold: #f4b23b;
  --green: #1d6b49;
  --muted: #6c6258;
  --line: rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(17, 17, 17, 0.86);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: clamp(150px, 18vw, 210px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 72px) 54px;
  color: var(--paper);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.72) 38%, rgba(17, 17, 17, 0.2) 72%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.46), rgba(17, 17, 17, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding-top: 30px;
}

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

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(3.4rem, 10vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.intro {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 247, 230, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  color: white;
}

.button.secondary {
  border-color: rgba(255, 247, 230, 0.6);
  color: var(--paper);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 72px);
}

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

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

.menu-item {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-item span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-item p,
.order-card p,
.order-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.menu-item.accent {
  background: var(--ink);
  color: var(--paper);
}

.menu-item.accent p {
  color: rgba(255, 247, 230, 0.78);
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 247, 230, 0.18);
}

.info-list span {
  color: rgba(255, 247, 230, 0.78);
  text-align: right;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

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

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 160px;
  height: auto;
}

.footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.7) 100%),
      linear-gradient(0deg, rgba(17, 17, 17, 0.36), rgba(17, 17, 17, 0));
  }

  .menu-grid,
  .info-band,
  .order-section {
    grid-template-columns: 1fr;
  }

  .info-list p {
    display: block;
  }

  .info-list span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .footer {
    display: block;
  }

  .footer p {
    margin-top: 16px;
    text-align: left;
  }
}

@media (max-width: 460px) {
  .brand img {
    width: 142px;
  }

  .hero {
    padding-top: 112px;
  }

  .button {
    width: 100%;
  }
}
