:root {
  color-scheme: light;
  --surface: #e8e8ea;
  --surface-raised: #f1f1f3;
  --ink: #151616;
  --muted: #5e6061;
  --line: #c7c8ca;
  --accent: #ff1424;
  --accent-dark: #c81020;
  --white: #f0f0f2;
  --header-height: 68px;
  --radius: 4px;
  --shadow: 0 20px 50px rgba(70, 45, 38, 0.12);
  --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;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(253, 252, 249, 0.34);
  background: transparent;
  color: var(--white);
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: var(--surface-raised);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(30, 30, 28, 0.05);
}

.site-header:not(.is-scrolled) .wordmark,
.site-header:not(.is-scrolled) .desktop-nav a { color: var(--white); }

.site-header:not(.is-scrolled) .header-call,
.site-header:not(.is-scrolled) .menu-toggle {
  border-color: var(--white);
  color: var(--white);
}

.site-header:not(.is-scrolled) .header-call:hover,
.site-header:not(.is-scrolled) .header-call:focus-visible,
.site-header:not(.is-scrolled) .menu-toggle:hover,
.site-header:not(.is-scrolled) .menu-toggle:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.wordmark {
  width: max-content;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span:last-child { color: var(--accent); }

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

.desktop-nav a,
.site-footer nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--accent); }

.header-call {
  min-width: 94px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.header-call:active,
.button:active,
.menu-toggle:active,
.mobile-menu-close:active,
.lightbox button:active { transform: scale(0.96); }

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

.menu-toggle {
  display: none;
  min-width: 72px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 24px;
  background: var(--surface-raised);
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition: transform 360ms var(--ease-drawer), opacity 180ms ease, visibility 0s linear 360ms;
  will-change: transform;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu-close {
  display: block;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  margin-top: 48px;
}

.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(32px, 11vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(28px, 0, 0);
  transition: transform 300ms var(--ease-out), opacity 220ms ease, color 160ms ease;
}

.mobile-menu.is-open nav a { opacity: 1; transform: translate3d(0, 0, 0); }
.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 70ms; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 105ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 140ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 175ms; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: 210ms; }

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

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
  animation: hero-image-in 1100ms var(--ease-out) both;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.26) 58%, rgba(0, 0, 0, 0.15));
  animation: hero-overlay-in 900ms ease both;
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(44px, 7vw, 88px) clamp(18px, 6vw, 96px);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.hero-content > * {
  animation: hero-piece-in 720ms var(--ease-out) both;
}

.hero-content > :nth-child(1) { animation-delay: 80ms; }
.hero-content > :nth-child(2) { animation-delay: 130ms; }
.hero-content > :nth-child(3) { animation-delay: 200ms; }
.hero-content > :nth-child(4) { animation-delay: 270ms; }

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 650;
  line-height: 1.35;
}

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

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

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

.button-primary:hover,
.button-primary:focus-visible { background: #a50e1b; }

.button-ghost {
  border-color: rgba(253, 252, 249, 0.84);
  background: rgba(25, 25, 23, 0.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible { background: rgba(25, 25, 23, 0.34); }

.section {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 6vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.signature h2,
.visit-details h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.intro-copy p,
.section-heading > p:last-child,
.signature p,
.hours-note {
  max-width: 64ch;
  color: var(--muted);
}

.intro-copy p { margin: 28px 0 0; font-size: 18px; }

.ratio-portrait {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.intro-image { box-shadow: var(--shadow); }
.intro-image img { object-position: 61% center; }

.service-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.service-line span {
  padding: 16px;
  border-right: 1px solid var(--line);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  color: var(--accent-dark);
  text-align: center;
  transition: transform 220ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.service-line span:last-child { border-right: 0; }

.menu-section {
  background: var(--ink);
  color: var(--white);
}

.menu-section .section-heading > p:last-child { color: rgba(240, 240, 242, 0.72); }
.menu-section .menu-panel-body > p { color: var(--muted); }

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(40px, 6vw, 76px);
}

.section-heading > p:last-child { margin: 20px 0 0; font-size: 18px; }
.section-heading .eyebrow { color: var(--accent); }

.intro-copy h2::after,
.section-heading h2::after,
.signature h2::after,
.visit-details h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 18px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms var(--ease-out) 170ms;
}

.intro-copy.reveal.is-visible h2::after,
.section-heading.reveal.is-visible h2::after,
.signature-inner.reveal.is-visible h2::after,
.visit-details.reveal.is-visible h2::after { transform: scaleX(1); }

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

.menu-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 5px solid var(--accent);
  background: var(--surface);
  color: var(--ink);
  overflow: hidden;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.menu-image img { object-position: center center; transition: transform 700ms var(--ease-out), filter 240ms ease; }
.menu-panel:nth-child(1) .menu-image img { object-position: 50% 44%; }
.menu-panel:nth-child(2) .menu-image img { object-position: 50% 42%; }
.menu-panel:nth-child(3) .menu-image img { object-position: 50% 30%; }

.menu-panel-body { padding: 26px 22px 30px; }
.menu-panel h3 { margin: 0; font-size: 28px; letter-spacing: -0.035em; line-height: 1; }
.menu-panel-body > p { min-height: 3.2em; margin: 12px 0 22px; color: var(--muted); }
.menu-list { margin: 0; }
.menu-list > div { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.menu-list > div:last-child { border-bottom: 0; }
.menu-list dt { font-weight: 700; }
.menu-list dd { margin: 0; font-weight: 900; color: var(--accent-dark); }

.text-link { color: var(--accent-dark); }

.signature { padding-top: 0; padding-bottom: 0; }
.signature-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 6vw, 74px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.signature-number {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--accent);
}

.signature-number strong {
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.signature-number span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signature h2 { font-size: clamp(34px, 4vw, 56px); }
.signature p { margin: 14px 0 0; }
.text-link { font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 5px; white-space: nowrap; }
.text-link:hover, .text-link:focus-visible { color: var(--accent); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 24px);
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
  transform-origin: center bottom;
  transition: transform 260ms var(--ease-out), outline-color 180ms ease;
}

.gallery-item:focus-visible { transform: translateY(-8px); outline: 3px solid var(--accent); outline-offset: 4px; }
.gallery-item img { transition: transform 620ms var(--ease-out), filter 240ms ease; }

.reviews-section {
  background: var(--ink);
  color: var(--white);
}
.reviews-section .section-heading > p:last-child,
.reviews-section .reviews-note { color: rgba(240, 240, 242, 0.72); }
.reviews-section .review { border-top-color: rgba(240, 240, 242, 0.32); }
.reviews-section .review blockquote,
.reviews-section .review-footer cite,
.reviews-section .review-author { color: var(--white) !important; }
.reviews-section .review-footer a { color: var(--accent); }
.reviews-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 4vw, 54px); }
.reviews-stack { display: grid; gap: 24px; }
.review { padding: 28px 0; border-top: 1px solid var(--ink); }
.review-featured { display: flex; min-height: 100%; flex-direction: column; justify-content: space-between; }
.stars { margin: 0 0 20px; color: var(--accent); font-size: 20px; letter-spacing: 0.08em; }
.review blockquote { margin: 0; font-size: clamp(22px, 3vw, 40px); font-weight: 730; letter-spacing: -0.035em; line-height: 1.16; }
.reviews-stack blockquote { font-size: clamp(18px, 2vw, 24px); }
.review-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 28px; }
.review-footer cite { font-style: normal; font-weight: 850; }
.review-footer a { color: var(--accent-dark); font-size: 14px; font-weight: 800; text-underline-offset: 4px; }
.review-author { display: inline-flex; align-items: center; gap: 10px; color: var(--ink) !important; text-decoration: none; }
.review-author:hover cite, .review-author:focus-visible cite { text-decoration: underline; text-underline-offset: 4px; }
.review-avatar { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; object-fit: cover; background: var(--surface); }
.reviews-note { max-width: 52ch; margin-top: 14px; font-size: 15px; }
.reviews-note a { color: var(--accent-dark); font-weight: 800; text-underline-offset: 4px; }

.good-to-know { padding-top: clamp(70px, 8vw, 110px); padding-bottom: clamp(70px, 8vw, 110px); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.facts-grid > div { min-height: 180px; padding: 24px 20px 20px 0; border-right: 1px solid var(--line); transition: transform 240ms var(--ease-out); }
.facts-grid > div + div { padding-left: 20px; }
.facts-grid > div:last-child { border-right: 0; }
.facts-grid strong, .facts-grid span { display: block; }
.facts-grid strong { font-size: 19px; transition: color 180ms ease; }
.facts-grid span { margin-top: 10px; color: var(--muted); }

.visit-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: stretch;
  padding-top: clamp(70px, 8vw, 110px);
  background: var(--surface-raised);
}

.visit-details { display: flex; flex-direction: column; align-items: flex-start; }
.visit-details .eyebrow { color: var(--accent); }
.visit-details address { margin-top: 32px; font-size: 20px; font-style: normal; line-height: 1.45; }
.visit-phone { margin-top: 10px; color: var(--accent-dark); font-size: clamp(26px, 3vw, 38px); font-weight: 900; text-decoration: none; }
.visit-phone:hover, .visit-phone:focus-visible { text-decoration: underline; text-underline-offset: 5px; }
.hours { width: 100%; margin: 32px 0 0; border-top: 1px solid var(--ink); }
.hours p { display: grid; grid-template-columns: 1fr auto; gap: 18px; margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours strong { text-align: right; }
.hours-note { margin: 12px 0 28px; font-size: 14px; }
.map-wrap { min-height: 560px; border: 1px solid var(--ink); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 560px; display: block; border: 0; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 50px clamp(18px, 6vw, 96px);
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.site-footer .wordmark { color: var(--white); }
.site-footer p { margin: 18px 0 2px; color: rgba(240, 240, 242, 0.72); }
.site-footer > div > a:last-child { font-weight: 800; text-decoration: none; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 72px clamp(12px, 3vw, 40px) 28px;
  background: rgba(20, 20, 19, 0.94);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox figure { min-width: 0; max-width: 1100px; max-height: calc(100svh - 110px); margin: 0 auto; text-align: center; opacity: 0; transform: translate3d(0, 24px, 0) scale(0.94); transition: transform 380ms var(--ease-drawer), opacity 220ms ease; }
.lightbox.is-open figure { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.lightbox figure img { max-width: 100%; max-height: calc(100svh - 150px); display: block; margin: 0 auto; object-fit: contain; will-change: transform, opacity; }
.lightbox figcaption { margin-top: 10px; font-size: 14px; }
.lightbox button { min-height: 44px; padding: 10px 14px; border: 1px solid rgba(253, 252, 249, 0.7); border-radius: var(--radius); background: rgba(253, 252, 249, 0.08); color: var(--white); font-weight: 800; cursor: pointer; transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease; }
.lightbox button:hover, .lightbox button:focus-visible { background: var(--white); color: var(--ink); }
.lightbox-close { position: absolute; top: 18px; right: 18px; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(6px);
  transition: opacity 620ms ease, transform 760ms var(--ease-out), filter 620ms ease;
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }

.menu-panel.reveal,
.gallery-item.reveal,
.intro-image.reveal {
  clip-path: inset(0 0 12% 0);
  transition: opacity 620ms ease, transform 760ms var(--ease-out), filter 620ms ease, clip-path 820ms var(--ease-in-out);
}

.menu-panel.reveal.is-visible,
.gallery-item.reveal.is-visible,
.intro-image.reveal.is-visible { clip-path: inset(0 0 0 0); }

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

@keyframes hero-image-in {
  from { opacity: 0.72; transform: scale(1.085); filter: saturate(0.72) blur(3px); }
  to { opacity: 1; transform: scale(1); filter: saturate(1) blur(0); }
}

@keyframes hero-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-piece-in {
  from { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(6px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@media (max-width: 1023px) {
  .desktop-nav, .header-call { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .intro { grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr); gap: 44px; }
  .menu-grid { gap: 16px; }
  .menu-panel-body { padding: 22px 16px 24px; }
  .menu-panel h3 { font-size: 24px; }
  .menu-list > div { grid-template-columns: 1fr; gap: 2px; }
  .menu-list dd { text-align: left; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid > div:nth-child(2) { border-right: 0; }
  .facts-grid > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .visit-section { grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: 40px; }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; }
  .site-header { min-height: var(--header-height); padding: 8px 16px; }
  .wordmark { font-size: 16px; }
  .hero { min-height: 100svh; }
  .hero-image { object-position: 34% center; }
  .hero-content { width: calc(100% - 32px); margin: 0 16px 34px; }
  .hero h1 { max-width: 100%; font-size: clamp(48px, 14vw, 58px); }
  .hero-copy { max-width: 25ch; margin-top: 18px; font-size: 16px; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .button { flex: 1 1 140px; }
  .section { padding: 76px 16px; }
  .intro { grid-template-columns: 1fr; gap: 34px; }
  .intro-copy p { margin-top: 22px; font-size: 16px; }
  .intro-image { width: min(100%, 430px); justify-self: center; }
  .service-line { grid-template-columns: repeat(2, 1fr); }
  .service-line span:nth-child(2) { border-right: 0; }
  .service-line span:nth-child(n+3) { border-top: 1px solid var(--line); }
  .menu-grid, .gallery-grid, .reviews-layout, .visit-section { grid-template-columns: 1fr; }
  .menu-grid { gap: 32px; }
  .menu-panel-body > p { min-height: 0; }
  .menu-list > div { grid-template-columns: 1fr auto; gap: 12px; }
  .menu-list dd { text-align: right; }
  .signature-inner { grid-template-columns: 1fr; gap: 24px; }
  .signature-number strong { font-size: 88px; }
  .text-link { justify-self: start; }
  .gallery-grid { gap: 16px; }
  .reviews-layout { gap: 0; }
  .reviews-stack { gap: 0; }
  .review-featured { min-height: auto; }
  .review blockquote, .reviews-stack blockquote { font-size: 22px; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid > div, .facts-grid > div + div { min-height: 0; padding: 22px 0; border-right: 0; border-top: 1px solid var(--line); }
  .facts-grid > div:first-child { border-top: 0; }
  .visit-section { gap: 42px; }
  .map-wrap, .map-wrap iframe { min-height: 440px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding: 44px 16px; }
  .site-footer nav { gap: 18px; }
  .lightbox { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; gap: 10px; padding: 64px 12px 14px; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; }
  .lightbox-prev { grid-column: 1; grid-row: 2; }
  .lightbox-next { grid-column: 2; grid-row: 2; }
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after,
  .site-footer nav a:hover::after,
  .site-footer nav a:focus-visible::after { transform: scaleX(1); transform-origin: left center; }

  .header-call:hover,
  .button:hover,
  .menu-toggle:hover,
  .mobile-menu-close:hover { transform: translateY(-2px); }

  .service-line span:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-5px);
  }

  .menu-panel:hover {
    transform: translateY(-12px) rotate(-0.35deg);
    box-shadow: 0 14px 0 rgba(255, 20, 36, 0.72);
  }

  .menu-panel:nth-child(even):hover { transform: translateY(-12px) rotate(0.35deg); }
  .menu-panel:hover .menu-image img { transform: scale(1.055); }

  .gallery-item:hover {
    transform: translateY(-10px) rotate(-0.45deg);
    outline: 3px solid var(--accent);
    outline-offset: 4px;
  }

  .gallery-item:nth-child(even):hover { transform: translateY(-10px) rotate(0.45deg); }
  .gallery-item:hover img { transform: scale(1.075); filter: saturate(1.08); }

  .facts-grid > div:hover { transform: translateY(-7px); }
  .facts-grid > div:hover strong { color: var(--accent-dark); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-image,
  .hero-overlay,
  .hero-content > * { animation: none; }
  .reveal,
  .menu-panel.reveal,
  .gallery-item.reveal,
  .intro-image.reveal { opacity: 1; transform: none; filter: none; clip-path: none; transition: opacity 180ms ease; }
  .intro-copy h2::after,
  .section-heading h2::after,
  .signature h2::after,
  .visit-details h2::after { transform: scaleX(1); transition: none; }
  .mobile-menu { transform: none; transition: opacity 140ms ease, visibility 0s linear 140ms; }
  .mobile-menu nav a { transform: none; transition: opacity 140ms ease, color 140ms ease; }
  .lightbox figure { transform: none; transition: opacity 160ms ease; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--surface-raised); backdrop-filter: none; }
  .button-ghost { background: rgba(25, 25, 23, 0.72); backdrop-filter: none; }
}
