:root {
  --navy: #09396e;
  --navy-deep: #061b38;
  --navy-soft: #b88e5a;
  --paper: #e8d9bf;
  --surface: #ffffff;
  --ink: #17232c;
  --muted: #53616b;
  --line: #c9b99c;
  --focus: #b88e5a;
  --radius: 6px;
  --shadow: 0 18px 48px rgba(9, 57, 110, 0.15);
  --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);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; }

a { color: inherit; }

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

button { color: inherit; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.page-shell {
  width: min(100% - 32px, 1220px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--surface);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 240ms var(--ease-out), border-color 240ms var(--ease-out), backdrop-filter 240ms var(--ease-out);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  background: var(--navy-soft);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(10, 35, 59, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100% - 32px, 1320px);
  height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-grid;
  gap: 0;
  color: inherit;
  text-decoration: none;
  line-height: 0.9;
  letter-spacing: -0.035em;
  transition: transform 180ms var(--ease-out), opacity 180ms ease;
}

.brand-logo {
  width: clamp(112px, 9vw, 154px);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.social-link) {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav > a:not(.social-link)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

.site-nav > a:not(.social-link):hover::after,
.site-nav > a:not(.social-link).is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms var(--ease-out), color 180ms ease, background-color 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease-out), opacity 160ms ease;
}

.menu-toggle-lines::before { transform: translateY(-6px); }
.menu-toggle-lines::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: translateY(0) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy-deep);
}

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

.hero-image {
  object-fit: cover;
  object-position: 50% 58%;
  animation: hero-settle 1400ms var(--ease-out) both;
}

.hero-scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02) 52%, rgba(0, 0, 0, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 122px 56px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(34px);
  animation: hero-rise 720ms var(--ease-out) forwards;
}

.hero-content > :nth-child(1) { animation-delay: 120ms; }
.hero-content > :nth-child(2) { animation-delay: 190ms; }
.hero-content > :nth-child(3) { animation-delay: 270ms; }
.hero-content > :nth-child(4) { animation-delay: 350ms; }

@keyframes hero-settle {
  from { transform: scale(1.09); filter: saturate(0.88) brightness(0.82); }
  to { transform: scale(1.02); filter: saturate(1) brightness(1); }
}

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 { margin-top: 0; }

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: clamp(1.02rem, 2.2vw, 1.24rem);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(5, 20, 32, 0);
  transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms var(--ease-out);
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 260ms var(--ease-out);
}

.button:active { transform: scale(0.96); }
.button-light { color: var(--navy-deep); background: var(--surface); }
.button-light:hover { background: var(--navy-soft); }
.button-outline-light { color: var(--surface); border-color: rgba(255, 255, 255, 0.85); background: rgba(10, 35, 59, 0.3); }
.button-outline-light:hover { background: rgba(10, 35, 59, 0.58); }
.button-navy { color: var(--surface); background: var(--navy); }
.button-navy:hover { background: var(--navy-deep); }
.button-outline-navy { color: var(--navy); border-color: var(--navy); background: transparent; }
.button-outline-navy:hover { color: var(--surface); background: var(--navy); }

.section { padding-block: clamp(76px, 10vw, 136px); }

h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 { line-height: 1.15; letter-spacing: -0.025em; }

.about-section { color: var(--surface); background: var(--navy); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.about-copy > p {
  max-width: 65ch;
  margin-bottom: 32px;
  color: var(--navy-soft);
  font-size: 1.04rem;
}

.service-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  font-weight: 720;
}

.service-list li { padding-left: 22px; position: relative; }
.service-list li::before { content: "+"; position: absolute; left: 0; color: var(--navy-soft); }

.ratio-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--navy-soft);
}

.ratio-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 620ms var(--ease-out), filter 360ms ease;
}

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

.menu-section { background: var(--paper); }

.stacked-heading { max-width: 780px; margin-bottom: 52px; }
.stacked-heading > p:last-child { max-width: 60ch; margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }
.section-kicker { color: var(--navy); }

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

.menu-card {
  min-width: 0;
  transition: transform 260ms var(--ease-out);
}
.menu-card:nth-child(1) img { object-position: 50% 52%; }
.menu-card:nth-child(2) img { object-position: 50% 48%; }
.menu-card:nth-child(3) img { object-position: 50% 50%; }

.menu-card-copy {
  padding: 22px 2px 0;
  border-top: 4px solid var(--navy);
  transition: border-color 220ms ease, transform 260ms var(--ease-out);
}

.menu-card h3 { margin-bottom: 8px; font-size: 1.55rem; }
.menu-card p { margin: 0 0 16px; color: var(--muted); }
.menu-card ul { margin: 0; padding: 0; list-style: none; }
.menu-card li + li { margin-top: 6px; }

.menu-footer {
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.menu-footer p { margin: 0; color: var(--muted); }

.gallery-section { background: var(--navy); color: var(--surface); }
.gallery-heading > p:last-child { color: var(--navy-soft); }

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

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  box-shadow: 0 20px 40px rgba(5, 20, 32, 0.12);
  transition: transform 320ms var(--ease-out), filter 220ms ease, box-shadow 320ms var(--ease-out);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "View";
  display: grid;
  place-items: center;
  color: var(--surface);
  background: rgba(6, 27, 56, 0.34);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 220ms ease, transform 320ms var(--ease-out);
  pointer-events: none;
}
.gallery-item:nth-child(1) img { object-position: 50% 67%; }
.gallery-item:nth-child(2) img { object-position: 50% 50%; }
.gallery-item:nth-child(3) img { object-position: 50% 50%; }
.gallery-item:nth-child(4) img { object-position: 50% 58%; }
.gallery-item:nth-child(5) img { object-position: 50% 52%; }
.gallery-item:nth-child(6) img { object-position: 50% 50%; }

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

.reviews-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.08fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review {
  padding: 32px clamp(22px, 3vw, 42px);
  transition: transform 260ms var(--ease-out), background-color 220ms ease, box-shadow 260ms var(--ease-out);
}
.review + .review { border-left: 1px solid var(--line); }
.stars { margin: 0 0 18px; color: var(--navy); letter-spacing: 0.12em; }
.review blockquote { min-height: 128px; margin: 0 0 24px; font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.45; }
.review-meta { display: grid; gap: 7px; font-size: 0.92rem; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { display: block; flex: 0 0 48px; width: 48px; height: 48px; border: 2px solid var(--surface); border-radius: 50%; object-fit: cover; background: var(--navy-soft); box-shadow: 0 0 0 1px var(--line); transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out); }
.review-author strong { line-height: 1.25; }
.review-meta a { width: fit-content; color: var(--navy); font-weight: 720; text-underline-offset: 4px; }

.visit-section { color: var(--surface); background: var(--navy); }

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.visit-section .section-kicker { color: var(--navy-soft); }
.visit-copy address { margin-bottom: 16px; font-style: normal; color: var(--navy-soft); }
.phone-link { display: inline-block; margin-bottom: 30px; font-size: 1.35rem; font-weight: 760; }
.hours { padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, 0.25); border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.hours h3 { margin-bottom: 12px; }
.hours dl { margin: 0; }
.hours dl div { display: flex; justify-content: space-between; gap: 20px; }
.hours dd { margin: 0; text-align: right; }
.visit-actions { margin-top: 28px; }
.visit-section .button-navy { color: var(--navy); background: var(--surface); }
.visit-section .button-navy:hover { background: var(--navy-soft); }
.visit-section .button-outline-navy { color: var(--surface); border-color: var(--surface); }
.visit-section .button-outline-navy:hover { color: var(--navy); background: var(--surface); }
.hygiene-link { display: inline-block; margin-top: 24px; color: var(--navy-soft); font-size: 0.9rem; text-underline-offset: 4px; }

.map-wrap {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-soft);
  box-shadow: var(--shadow);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
}

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

.site-footer { padding-block: 54px; color: var(--surface); background: var(--navy-deep); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr auto;
  gap: 48px;
  align-items: start;
}

.footer-brand { margin-bottom: 20px; }
.site-footer p { margin: 0; color: var(--navy-soft); }
.footer-contact a { display: inline-block; margin-top: 12px; font-weight: 700; }
.footer-links { display: flex; align-items: center; gap: 20px; }
.footer-links > a:not(.social-link) { text-underline-offset: 5px; }

dialog {
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(5, 23, 38, 0.42);
}

dialog::backdrop { background: rgba(5, 20, 32, 0.82); }

.media-dialog { width: min(92vw, 980px); max-height: 90svh; }
.dialog-bar { min-height: 64px; padding: 12px 16px 12px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.dialog-bar h2 { margin: 0; font-size: 1.4rem; letter-spacing: -0.02em; }
.icon-button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: var(--radius); color: inherit; background: transparent; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.menu-dialog-body { max-height: calc(90svh - 64px); padding: 24px; overflow: auto; }
.menu-dialog-body img { width: 100%; height: auto; display: block; }
.menu-dialog-body p { margin: 18px 0 0; color: var(--muted); }

.lightbox { width: min(96vw, 1180px); height: min(94svh, 900px); color: var(--surface); background: var(--navy-deep); }
.lightbox-stage { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; align-items: center; gap: 14px; padding: 70px 22px 24px; }
.lightbox figure { min-width: 0; height: 100%; margin: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; }
.lightbox figure img { width: 100%; height: 100%; min-height: 0; display: block; object-fit: contain; will-change: transform, opacity, filter; }
.lightbox figcaption { text-align: center; color: var(--navy-soft); font-size: 0.92rem; }
.lightbox-close { position: absolute; top: 16px; right: 16px; }
.lightbox-prev, .lightbox-next { align-self: center; }

.motion-ready .motion-item {
  opacity: 0;
  transform: translateY(44px) scale(0.985);
  transition: opacity 680ms ease, transform 780ms var(--ease-out);
  transition-delay: var(--motion-delay, 0ms);
}

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

dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 220ms ease, transform 260ms var(--ease-out), overlay 260ms allow-discrete, display 260ms allow-discrete;
}

dialog[open]::backdrop {
  opacity: 1;
  transition: opacity 220ms ease, overlay 220ms allow-discrete, display 220ms allow-discrete;
}

@starting-style {
  dialog[open] { opacity: 0; transform: translateY(22px) scale(0.94); }
  dialog[open]::backdrop { opacity: 0; }
}

.icon-button {
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.icon-button:active { transform: scale(0.9); }

@media (hover: hover) and (pointer: fine) {
  .brand:hover { transform: translateY(-2px); }
  .social-link:hover { color: var(--navy-deep); background: var(--surface); transform: translateY(-3px) rotate(-4deg); }
  .menu-toggle:hover { background: rgba(255, 255, 255, 0.12); transform: rotate(3deg); }
  .button:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(5, 20, 32, 0.2); }
  .button:hover::before { clip-path: inset(0 0 0 0); }
  .motion-ready .reveal.is-visible .menu-card:hover { transform: translateY(-10px); }
  .menu-card:hover .ratio-frame img { transform: scale(1.065); filter: saturate(1.08); }
  .menu-card:hover .menu-card-copy { transform: translateY(4px); border-color: var(--navy-soft); }
  .about-image:hover img { transform: scale(1.055); filter: saturate(1.08); }
  .motion-ready .reveal.is-visible .gallery-item:hover { transform: translateY(-12px) scale(1.018); filter: brightness(1.04); box-shadow: 0 30px 58px rgba(5, 20, 32, 0.28); }
  .gallery-item:hover img { transform: scale(1.085); }
  .gallery-item:hover::after { opacity: 1; transform: scale(1); }
  .motion-ready .reveal.is-visible .review:hover { z-index: 1; transform: translateY(-9px); background: rgba(255, 255, 255, 0.34); box-shadow: 0 24px 50px rgba(9, 57, 110, 0.12); }
  .review:hover .review-avatar { transform: scale(1.12) rotate(-4deg); box-shadow: 0 0 0 4px rgba(184, 142, 90, 0.26); }
  .motion-ready .reveal.is-visible .map-wrap:hover { transform: translateY(-8px) rotate(0.25deg); box-shadow: 0 30px 70px rgba(5, 20, 32, 0.3); }
  .icon-button:hover { color: var(--navy-deep); background: var(--surface); transform: rotate(4deg) scale(1.04); }
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review + .review { border-left: 0; border-top: 1px solid var(--line); }
  .review blockquote { min-height: 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .page-shell { width: min(100% - 28px, 680px); }
  .nav-shell { width: calc(100% - 28px); height: 66px; }
  .brand-logo { width: 118px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--surface);
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    transform: translateY(-24px) scaleY(0.94);
    transform-origin: top center;
    visibility: hidden;
    transition: transform 320ms var(--ease-drawer), opacity 180ms ease, visibility 0s linear 320ms;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0) scaleY(1); visibility: visible; transition-delay: 0s; }
  .site-nav > a:not(.social-link) {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 260ms var(--ease-out);
  }
  .site-nav.is-open > a:not(.social-link) { opacity: 1; transform: translateY(0); }
  .site-nav.is-open > a:nth-child(1) { transition-delay: 60ms; }
  .site-nav.is-open > a:nth-child(2) { transition-delay: 95ms; }
  .site-nav.is-open > a:nth-child(3) { transition-delay: 130ms; }
  .site-nav.is-open > a:nth-child(4) { transition-delay: 165ms; }
  .site-nav.is-instant,
  .site-nav.is-instant > a { transition-duration: 0ms !important; transition-delay: 0ms !important; }
  .site-nav .social-link { margin-top: 12px; }
  .hero-image { object-position: 56% 58%; }
  .hero-content { padding-block: 108px 38px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4.4rem); }
  .hero-copy { max-width: 32ch; }
  .hero-actions .button { flex: 1 1 140px; }
  .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-copy { order: 1; }
  .about-image { order: 2; }
  .menu-grid { grid-template-columns: 1fr; gap: 46px; }
  .menu-footer { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .review { padding-inline: 2px; }
  .review + .review { padding-top: 32px; margin-top: 32px; }
  .hours dl div { display: grid; gap: 0; }
  .hours dd { text-align: left; color: var(--navy-soft); }
  .map-wrap, .map-wrap iframe { min-height: 430px; height: 430px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { grid-column: auto; }
  .lightbox-stage { grid-template-columns: 48px minmax(0, 1fr) 48px; gap: 6px; padding: 66px 8px 18px; }
  .lightbox-stage .icon-button { width: 42px; height: 42px; }
}

@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; }
  .motion-ready .motion-item,
  .motion-ready .reveal.is-visible .motion-item { opacity: 1; transform: none; }
  .hero-image { animation-name: none !important; transform: none !important; filter: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header.is-scrolled { background: var(--navy-deep); }
}
