:root {
  --brand-mint: #6bc097;
  --deep-green: #1f5a43;
  --ink: #102c20;
  --ink-soft: #284a38;
  --paper: #e4f1e9;
  --paper-deep: #b9d8c4;
  --surface: #f4fbf6;
  --accent: #1d6649;
  --accent-soft: #a9d3b6;
  --line: #83b496;
  --white: #fdfefd;
  --shadow: 0 24px 60px rgb(27 77 51 / 0.19);
  --radius: 14px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  color-scheme: light;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 7vw, 4.9rem);
}

h3 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

::selection {
  background: var(--brand-mint);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--brand-mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.section-shell,
.nav-shell,
.footer-shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--white);
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: rgb(255 255 255 / 0.12);
  background: var(--deep-green);
  box-shadow: 0 8px 24px rgb(10 20 15 / 0.14);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  height: 100dvh;
  background: var(--deep-green);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  text-decoration: none;
}

.brand-link img {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 0.4);
  border-radius: 50%;
  object-fit: cover;
}

.site-header:not(.is-scrolled) .brand-link img {
  animation: logo-float 4.8s var(--ease-in-out) infinite;
}

.menu-toggle {
  min-height: 44px;
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease;
}

.menu-toggle:active {
  transform: scale(0.96);
}

.primary-nav {
  position: absolute;
  inset: var(--header-height) 0 auto;
  display: grid;
  align-content: start;
  gap: 2px;
  height: calc(100dvh - var(--header-height));
  padding: 16px;
  overflow-y: auto;
  background: var(--deep-green);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transform-origin: top right;
  transition: opacity 200ms var(--ease-out), transform 240ms var(--ease-drawer);
}

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

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  color: inherit;
  text-decoration: none;
}

.primary-nav a:not(.social-link)::after {
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.primary-nav a:not(.social-link):hover,
.primary-nav a:not(.social-link):focus-visible {
  color: var(--brand-mint);
}

.primary-nav a:not(.social-link):hover::after,
.primary-nav a:not(.social-link):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-link {
  display: inline-grid !important;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px !important;
  place-items: center;
  padding: 0 !important;
  border-radius: 50%;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  background: #3c6954;
  color: var(--white);
}

.hero::after {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 2px;
  height: 54px;
  border-radius: 999px;
  background: var(--white);
  content: "";
  opacity: 0;
  transform: translate3d(-50%, -12px, 0) scaleY(0.35);
  transform-origin: top;
  animation: scroll-pulse 2.4s var(--ease-in-out) infinite;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 29% 50%;
  will-change: transform;
  animation: hero-drift 18s var(--ease-in-out) infinite alternate;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(to top, rgb(0 0 0 / 0.30), rgb(0 0 0 / 0.10) 68%, rgb(0 0 0 / 0.10));
}

.hero-content {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  padding: calc(var(--header-height) + 38px) 0 clamp(46px, 9svh, 92px);
  text-align: right;
}

.hero h1 {
  max-width: 9ch;
  margin-left: auto;
  margin-bottom: 12px;
  font-size: clamp(3.15rem, 14vw, 6.8rem);
  line-height: 0.9;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.24);
  animation: hero-copy-enter 900ms var(--ease-out) both;
}

.hero p {
  max-width: 22ch;
  margin-left: auto;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 5vw, 1.65rem);
  line-height: 1.28;
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.28);
  animation: hero-copy-enter 900ms 120ms var(--ease-out) both;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  justify-content: flex-end;
  animation: hero-copy-enter 900ms 240ms var(--ease-out) both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active {
  transform: translateY(1px) scale(0.96);
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--accent-soft);
}

.button-ghost {
  border-color: rgb(255 255 255 / 0.7);
  background: rgb(25 70 51 / 0.22);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgb(25 70 51 / 0.48);
}

.button-dark {
  position: relative;
  isolation: isolate;
  background: var(--brand-mint);
  color: var(--ink);
}

.button-dark::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--brand-mint);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  animation: cta-ripple 3.2s var(--ease-out) infinite;
}

.button-dark:hover {
  background: #58ab82;
}

.text-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-underline-offset: 5px;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.quick-fact {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
}

.quick-fact strong {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.quick-fact span {
  color: var(--ink-soft);
}

.story {
  display: grid;
  gap: 42px;
  align-items: center;
  padding-block: clamp(78px, 13vw, 150px);
}

.story-copy > p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--ink-soft);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ratio-3x4 {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ratio-3x4 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-media {
  width: min(100%, 520px);
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media img {
  object-position: 50% 48%;
}

.menu-section {
  padding-block: clamp(78px, 12vw, 140px);
  background: var(--surface);
}

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

.section-heading p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  gap: 46px 20px;
}

.menu-column {
  min-width: 0;
}

.menu-column figure {
  width: min(100%, 320px);
  margin-inline: auto;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: 0 10px 26px rgb(27 77 51 / 0.08);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.menu-column figure img {
  transition: transform 700ms var(--ease-out);
}

.menu-column:nth-child(1) img {
  object-position: 50% 50%;
}

.menu-column:nth-child(2) img {
  object-position: 50% 48%;
}

.menu-column:nth-child(3) img {
  object-position: 50% 52%;
}

.menu-copy h3 {
  margin-bottom: 8px;
}

.menu-copy {
  width: min(100%, 320px);
  margin-inline: auto;
}

.menu-copy p {
  min-height: 2.2em;
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.menu-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.signature {
  display: grid;
  gap: 34px;
  align-items: center;
  padding-block: clamp(78px, 12vw, 140px);
}

.signature-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.signature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 48%;
  will-change: transform;
  animation: signature-drift 12s var(--ease-in-out) infinite alternate;
}

.signature-copy p {
  max-width: 35ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.gallery-section {
  padding-block: clamp(78px, 12vw, 140px);
}

.gallery-grid {
  display: grid;
  gap: 30px 14px;
}

.gallery-item {
  margin: 0;
}

.gallery-button {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-deep);
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.gallery-button:active {
  transform: translateY(0) scale(0.97);
}

.gallery-button img {
  transition: transform 700ms var(--ease-out), filter 260ms ease;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(3) img {
  object-position: 50% 38%;
}

.gallery-item:nth-child(2) img {
  object-position: 50% 52%;
}

.gallery-item:nth-child(4) img {
  object-position: 50% 44%;
}

.gallery-item:nth-child(5) img,
.gallery-item:nth-child(6) img {
  object-position: 50% 50%;
}

.gallery-item figcaption {
  padding: 10px 2px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.reviews-section {
  padding-block: clamp(78px, 11vw, 130px);
  background: var(--paper-deep);
}

.reviews-heading {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}

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

.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
}

.rating-summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.rating-summary span,
.review-stars {
  letter-spacing: 0.08em;
}

.rating-summary span {
  display: inline-block;
  transform-origin: center;
  animation: stars-breathe 3.4s var(--ease-in-out) infinite;
}

.reviews-grid {
  display: grid;
  gap: 34px;
}

.review {
  padding-top: 22px;
  border-top: 2px solid var(--accent);
  transition: transform 240ms var(--ease-out), border-color 180ms ease;
}

.review p {
  max-width: 38ch;
  min-height: 7.6em;
  margin: 16px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.5;
}

.review h3 {
  margin: 0 0 2px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-deep);
}

.review a {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.visit-section {
  display: grid;
  gap: 42px;
  padding-block: clamp(78px, 12vw, 140px);
}

.visit-details address {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 1.08rem;
}

.visit-list {
  display: grid;
  gap: 22px;
  margin: 0 0 34px;
}

.visit-list div {
  display: grid;
  gap: 3px;
}

.visit-list dt {
  font-weight: 800;
}

.visit-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}

.site-footer {
  padding-block: 48px;
  background: var(--deep-green);
  color: #eef7f2;
}

.footer-shell {
  display: grid;
  gap: 34px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.footer-brand span,
.footer-contact p {
  color: #c4d5cc;
}

.footer-contact p {
  max-width: 32ch;
  margin-bottom: 6px;
}

.footer-contact a {
  font-weight: 800;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.footer-nav a:not(.social-link) {
  padding-block: 10px;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgb(10 15 12 / 0.94);
  color: var(--white);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.lightbox[open] {
  opacity: 1;
  transform: scale(1);

  @starting-style {
    opacity: 0;
    transform: scale(0.965);
  }
}

.lightbox::backdrop {
  background: rgb(10 15 12 / 0.86);
}

.lightbox-frame {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 10px 28px;
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 30px;
  padding-top: 8px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.45);
  border-radius: 50%;
  background: rgb(10 15 12 / 0.42);
  color: var(--white);
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease;
}

.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.92);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 1.7rem;
}

.lightbox-nav {
  font-size: 1.35rem;
}

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

.js .reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(34px) scale(0.985);
  transition: opacity 720ms var(--ease-out), filter 720ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes hero-drift {
  0% {
    transform: scale(1.035) translate3d(-0.8%, 0, 0);
  }
  48% {
    transform: scale(1.085) translate3d(0.7%, -0.8%, 0);
  }
  100% {
    transform: scale(1.055) translate3d(1.1%, 0.6%, 0);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes scroll-pulse {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -12px, 0) scaleY(0.3);
  }
  35% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, 12px, 0) scaleY(1);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translateY(-4px) rotate(2deg) scale(1.05);
  }
}

@keyframes signature-drift {
  from {
    transform: scale(1.025) translate3d(-0.6%, 0, 0);
  }
  to {
    transform: scale(1.085) translate3d(0.9%, -0.8%, 0);
  }
}

@keyframes cta-ripple {
  0%,
  45% {
    opacity: 0;
    transform: scale(0.92);
  }
  58% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes stars-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.97);
  }
  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-4px) scale(1.025);
  }

  .menu-column:hover figure {
    box-shadow: 0 20px 42px rgb(27 77 51 / 0.2);
    transform: translateY(-9px) rotate(-0.8deg);
  }

  .menu-column:nth-child(even):hover figure {
    transform: translateY(-9px) rotate(0.8deg);
  }

  .menu-column:hover figure img {
    transform: scale(1.065);
  }

  .gallery-button:hover {
    box-shadow: var(--shadow);
    transform: translateY(-8px) rotate(0.45deg) scale(1.012);
  }

  .gallery-item:nth-child(even) .gallery-button:hover {
    transform: translateY(-8px) rotate(-0.45deg) scale(1.012);
  }

  .gallery-button:hover img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.055);
  }

  .review:hover {
    border-color: var(--brand-mint);
    transform: translateY(-7px);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: rgb(107 192 151 / 0.35);
    transform: scale(1.08);
  }
}

@media (min-width: 660px) {
  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-fact {
    display: block;
    padding: 7px 26px;
    border-left: 1px solid var(--line);
  }

  .quick-fact:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .quick-fact strong,
  .quick-fact span {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .reviews-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 768px) {
  .section-shell,
  .nav-shell,
  .footer-shell {
    width: min(100% - 64px, 1180px);
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(4px, 1vw, 18px);
    height: auto;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav a {
    min-height: 44px;
    padding: 8px 7px;
    white-space: nowrap;
  }

  .hero-image {
    object-position: 48% 50%;
  }

  .hero-content {
    width: min(100% - 64px, 1180px);
  }

  .hero h1 {
    font-size: clamp(4.6rem, 9vw, 7.6rem);
  }

  .story {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 8vw;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.3vw, 30px);
  }

  .signature {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 7vw;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 42px);
  }

  .visit-section {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 7vw;
    align-items: stretch;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 650px;
  }

  .footer-shell {
    grid-template-columns: 1.2fr 0.9fr auto;
    align-items: center;
  }

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

  .lightbox-frame {
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    padding: 72px 30px 34px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
  }
}

@media (min-width: 1040px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 22px;
  }
}

@media (max-width: 767px) {
  .brand-link span {
    font-size: 1.05rem;
  }

  .hero {
    min-height: max(100svh, 640px);
  }

  .review p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .hero::after,
  .button-dark::after {
    display: none;
  }

  .hero-image,
  .hero h1,
  .hero p,
  .hero-actions,
  .site-header:not(.is-scrolled) .brand-link img,
  .signature-media img,
  .rating-summary span {
    animation: none !important;
    filter: none;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .button-ghost {
    background: #214f3b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header:not(.is-scrolled) {
    background: transparent;
  }
}
