:root {
  --ink: #1d1a16;
  --muted: #6f675f;
  --cream: #fff7ec;
  --paper: #ffffff;
  --leaf: #29624f;
  --leaf-dark: #173e33;
  --tomato: #b73828;
  --gold: #d99b2b;
  --line: rgba(29, 26, 22, 0.14);
  --shadow: 0 22px 60px rgba(39, 30, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 420px),
    var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 247, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--tomato);
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  gap: 8px;
}

.nav-links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a:not(.nav-action):hover {
  color: var(--tomato);
}

.nav-action,
.button.primary {
  color: white;
  background: var(--leaf);
}

.nav-action:hover,
.button.primary:hover {
  background: var(--leaf-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.button.ghost {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  padding: 150px clamp(20px, 6vw, 80px) 72px;
  overflow: hidden;
  color: white;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.82), rgba(18, 16, 13, 0.42) 52%, rgba(18, 16, 13, 0.12)),
    linear-gradient(0deg, rgba(18, 16, 13, 0.72), transparent 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

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

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

.hero p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-details div {
  padding: 16px;
}

.hero-details dt,
.hero-details dd {
  margin: 0;
}

.hero-details dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-details dd {
  color: white;
  font-weight: 800;
}

.section-pad {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro h2,
.feature-copy h2,
.story-copy h2,
.visit h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.highlight-grid article,
.menu-item,
.dish-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.highlight-grid article {
  min-height: 156px;
  padding: 22px;
}

.highlight-grid strong,
.highlight-grid span {
  display: block;
}

.highlight-grid strong {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.highlight-grid span,
.feature-copy p,
.story-copy p,
.visit p,
.dish-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(260px, 0.76fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(56px, 8vw, 92px) clamp(20px, 6vw, 80px);
  background: #f2e2ce;
}

.menu-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.menu-item {
  width: 100%;
  min-height: 76px;
  padding: 16px 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-item:hover,
.menu-item.active {
  transform: translateY(-2px);
  border-color: rgba(183, 56, 40, 0.45);
  background: #fffdf8;
  box-shadow: 0 14px 32px rgba(39, 30, 19, 0.1);
}

.menu-item span,
.menu-item small {
  display: block;
}

.menu-item span {
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 1rem;
}

.menu-item small {
  color: var(--muted);
}

.dish-panel {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dish-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-panel div {
  padding: 22px;
}

#dish-label {
  margin-bottom: 8px;
  color: var(--tomato);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.dish-panel h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.gallery {
  background: var(--paper);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
  margin-bottom: 28px;
}

.gallery-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.gallery-heading p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: white;
  background: rgba(23, 62, 51, 0.86);
  border-radius: 8px;
  font-weight: 800;
}

.gallery-large {
  min-height: 420px;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.visit {
  padding: clamp(56px, 8vw, 90px) clamp(20px, 6vw, 80px);
  color: white;
  background:
    linear-gradient(135deg, rgba(183, 56, 40, 0.32), transparent 42%),
    var(--leaf);
}

.visit-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.visit p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}

.visit .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.visit-actions {
  max-width: 250px;
}

.phone-line {
  display: inline-flex;
  margin-top: 10px;
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(20px, 6vw, 80px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 8px;
  }

  .intro,
  .story,
  .visit-inner,
  .feature-band,
  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .visit-actions {
    max-width: none;
    justify-content: flex-start;
  }

  .gallery-large {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child {
    max-width: 160px;
  }

  .nav-links {
    top: 66px;
  }

  .hero {
    min-height: 78vh;
    padding-top: 118px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(18, 16, 13, 0.38), rgba(18, 16, 13, 0.78));
  }

  .button,
  .hero-actions,
  .visit-actions,
  .hero-details {
    width: 100%;
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .button {
    display: inline-flex;
    justify-content: center;
  }
}
