:root {
  --ink: #1d2920;
  --moss: #31513d;
  --cream: #f3f0e7;
  --paper: #fbfaf6;
  --rust: #cc714f;
  --rule: rgba(29, 41, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  align-items: center;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--rule);
  display: flex;
  height: 74px;
  justify-content: space-between;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 5;
}

.wordmark {
  display: grid;
  gap: 1px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.wordmark strong,
footer strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
}

.wordmark span,
footer span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 25px;
}

nav a,
.topbar-call {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topbar-call {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

.hero {
  align-items: end;
  color: white;
  display: grid;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  padding: 8vw 5vw 6vw;
  position: relative;
}

.hero-photo,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-photo {
  filter: saturate(0.85);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(16, 30, 22, 0.83), rgba(16, 30, 22, 0.25) 67%, rgba(16, 30, 22, 0.12));
}

.hero-copy,
.hero-card {
  position: relative;
}

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

.kicker,
.hero-card span,
.menu-photo-card span,
.feature-note span,
.menu-list span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.45rem, 8.6vw, 8.8rem);
  line-height: 0.92;
  margin: 20px 0;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.9rem;
  line-height: 1;
  margin: 10px 0;
}

p {
  line-height: 1.7;
}

.hero-intro {
  font-size: 1.08rem;
  max-width: 520px;
}

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

.button {
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1em;
  padding: 15px 20px;
  text-transform: uppercase;
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.65);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-line {
  border-color: var(--ink);
}

.hero-card {
  align-self: end;
  background: var(--rust);
  justify-self: end;
  max-width: 220px;
  padding: 24px;
}

.hero-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.04;
  margin-top: 9px;
}

.intro-band,
.section,
.hours {
  padding: 110px 8vw;
}

.intro-band {
  background: var(--cream);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.75fr 1.8fr 1fr;
}

.intro-band h2 {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
}

.feature-grid {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
}

.feature-photo {
  margin: 0;
  min-height: 420px;
  position: relative;
}

.feature-photo img {
  height: 100%;
  width: 100%;
}

.feature-photo figcaption {
  background: rgba(29, 41, 32, 0.84);
  bottom: 0;
  color: white;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  left: 0;
  padding: 16px 20px;
  position: absolute;
}

.feature-note {
  align-items: center;
  background: var(--moss);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.feature-note strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 4.9rem);
  line-height: 0.94;
  margin-top: 16px;
}

.section-head {
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.6fr 0.8fr;
  margin-bottom: 32px;
  padding-bottom: 28px;
}

.section-head p {
  margin-bottom: 0;
}

.menu-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.3fr 1fr;
}

.menu-photo-card {
  background: var(--cream);
}

.menu-photo-card img {
  aspect-ratio: 1.28;
  width: 100%;
}

.menu-photo-card div {
  padding: 25px;
}

.menu-photo-card p,
.menu-list p {
  margin-bottom: 0;
}

.menu-list article {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0 22px;
}

.menu-list article:first-child {
  padding-top: 0;
}

.visit {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.visit-image img {
  height: 100%;
  min-height: 640px;
  width: 100%;
}

.visit-copy {
  align-self: center;
  padding: 7vw;
}

address {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-style: normal;
  line-height: 1.4;
}

.contact-list {
  display: grid;
  font-size: 0.9rem;
  gap: 8px;
  margin-top: 22px;
}

.hours {
  background: var(--moss);
  color: white;
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 1fr;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.hours dt,
.hours dd {
  margin: 0;
}

footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 28px 5vw;
}

footer div {
  display: grid;
}

footer p {
  font-size: 0.75rem;
  margin-bottom: 0;
  opacity: 0.72;
}

@media (max-width: 850px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 36px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(16, 30, 22, 0.88), rgba(16, 30, 22, 0.18) 80%);
  }

  .hero-card {
    justify-self: start;
    margin-top: 28px;
  }

  .intro-band,
  .section-head,
  .menu-layout,
  .visit,
  .hours {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .section,
  .hours {
    padding: 72px 6vw;
  }

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

  .feature-note {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .feature-photo {
    min-height: 260px;
  }

  .visit-image img {
    min-height: 380px;
  }

  footer {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: 700px;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  h1 {
    font-size: clamp(2.65rem, 12.6vw, 3.05rem);
    line-height: 1;
    max-width: 8.4ch;
  }

  .hero-intro {
    font-size: 0.96rem;
    max-width: 100%;
  }

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

  .feature-note {
    grid-column: auto;
  }

  .contact-list a {
    overflow-wrap: anywhere;
  }
}
