:root {
  color-scheme: light;
  --ink: #241b16;
  --muted: #71635c;
  --line: #e5ded6;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --wine: #7d263b;
  --olive: #6d7a42;
  --gold: #c89645;
  --charcoal: #201a17;
  --shadow: 0 24px 70px rgb(36 27 22 / 13%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgb(36 27 22 / 10%);
  background: rgb(251 250 247 / 92%);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: white;
  background: var(--wine);
  font-size: 0.78rem;
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
}

.nav-action {
  padding: 10px 14px;
  border-radius: 6px;
  color: white;
  background: var(--charcoal);
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: flex-end;
  padding: 8vh 5vw;
  background:
    linear-gradient(90deg, rgb(20 12 9 / 78%), rgb(20 12 9 / 34) 52%, rgb(20 12 9 / 4)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: white;
}

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.intro {
  max-width: 650px;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

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

.secondary {
  color: white;
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 12%);
}

.section,
.feature,
.hours,
.reserve {
  padding: 84px 5vw;
}

.section-heading {
  max-width: 850px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.menu-grid article {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.menu-grid span {
  margin-bottom: 46px;
  color: var(--olive);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-grid p,
.feature p,
.reserve p {
  color: var(--muted);
  line-height: 1.65;
}

.menu-grid strong {
  margin-top: auto;
  color: var(--wine);
  font-size: 1.25rem;
}

.feature {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 42px;
  background: white;
}

.feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--wine);
  font-weight: 850;
}

.hours {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: 30px;
  color: white;
  background: var(--charcoal);
}

.hours dl {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.hours div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.hours dt {
  color: var(--gold);
  font-weight: 900;
}

.hours dd {
  margin: 0;
  color: rgb(255 255 255 / 74%);
}

.reserve {
  background:
    linear-gradient(90deg, rgb(125 38 59 / 92%), rgb(125 38 59 / 74)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1500&q=80") center / cover;
  color: white;
}

.reserve p {
  max-width: 640px;
  color: rgb(255 255 255 / 78%);
}

.reserve .primary {
  background: var(--charcoal);
}

@media (max-width: 920px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .section,
  .feature,
  .hours,
  .reserve {
    padding: 56px 20px;
  }

  .feature,
  .hours,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

