:root {
  color-scheme: light;
  --ink: #254339;
  --muted: #4f6b63;
  --paper: #e2f3ee;
  --surface: #f7fcfa;
  --line: #b3d9cf;
  --accent: #388f78;
  --accent-deep: #286c5a;
  --logo-mint: #97dac9;
  --logo-teal: #388f78;
  --deep: #254339;
  --on-dark: #f8fffc;
  --on-dark-muted: #d2ebe4;
  --radius: 6px;
  --content: min(1180px, calc(100% - 40px));
  --display: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  --body: "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;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--logo-mint);
  outline-offset: 4px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--on-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgb(255 255 255 / 0.25);
  background: rgb(37 67 59 / 0.96);
  box-shadow: 0 8px 24px rgb(37 67 59 / 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-find {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  font: 700 0.88rem/1 var(--body);
  cursor: pointer;
}

.menu-lines {
  width: 22px;
  display: grid;
  gap: 6px;
}

.menu-lines i {
  width: 100%;
  height: 1px;
  display: block;
  background: currentColor;
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--logo-teal);
  color: var(--on-dark);
}

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

.hero-media {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 50% 54%;
  transform: scale(1.07);
  transition: transform 1400ms var(--ease-out), filter 900ms ease;
  filter: saturate(0.88) contrast(0.96);
}

body.page-ready .hero-media {
  transform: scale(1);
  filter: saturate(1) contrast(1);
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(to top, rgb(0 0 0 / 0.3), rgb(0 0 0 / 0.1) 64%, rgb(0 0 0 / 0.1));
}

.hero-content {
  width: var(--content);
  margin: 0 auto;
  padding: 128px 0 clamp(48px, 9vh, 90px);
}

.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

.hero-content.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.is-visible > :nth-child(2) { transition-delay: 90ms; }
.hero-content.is-visible > :nth-child(3) { transition-delay: 170ms; }

.hero h1,
h2,
h3,
.footer-brand p {
  font-family: var(--display);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero-content > p {
  max-width: 510px;
  margin: 24px 0 0;
  font-size: clamp(1.03rem, 2vw, 1.28rem);
  line-height: 1.45;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transform-origin: center;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:active,
.menu-toggle:active,
.gallery-trigger:active {
  transform: scale(0.97);
}

.button-light {
  background: var(--surface);
  color: var(--deep);
}

.button-light:hover {
  background: #d2ebe4;
}

.button-ghost {
  border-color: rgb(255 255 255 / 0.72);
  background: rgb(37 67 59 / 0.28);
  color: #fff;
}

.button-ghost:hover {
  background: rgb(37 67 59 / 0.58);
}

.section {
  width: var(--content);
  margin-inline: auto;
  padding-block: clamp(84px, 11vw, 150px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: clamp(56px, 9vw, 136px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-wrap: balance;
}

.about-copy > p:last-child,
.section-heading p,
.visit-heading p {
  max-width: 65ch;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.72;
}

.portrait-media,
.ratio-media,
.gallery-trigger {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d7eee8;
}

.portrait-media {
  margin: 0;
}

.portrait-media img,
.ratio-media img,
.gallery-trigger img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.trust-strip {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgb(255 255 255 / 0.2);
  background: var(--logo-teal);
  color: var(--on-dark);
}

.trust-strip > * {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 30px clamp(24px, 4vw, 64px);
  text-decoration: none;
}

.trust-strip > * + * {
  border-left: 1px solid rgb(255 255 255 / 0.22);
}

.trust-strip strong {
  font: 700 clamp(2rem, 4vw, 4rem)/1 var(--display);
  letter-spacing: -0.045em;
}

.trust-strip span {
  max-width: 24ch;
  color: var(--on-dark-muted);
  line-height: 1.45;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(46px, 7vw, 82px);
}

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

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

.menu-story:nth-child(2) {
  margin-top: 56px;
}

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

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

.menu-story:nth-child(3) .ratio-media img {
  object-position: 50% 53%;
}

.menu-story h3 {
  margin: 26px 0 10px;
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
}

.menu-story p {
  min-height: 3.2em;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.menu-story ul {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.menu-story li {
  padding: 5px 0;
  font-size: 0.94rem;
}

.gallery-section {
  padding-top: 40px;
}

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

.gallery-trigger {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.gallery-trigger::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgb(251 254 253 / 0.92);
  color: var(--accent-deep);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.gallery-trigger img {
  transition: transform 520ms var(--ease-out), filter 300ms ease;
  will-change: transform;
}

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

.reviews-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 110px);
}

.reviews-intro {
  align-self: start;
  position: sticky;
  top: 118px;
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.rating-lockup > span {
  font: 700 3.25rem/1 var(--display);
  letter-spacing: -0.055em;
}

.rating-lockup p,
.stars {
  margin: 0;
  color: var(--accent-deep);
  letter-spacing: 0.09em;
}

.rating-lockup small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.review-track {
  display: grid;
  gap: 0;
}

.review {
  padding: 32px 0 38px;
  border-bottom: 1px solid var(--line);
}

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

.review blockquote {
  max-width: 44ch;
  margin: 18px 0 22px;
  font: 600 clamp(1.28rem, 2.2vw, 1.85rem)/1.4 var(--display);
  letter-spacing: -0.025em;
}

.review footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review footer a,
.text-link {
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 750;
}

.review footer .review-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms var(--ease-out);
}

.review-author img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--line);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.review-author span,
.review-author small {
  display: block;
}

.review-author strong {
  font-size: 0.95rem;
}

.review-author small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.visit-section {
  padding-top: clamp(74px, 9vw, 120px);
  background: var(--accent-deep);
  color: var(--on-dark);
}

.visit-heading {
  padding-block: 0 clamp(52px, 7vw, 82px);
}

.visit-heading p {
  color: var(--on-dark-muted);
}

.map-wrap {
  width: min(1440px, 100%);
  height: clamp(420px, 58vw, 650px);
  margin: 0 auto;
  background: #d5eee8;
}

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

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 76px);
  padding-block: clamp(58px, 8vw, 100px);
}

.visit-details h3 {
  margin: 0 0 22px;
  color: var(--logo-mint);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visit-details address,
.visit-details p,
.visit-details a,
.hours dl {
  color: var(--on-dark);
  font-style: normal;
  line-height: 1.7;
}

.visit-address .text-link {
  display: inline-block;
  margin-top: 24px;
  color: #fff;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 5px 0;
}

.hours dd {
  margin: 0;
  text-align: right;
}

.visit-contact > a {
  font: 700 clamp(1.35rem, 2.2vw, 2rem)/1.2 var(--display);
  letter-spacing: -0.025em;
}

.visit-contact p {
  margin: 20px 0 0;
  color: var(--on-dark-muted);
  font-size: 0.94rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 46px;
  padding: 62px max(20px, calc((100vw - 1180px) / 2));
  background: var(--deep);
  color: var(--on-dark);
}

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

.footer-brand img {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-address p {
  margin: 0 0 16px;
  color: var(--on-dark-muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.nav-dialog,
.lightbox {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.nav-dialog {
  background: var(--accent-deep);
  color: var(--on-dark);
}

.nav-dialog[open] {
  opacity: 1;
}

.nav-dialog-inner {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-2%);
  transform-origin: top center;
  transition: opacity 260ms ease, clip-path 520ms var(--ease-drawer), transform 520ms var(--ease-drawer);
}

.nav-dialog.is-entered .nav-dialog-inner {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.nav-dialog.is-closing .nav-dialog-inner {
  opacity: 0;
  clip-path: inset(0 0 12% 0);
  transform: translateY(-1.5%);
  transition-duration: 160ms;
}

.nav-dialog::backdrop,
.lightbox::backdrop {
  background: rgb(0 0 0 / 0.68);
}

.nav-dialog-inner {
  width: var(--content);
  min-height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  grid-template-rows: auto 1fr;
  gap: 30px 80px;
  padding-block: 22px 60px;
}

.dialog-topline {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
  padding-bottom: 18px;
}

.dialog-topline p {
  margin: 0;
  font-weight: 700;
}

.icon-button,
.lightbox-close {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(255 255 255 / 0.45);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 160ms ease, border-color 160ms ease;
}

.icon-button:active,
.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.95);
}

.icon-button span::before,
.icon-button span::after,
.lightbox-close span::before,
.lightbox-close span::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  width: 21px;
  height: 1px;
  background: currentColor;
}

.icon-button span::before,
.lightbox-close span::before { transform: rotate(45deg); }
.icon-button span::after,
.lightbox-close span::after { transform: rotate(-45deg); }

.dialog-links {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 4px;
}

.dialog-links a {
  font: 700 clamp(2.7rem, 7vw, 6.5rem)/1.03 var(--display);
  letter-spacing: -0.055em;
  text-decoration: none;
  transform-origin: left center;
  transition: color 160ms ease, transform 220ms var(--ease-out);
}

.dialog-contact {
  align-self: end;
  padding-bottom: 10px;
}

.dialog-contact a {
  font-weight: 750;
}

.dialog-contact p {
  margin: 20px 0 0;
  color: var(--on-dark-muted);
  line-height: 1.6;
}

.lightbox {
  background: rgb(8 34 29 / 0.97);
  color: var(--on-dark);
}

.lightbox-shell {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 240ms ease, transform 300ms var(--ease-out);
}

.lightbox.is-entered .lightbox-shell {
  opacity: 1;
  transform: scale(1);
}

.lightbox.is-closing .lightbox-shell {
  opacity: 0;
  transform: scale(0.975);
  transition-duration: 150ms;
}

.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 76px 18px 26px;
}

.lightbox figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  gap: 16px;
}

.lightbox figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  align-self: center;
  object-fit: contain;
  transform-origin: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox figure img.is-dragging { cursor: grabbing; }

.lightbox figcaption {
  min-height: 1.5em;
  color: #d0ebe4;
  text-align: center;
}

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

.lightbox-nav {
  width: 48px;
  height: 54px;
  justify-self: center;
  border: 1px solid rgb(255 255 255 / 0.32);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.07);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 160ms ease, border-color 160ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out), clip-path 820ms var(--ease-out);
}

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

.portrait-media.reveal,
.gallery-trigger.reveal {
  clip-path: inset(0 0 14% 0);
  transform: translateY(30px) scale(0.985);
}

.portrait-media.reveal.is-visible,
.gallery-trigger.reveal.is-visible {
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgb(8 28 23 / 0.18);
  }

  .menu-toggle:hover .menu-lines i:first-child { transform: scaleX(0.68); }
  .menu-toggle:hover .menu-lines i:last-child { transform: scaleX(0.9); }

  .gallery-trigger:hover {
    box-shadow: 0 18px 38px rgb(20 52 44 / 0.2);
  }

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

  .gallery-trigger:hover::after {
    transform: rotate(90deg) scale(1.1);
    background: var(--surface);
    color: var(--accent-deep);
  }

  .dialog-links a:hover {
    color: var(--logo-mint);
    transform: translateX(14px);
  }

  .icon-button:hover,
  .lightbox-close:hover,
  .lightbox-nav:hover {
    transform: scale(1.06);
    border-color: rgb(255 255 255 / 0.72);
    background: rgb(255 255 255 / 0.12);
  }

  .review-author:hover { transform: translateX(4px); }
  .review-author:hover img {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 5px 12px rgb(22 54 46 / 0.2);
  }
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 32px, 720px);
  }

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

  .about {
    gap: 44px;
  }

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

  .portrait-media {
    width: min(100%, 540px);
    justify-self: end;
  }

  .menu-grid {
    gap: 16px;
  }

  .menu-story:nth-child(2) {
    margin-top: 28px;
  }

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

  .reviews-intro {
    position: static;
  }

  .review-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 78vw);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 18px;
  }

  .review {
    scroll-snap-align: start;
    border-left: 1px solid var(--line);
    border-bottom: 0;
    padding: 0 0 0 24px;
  }

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

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

  .footer-links {
    grid-column: 1 / -1;
    grid-auto-flow: column;
    justify-content: start;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  :root {
    --content: calc(100% - 28px);
  }

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

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span,
  .header-find {
    display: none;
  }

  .hero-content {
    padding: 112px 0 48px;
  }

  .hero-media {
    object-position: 50% 54%;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 18vw, 5.4rem);
  }

  .hero-content > p {
    max-width: 330px;
    margin-top: 20px;
    font-size: 1rem;
  }

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

  .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 16px;
  }

  .section {
    padding-block: 82px;
  }

  .about {
    gap: 38px;
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }

  .about-copy > p:last-child,
  .section-heading p,
  .visit-heading p {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.66;
  }

  .portrait-media {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip > * {
    min-height: 132px;
    padding: 28px 22px;
  }

  .trust-strip > * + * {
    border-top: 1px solid rgb(255 255 255 / 0.22);
    border-left: 0;
  }

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

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

  .menu-grid {
    gap: 58px;
  }

  .menu-story:nth-child(2) {
    margin-top: 0;
  }

  .menu-story p {
    min-height: 0;
  }

  .gallery-section {
    padding-top: 18px;
  }

  .gallery-grid {
    gap: 14px;
  }

  .reviews-section {
    gap: 46px;
  }

  .rating-lockup {
    margin-top: 24px;
  }

  .review-track {
    width: 100%;
    grid-auto-columns: minmax(286px, calc(100vw - 58px));
  }

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

  .review footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .visit-section {
    padding-top: 76px;
  }

  .visit-heading {
    padding-block: 0 44px;
  }

  .map-wrap {
    height: 460px;
  }

  .visit-details,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .visit-details {
    gap: 50px;
  }

  .hours dl div {
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 7px 0;
  }

  .hours dd {
    color: var(--on-dark-muted);
    text-align: left;
  }

  .site-footer {
    padding: 52px 20px;
  }

  .footer-links {
    grid-column: auto;
    grid-auto-flow: row;
  }

  .nav-dialog-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
    padding-block: 16px 34px;
  }

  .dialog-topline {
    grid-column: auto;
  }

  .dialog-links a {
    font-size: clamp(2.9rem, 14vw, 4.9rem);
  }

  .lightbox-shell {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    padding: 74px 6px 20px;
  }

  .lightbox-nav {
    width: 42px;
    height: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-property: color, background-color, border-color, opacity !important;
    transition-duration: 160ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero-media,
  .nav-dialog-inner,
  .lightbox-shell {
    transform: none;
    clip-path: none;
    filter: none;
  }

  .button:active,
  .menu-toggle:active,
  .gallery-trigger:active,
  .icon-button:active,
  .lightbox-close:active,
  .lightbox-nav:active {
    transform: none;
  }
}
