:root {
  --ink: #06161b;
  --ink-soft: #23383a;
  --muted: #4e6668;
  --paper: #f6f8f6;
  --surface: #e1efee;
  --surface-menu: #d6e8e7;
  --surface-visit: #e3efec;
  --surface-soft: #edf4f1;
  --surface-strong: #c7dfdd;
  --teal: #007492;
  --teal-dark: #014f63;
  --amber: #dbac43;
  --amber-ink: #8a5b08;
  --amber-soft: #f4d28a;
  --white: #fffdf7;
  --line: rgba(6, 22, 27, 0.16);
  --line-light: rgba(255, 253, 247, 0.24);
  --radius: 12px;
  --header-height: 72px;
  --shell: min(1200px, calc(100vw - 40px));
  --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;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Arial Nova", "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent);
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out), box-shadow 240ms var(--ease-out), backdrop-filter 240ms var(--ease-out);
}
.site-header.is-solid {
  color: var(--ink);
  background: rgba(246, 248, 246, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-weight: 750; letter-spacing: -0.02em; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; transition: transform 240ms var(--ease-out); }
.site-header.is-solid .brand img { transform: scale(0.9) rotate(-3deg); }
.desktop-nav { display: flex; align-items: center; gap: 28px; white-space: nowrap; font-size: 0.92rem; font-weight: 650; }
.desktop-nav a, .footer-links a { position: relative; display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; padding: 0 8px; }
.desktop-nav a::after, .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}
.desktop-nav a:focus-visible::after, .footer-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.social-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: transform 200ms var(--ease-out), background-color 200ms var(--ease-out), color 200ms var(--ease-out);
}
.social-link:focus-visible { color: var(--white); background: var(--teal); transform: translateY(-2px) rotate(3deg); }
.social-link:active { transform: translateY(1px) scale(0.92); }
.social-link svg { width: 19px; height: 19px; fill: currentColor; }
.menu-toggle { display: none; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(var(--header-height) + 40px) 24px 28px;
  color: var(--white);
  background: var(--teal-dark);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-12px);
  transition: opacity 180ms var(--ease-out), clip-path 340ms var(--ease-drawer), transform 340ms var(--ease-drawer), visibility 0s linear 340ms;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; clip-path: inset(0); transform: translateY(0); transition-delay: 0s; }
.mobile-menu nav { display: grid; align-content: center; gap: 18px; }
.mobile-menu nav a { opacity: 0; transform: translateY(28px); font-size: clamp(2.4rem, 13vw, 4.5rem); font-weight: 750; line-height: 0.95; letter-spacing: -0.055em; transition: opacity 180ms var(--ease-out), transform 260ms var(--ease-out); }
.mobile-menu.is-open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 50ms; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 100ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 150ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 200ms; }
.mobile-menu-footer { display: grid; gap: 4px; opacity: 0; transform: translateY(14px); font-size: 0.9rem; color: rgba(255, 253, 247, 0.76); transition: opacity 200ms var(--ease-out), transform 260ms var(--ease-out); }
.mobile-menu.is-open .mobile-menu-footer { opacity: 1; transform: translateY(0); transition-delay: 220ms; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-dark);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; display: block; object-fit: cover; object-position: 50% 50%; transform: scale(1.045); animation: hero-image-enter 1200ms var(--ease-out) both; }
.hero-shade { z-index: -1; background: linear-gradient(to top, rgba(6, 22, 27, 0.48), rgba(6, 22, 27, 0.08) 58%, rgba(6, 22, 27, 0.28)); animation: hero-shade-enter 700ms var(--ease-out) both; }
.hero-content {
  width: var(--shell);
  margin: 0 auto;
  padding: calc(var(--header-height) + 32px) 0 clamp(42px, 8vh, 88px);
}
.eyebrow, .section-kicker { margin: 0 0 14px; font-size: 0.8rem; font-weight: 750; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow { color: var(--amber-soft); }
.section-kicker { color: var(--teal); }
.hero h1 { max-width: 10ch; margin: 0; font-size: clamp(3.8rem, 9.5vw, 8.4rem); line-height: 0.92; letter-spacing: -0.04em; text-wrap: balance; }
.hero-copy { max-width: 520px; margin: 22px 0 0; font-size: clamp(1.05rem, 2.1vw, 1.3rem); line-height: 1.55; text-wrap: balance; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero .eyebrow, .hero h1, .hero-copy, .hero-actions { animation: hero-copy-enter 780ms var(--ease-out) both; }
.hero h1 { animation-delay: 70ms; }
.hero-copy { animation-delay: 140ms; }
.hero-actions { animation-delay: 210ms; }
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 760;
  white-space: nowrap;
  transition: transform 190ms var(--ease-out), background-color 190ms var(--ease-out), color 190ms var(--ease-out), border-color 190ms var(--ease-out), box-shadow 190ms var(--ease-out);
}
.button::after {
  position: absolute;
  inset: -50% auto -50% -45%;
  z-index: 1;
  width: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-180%) rotate(14deg);
  transition: transform 480ms var(--ease-out);
}
.button:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(6, 22, 27, 0.2); }
.button:active { transform: translateY(1px) scale(0.97); box-shadow: none; }
.button-primary { color: var(--ink); background: var(--amber); }
.button-primary:focus-visible { color: var(--white); background: var(--teal); }
.button-ghost { color: var(--white); border-color: rgba(244, 210, 138, 0.86); background: rgba(6, 22, 27, 0.16); backdrop-filter: blur(8px); }
.button-ghost:focus-visible { background: rgba(0, 0, 0, 0.28); }
.button-dark { color: var(--white); background: var(--teal); }
.button-dark:focus-visible { background: var(--teal-dark); }

@keyframes hero-image-enter {
  from { opacity: 0.72; transform: scale(1.14); filter: blur(7px); }
  to { opacity: 1; transform: scale(1.045); filter: blur(0); }
}
@keyframes hero-shade-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(34px) scale(0.975); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (min-width: 768px) {
  .hero-content { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
  .hero-actions { justify-content: flex-end; }
}

.section { padding: clamp(76px, 10vw, 132px) 0; }
.section-shell { width: var(--shell); margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.76fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.story { color: var(--white); background: var(--teal); }
.story .section-kicker { color: var(--amber-soft); }
.story .story-copy > p:not(.section-kicker) { color: rgba(255, 253, 247, 0.9); }
.story-copy h2, .section-heading h2, .gallery-heading h2, .reviews-heading h2, .visit-details h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.story-copy > p:not(.section-kicker) { max-width: 64ch; margin: 26px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.portrait-frame, .menu-image, .gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  transform: translateZ(0);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}
.portrait-frame { margin: 0; }
.portrait-frame img, .menu-image img, .gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 560ms var(--ease-out), filter 260ms var(--ease-out); }
.portrait-frame img { object-position: 50% 46%; }
.trust-row { display: flex; gap: 34px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.trust-row a { display: grid; gap: 1px; transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out); }
.trust-row .hygiene-badge { display: block; width: min(100%, 240px); }
.trust-row .hygiene-badge img { width: 100%; height: auto; display: block; }
.trust-row strong { color: var(--teal); font-size: 2rem; line-height: 1; }
.trust-row span { color: var(--muted); font-size: 0.8rem; }
.story .trust-row { border-top-color: rgba(255, 253, 247, 0.28); }
.story .trust-row strong { color: var(--amber-soft); }
.story .trust-row span { color: rgba(255, 253, 247, 0.76); }

.gallery-section { border-top: 4px solid var(--teal-dark); color: var(--white); background: var(--teal); }
.menu-preview { border-top: 4px solid var(--teal-dark); background: var(--surface-menu); }
.menu-preview h2, .visit h2 { color: var(--teal-dark); }
.gallery-section h2 { color: var(--white); }
.menu-preview h2::after, .gallery-section h2::after, .visit-details h2::after { content: ""; display: block; width: 56px; height: 4px; margin-top: 18px; background: var(--amber); }
.section-heading { display: grid; gap: 18px; max-width: 740px; margin-bottom: 48px; }
.section-heading p { max-width: 48ch; margin: 0; color: var(--muted); font-size: 1.05rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.menu-card { display: grid; align-content: start; border-top: 2px solid var(--teal); }
.menu-card:nth-child(1) { border-top-color: var(--amber); }
.menu-card:nth-child(3) { border-top-color: var(--teal-dark); }
.menu-image { margin-top: 18px; }
.menu-card:nth-child(1) .menu-image img { object-position: 50% 50%; }
.menu-card:nth-child(2) .menu-image img { object-position: 54% 50%; }
.menu-card:nth-child(3) .menu-image img { object-position: 50% 44%; }
.menu-card-copy { padding: 22px 0 0; }
.menu-card h3 { margin: 0; color: var(--ink-soft); font-size: 1.5rem; letter-spacing: -0.025em; }
.menu-card-copy > p { min-height: 48px; margin: 9px 0 21px; color: var(--muted); }
.menu-card dl { margin: 0; }
.menu-card dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.menu-card dt, .menu-card dd { margin: 0; }
.menu-card dt { font-weight: 650; }
.menu-card dd { color: var(--amber-ink); font-size: 0.88rem; font-weight: 750; white-space: nowrap; }

.gallery-heading { max-width: 560px; margin-bottom: 42px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-item { width: 100%; padding: 0; border: 0; cursor: zoom-in; appearance: none; }
.gallery-item:focus-visible img { transform: scale(1.055); }
.gallery-item:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
.gallery-section .gallery-item:focus-visible { outline-color: var(--amber); }
.gallery-item:nth-child(1) img { object-position: 50% 44%; }
.gallery-item:nth-child(2) img { object-position: 50% 49%; }
.gallery-item:nth-child(3) img { object-position: 50% 40%; }
.gallery-item:nth-child(4) img { object-position: 52% 49%; }
.gallery-item:nth-child(5) img { object-position: 50% 58%; }
.gallery-item:nth-child(6) img { object-position: 50% 49%; }

.reviews { border-top: 4px solid var(--amber); color: var(--white); background: var(--ink); }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 58px; }
.rating-lockup { display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 12px; }
.rating-lockup strong { grid-row: 1 / 3; font-size: 3.4rem; line-height: 1; letter-spacing: -0.06em; }
.rating-lockup span, .stars { color: var(--amber); letter-spacing: 0.08em; }
.rating-lockup small { color: rgba(255, 253, 247, 0.68); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.review { min-height: 285px; display: flex; flex-direction: column; padding: 5px 32px 0; border-left: 1px solid var(--line-light); transition: transform 240ms var(--ease-out), color 240ms var(--ease-out); }
.review:first-child { padding-left: 0; border-left: 0; }
.review blockquote { margin: 28px 0 34px; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.42; letter-spacing: -0.025em; }
.review footer { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-top: auto; font-size: 0.84rem; }
.review footer a { min-height: 44px; display: inline-flex; align-items: center; color: rgba(255, 253, 247, 0.72); text-decoration: underline; text-underline-offset: 4px; }
.review-author { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.review-avatar { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; background: rgba(255, 253, 247, 0.16); }
.review footer .review-author-name { min-height: 44px; color: var(--white); font-weight: 650; text-decoration: none; }
.review footer .review-author-name:hover, .review footer .review-author-name:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.visit { border-top: 4px solid var(--teal); padding-bottom: 0; background: var(--surface-visit); }
.visit-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr); gap: clamp(56px, 9vw, 136px); align-items: start; padding-bottom: clamp(70px, 9vw, 116px); }
.visit-details { max-width: 560px; }
.visit-details h2 { max-width: 12ch; }
.visit-address { margin: 32px 0 8px; color: var(--muted); font-size: 1.05rem; }
.phone-link { min-height: 48px; display: inline-flex; align-items: center; margin-top: 9px; color: var(--teal); font-size: clamp(1.65rem, 3vw, 2.6rem); font-weight: 760; letter-spacing: -0.035em; }
.visit-actions { margin-top: 32px; }
.visit-services { padding: 20px 0; border-top: 1px solid rgba(0, 116, 146, 0.22); border-bottom: 1px solid rgba(0, 116, 146, 0.22); background: rgba(214, 232, 231, 0.48); }
.service-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; gap: 0; }
.service-list span { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 16px; border: 0; border-left: 1px solid rgba(0, 116, 146, 0.24); color: var(--teal-dark); background: transparent; font-size: 1.05rem; text-align: center; transition: color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.service-list span::before { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--amber); content: ""; transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.service-list span:first-child { border-left: 0; }
.hours { align-self: start; padding: 26px 30px 22px; border-top: 4px solid var(--amber); background: var(--white); }
.hours h3 { margin: 0 0 20px; color: var(--teal-dark); font-size: 1.35rem; }
.hours dl { margin: 0; }
.hours dl div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.hours dt, .hours dd { margin: 0; }
.hours dd { font-weight: 700; }
.map-wrap { width: 100%; height: min(58vh, 620px); min-height: 430px; border-top: 1px solid rgba(1, 79, 99, 0.22); background: var(--surface-strong); }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }

.site-footer { padding: 34px 0; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; }
.footer-brand div { display: grid; gap: 2px; }
.footer-brand span { color: rgba(255, 253, 247, 0.7); font-size: 0.82rem; }
.footer-links, .footer-socials { display: flex; align-items: center; gap: 18px; }
.footer-links { font-size: 0.88rem; font-weight: 700; }
.footer-socials { gap: 8px; }
.site-footer .social-link:focus-visible { color: var(--ink); background: var(--amber); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 20px;
  padding: 70px 28px 28px;
  color: var(--white);
  background: rgba(6, 22, 27, 0.96);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out), visibility 0s linear 260ms;
}
.lightbox.is-open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
.lightbox figure { max-width: min(1100px, 78vw); max-height: calc(100vh - 110px); display: grid; justify-self: center; gap: 12px; margin: 0; opacity: 0; transform: translateY(24px) scale(0.94); transition: opacity 220ms var(--ease-out), transform 280ms var(--ease-out); }
.lightbox.is-open figure { opacity: 1; transform: translateY(0) scale(1); }
.lightbox figure img { max-width: 100%; max-height: calc(100vh - 150px); display: block; margin: auto; object-fit: contain; }
.lightbox figcaption { color: rgba(255, 253, 247, 0.76); font-size: 0.84rem; text-align: center; }
.lightbox button { color: var(--white); border: 1px solid rgba(255, 253, 247, 0.48); border-radius: var(--radius); background: rgba(255, 253, 247, 0.06); cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity 180ms var(--ease-out), transform 200ms var(--ease-out), background-color 180ms var(--ease-out); }
.lightbox.is-open button { opacity: 1; transform: translateY(0); transition-delay: 80ms; }
.lightbox-close { position: absolute; top: 18px; right: 20px; min-width: 74px; min-height: 42px; }
.lightbox-nav { min-width: 92px; min-height: 46px; padding: 0 14px; }
.lightbox button:focus-visible { background: var(--teal); }
.lightbox button:active { transform: translateY(1px) scale(0.94); }

.reveal { opacity: 0; transform: translateY(34px) scale(0.985); filter: blur(6px); transition: opacity 660ms var(--ease-out), transform 720ms var(--ease-out), filter 600ms var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
  .social-link:hover { color: var(--white); background: var(--teal); transform: translateY(-3px) rotate(4deg); }
  .button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(6, 22, 27, 0.2); }
  .button:hover::after { transform: translateX(520%) rotate(14deg); }
  .button-primary:hover { color: var(--white); background: var(--teal); }
  .button-ghost:hover { background: rgba(0, 0, 0, 0.28); }
  .button-dark:hover { background: var(--teal-dark); }
  .portrait-frame:hover { transform: translateY(-9px) rotate(0.6deg); box-shadow: 0 24px 60px rgba(6, 22, 27, 0.22); }
  .portrait-frame:hover img { transform: scale(1.055); }
  .menu-card:hover .menu-image { transform: translateY(-9px) rotate(-0.45deg); box-shadow: 0 22px 48px rgba(1, 79, 99, 0.18); }
  .menu-card:nth-child(even):hover .menu-image { transform: translateY(-9px) rotate(0.45deg); }
  .menu-card:hover .menu-image img { transform: scale(1.06); }
  .gallery-item:hover { transform: translateY(-10px) rotate(-0.45deg); box-shadow: 0 24px 54px rgba(6, 22, 27, 0.28); }
  .gallery-item:nth-child(even):hover { transform: translateY(-10px) rotate(0.45deg); }
  .gallery-item:hover img { transform: scale(1.08); filter: saturate(1.08); }
  .trust-row a:hover { transform: translateY(-4px); opacity: 0.86; }
  .review:hover { transform: translateY(-7px); }
  .service-list span:hover { color: var(--teal); transform: translateY(-2px); }
  .service-list span:hover::before { transform: scale(1.75); box-shadow: 0 0 0 5px rgba(219, 172, 67, 0.16); }
  .site-footer .social-link:hover { color: var(--ink); background: var(--amber); }
  .lightbox button:hover { background: var(--teal); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-header { grid-template-columns: 1fr auto; padding: 0 16px; }
  .desktop-nav { display: none; }
  .menu-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    background: transparent;
    transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out);
  }
  .menu-toggle:active { transform: scale(0.94); }
  .menu-toggle i, .menu-toggle i::before { width: 16px; height: 1px; display: block; background: currentColor; content: ""; transition: transform 220ms var(--ease-out); }
  .menu-toggle i::before { transform: translateY(5px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .site-header.menu-is-open { color: var(--white); background: var(--teal-dark); box-shadow: none; }
  .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 46px; }
  .story-copy { max-width: 700px; }
  .portrait-frame { max-width: 520px; }
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .menu-card h3 { font-size: 1.2rem; }
  .menu-card-copy > p { min-height: 66px; font-size: 0.9rem; }
  .menu-card dl div { grid-template-columns: 1fr; gap: 2px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .reviews-heading { align-items: start; }
  .reviews-grid { grid-template-columns: 1fr; gap: 38px; }
  .review, .review:first-child { min-height: auto; padding: 0 0 0 22px; border-left: 1px solid var(--line-light); }
  .review footer { justify-content: flex-start; }
  .visit-grid { gap: 56px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-socials { grid-column: 2; grid-row: 1; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  :root { --header-height: 66px; }
  .site-header .social-link { display: none; }
  .brand span { font-size: 0.9rem; }
  .brand img { width: 40px; height: 40px; }
  .hero-content { padding-bottom: 38px; }
  .hero h1 { max-width: 8ch; font-size: clamp(3.65rem, 18vw, 5.2rem); line-height: 0.9; }
  .hero-copy { max-width: 34ch; margin-top: 18px; font-size: 1rem; }
  .hero-actions { margin-top: 22px; }
  .button { min-height: 48px; padding: 0 19px; }
  .section { padding: 78px 0; }
  .story-copy h2, .section-heading h2, .gallery-heading h2, .reviews-heading h2, .visit-details h2 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .story-copy > p:not(.section-kicker) { font-size: 1rem; line-height: 1.72; }
  .trust-row { gap: 26px; }
  .portrait-frame { width: 100%; max-width: none; }
  .section-heading { margin-bottom: 38px; }
  .menu-grid { grid-template-columns: 1fr; gap: 54px; }
  .menu-card-copy > p { min-height: 0; }
  .menu-card dl div { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .gallery-heading { margin-bottom: 32px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-heading { display: grid; gap: 26px; margin-bottom: 48px; }
  .rating-lockup { justify-self: start; }
  .review blockquote { margin: 20px 0 26px; font-size: 1.2rem; }
  .review footer { display: grid; gap: 5px; }
  .visit-details h2 { max-width: 11ch; }
  .hours { padding: 22px 18px 18px; }
  .visit-services { padding: 16px 0; }
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 12px; }
  .service-list span { padding: 0 14px; font-size: 1rem; }
  .service-list span:nth-child(odd) { border-left: 0; }
  .map-wrap { min-height: 390px; height: 54vh; }
  .footer-grid { grid-template-columns: 1fr auto; gap: 30px 18px; }
  .footer-brand span { max-width: 26ch; }
  .footer-links { gap: 22px; }
  .lightbox { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; gap: 12px; padding: 64px 16px 18px; }
  .lightbox figure { grid-column: 1 / -1; max-width: 100%; max-height: calc(100vh - 150px); }
  .lightbox-nav { width: 100%; min-width: 0; }
  .lightbox-prev { grid-column: 1; }
  .lightbox-next { grid-column: 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; }
  .hero-image, .hero-shade, .hero .eyebrow, .hero h1, .hero-copy, .hero-actions { animation: none; filter: none; }
  .hero-image { transform: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
