:root {
  --brand-stucco: #b4a194;
  --brand-mist: #bbc4ce;
  --brand-espresso: #171717;
  --ink: var(--brand-espresso);
  --muted: #555555;
  --paper: #e7dad1;
  --paper-2: #cbb4a5;
  --line: #ad9687;
  --accent: #536b7d;
  --accent-dark: var(--brand-espresso);
  --white: #fffdfa;
  --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);
  --radius: 6px;
  --header-height: 72px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

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

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

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

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

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

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: transparent;
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.35);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, text-shadow 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-bottom-color: rgb(23 23 23 / 0.14);
  background: rgb(231 218 209 / 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-shadow: none;
  box-shadow: 0 8px 28px rgb(23 23 23 / 0.08);
}

.brand {
  display: block;
  width: 58px;
  height: 58px;
  transition: transform 180ms var(--ease-out);
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  font-size: 0.91rem;
  font-weight: 700;
}

.desktop-nav > a:not(.social-link) {
  position: relative;
  text-decoration: none;
}

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

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

.social-link svg,
.mobile-facebook svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms var(--ease-out), opacity 160ms ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow: hidden;
  background: rgb(23 23 23 / 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu:not(.is-open) {
  transition-duration: 180ms;
}

.mobile-menu-inner {
  width: min(92vw, 540px);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  padding: 24px;
  background: var(--paper);
  box-shadow: -24px 0 70px rgb(23 23 23 / 0.22);
  transform: translateX(100%);
  transition: transform 380ms var(--ease-drawer);
  will-change: transform;
}

.mobile-menu.is-open .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu:not(.is-open) .mobile-menu-inner {
  transition-duration: 260ms;
}

.mobile-menu-close {
  align-self: flex-end;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  font-weight: 800;
  transition: transform 140ms var(--ease-out), color 180ms ease, background-color 180ms ease;
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
  margin: auto 0;
}

.mobile-menu nav a {
  padding: 5px 0;
  text-decoration: none;
  font-size: clamp(2.3rem, 12vw, 4.3rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.03;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 260ms ease, transform 360ms var(--ease-drawer), color 180ms ease;
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 60ms; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 100ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 140ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 180ms; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: 220ms; }

.mobile-facebook {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 320ms var(--ease-out);
}

.mobile-menu.is-open .mobile-facebook {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 220ms;
}

.mobile-facebook {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 56%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgb(0 0 0 / 0.46) 0%, rgb(0 0 0 / 0.28) 58%, rgb(0 0 0 / 0.18) 100%);
  pointer-events: none;
}

.hero-copy {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: clamp(44px, 7vw, 88px);
}

body.motion-ready .hero-image {
  animation: hero-image-enter 1400ms var(--ease-out) both;
}

body.motion-ready .hero-copy > * {
  animation: hero-copy-enter 720ms var(--ease-out) both;
}

body.motion-ready .hero-copy > :nth-child(1) { animation-delay: 80ms; }
body.motion-ready .hero-copy > :nth-child(2) { animation-delay: 150ms; }
body.motion-ready .hero-copy > :nth-child(3) { animation-delay: 220ms; }
body.motion-ready .hero-copy > :nth-child(4) { animation-delay: 290ms; }

@keyframes hero-image-enter {
  from { transform: scale(1.075); }
  to { transform: scale(1); }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eyebrow {
  margin: 0 0 17px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Arial Black", Aptos, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.7vw, 5.6rem);
  text-wrap: balance;
}

.hero-intro {
  max-width: 510px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.45;
}

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

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

.button:active {
  transform: translateY(1px) scale(0.96);
}

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

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

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--paper-2);
}

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

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

.proof-strip {
  color: var(--white);
  background: var(--brand-espresso);
  border-bottom: 1px solid rgb(255 253 250 / 0.22);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > * {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgb(255 253 250 / 0.22);
  transition: background-color 220ms ease, transform 220ms var(--ease-out);
}

.proof-grid > *:first-child {
  border-left: 1px solid rgb(255 253 250 / 0.22);
}

.proof-grid a {
  text-decoration: none;
}

.proof-grid strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.proof-grid span {
  margin-top: 5px;
  color: rgb(255 253 250 / 0.72);
  font-size: 0.82rem;
}

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

.section h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.7vw, 5.8rem);
}

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

.section-heading p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(45px, 9vw, 130px);
}

.about-copy,
.about-media,
.visit-details,
.map-wrap {
  min-width: 0;
  max-width: 100%;
}

.about-copy p {
  max-width: 64ch;
  margin: 30px 0 0;
  color: #3f3f3c;
  font-size: 1.08rem;
}

.service-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.media-3x4 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.media-3x4 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 680ms var(--ease-out);
}

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

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

.menu-ledger {
  border-top: 1px solid var(--ink);
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 8vw, 110px);
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.menu-row .menu-copy {
  transition: transform 480ms var(--ease-out);
}

.menu-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
}

.menu-row:nth-child(even) .menu-visual {
  order: 2;
}

.menu-row:nth-child(even) .menu-copy {
  order: 1;
  padding-left: clamp(0px, 8vw, 120px);
}

.menu-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-copy h3 {
  margin: 0;
  font-family: "Arial Black", Aptos, sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.menu-copy > p:last-child {
  max-width: 42ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.menu-callout {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  font-weight: 800;
}

.menu-callout p {
  margin: 0;
}

.text-link {
  color: var(--accent-dark);
  font-size: 1.15rem;
}

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

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  transform: translateY(0) scale(1);
  transition: transform 260ms var(--ease-out);
}

.gallery-item::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgb(23 23 23 / 0.78);
  font-size: 1.35rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 180ms ease, transform 240ms var(--ease-out);
  pointer-events: none;
}

.gallery-frame {
  display: block;
}

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

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

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

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

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

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

.gallery-item img {
  transition: transform 620ms var(--ease-out);
}

.gallery-item:active {
  transform: translateY(1px) scale(0.975);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.review {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transform: translateY(0);
  transition: transform 260ms var(--ease-out), background-color 220ms ease;
}

.review-featured {
  grid-row: span 2;
  min-height: 488px;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.stars {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.16em;
}

.review blockquote {
  margin: 25px 0 34px;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 750;
  line-height: 1.35;
}

.review-featured blockquote {
  font-size: clamp(1.55rem, 3.4vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.review footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
}

.review-author {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  object-fit: cover;
}

.review-featured .review-avatar {
  border-color: rgb(253 253 251 / 0.36);
}

.review-author strong {
  max-width: 21ch;
}

.review footer a {
  white-space: nowrap;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: stretch;
}

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

.visit-details address {
  margin-top: 28px;
  font-style: normal;
  font-size: 1.08rem;
}

.phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: 1.4rem;
  font-weight: 850;
}

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

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
}

.map-wrap {
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}

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

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 90px 1.2fr 0.8fr 50px;
  align-items: start;
  gap: 34px;
}

.footer-brand {
  width: 82px;
  height: 82px;
}

.footer-grid p {
  margin: 0 0 8px;
}

.footer-grid nav {
  display: grid;
  gap: 7px;
}

.footer-social {
  justify-self: end;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgb(12 12 12 / 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox:not(.is-open) {
  transition-duration: 160ms;
}

.lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  height: min(860px, calc(100dvh - 40px));
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px;
  align-items: center;
  opacity: 0;
  transform: translateY(22px) scale(0.965);
  transition: opacity 220ms ease, transform 320ms var(--ease-out);
  will-change: transform;
}

.lightbox.is-open .lightbox-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox:not(.is-open) .lightbox-dialog {
  transition-duration: 160ms;
}

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

.lightbox figure img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius);
  background: rgb(0 0 0 / 0.72);
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox figcaption {
  padding-top: 12px;
  color: var(--white);
  text-align: center;
}

.lightbox button {
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgb(255 255 255 / 0.5);
  border-radius: var(--radius);
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
  font-weight: 750;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.lightbox button:active {
  transform: scale(0.95);
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.lightbox-prev {
  justify-self: start;
}

.lightbox-next {
  justify-self: end;
}

body.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
}

.reveal {
  transition: opacity 720ms var(--ease-out), transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover,
  .social-link:hover {
    transform: translateY(-2px) scale(1.04);
  }

  .desktop-nav > a:not(.social-link):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .menu-toggle:hover,
  .mobile-menu-close:hover {
    background: rgb(23 23 23 / 0.08);
  }

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

  .button:hover:active {
    transform: translateY(1px) scale(0.96);
  }

  .proof-grid > a:hover {
    background: rgb(255 253 250 / 0.08);
    transform: translateY(-4px);
  }

  .about-media:hover img,
  .menu-row:hover .menu-visual img {
    transform: scale(1.055);
  }

  .menu-row:hover .menu-copy {
    transform: translateX(8px);
  }

  .menu-row:nth-child(even):hover .menu-copy {
    transform: translateX(-8px);
  }

  .gallery-item:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .gallery-item:hover:active {
    transform: translateY(1px) scale(0.975);
  }

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

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

  .review:hover {
    transform: translateY(-6px);
  }

  .lightbox button:hover {
    border-color: rgb(255 255 255 / 0.86);
    background: rgb(255 255 255 / 0.18);
    transform: scale(1.04);
  }

  .lightbox button:hover:active {
    transform: scale(0.95);
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .proof-grid > *:nth-child(2) {
    border-right: 1px solid rgb(255 253 250 / 0.22);
  }

  .proof-grid > *:nth-child(n + 3) {
    border-top: 1px solid rgb(255 253 250 / 0.22);
  }

  .about-grid,
  .visit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-media {
    width: min(100%, 540px);
    margin-left: auto;
  }

  .visit-grid {
    gap: 44px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 560px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    width: 50px;
    height: 50px;
  }

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

  .hero h1 {
    max-width: 9.6ch;
    font-size: clamp(2.35rem, 8.8vw, 2.7rem);
  }

  .hero-intro {
    max-width: 26ch;
    margin-top: 18px;
  }

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

  .proof-grid > * {
    min-height: 98px;
    padding: 16px;
  }

  .section {
    padding-block: 76px;
  }

  .section h2 {
    font-size: clamp(2.6rem, 11.5vw, 3.55rem);
  }

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

  .about-grid {
    gap: 42px;
  }

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

  .menu-row,
  .menu-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 28px;
  }

  .menu-row:nth-child(even) .menu-visual,
  .menu-row:nth-child(even) .menu-copy {
    order: initial;
  }

  .menu-row:nth-child(even) .menu-copy {
    padding-left: 0;
  }

  .menu-visual {
    width: 100%;
  }

  .menu-callout {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .review-featured {
    grid-row: auto;
    min-height: 410px;
  }

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

  .visit-actions .button {
    flex: 1;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 470px;
  }

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

  .footer-grid nav {
    grid-column: 1 / -1;
  }

  .footer-social {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .lightbox-dialog {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 100%;
    grid-row: 2;
  }

  .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;
  }

  body.reveal-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    color: var(--ink);
    border-bottom-color: rgb(23 23 23 / 0.14);
    background: var(--paper);
    backdrop-filter: none;
  }
}
