:root {
  color-scheme: light;
  --ink: #15211c;
  --ink-soft: #4b5b53;
  --paper: #eef2ec;
  --paper-deep: #dfe8e1;
  --cream: #fffdf6;
  --tomato: #d51c21;
  --tomato-dark: #a91218;
  --olive: #087562;
  --olive-dark: #0a4d40;
  --line: rgba(21, 33, 28, 0.16);
  --line-strong: rgba(21, 33, 28, 0.3);
  --shadow: 0 18px 50px rgba(10, 77, 64, 0.15);
  --font-body: Optima, "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --header-height: 84px;
  --z-header: 50;
  --z-menu: 40;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(213, 28, 33, 0.58);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
  hyphens: auto;
  line-height: 0.98;
}

p,
li,
blockquote,
dd {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 60;
  transform: translateY(-140%);
  background: var(--olive-dark);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  min-height: var(--header-height);
  padding:
    calc(9px + env(safe-area-inset-top))
    clamp(16px, 4vw, 54px)
    9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink);
  background: rgba(238, 242, 236, 0.92);
  border-bottom: 1px solid rgba(8, 117, 98, 0.2);
  box-shadow: 0 10px 34px rgba(10, 77, 64, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: clamp(142px, 13vw, 190px);
  max-height: 58px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.92rem;
}

.primary-nav a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
  transition:
    color 160ms ease-out,
    transform 160ms ease-out;
}

.primary-nav a:hover {
  color: var(--olive);
  transform: translateY(-1px);
}

.primary-nav a[aria-current="page"] {
  color: var(--tomato-dark);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--olive-dark);
  border-radius: 2px;
  color: var(--cream);
  background: var(--olive-dark);
  box-shadow: 0 8px 22px rgba(10, 77, 64, 0.18);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition:
    transform 160ms ease-out,
    opacity 160ms ease-out;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-7px);
}

.nav-toggle-bars::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: rotate(90deg);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.82), rgba(255, 253, 246, 0) 58%),
    linear-gradient(135deg, var(--paper) 0%, var(--cream) 50%, var(--paper-deep) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 690px;
  align-self: center;
  justify-self: end;
  padding:
    calc(var(--header-height) + 54px)
    clamp(18px, 5.5vw, 78px)
    clamp(42px, 7vw, 84px);
}

.eyebrow,
.section-kicker {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--tomato-dark);
}

.hero h1 {
  max-width: 700px;
  margin-top: 16px;
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7.2vw, 6.7rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 560px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.4vw, 1.38rem);
}

.hero-media {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 34px);
  place-items: center;
  padding:
    calc(var(--header-height) + 26px)
    clamp(24px, 5vw, 76px)
    54px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 77, 64, 0.88), rgba(8, 117, 98, 0.8)),
    var(--olive-dark);
}

.hero-media-wide {
  padding-left: clamp(18px, 3vw, 46px);
  padding-right: clamp(18px, 3vw, 46px);
}

.hero-media::before {
  position: absolute;
  inset: clamp(72px, 10vw, 132px) auto 0 0;
  width: 1px;
  background: rgba(255, 250, 241, 0.28);
  content: "";
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(78dvh, 880px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 28px 86px rgba(4, 35, 29, 0.34);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.01);
}

.hero-photo-wide {
  width: min(100%, 850px);
  aspect-ratio: 16 / 10;
}

.hero-photo-wide img {
  object-position: center;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 19px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease-out,
    background-color 160ms ease-out,
    border-color 160ms ease-out,
    color 160ms ease-out;
}

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

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

.button-primary:hover {
  background: var(--tomato-dark);
}

.button-secondary {
  border-color: rgba(255, 250, 241, 0.48);
  color: var(--cream);
  background: rgba(255, 250, 241, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 250, 241, 0.16);
}

.hero .button-secondary {
  border-color: rgba(8, 117, 98, 0.34);
  color: var(--olive-dark);
  background: rgba(8, 117, 98, 0.06);
}

.hero .button-secondary:hover {
  border-color: rgba(8, 117, 98, 0.58);
  background: rgba(8, 117, 98, 0.12);
}

.button-dark {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
  color: var(--cream);
}

.button-dark:hover {
  background: #073b32;
}

.section {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 740px;
}

.section-heading h2,
.intro-copy h2,
.menu-content h2,
.visit-content h2 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 5rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.intro-copy p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.7vw, 1.18rem);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.text-link {
  color: var(--tomato-dark);
  font-weight: 800;
  text-decoration-color: rgba(213, 28, 33, 0.35);
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.intro-gallery {
  position: relative;
  display: grid;
  min-height: clamp(480px, 48vw, 620px);
  grid-template-columns: minmax(0, 1.08fr) minmax(150px, 0.74fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.intro-shot {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 0 16px 42px rgba(10, 77, 64, 0.14);
}

.intro-shot-main {
  grid-row: 1 / -1;
}

.intro-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.01);
}

.intro-shot-main img {
  object-position: center 52%;
}

.highlights {
  border-top: 1px solid var(--line);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.highlight-item {
  min-height: 280px;
  padding: clamp(20px, 3vw, 28px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.42);
}

.highlight-number {
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.highlight-item h3 {
  margin-top: 56px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
}

.highlight-item p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.menu-band {
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--olive-dark);
  text-align: center;
}

.menu-content {
  width: min(100%, 1040px);
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 92px);
}

.menu-content .section-kicker {
  color: #dff4ee;
}

.menu-content h2 {
  color: var(--cream);
  -webkit-hyphens: none;
  hyphens: none;
}

.menu-list {
  margin-top: 32px;
  margin-right: auto;
  margin-left: auto;
  max-width: 620px;
  border-top: 1px solid rgba(255, 250, 241, 0.24);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
  color: rgba(255, 250, 241, 0.88);
}

.menu-row strong {
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-note {
  margin-top: 22px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.92rem;
}

.menu-note span {
  color: rgba(255, 250, 241, 0.82);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.menu-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr 0.82fr;
  gap: 16px;
  margin-top: 44px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-deep);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 180ms ease-out;
}

.gallery-wide img {
  aspect-ratio: 4 / 5;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.reviews {
  background: var(--paper-deep);
}

.reviews-inner {
  padding-top: clamp(74px, 9vw, 116px);
  padding-bottom: clamp(74px, 9vw, 116px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.review-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(24px, 3.8vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.16;
}

.review-card figcaption {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.visit-map {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
}

.visit-map::before,
.visit-map::after {
  position: absolute;
  content: "";
  background: rgba(10, 77, 64, 0.09);
}

.visit-map::before {
  left: 0;
  right: 0;
  top: 34%;
  height: 1px;
  box-shadow:
    0 78px 0 rgba(10, 77, 64, 0.09),
    0 156px 0 rgba(10, 77, 64, 0.09);
}

.visit-map::after {
  top: 0;
  bottom: 0;
  left: 30%;
  width: 1px;
  box-shadow:
    92px 0 0 rgba(10, 77, 64, 0.09),
    184px 0 0 rgba(10, 77, 64, 0.09);
}

.map-dot {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  width: 22px;
  height: 22px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 10px rgba(213, 28, 33, 0.15);
  transform: translate(-50%, -50%);
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(8, 117, 98, 0.45);
  transform-origin: left center;
}

.map-line-one {
  left: 14%;
  top: 36%;
  width: 76%;
  transform: rotate(14deg);
}

.map-line-two {
  left: 18%;
  top: 68%;
  width: 68%;
  transform: rotate(-21deg);
}

.map-label {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: calc(48% + 28px);
  transform: translateX(-50%);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--olive-dark);
  color: var(--cream);
  font-size: 0.88rem;
  white-space: nowrap;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--olive);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.contact-list a {
  color: var(--olive-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(16px, 4vw, 54px);
  color: rgba(255, 250, 241, 0.74);
  background: var(--olive-dark);
}

.site-footer strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.site-footer p {
  margin-top: 6px;
  max-width: 680px;
}

.footer-note {
  text-align: right;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  align-content: start;
  font-size: 0.95rem;
}

.footer-nav a {
  color: rgba(255, 250, 241, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--cream);
}

.page-hero {
  position: relative;
  min-height: 76dvh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.82), rgba(255, 253, 246, 0) 58%),
    linear-gradient(135deg, var(--paper) 0%, var(--cream) 50%, var(--paper-deep) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  align-self: center;
  justify-self: end;
  padding:
    calc(var(--header-height) + 48px)
    clamp(18px, 5.5vw, 78px)
    clamp(42px, 7vw, 84px);
}

.page-hero-media {
  position: relative;
  display: grid;
  min-height: 76dvh;
  place-items: center;
  padding:
    calc(var(--header-height) + 26px)
    clamp(18px, 3vw, 46px)
    54px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 77, 64, 0.88), rgba(8, 117, 98, 0.8)),
    var(--olive-dark);
}

.page-hero-media::before {
  position: absolute;
  inset: clamp(72px, 10vw, 132px) auto 0 0;
  width: 1px;
  background: rgba(255, 250, 241, 0.28);
  content: "";
}

.page-hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  max-height: min(58dvh, 640px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 28px 86px rgba(4, 35, 29, 0.34);
}

.page-hero-photo-wide {
  width: min(100%, 850px);
  aspect-ratio: 16 / 10;
}

.page-hero-photo-portrait {
  width: min(100%, 560px);
  max-height: min(64dvh, 740px);
  aspect-ratio: 3 / 4;
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.01);
}

.page-hero .eyebrow {
  color: var(--tomato-dark);
}

.page-hero h1 {
  margin-top: 16px;
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  font-weight: 700;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.page-hero-menu .page-hero-content {
  text-align: center;
}

.page-hero-menu .page-hero-content p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.page-hero-menu .hero-actions {
  justify-content: center;
}

.page-hero .button-secondary {
  border-color: rgba(8, 117, 98, 0.34);
  color: var(--olive-dark);
  background: rgba(8, 117, 98, 0.06);
}

.page-hero .button-secondary:hover {
  border-color: rgba(8, 117, 98, 0.58);
  background: rgba(8, 117, 98, 0.12);
}

.menu-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 32px;
  padding-bottom: 0;
}

.menu-index a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  background: rgba(255, 250, 241, 0.72);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.menu-index a:hover {
  border-color: var(--tomato);
  color: var(--tomato-dark);
}

.menu-page {
  padding-top: 48px;
}

.menu-category {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(44px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.menu-category:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-category-head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.menu-category-head h2,
.final-cta h2,
.contact-panel h2,
.aside-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.category-note {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  text-align: center;
}

.menu-table {
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.2vw, 1.72rem);
  line-height: 1.12;
}

.menu-item p {
  max-width: 720px;
  margin-top: 6px;
  color: var(--ink-soft);
}

.menu-item strong {
  color: var(--tomato-dark);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  border-top: 1px solid var(--line);
}

.final-cta-copy {
  max-width: 760px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.contact-panel {
  padding-top: 6px;
}

.contact-list-large dd {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.contact-aside {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: var(--shadow);
}

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

.aside-copy {
  padding: clamp(22px, 4vw, 34px);
}

.aside-copy p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--ink-soft);
}

.route-detail {
  padding-top: clamp(74px, 10vw, 132px);
}

.map-consent {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(10, 77, 64, 0.1);
}

.map-consent-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.88;
}

.map-consent-visual::before,
.map-consent-visual::after {
  position: absolute;
  content: "";
  background: rgba(10, 77, 64, 0.09);
}

.map-consent-visual::before {
  left: 0;
  right: 0;
  top: 34%;
  height: 1px;
  box-shadow:
    0 78px 0 rgba(10, 77, 64, 0.09),
    0 156px 0 rgba(10, 77, 64, 0.09);
}

.map-consent-visual::after {
  top: 0;
  bottom: 0;
  left: 30%;
  width: 1px;
  box-shadow:
    92px 0 0 rgba(10, 77, 64, 0.09),
    184px 0 0 rgba(10, 77, 64, 0.09);
}

.map-consent-panel {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  max-width: 430px;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid rgba(8, 117, 98, 0.18);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 0 18px 48px rgba(10, 77, 64, 0.16);
}

.map-consent-panel h2 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

.map-consent-panel p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--ink-soft);
}

.map-consent-panel .button {
  margin-top: 22px;
}

.map-consent-panel .text-link {
  display: inline-flex;
  margin-top: 14px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.map-consent.is-loaded {
  background: var(--paper-deep);
}

.legal-hero {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding:
    calc(var(--header-height) + clamp(64px, 10vw, 112px))
    0
    clamp(44px, 7vw, 82px);
}

.legal-hero h1 {
  max-width: 820px;
  margin-top: 16px;
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.legal-content {
  padding-top: 0;
}

.legal-block {
  max-width: 880px;
  padding: clamp(28px, 5vw, 44px) 0;
  border-top: 1px solid var(--line);
}

.legal-block:first-child {
  border-top: 0;
}

.legal-block h2 {
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.legal-block h3 {
  margin-top: 24px;
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.legal-block p,
.legal-block ul,
.legal-block address {
  margin-top: 14px;
  color: var(--ink-soft);
  font-style: normal;
}

.legal-block ul {
  padding-left: 1.2rem;
}

.legal-block li + li {
  margin-top: 8px;
}

.legal-block a {
  color: var(--olive-dark);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 420ms ease-out,
    transform 420ms ease-out;
}

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

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

.js .page-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .gallery-wide img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

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

  .primary-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + env(safe-area-inset-top) + 8px);
    z-index: var(--z-menu);
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(8, 117, 98, 0.18);
    border-radius: 2px;
    background: rgba(238, 242, 236, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease-out,
      transform 160ms ease-out;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 46px;
    padding: 12px;
    border-radius: 2px;
  }

  .primary-nav a:hover {
    background: rgba(8, 117, 98, 0.08);
    transform: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 2;
    max-width: 720px;
    justify-self: start;
    padding: 12px 16px 38px;
  }

  .hero-media {
    order: 1;
    min-height: auto;
    padding:
      calc(var(--header-height) + 18px)
      16px
      22px;
    background: transparent;
  }

  .hero-media::before {
    display: none;
  }

  .hero-photo {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    box-shadow: 0 18px 46px rgba(10, 77, 64, 0.18);
  }

  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .page-hero-content {
    order: 2;
    max-width: 720px;
    justify-self: start;
    padding: 12px 16px 38px;
  }

  .page-hero-media {
    order: 1;
    min-height: auto;
    padding:
      calc(var(--header-height) + 18px)
      16px
      22px;
    background: transparent;
  }

  .page-hero-media::before {
    display: none;
  }

  .page-hero-photo {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    box-shadow: 0 18px 46px rgba(10, 77, 64, 0.18);
  }

  .page-hero-photo-wide {
    aspect-ratio: 16 / 10;
  }

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

  .intro-gallery {
    min-height: clamp(430px, 96vw, 560px);
  }

  .visit-map {
    min-height: 340px;
  }

  .map-consent,
  .map-iframe {
    min-height: 480px;
  }

  .site-footer {
    display: grid;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .menu-category-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-note {
    margin: 18px auto 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 132px;
    max-height: 48px;
  }

  .hero-content {
    padding-top: 10px;
    padding-bottom: 32px;
  }

  .hero h1 {
    max-width: 10ch;
    margin-top: 10px;
    font-size: clamp(2.25rem, 10.5vw, 2.9rem);
    line-height: 0.96;
  }

  .hero-photo {
    aspect-ratio: 16 / 10;
  }

  .hero-media {
    padding-top: calc(var(--header-height) + 14px);
    padding-bottom: 16px;
  }

  .page-hero h1 {
    max-width: 100%;
    margin-top: 10px;
    font-size: clamp(1.95rem, 9.2vw, 2.6rem);
    line-height: 0.98;
  }

  .page-hero-content {
    padding-top: 10px;
    padding-bottom: 32px;
  }

  .page-hero-media {
    padding-top: calc(var(--header-height) + 14px);
    padding-bottom: 16px;
  }

  .page-hero-photo {
    aspect-ratio: 16 / 10;
  }

  .page-hero-photo-portrait {
    aspect-ratio: 4 / 3;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 34ch;
    margin-top: 12px;
    font-size: 0.98rem;
  }

  .hero-copy {
    max-width: 31ch;
    margin-top: 12px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .visit-actions,
  .final-cta-actions,
  .menu-actions {
    display: grid;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero > .hero-content .hero-actions .button-primary {
    grid-column: 1 / -1;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
    font-size: 0.94rem;
  }

  .section {
    width: calc(100% - 28px);
    padding: 66px 0;
  }

  .intro-gallery {
    min-height: 430px;
    grid-template-columns: minmax(0, 1fr) minmax(102px, 0.68fr);
    gap: 10px;
  }

  .intro-shot {
    border-radius: 6px;
  }

  .section-heading h2,
  .intro-copy h2,
  .menu-content h2,
  .visit-content h2 {
    font-size: clamp(1.9rem, 9.4vw, 2.65rem);
    line-height: 1.04;
  }

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

  .highlight-item {
    min-height: 220px;
  }

  .highlight-item h3 {
    margin-top: 38px;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .gallery-wide img,
  .gallery-item img {
    aspect-ratio: 4 / 5;
  }

  .review-card {
    min-height: 260px;
  }

  .menu-content {
    padding: 42px 18px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-index {
    gap: 8px;
    padding-top: 24px;
  }

  .menu-index a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .menu-page {
    padding-top: 38px;
  }

  .menu-category {
    padding: 44px 0;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-aside img {
    aspect-ratio: 4 / 4;
  }

  .map-consent-panel {
    inset: auto 12px 12px;
    padding: 20px;
  }

  .map-consent-panel h2 {
    font-size: 2rem;
  }

  .legal-hero {
    width: calc(100% - 28px);
    padding-top: calc(var(--header-height) + 58px);
  }
}

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

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