:root {
  --cream: #f5efe2;
  --paper: #fffaf0;
  --ink: #1b231b;
  --ink-soft: #465044;
  --leaf: #244331;
  --leaf-deep: #152a20;
  --chili: #b64c32;
  --line: rgba(27, 35, 27, 0.16);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 4vw;
  color: #fff9ee;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.78rem;
  padding-bottom: 0.78rem;
  background: rgba(21, 42, 32, 0.96);
  box-shadow: 0 8px 26px rgba(10, 20, 15, 0.18);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-transform: uppercase;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.12em;
}

.wordmark small {
  margin-top: 0.24rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.38em;
}

nav {
  display: flex;
  gap: 1.7rem;
  margin-left: auto;
}

nav a,
.header-call {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-call {
  margin-left: 1rem;
  border: 1px solid rgba(255, 249, 238, 0.7);
  padding: 0.64rem 0.92rem;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fffaf0;
  background: var(--leaf-deep);
}

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

.hero-image {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 24, 17, 0.9) 0%, rgba(10, 24, 17, 0.58) 48%, rgba(10, 24, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 24, 17, 0.54), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem 4vw 7rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.2rem;
  color: #eabda5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  margin-bottom: 0.3rem;
  font-size: clamp(4.3rem, 12vw, 9rem);
  letter-spacing: -0.09em;
  line-height: 0.92;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5.5vw, 5.2rem);
  letter-spacing: -0.07em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.05em;
}

.hero-subtitle {
  margin-bottom: 1.5rem;
  color: #f0cfb7;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 2rem;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.85rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

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

.button-light {
  color: var(--leaf-deep);
  background: #fff8eb;
}

.button-outline {
  border-color: rgba(255, 250, 240, 0.74);
  color: #fffaf0;
}

.button-dark {
  color: #fffaf0;
  background: var(--leaf-deep);
}

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

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 1px solid rgba(255, 250, 240, 0.44);
  padding-left: 1rem;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff8ec;
}

.quick-facts div {
  min-height: 154px;
  border-right: 1px solid var(--line);
  padding: 1.55rem 4vw;
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts span,
.quick-facts small,
.visit-hours span,
.visit-hours small {
  display: block;
}

.quick-facts span,
.visit-hours span {
  margin-bottom: 0.65rem;
  color: var(--chili);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-facts strong,
.visit-hours strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.quick-facts small,
.visit-hours small {
  margin-top: 0.48rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.band {
  padding: clamp(5rem, 10vw, 9rem) 4vw;
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7vw;
}

.intro h2 em {
  color: var(--chili);
  font-weight: 400;
}

.intro-copy {
  align-self: end;
  max-width: 540px;
}

.intro-copy p,
.menu-heading p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  margin-top: 1rem;
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu {
  color: #f7efe2;
  background: var(--leaf-deep);
}

.menu-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 2.6rem;
}

.menu-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -0.4rem;
}

.menu-heading h2 {
  margin-bottom: 0;
}

.menu-heading p {
  margin-bottom: 0;
  color: rgba(247, 239, 226, 0.68);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.dish {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.dish-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.dish img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.dish-feature img {
  height: 545px;
}

.dish div {
  padding: 1.35rem;
}

.dish span {
  display: block;
  margin-bottom: 0.58rem;
  color: var(--chili);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dish p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 720px;
  background: #fff8ec;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) 7vw;
}

address {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1rem 0 2rem;
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.65;
}

address strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.visit-hours {
  margin-bottom: 2rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.65rem 4vw;
  color: #f7efe2;
  background: var(--leaf-deep);
}

footer p,
footer > a:last-child {
  margin: 0;
  color: rgba(247, 239, 226, 0.7);
  font-size: 0.72rem;
  line-height: 1.6;
}

footer > a:last-child {
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

  .site-header {
    padding: 1rem 5vw;
  }

  .header-call {
    margin-left: auto;
  }

  .hero-content {
    justify-content: flex-end;
    min-height: 100svh;
    padding: 8rem 5vw 8.5rem;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 24, 17, 0.94) 0%, rgba(10, 24, 17, 0.54) 58%, rgba(10, 24, 17, 0.16) 100%);
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .hero-meta {
    right: auto;
    bottom: 2rem;
    left: 5vw;
    font-size: 0.64rem;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.3rem 5vw;
  }

  .quick-facts div:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 4.6rem 5vw;
  }

  .intro,
  .menu-heading,
  .visit {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 1rem;
  }

  .menu-heading {
    gap: 0.6rem;
  }

  .menu-heading .section-kicker {
    margin-bottom: 0.4rem;
  }

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

  .dish-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .dish img,
  .dish-feature img {
    height: 250px;
  }

  .visit {
    min-height: 0;
  }

  .visit-image img {
    height: 310px;
  }

  .visit-copy {
    padding: 4.6rem 5vw;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.8rem 5vw;
  }
}

