:root {
  --ink: #201b18;
  --cream: #f7efe2;
  --clay: #b54e32;
  --olive: #596542;
  --gold: #d49b4d;
  --white: #fffaf2;
}

* {
  box-sizing: border-box;
}

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

.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 5vw, 72px);
  color: var(--white);
}

.brand,
nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  opacity: .72;
}

nav a.active,
nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: end;
  gap: 28px;
  padding: 150px clamp(18px, 5vw, 72px) 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 18, 14, .88), rgba(33, 23, 16, .55), rgba(32, 27, 24, .14)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 720px;
  font-size: clamp(66px, 10vw, 142px);
  line-height: .84;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 242, .7);
  border-radius: 4px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--clay);
  background: var(--clay);
}

.tonight {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(17, 14, 11, .62);
  backdrop-filter: blur(12px);
}

.tonight span,
.section-heading p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tonight strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: 1;
}

.tonight p {
  margin: 14px 0 0;
  line-height: 1.5;
}

.menu-band {
  padding: 72px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  gap: 28px;
  align-items: start;
}

.section-heading h2,
.experience h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.dish-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: #fffdf8;
}

.dish-grid span {
  color: var(--clay);
  font-weight: 700;
}

.dish-grid h3 {
  margin-top: 56px;
  font-size: 33px;
}

.dish-grid p {
  color: #655b52;
  line-height: 1.6;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 36px;
  padding: 72px clamp(18px, 5vw, 72px);
  background: var(--olive);
  color: var(--white);
}

.experience ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 250, 242, .22);
}

.experience strong {
  color: var(--gold);
}

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

  nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .hero,
  .experience,
  .section-heading,
  .dish-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(60px, 19vw, 88px);
  }
}
