:root {
  --bg: #e6efde;
  --surface: #eef3e6;
  --surface-strong: #f6f8f0;
  --green-pale: #d9e7d2;
  --green: #244235;
  --green-soft: #486356;
  --wood: #bf8e5d;
  --wood-soft: #d8b18c;
  --text: #22352b;
  --text-muted: #5a6c61;
  --line: rgba(36, 66, 53, 0.14);
  --line-strong: rgba(36, 66, 53, 0.22);
  --white: #fffdf8;
  --radius: 8px;
  --radius-lg: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --shadow-sm: 0 12px 30px rgba(36, 66, 53, 0.08);
  --shadow-md: 0 22px 56px rgba(36, 66, 53, 0.12);
  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #edf4e4 0%, #e3edd9 100%);
  line-height: 1.6;
}

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

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

a[x-apple-data-detectors],
span[x-apple-data-detectors],
.visit-info-card [x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

p,
h1,
h2,
h3,
figure,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 243, 230, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(36, 66, 53, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 80px;
}

.header-address {
  display: grid;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.header-address span:first-child {
  color: var(--green);
  font-weight: 600;
}

.header-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--green);
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  width: var(--container);
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.98);
  box-shadow: var(--shadow-sm);
}

.mobile-menu a {
  display: block;
  padding: 12px 8px;
}

.mobile-menu a + a {
  border-top: 1px solid var(--line);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.header-cta,
.btn-dark {
  background: var(--green);
  color: var(--white);
}

.btn-outline {
  border-color: var(--line-strong);
  color: var(--green);
  background: rgba(255, 253, 248, 0.5);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  overflow: hidden;
  margin-bottom: 30px;
}

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

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

.hero-overlay {
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(18, 31, 25, 0.26) 0%, rgba(18, 31, 25, 0.62) 100%);
}

.hero-shell {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 80px);
}

.hero-brand {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  width: min(920px, 100%);
}

.hero-tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  color: var(--white);
  text-wrap: balance;
  max-width: 18ch;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-logo {
  width: min(780px, 92%);
  object-fit: contain;
}

.hero-intro {
  max-width: 42rem;
  font-size: 0.98rem;
}

.hero-intro-light {
  color: rgba(255, 253, 248, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-light-solid {
  background: var(--white);
  color: var(--green);
}

.btn-light-outline {
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.4);
}

.section {
  padding: 56px 0;
  scroll-margin-top: 96px;
}

.intro-layout,
.menu-layout,
.visit-layout,
.footer-inner {
  display: grid;
  gap: 26px;
}

.intro-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: 48px;
  align-items: start;
}

.intro-statement p,
.visit-copy p,
.menu-note,
.visit-info-card p {
  color: var(--text-muted);
}

.intro-statement {
  display: grid;
  gap: 16px;
  align-content: start;
}

.statement-line,
.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-soft);
}

.intro-statement h1,
.section-heading h2,
.visit-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  color: var(--green);
}

.intro-statement h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.76;
  max-width: none;
  display: grid;
  gap: 0.045em;
}

.intro-statement h1 span {
  display: block;
}

.intro-statement h1 span:last-child {
  white-space: nowrap;
}

.intro-accent,
.statement-footer {
  font-weight: 600;
  color: var(--green);
}

.intro-accent {
  font-size: 1.08rem;
}

.intro-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  align-self: start;
}

.intro-photo img {
  height: 100%;
  object-fit: cover;
}

.story-bridge {
  padding-top: 0;
  padding-bottom: 64px;
}

.story-bridge-inner {
  width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
}

.story-bridge-line {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.16rem, 1.6vw, 1.42rem);
  line-height: 1.2;
  color: var(--green);
}

.story-bridge-line-wide {
  max-width: none;
  width: 100%;
  text-wrap: pretty;
}

.menu-section {
  background: linear-gradient(180deg, rgba(238, 243, 230, 0.42) 0%, rgba(217, 231, 210, 0.22) 100%);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.menu-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
}

.menu-layout-wide {
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
}

.menu-copy {
  padding: 0;
}

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

.menu-stack {
  display: grid;
  gap: 14px;
}

.menu-panel-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--green);
}

.menu-group {
  display: grid;
  gap: 4px;
}

.menu-group-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-soft);
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: rgba(246, 248, 240, 0.62);
}

.tab.active {
  color: var(--green);
  border-color: var(--green);
  background: rgba(36, 66, 53, 0.08);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(36, 66, 53, 0.08);
}

.menu-item > div {
  display: grid;
  gap: 2px;
}

.menu-item-priced {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  justify-content: initial;
  align-items: start;
}

.item-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--green);
}

.item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(36, 66, 53, 0.18);
}

.item-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}

.item-description {
  display: block;
  font-size: 0.86rem;
  line-height: 1.25;
  color: var(--text-muted);
}

.item-price {
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: right;
  color: var(--green);
}

.menu-media {
  display: grid;
  gap: 16px;
}

.menu-photo-main {
  overflow: hidden;
  min-height: 520px;
  border-radius: 0;
}

.menu-photo-main-tall {
  min-height: 980px;
}

.menu-photo-main img {
  height: 100%;
  object-fit: cover;
}

.menu-photo-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.menu-photo-stack img {
  border-radius: 0;
}

.visit-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  align-items: center;
  gap: 40px;
}

.visit-copy {
  display: grid;
  gap: 18px;
}

.visit-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.visit-info-grid {
  display: grid;
  gap: 18px;
}

.visit-info-card {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.visit-info-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.visit-media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.visit-photo {
  overflow: hidden;
  border-radius: 0;
}

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

.visit-photo-main {
  min-height: 620px;
}

.visit-photo-secondary {
  min-height: 620px;
}

.menu-pdf-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 28px 0 128px;
  scroll-margin-top: 96px;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 30px 34px;
  border-radius: 8px;
  background: rgba(36, 66, 53, 0.96);
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 88px;
}

.footer-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 26px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  padding: 96px 0;
}

.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.88);
  box-shadow: var(--shadow-sm);
}

.legal-shell > * + * {
  margin-top: 16px;
}

.legal-shell h1,
.legal-shell h2,
.legal-shell h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green);
}

.legal-shell p,
.legal-shell li {
  color: var(--text-muted);
}

.legal-shell ul {
  list-style: disc;
  padding-left: 22px;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.12s;
}

@media (max-width: 1080px) {
  .hero-shell,
  .intro-layout,
  .menu-layout,
  .visit-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    aspect-ratio: 4 / 3;
  }

  .story-bridge-inner {
    padding-inline: 0;
  }

  .visit-photo-main,
  .visit-photo-secondary {
    min-height: 420px;
  }

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

  .menu-photo-main-tall {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .header-inner {
    min-height: 72px;
  }

  .nav,
  .header-brand,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .mobile-menu {
    display: block;
  }

  .header-address {
    font-size: 0.75rem;
  }

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

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

  .hero-logo {
    width: min(560px, 96%);
  }

  .hero-tagline {
    font-size: clamp(1.55rem, 7vw, 2.4rem);
  }

  .visit-media,
  .menu-photo-stack {
    grid-template-columns: 1fr;
  }

  .menu-photo-main,
  .visit-photo-main,
  .visit-photo-secondary {
    min-height: 340px;
  }

  .intro-photo {
    aspect-ratio: 4 / 3;
  }

  .menu-item {
    flex-wrap: wrap;
  }

  .item-dots {
    order: 3;
    width: 100%;
  }

  .item-note {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .legal-shell {
    padding: 24px 20px;
  }
}
