:root {
  color-scheme: light;
  --ink: oklch(24% 0.035 168);
  --ink-soft: oklch(39% 0.045 168);
  --surface: oklch(90% 0.045 168);
  --surface-bright: oklch(97% 0.022 82);
  --mint: oklch(78% 0.09 168);
  --mint-deep: oklch(43% 0.09 168);
  --coffee: oklch(55% 0.11 54);
  --coffee-soft: oklch(87% 0.055 70);
  --line: oklch(39% 0.045 168 / 0.22);
  --shadow: 0 24px 70px oklch(24% 0.035 168 / 0.16);
  --radius-media: 18px;
  --radius-control: 999px;
  --header-height: 72px;
  --page-gutter: clamp(18px, 4vw, 54px);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

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

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  background: var(--surface-bright);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 3px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: var(--header-height);
  padding: 10px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #f8fbf7;
  transition: background-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: oklch(90% 0.045 168 / 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-link img,
.footer-brand img {
  border-radius: 10px;
}

.brand-link span {
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a,
.footer-links > a:not(.social-icon) {
  position: relative;
}

.desktop-nav a::after,
.footer-links > a:not(.social-icon)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

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

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-control);
  transition: background-color 180ms ease, transform 180ms ease;
}

.social-icon:active,
.button:active,
.menu-toggle:active,
.gallery-item:active {
  transform: scale(0.98);
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-icon .facebook-icon {
  fill: currentColor;
  stroke: none;
}

.header-actions > .social-icon {
  display: none;
}

.menu-toggle {
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius-control);
  background: transparent;
  color: inherit;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-toggle-lines {
  width: 18px;
  display: grid;
  gap: 5px;
}

.menu-toggle-lines i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: var(--surface);
  color: var(--ink);
  padding: calc(var(--header-height) + 44px) var(--page-gutter) 30px;
}

.mobile-menu:not([hidden]) {
  animation: mobile-menu-in 380ms var(--ease-drawer) both;
}

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

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 10px 0;
  font-size: clamp(2.15rem, 12vw, 4rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.06em;
}

.mobile-menu:not([hidden]) nav a {
  animation: mobile-link-in 480ms var(--ease-out) both;
}

.mobile-menu:not([hidden]) nav a:nth-child(2) {
  animation-delay: 45ms;
}

.mobile-menu:not([hidden]) nav a:nth-child(3) {
  animation-delay: 90ms;
}

.mobile-menu:not([hidden]) nav a:nth-child(4) {
  animation-delay: 135ms;
}

.mobile-menu:not([hidden]) nav a:nth-child(5) {
  animation-delay: 180ms;
}

.mobile-menu-footer {
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #f8fbf7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 25%, rgba(0, 0, 0, 0.45) 78%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 42px) var(--page-gutter) 40px;
}

.hero-ready .hero-media {
  animation: hero-media-in 1600ms var(--ease-out) both;
}

.hero-ready .hero-copy > * {
  animation: hero-content-in 780ms var(--ease-out) both;
  animation-delay: 180ms;
}

.hero-ready .hero-copy > :nth-child(2) {
  animation-delay: 270ms;
}

.hero-ready .hero-copy > :nth-child(3) {
  animation-delay: 360ms;
}

.hero-ready .hero-copy > :nth-child(4) {
  animation-delay: 450ms;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.73rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 15.5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 650;
}

.hero-intro {
  max-width: 29rem;
  margin-bottom: 26px;
  font-size: clamp(1rem, 4.5vw, 1.2rem);
  line-height: 1.45;
  color: rgba(248, 251, 247, 0.86);
}

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

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 760;
  position: relative;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--mint);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(16, 41, 34, 0.24);
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  will-change: transform;
}

.section {
  padding: clamp(76px, 15vw, 150px) 0;
}

.section-shell {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.story {
  background: var(--surface-bright);
}

.story-grid {
  display: grid;
  gap: 36px;
}

.story-copy {
  align-self: center;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 10vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 650;
}

.story-copy p {
  max-width: 64ch;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 760;
}

.story-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 60%;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 48ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.menu-editorial {
  display: grid;
  gap: 34px;
}

.menu-panel {
  display: grid;
  gap: 17px;
}

.menu-media {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-media);
  overflow: hidden;
}

.menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.menu-panel h3 {
  margin-bottom: 5px;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.menu-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.menu-media img,
.menu-panel h3 {
  transition: transform 280ms var(--ease-out);
}

.service-notes {
  margin-top: 52px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-section {
  background: var(--surface-bright);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 0;
  border-radius: var(--radius-media);
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  cursor: zoom-in;
  transform: translateY(0) rotate(0);
  transition: transform 260ms var(--ease-out);
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: var(--radius-control);
  background: oklch(97% 0.022 82 / 0.92);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.gallery-item:nth-child(1) img {
  object-position: 50% 50%;
}

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

.gallery-item:nth-child(3) img {
  object-position: 50% 50%;
}

.gallery-item:nth-child(4) img {
  object-position: 50% 53%;
}

.gallery-item:nth-child(5) img {
  object-position: 50% 52%;
}

.gallery-item:nth-child(6) img {
  object-position: 52% 48%;
}

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

.reviews .section-heading p {
  color: var(--ink-soft);
}

.review-layout {
  display: grid;
  gap: 38px;
}

.review {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.review-featured blockquote {
  font-size: clamp(1.8rem, 8vw, 3.5rem);
}

.review-stack {
  display: grid;
  gap: 34px;
}

.stars {
  margin-bottom: 14px;
  color: var(--coffee);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 0 0 22px;
  max-width: 30ch;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  font-size: 0.82rem;
}

.review-meta a {
  color: var(--mint-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.visit {
  padding: 0;
  display: grid;
  background: var(--surface);
}

.visit-map {
  min-height: 460px;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.visit-details {
  padding: clamp(60px, 12vw, 110px) var(--page-gutter);
}

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

.visit-block {
  margin-top: 32px;
}

.visit-block h3 {
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-block p {
  margin: 0;
  color: var(--ink-soft);
}

.hours {
  margin: 0;
  max-width: 460px;
}

.hours div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 20px;
}

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

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

.visit-actions {
  margin-top: 34px;
}

.site-footer {
  padding: 34px var(--page-gutter);
  background: var(--mint);
  display: grid;
  gap: 26px;
}

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

.footer-brand div {
  display: grid;
}

.footer-brand span,
.footer-address {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-address {
  display: grid;
  gap: 4px;
}

.footer-address a {
  color: var(--ink);
  font-weight: 720;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 700;
}

.lightbox {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  background: rgba(6, 22, 18, 0.96);
  color: #ffffff;
}

.lightbox[open] {
  animation: lightbox-in 180ms var(--ease-out) both;
}

.lightbox::backdrop {
  background: rgba(6, 22, 18, 0.92);
}

.lightbox[open]::backdrop {
  animation: lightbox-backdrop-in 180ms var(--ease-out) both;
}

.lightbox-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 70px 54px;
  display: grid;
  place-items: center;
}

.lightbox[open] .lightbox-frame {
  animation: lightbox-frame-in 260ms var(--ease-out) both;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  will-change: transform, opacity;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-control);
  background: rgba(16, 41, 34, 0.65);
  color: #ffffff;
  padding: 0 16px;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.lightbox-count {
  position: absolute;
  left: 50%;
  top: 20px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

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

.lightbox-close {
  right: 14px;
  top: 14px;
}

.lightbox-prev {
  left: 10px;
  bottom: 14px;
}

.lightbox-next {
  right: 10px;
  bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

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

.menu-panel:nth-child(2),
.gallery-item:nth-child(2),
.review-stack .review:nth-child(2) {
  transition-delay: 55ms;
}

.menu-panel:nth-child(3),
.gallery-item:nth-child(3) {
  transition-delay: 110ms;
}

.gallery-item:nth-child(5) {
  transition-delay: 55ms;
}

.gallery-item:nth-child(6) {
  transition-delay: 110ms;
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover {
    background: oklch(84% 0.085 168);
  }

  .button-ghost:hover {
    background: rgba(16, 41, 34, 0.5);
  }

  .button-outline:hover {
    background: var(--ink);
    color: var(--surface-bright);
  }

  .desktop-nav a:hover::after,
  .footer-links > a:not(.social-icon):hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

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

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

  .social-icon:hover {
    background: rgba(139, 198, 184, 0.26);
    transform: translateY(-3px) rotate(-4deg) scale(1.06);
  }

  .menu-panel:hover .menu-media img {
    transform: scale(1.055);
  }

  .menu-panel:hover h3 {
    transform: translateX(5px);
  }

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

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

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

  .lightbox-close:hover,
  .lightbox-nav:hover {
    transform: translateY(-2px) scale(1.04);
    background: oklch(43% 0.09 168 / 0.9);
    border-color: rgba(255, 255, 255, 0.82);
  }

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

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

@keyframes hero-media-in {
  from {
    opacity: 0.58;
    filter: blur(10px);
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 24% 0);
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes mobile-menu-in {
  from {
    transform: translateY(-4%);
  }
}

@keyframes mobile-link-in {
  from {
    opacity: 0;
    transform: translateY(55%);
  }
}

@keyframes lightbox-in {
  from {
    opacity: 0;
  }
}

@keyframes lightbox-backdrop-in {
  from {
    opacity: 0;
  }
}

@keyframes lightbox-frame-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
}

@media (min-width: 760px) {
  .header-actions > .social-icon {
    display: inline-grid;
  }

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

  .menu-panel:nth-child(2) {
    margin-top: 58px;
  }

  .service-notes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .review-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(54px, 8vw, 120px);
    align-items: start;
  }

  .review-featured {
    position: sticky;
    top: calc(var(--header-height) + 30px);
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    grid-template-rows: minmax(0, 100dvh);
    align-items: end;
    background: var(--ink);
  }

  .hero::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.03) 76%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.45) 100%);
  }

  .hero-copy {
    width: min(100%, 920px);
    padding: calc(var(--header-height) + 64px) var(--page-gutter) 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 6.7vw, 6rem);
    letter-spacing: -0.04em;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    object-position: 50% 50%;
  }

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

  .story-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: center;
  }

  .story-copy {
    padding-left: clamp(0px, 6vw, 90px);
  }

  .visit {
    grid-template-columns: minmax(0, 1.15fr) minmax(440px, 0.85fr);
    min-height: 720px;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 720px;
  }

  .visit-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .brand-link span {
    display: none;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .service-notes {
    grid-template-columns: 1fr;
  }

  .visit-actions .button {
    width: 100%;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

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

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