:root {
  color-scheme: light;
  --ink: #2a241c;
  --muted: #6b5949;
  --paper: #e6c39c;
  --surface: #f8ecdc;
  --line: #c9a47c;
  --accent: #b67740;
  --accent-dark: #2a241c;
  --radius: 2px;
  --header-height: 72px;
  --shell: min(1240px, calc(100vw - 48px));
  --shadow: 0 18px 50px rgb(42 36 28 / 0.16);
  --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: var(--header-height);
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button {
  color: inherit;
}

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

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

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

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

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

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

.section-label {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-height);
  padding-inline: clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgb(230 195 156 / 0.28);
  color: var(--surface);
  transition: background-color 240ms var(--ease-out), color 180ms ease, border-color 180ms ease,
    box-shadow 240ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgb(230 195 156 / 0.96);
  color: var(--ink);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgb(42 36 28 / 0.1);
}

.brand-link {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
}

.brand-link img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: cover;
  transition: transform 240ms var(--ease-out);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.desktop-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.social-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  text-decoration: none;
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 180ms var(--ease-out);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin-block: 6px;
  background: currentColor;
  transition: transform 220ms var(--ease-drawer), width 180ms var(--ease-out);
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: block;
  padding: calc(var(--header-height) + 44px) 24px 40px;
  background: var(--paper);
  color: var(--ink);
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: clip-path 420ms var(--ease-drawer), opacity 220ms ease;
}

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

.mobile-menu.is-closing {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding-block: 12px;
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 11vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transform: translateY(0);
  opacity: 1;
  transition: transform 420ms var(--ease-drawer), opacity 240ms ease;
}

.mobile-menu.is-closing nav a,
.mobile-menu.is-closing .mobile-menu-phone {
  transform: translateY(26px);
  opacity: 0;
}

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

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

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

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

.mobile-menu-phone {
  display: inline-block;
  margin-top: 36px;
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 700;
  transform: translateY(0);
  opacity: 1;
  transition: transform 420ms var(--ease-drawer) 220ms, opacity 240ms ease 220ms;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--surface);
}

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

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 50% 48%;
  animation: hero-image-enter 1500ms var(--ease-in-out) both;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(to top, rgb(16 16 17 / 0.46), rgb(16 16 17 / 0.16));
}

.hero-content {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: var(--header-height);
  padding-bottom: clamp(38px, 7vh, 76px);
}

.hero-kicker {
  margin-bottom: 14px;
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgb(0 0 0 / 0.44);
  animation: hero-copy-enter 760ms var(--ease-out) 160ms both;
}

.hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(3.7rem, 10vw, 7.2rem);
  font-weight: 800;
  line-height: 0.86;
  text-shadow: 0 2px 20px rgb(0 0 0 / 0.34);
  animation: hero-copy-enter 900ms var(--ease-out) 230ms both;
}

.hero-content > p:not(.hero-kicker) {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.54);
  animation: hero-copy-enter 820ms var(--ease-out) 340ms both;
}

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

.hero-actions {
  animation: hero-copy-enter 760ms var(--ease-out) 430ms both;
}

@keyframes hero-image-enter {
  from {
    transform: scale(1.09);
  }

  to {
    transform: scale(1);
  }
}

@keyframes hero-copy-enter {
  from {
    clip-path: inset(0 0 42% 0);
    opacity: 0;
    transform: translateY(34px);
  }

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease,
    border-color 180ms ease, box-shadow 180ms var(--ease-out);
}

.button:active {
  transform: scale(0.965);
}

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

.button-dark {
  background: rgb(42 36 28 / 0.88);
  color: var(--surface);
}

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

.portrait-frame {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
}

.intro-copy > p:not(.section-label) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.intro-details {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.intro-details span {
  padding: 18px 18px 0 0;
  font-weight: 700;
  line-height: 1.3;
}

.intro-image {
  margin: 0;
  box-shadow: var(--shadow);
}

.menu-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

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

.stacked-heading > p:not(.section-label) {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.menu-column {
  min-width: 0;
  padding-inline: clamp(16px, 2.5vw, 34px);
}

.menu-column + .menu-column {
  border-left: 1px solid var(--line);
}

.menu-column .portrait-frame {
  margin-bottom: 30px;
}

.menu-column .portrait-frame img {
  transition: transform 340ms var(--ease-out);
}

.menu-column-copy h3 {
  transition: transform 220ms var(--ease-out);
}

.menu-column:nth-child(1) img {
  object-position: 51% 48%;
}

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

.menu-column:nth-child(3) img {
  object-position: 50% 45%;
}

.menu-column-copy h3 {
  margin-bottom: 12px;
}

.menu-column-copy > p {
  min-height: 76px;
  margin-bottom: 24px;
  color: var(--muted);
}

.menu-column-copy > p.menu-note {
  min-height: 0;
  margin-top: -8px;
  color: var(--accent-dark);
  font-weight: 700;
}

.menu-list {
  margin: 0;
}

.menu-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}

.menu-list dt,
.menu-list dd {
  margin: 0;
}

.menu-list dd {
  color: var(--accent-dark);
  font-weight: 800;
  white-space: nowrap;
}

.menu-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
}

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

.services-band {
  padding-block: 34px;
  background: var(--ink);
  color: var(--surface);
}

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

.service-grid div {
  min-width: 0;
  padding-inline: clamp(12px, 2vw, 28px);
}

.service-grid div:first-child {
  padding-left: 0;
}

.service-grid div + div {
  border-left: 1px solid rgb(248 236 220 / 0.4);
}

.service-grid strong,
.service-grid span {
  display: block;
}

.service-grid strong {
  margin-bottom: 4px;
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.service-grid span {
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  perspective: 1000px;
}

.gallery-item .portrait-frame {
  transform-style: preserve-3d;
  box-shadow: 0 0 0 rgb(42 36 28 / 0);
  will-change: transform;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.gallery-item img {
  transition: transform 360ms var(--ease-out), filter 220ms ease;
}

.reviews-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}

.reviews-heading h2 {
  margin: 0;
}

.rating-line {
  margin: 0 0 8px;
  color: var(--accent-dark);
}

.rating-line strong {
  color: var(--ink);
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: 2.4rem;
}

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

.review {
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-top: 3px solid var(--ink);
  transition: background-color 240ms ease, transform 260ms var(--ease-out);
}

.review + .review {
  border-left: 1px solid var(--line);
}

.review:first-child {
  padding-left: 0;
}

.review:last-child {
  padding-right: 0;
}

.review-stars {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.review-star-muted {
  color: #c9a47c;
}

.review blockquote {
  margin: 0 0 32px;
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.review > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.review > .review-meta {
  align-items: center;
}

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

.review-avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author {
  color: var(--ink) !important;
  text-decoration: none;
}

.review a {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

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

.visit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(48px, 8vw, 112px);
}

.visit-copy address {
  margin-bottom: 16px;
  font-size: 1.12rem;
  font-style: normal;
}

.visit-phone {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent-dark);
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.hours {
  max-width: 430px;
  margin-bottom: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
}

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

.map-frame {
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

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

.site-footer {
  padding: 72px 0 28px;
  background: var(--ink);
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 0.7fr 0.5fr;
  gap: clamp(28px, 5vw, 72px);
}

.footer-brand img {
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 260px;
  color: #d9bd9c;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--surface);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-grid > div > a:not(.social-link),
.footer-grid > div > p {
  display: block;
  margin-bottom: 9px;
  color: #e2c8aa;
}

.social-link-footer {
  color: var(--surface);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #5a4635;
  color: #c6a989;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

dialog {
  border: 0;
}

dialog::backdrop {
  background: rgb(17 17 18 / 0.78);
  backdrop-filter: blur(5px);
  transition: background-color 220ms ease, backdrop-filter 260ms var(--ease-out);
}

dialog[data-closing="true"]::backdrop {
  background: rgb(17 17 18 / 0);
  backdrop-filter: blur(0);
}

.menu-dialog {
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: clamp(20px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 90px rgb(0 0 0 / 0.36);
}

.menu-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 220ms ease, transform 360ms var(--ease-drawer);
}

.menu-dialog[data-closing="true"] {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition-duration: 160ms;
}

.dialog-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dialog-toolbar h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.dialog-close,
.lightbox-close,
.lightbox-nav {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.dialog-close:active,
.lightbox-close:active,
.lightbox-nav:active,
.menu-tabs button:active,
.gallery-item:active,
.social-link:active,
.brand-link:active {
  transform: scale(0.96);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.menu-tabs button {
  padding: 10px 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}

.menu-tabs button[aria-selected="true"] {
  border-color: var(--accent);
  color: var(--ink);
}

.menu-page img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox {
  width: min(1120px, calc(100vw - 28px));
  max-width: none;
  height: min(880px, calc(100svh - 28px));
  max-height: none;
  padding: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
}

.lightbox[open] {
  opacity: 1;
  transform: scale(1);
  transition: opacity 200ms ease, transform 320ms var(--ease-out);
}

.lightbox[data-closing="true"] {
  opacity: 0;
  transform: scale(0.98);
  transition-duration: 150ms;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.lightbox-close {
  grid-column: 1 / -1;
  justify-self: end;
}

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

.lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.lightbox figcaption {
  padding-top: 10px;
  color: #d9bd9c;
  font-size: 0.88rem;
  text-align: center;
}

.lightbox-nav {
  min-width: 88px;
}

@starting-style {
  .mobile-menu:not([hidden]) {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  .mobile-menu:not([hidden]) nav a,
  .mobile-menu:not([hidden]) .mobile-menu-phone {
    transform: translateY(26px);
    opacity: 0;
  }

  .menu-dialog[open] {
    opacity: 0;
    transform: translateY(30px) scale(0.965);
  }

  .lightbox[open] {
    opacity: 0;
    transform: scale(0.96);
  }

  dialog[open]::backdrop {
    background: rgb(17 17 18 / 0);
    backdrop-filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  clip-path: inset(0 0 16% 0);
  transform: translateY(42px) scale(0.985);
  transition: opacity 680ms ease, clip-path 760ms var(--ease-out), transform 760ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: none;
}

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

.menu-column: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) {
  .brand-link:hover img {
    transform: rotate(-5deg) scale(1.08);
  }

  .social-link:hover svg {
    transform: translateY(-2px) rotate(-7deg) scale(1.08);
  }

  .button:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 10px 22px rgb(42 36 28 / 0.18);
  }

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

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

  .menu-column:hover .portrait-frame img {
    transform: scale(1.045);
  }

  .menu-column:hover .menu-column-copy h3 {
    transform: translateX(7px);
  }

  .gallery-item:hover .portrait-frame {
    box-shadow: 0 18px 36px rgb(42 36 28 / 0.2);
  }

  .gallery-item:hover img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.03);
  }

  .review:hover {
    background: rgb(230 195 156 / 0.2);
    transform: translateY(-6px);
  }

  .dialog-close:hover,
  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: currentColor;
  }

  .menu-dialog .dialog-close:hover {
    color: var(--surface);
    background: var(--ink);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    color: var(--ink);
    background: var(--surface);
  }
}

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

  .intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 42px;
  }

  .menu-column {
    padding-inline: 16px;
  }

  .menu-column-copy > p {
    min-height: 100px;
  }

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

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

  .review,
  .review:first-child,
  .review:last-child {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review:first-child {
    border-top: 3px solid var(--ink);
  }

  .visit-grid {
    gap: 48px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 3;
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 66px;
    --shell: calc(100% - 32px);
  }

  .reveal {
    clip-path: inset(0 0 10% 0);
    transform: translateY(22px) scale(0.992);
    transition-duration: 560ms;
  }

  .section-space {
    padding-block: 78px;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .site-header {
    height: var(--header-height);
    padding-inline: 14px 10px;
  }

  .brand-link,
  .brand-link img {
    width: 48px;
    height: 48px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(3.1rem, 14vw, 5.2rem);
    line-height: 0.86;
  }

  .hero-content {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 340px;
    font-size: 1.04rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 auto;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-details {
    grid-template-columns: 1fr;
  }

  .intro-details span {
    padding-block: 13px;
    border-bottom: 1px solid var(--line);
  }

  .intro-image {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .menu-column,
  .menu-column:first-child,
  .menu-column:last-child {
    padding-inline: 0;
  }

  .menu-column + .menu-column {
    padding-top: 0;
    border-left: 0;
  }

  .menu-column-copy > p {
    min-height: 0;
  }

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

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

  .service-grid div,
  .service-grid div:first-child {
    padding-inline: 14px;
  }

  .service-grid div:nth-child(odd) {
    padding-left: 0;
  }

  .service-grid div:nth-child(3) {
    border-left: 0;
  }

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

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rating-line {
    order: 2;
  }

  .review > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .map-frame,
  .map-frame iframe {
    min-height: 480px;
  }

  .hours p {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .lightbox[open] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

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

  .lightbox-prev,
  .lightbox-next {
    grid-row: 3;
  }

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

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

@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;
    clip-path: none;
    transform: none;
  }

  .hero-image,
  .hero-kicker,
  .hero h1,
  .hero-content > p:not(.hero-kicker),
  .hero-actions {
    animation: none !important;
  }
}
