:root {
  --cream: #f7efe2;
  --paper: #fffaf0;
  --ink: #17130f;
  --green: #063f2d;
  --green-soft: #31513a;
  --tomato: #a43b1d;
  --brass: #b7832c;
  --line: rgba(56, 37, 21, 0.18);
  --shadow: 0 20px 55px rgba(29, 19, 10, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 8px clamp(16px, 4vw, 42px);
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(6, 63, 45, 0.14);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 10px 35px rgba(29, 19, 10, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 20vw, 260px);
  height: 64px;
}

.brand img {
  width: 100%;
  max-width: none;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(42px, 8vw, 76px) clamp(20px, 6vw, 80px);
}

.hero-content {
  width: min(1120px, 100%);
  color: var(--green);
  text-align: center;
}

.hero-logo {
  width: min(1120px, 94vw);
  margin: clamp(-116px, -8vw, -58px) auto clamp(-168px, -11vw, -82px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content .eyebrow {
  color: #f0c06b;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(4rem, 12vw, 10.5rem);
  max-width: 8ch;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.hero-copy {
  max-width: 500px;
  margin: 10px auto 0;
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.coming-soon {
  margin: 0;
  color: var(--tomato);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--green);
  border-radius: 999px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(29, 19, 10, 0.18);
}

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

.button.secondary {
  color: var(--paper);
  background: rgba(6, 63, 45, 0.34);
  border-color: rgba(255, 250, 240, 0.76);
}

.proof-band {
  padding: 0 clamp(18px, 5vw, 60px);
  transform: translateY(-42px);
}

.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(183, 131, 44, 0.45);
  border-radius: var(--radius);
  background: rgba(183, 131, 44, 0.45);
  box-shadow: var(--shadow);
}

.proof-item {
  min-height: 132px;
  padding: 28px;
  background: var(--paper);
}

.proof-item strong {
  display: block;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
}

.split-section,
.story-section,
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(50px, 8vw, 96px) clamp(20px, 5vw, 40px);
}

.section-copy h2,
.section-heading h2,
.story-copy h2,
.contact-section h2 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

.section-copy p,
.story-copy p,
.contact-section p,
.page-hero p {
  font-size: 1.08rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  padding: 8px 12px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.image-stack {
  position: relative;
  min-height: 420px;
}

.stack-main {
  width: min(430px, 78%);
  border: 8px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.stack-badge {
  position: absolute;
  right: 0;
  bottom: 3%;
  width: min(420px, 70%);
  padding: 26px;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(183, 131, 44, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-preview,
.signature-section,
.menu-builder,
.full-menu-section,
.values-section,
.menu-panels {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 40px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-card,
.dish-card,
.step-card,
.panel,
.value {
  border: 1px solid rgba(183, 131, 44, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 12px 28px rgba(29, 19, 10, 0.09);
}

.menu-card {
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.menu-card div,
.dish-card,
.step-card,
.panel,
.value {
  padding: 24px;
}

.card-kicker {
  margin: 0 0 6px;
  color: var(--tomato);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.menu-card h3,
.dish-card h3,
.step-card h3,
.panel h2,
.value h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.page-hero {
  padding: 158px clamp(22px, 6vw, 80px) 70px;
  background:
    linear-gradient(120deg, rgba(6, 63, 45, 0.95), rgba(6, 63, 45, 0.72)),
    url("menu%20image3.png") center / cover;
}

.story-hero {
  background:
    linear-gradient(120deg, rgba(6, 63, 45, 0.95), rgba(6, 63, 45, 0.62)),
    url("menu%20cover%20page.png") center bottom / cover;
}

.page-hero-inner {
  max-width: 880px;
  color: var(--paper);
}

.page-hero h1 {
  color: var(--paper);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
}

.page-hero p {
  max-width: 660px;
  margin: 18px 0 0;
}

.steps-grid,
.dish-grid,
.values-section,
.menu-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card span,
.value span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  color: var(--paper);
  background: var(--tomato);
  border-radius: 999px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.step-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.step-card li::marker {
  color: var(--tomato);
}

.pricing-strip {
  max-width: calc(var(--max) - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(183, 131, 44, 0.45);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--paper);
}

.pricing-strip div {
  padding: 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 250, 240, 0.2);
}

.pricing-strip div:last-child {
  border-right: 0;
}

.pricing-strip strong,
.pricing-strip span {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.pricing-strip span {
  margin-top: 4px;
  color: #f0c06b;
  font-size: 2.2rem;
}

.dish-card span {
  display: block;
  margin-top: 18px;
  color: var(--tomato);
  font-style: italic;
}

.menu-panels {
  grid-template-columns: repeat(2, 1fr);
}

.menu-list {
  margin: 18px 0 0;
}

.menu-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px dotted rgba(6, 63, 45, 0.35);
}

.menu-list dt {
  font-weight: 700;
}

.menu-list dd {
  margin: 0;
  color: var(--tomato);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.menu-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.menu-image-button {
  cursor: zoom-in;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 131, 44, 0.42);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(29, 19, 10, 0.1);
}

.menu-image-button img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  transition: transform 220ms ease;
}

.menu-image-button:hover img {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 70px 20px 24px;
  background: rgba(23, 19, 15, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88svh;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(6, 63, 45, 0.72);
  font-size: 2rem;
  line-height: 1;
}

.story-image img,
.contact-section img {
  border: 8px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.values-section {
  align-items: stretch;
}

.contact-section {
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1fr);
}

.contact-section .button {
  margin-top: 12px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px 20px;
  color: var(--paper);
  background: var(--green);
  text-align: center;
}

.site-footer img {
  width: min(220px, 64vw);
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.94);
}

.site-footer p {
  margin: 8px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 6px;
}

.footer-links a {
  padding: 7px 10px;
  color: rgba(255, 250, 240, 0.82);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .proof-grid,
  .card-grid,
  .steps-grid,
  .dish-grid,
  .values-section,
  .menu-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .story-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 58px;
    padding: 8px 14px;
  }

  .brand {
    width: 154px;
    height: 54px;
  }

  .site-nav {
    font-size: 0.9rem;
  }

  .hero {
    min-height: calc(100svh - 58px);
    padding: 34px 18px 44px;
  }

  .hero-logo {
    width: min(760px, 94vw);
    margin: -44px auto -64px;
  }

  .proof-band {
    transform: none;
    padding-top: 20px;
  }

  .proof-grid,
  .card-grid,
  .steps-grid,
  .dish-grid,
  .values-section,
  .menu-image-grid,
  .pricing-strip {
    grid-template-columns: 1fr;
  }

  .pricing-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.2);
  }

  .pricing-strip div:last-child {
    border-bottom: 0;
  }

  .image-stack {
    min-height: 0;
  }

  .stack-main,
  .stack-badge {
    position: static;
    width: 100%;
    transform: none;
  }

  .stack-badge {
    margin-top: 14px;
  }

  .page-hero {
    padding: 124px 20px 58px;
  }

  .page-hero h1,
  .section-copy h2,
  .section-heading h2,
  .story-copy h2,
  .contact-section h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .menu-image-button img {
    aspect-ratio: 0.78;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
