:root {
  --ink: oklch(23% 0.045 255);
  --forest: oklch(30% 0.08 216);
  --forest-deep: oklch(19% 0.06 228);
  --paper: oklch(97% 0.012 215);
  --surface: oklch(99.5% 0.005 215);
  --mist: oklch(93% 0.022 210);
  --line: oklch(77% 0.035 210);
  --line-strong: oklch(69% 0.045 210);
  --accent: oklch(63% 0.18 45);
  --accent-dark: oklch(48% 0.14 45);
  --muted: oklch(48% 0.04 230);
  --star: oklch(49% 0.12 84);
  --focus: oklch(82% 0.12 45);
  --header-text: oklch(98% 0.01 210);
  --radius: 6px;
  --header-height: 72px;
  --shell: min(1200px, calc(100% - 48px));
  --display: Georgia, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --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);
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

figure {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-inline: max(24px, calc((100vw - 1200px) / 2));
  color: var(--header-text);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), backdrop-filter 220ms var(--ease-out);
}

.site-header.is-scrolled {
  background: var(--forest-deep);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(8, 20, 16, 0.12);
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.wordmark small {
  margin-top: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.desktop-nav a,
.footer-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-link,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}

.social-link {
  text-decoration: none;
}

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

.social-link:hover,
.social-link:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.social-link:active,
.menu-toggle:active,
.button:active {
  transform: translateY(1px) scale(0.97);
}

.menu-toggle {
  display: none;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 45;
  display: none;
  color: var(--header-text);
  background: var(--forest-deep);
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 220ms ease, clip-path 360ms var(--ease-drawer), visibility 360ms;
}

.mobile-menu[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.mobile-menu.is-instant,
.mobile-menu.is-instant * {
  transition-duration: 0ms !important;
}

.mobile-menu-inner {
  width: min(100% - 40px, 520px);
  margin: 9vh auto 0;
  display: grid;
}

.mobile-menu a {
  padding-block: 18px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 8vw, 2.5rem);
  line-height: 1.15;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 240ms ease, transform 280ms var(--ease-out), color 160ms ease;
}

.mobile-menu[aria-hidden="false"] a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu[aria-hidden="false"] a:nth-child(1) { transition-delay: 70ms; }
.mobile-menu[aria-hidden="false"] a:nth-child(2) { transition-delay: 110ms; }
.mobile-menu[aria-hidden="false"] a:nth-child(3) { transition-delay: 150ms; }
.mobile-menu[aria-hidden="false"] a:nth-child(4) { transition-delay: 190ms; }

.mobile-menu[aria-hidden="true"] a {
  transition-delay: 0ms;
  transition-duration: 120ms;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-content {
  width: min(920px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1200px) / 2));
  padding: calc(var(--header-height) + 40px) 0 clamp(54px, 9vh, 96px);
}

.hero h1,
.section-heading h2,
.about h2,
.reviews-summary h2,
.visit-details h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(3.15rem, 6vw, 5.6rem);
  text-wrap: balance;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.hero-content > p {
  max-width: 52ch;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 160ms var(--ease-out);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-ghost {
  color: #fff;
  background: color-mix(in srgb, var(--forest-deep) 24%, transparent);
  border-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding-block: clamp(84px, 12vw, 150px);
}

.about-copy {
  max-width: 680px;
}

.about h2,
.section-heading h2,
.reviews-summary h2,
.visit-details h2 {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
}

.about-copy > p,
.section-heading p {
  max-width: 62ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  padding-top: 24px;
  color: var(--forest);
  border-top: 1px solid var(--line);
}

.fact-row span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.portrait-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-image img {
  object-position: 50% 52%;
}

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

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(42px, 6vw, 72px);
}

.menu-panel {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 220ms ease, transform 240ms var(--ease-out);
}

.menu-panel .portrait-frame img {
  transition: transform 520ms var(--ease-out);
}

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

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

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

.menu-copy {
  padding: 24px 4px 28px;
}

.menu-copy h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.12;
}

.menu-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(42px, 6vw, 72px);
}

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  background: var(--mist);
  border: 0;
  transform-origin: 50% 70%;
  transition: transform 240ms var(--ease-out);
}

.gallery-item::after {
  content: "Open";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #fff;
  background: color-mix(in srgb, var(--forest-deep) 86%, transparent);
  border-radius: var(--radius);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 200ms var(--ease-out);
}

.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  transition: transform 560ms var(--ease-out);
}

.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item:active {
  transform: scale(0.985);
}

.gallery-item:nth-child(1) img { object-position: 50% 50%; }
.gallery-item:nth-child(2) img { object-position: 50% 48%; }
.gallery-item:nth-child(3) img { object-position: 48% 52%; }
.gallery-item:nth-child(4) img { object-position: 50% 52%; }
.gallery-item:nth-child(5) img { object-position: 50% 48%; }
.gallery-item:nth-child(6) img { object-position: 50% 44%; }

.reviews-section {
  color: var(--ink);
  background: var(--mist);
}

.reviews-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 9vw, 130px);
  padding-block: clamp(84px, 11vw, 140px);
}

.reviews-summary h2 {
  max-width: 8ch;
}

.google-score {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 36px;
}

.google-score strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 0.8;
}

.google-score span {
  max-width: 120px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.reviews-list {
  display: grid;
}

.review {
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--line-strong);
}

.review:first-child {
  padding-top: 0;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-stars {
  color: var(--star);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.review-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.review blockquote {
  max-width: 54ch;
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.4;
}

.review a,
.text-link {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: stretch;
  padding-block: clamp(84px, 11vw, 140px);
}

.visit-details {
  padding-block: 10px;
}

.visit-details h2 {
  max-width: 9ch;
}

.visit-details address {
  margin-top: 32px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.phone-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--forest);
  font-size: 1.25rem;
  font-weight: 800;
}

.hours {
  margin: 32px 0 0;
  padding: 0;
}

.hours div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  color: var(--muted);
}

.visit-actions {
  align-items: center;
}

.map-wrap {
  min-height: 600px;
  overflow: hidden;
  background: var(--mist);
  border-radius: var(--radius);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.site-footer {
  color: var(--header-text);
  background: var(--forest-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  align-items: start;
  padding-block: 64px;
}

.footer-wordmark {
  margin-bottom: 22px;
}

.footer-inner p,
.footer-inner > div:first-child > a:last-child {
  color: var(--line);
  font-size: 0.88rem;
}

.footer-inner p {
  max-width: 300px;
  margin: 0 0 6px;
}

.footer-nav {
  display: grid;
  gap: 14px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(50px, 1fr) minmax(0, 1000px) minmax(50px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 64px 28px 28px;
  color: #fff;
  background: color-mix(in srgb, var(--forest-deep) 96%, #071018);
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms;
}

.lightbox[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.lightbox.is-instant,
.lightbox.is-instant * {
  transition-duration: 0ms !important;
}

.lightbox figure {
  min-width: 0;
  max-height: calc(100svh - 92px);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px) scale(0.965);
  transition: opacity 200ms ease, transform 260ms var(--ease-out);
}

.lightbox[aria-hidden="false"] figure {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100svh - 132px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: var(--line);
  font-size: 0.82rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}

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

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  min-width: 72px;
  min-height: 42px;
}

.lightbox-nav {
  min-height: 48px;
  padding: 10px 12px;
}

.js [data-reveal] {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(34px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), filter 620ms ease var(--reveal-delay, 0ms), transform 720ms var(--ease-out) var(--reveal-delay, 0ms);
}

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

.js .portrait-frame[data-reveal],
.js .gallery-item[data-reveal],
.js .map-wrap[data-reveal] {
  clip-path: inset(0 0 16% 0);
  transform: translateY(30px) scale(0.975);
  transition: clip-path 880ms var(--ease-out) var(--reveal-delay, 0ms), opacity 520ms ease var(--reveal-delay, 0ms), filter 620ms ease var(--reveal-delay, 0ms), transform 760ms var(--ease-out) var(--reveal-delay, 0ms);
}

.js .portrait-frame[data-reveal].is-visible,
.js .gallery-item[data-reveal].is-visible,
.js .map-wrap[data-reveal].is-visible {
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.js .about-copy .fact-row span {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 440ms var(--ease-out);
}

.js .about-copy.is-visible .fact-row span {
  opacity: 1;
  transform: translateY(0);
}

.js .about-copy.is-visible .fact-row span:nth-child(1) { transition-delay: 260ms; }
.js .about-copy.is-visible .fact-row span:nth-child(2) { transition-delay: 320ms; }
.js .about-copy.is-visible .fact-row span:nth-child(3) { transition-delay: 380ms; }

.js .site-header {
  animation: headerEnter 620ms var(--ease-out) both;
}

.js .hero-media {
  animation: heroCameraIn 1400ms var(--ease-out);
}

.js .hero::after {
  animation: heroShadeIn 900ms ease both;
}

.js .hero-content > * {
  animation: heroCopyIn 760ms var(--ease-out) both;
}

.js .hero-content > h1 { animation-delay: 170ms; }
.js .hero-content > p { animation-delay: 290ms; }
.js .hero-content > .hero-actions { animation-delay: 410ms; }

@keyframes headerEnter {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroCameraIn {
  from { filter: saturate(0.84) blur(3px); transform: scale(1.075); }
  to { filter: saturate(1) blur(0); transform: scale(1); }
}

@keyframes heroShadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroCopyIn {
  from { opacity: 0; filter: blur(7px); transform: translateY(38px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover,
  .menu-toggle:hover {
    border-color: rgba(255, 255, 255, 0.58);
    transform: scale(1.08) rotate(-4deg);
  }

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

  .button-primary:hover {
    box-shadow: 0 6px 0 var(--accent-dark);
  }

  .menu-panel:hover {
    border-bottom-color: var(--accent);
    transform: translateY(-8px);
  }

  .menu-panel:hover .portrait-frame img {
    transform: scale(1.045);
  }

  .gallery-item:hover {
    transform: translateY(-9px) rotate(-0.35deg);
  }

  .gallery-item:nth-child(even):hover {
    transform: translateY(-9px) rotate(0.35deg);
  }

  .gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }

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

  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.58);
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 880px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .desktop-nav {
    display: none;
  }

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

  .about {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 44px;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

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

  .reviews-inner,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .reviews-summary h2,
  .visit-details h2 {
    max-width: 14ch;
  }

  .map-wrap {
    min-height: 520px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 32px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .wordmark span {
    font-size: 1rem;
  }

  .wordmark small {
    margin-top: 4px;
    font-size: 0.56rem;
  }

  .header-actions {
    gap: 4px;
  }

  .social-link,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-bottom: max(42px, 7svh);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12.4vw, 3.6rem);
    line-height: 0.96;
  }

  .hero-content > p {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .about,
  .reviews-inner,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 42px;
  }

  .about h2,
  .section-heading h2,
  .reviews-summary h2,
  .visit-details h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .about-copy > p,
  .section-heading p {
    margin-top: 22px;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-panel {
    display: grid;
  }

  .menu-copy {
    padding: 20px 2px 30px;
  }

  .gallery-item::after {
    opacity: 1;
    transform: none;
  }

  .google-score strong {
    font-size: 4rem;
  }

  .review blockquote {
    font-size: 1.25rem;
  }

  .map-wrap {
    min-height: 430px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-social {
    grid-column: auto;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    gap: 12px;
    padding: 62px 16px 18px;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
  }

  .js .about-copy .fact-row span,
  .mobile-menu a,
  .lightbox figure {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-media {
    will-change: auto;
  }
}

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

  .site-header {
    background: var(--forest-deep);
  }
}
