:root {
  --ink: #171514;
  --muted: #5f4d43;
  --paper: #f7f5ee;
  --paper-deep: #decdae;
  --white: #fff8ee;
  --accent: #ff7404;
  --accent-light: #ff7404;
  --accent-dark: #632e0c;
  --surface-warm: #252525;
  --black-deep: #0b0908;
  --line: #aa835b;
  --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: 2px;
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 72px;
}

* {
  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;
  background: var(--ink);
  color: var(--white);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  clip-path: none;
}

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

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

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

h1,
h2,
h3,
.brand,
.button {
  letter-spacing: -0.035em;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.96;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
}

h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.about .eyebrow.dark {
  color: var(--accent-light);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  transition: background-color 240ms var(--ease-out), color 180ms ease, box-shadow 240ms var(--ease-out);
}

.site-header.is-solid {
  background: rgb(11 9 8 / 0.96);
  color: var(--white);
  box-shadow: 0 1px 0 rgb(23 21 20 / 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgb(255 255 255 / 0.26);
  border-radius: var(--radius);
  object-fit: cover;
  transition: border-color 180ms ease, transform 260ms var(--ease-out);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav > a {
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

.site-nav > a::after,
.text-link::after {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-nav > a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-social svg,
.footer-social svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nav-social path,
.footer-social path,
.nav-social .social-dot,
.footer-social .social-dot {
  stroke: none;
}

.nav-social rect,
.footer-social rect,
.nav-social circle:not(.social-dot),
.footer-social circle:not(.social-dot) {
  fill: none;
}

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

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

.menu-toggle:active {
  transform: scale(0.94);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.6);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.hero-media {
  object-fit: cover;
  object-position: 52% 50%;
  animation: hero-in 1.45s var(--ease-out) both;
}

.hero-scrim {
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.24), rgb(0 0 0 / 0.56));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 96px;
  padding-bottom: clamp(48px, 8vh, 92px);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.84;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.18);
}

.hero-content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 620;
  line-height: 1.45;
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.2);
}

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

.hero .eyebrow,
.hero h1,
.hero-content > p:not(.eyebrow),
.hero-actions {
  animation: hero-copy-in 760ms var(--ease-out) both;
}

.hero .eyebrow {
  animation-delay: 160ms;
}

.hero h1 {
  animation-delay: 230ms;
}

.hero-content > p:not(.eyebrow) {
  animation-delay: 330ms;
}

.hero-actions {
  animation-delay: 430ms;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 160ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

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

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

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

.button-ghost {
  border-color: rgb(255 255 255 / 0.84);
  background: rgb(27 25 23 / 0.18);
  color: var(--white);
}

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

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

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

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.about-copy > p:not(.eyebrow) {
  max-width: 64ch;
  margin-bottom: 28px;
  color: var(--paper-deep);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.portrait-media,
.menu-photo,
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portrait-media {
  margin: 0;
  background: var(--paper-deep);
}

.portrait-media img,
.menu-photo img,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-media img,
.menu-photo img,
.signature-image img {
  transition: transform 760ms var(--ease-out), filter 320ms ease;
}

.text-link {
  display: inline-block;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

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

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

.menu-section .section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px clamp(32px, 7vw, 96px);
}

.menu-section .section-heading h2,
.menu-section .section-heading p {
  grid-column: 1;
}

.menu-section .section-heading .menu-heading-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
}

.section-heading p {
  max-width: 54ch;
  margin-bottom: 0;
  color: var(--paper-deep);
  font-size: 1.08rem;
}

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

.menu-card {
  min-width: 0;
  border-top: 4px solid var(--accent);
  transform-origin: center bottom;
  transition: transform 420ms var(--ease-out);
}

.menu-card:nth-child(2) {
  margin-top: 52px;
}

.menu-card-copy {
  padding: 26px 4px 8px;
}

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

.menu-card-copy > p:not(.menu-price) {
  min-height: 52px;
  margin-bottom: 18px;
  color: var(--paper-deep);
}

.menu-price {
  margin-bottom: 12px;
  color: var(--accent-light);
  font-size: 1.1rem;
  font-weight: 900;
}

.menu-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  color: var(--white);
  font-weight: 720;
}

.menu-action {
  margin-top: 48px;
  text-align: center;
}

.menu-section .button-dark {
  background: var(--accent);
  color: var(--ink);
}

.menu-section .button-dark:hover {
  background: var(--accent-light);
}

.signature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
}

.signature-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  margin-block: 42px;
  overflow: hidden;
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 100px);
  background: var(--accent);
}

.signature-copy p {
  max-width: 42ch;
  color: var(--accent-dark);
  font-size: 1.08rem;
}

.service-band {
  padding-block: 56px;
  background: var(--accent);
  color: var(--ink);
}

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

.service-grid > * {
  display: flex;
  min-height: 104px;
  align-items: center;
  margin: 0;
  padding: 20px 26px;
  border-left: 1px solid rgb(23 21 20 / 0.24);
  font-weight: 800;
}

.service-grid > *:first-child {
  border-left: 0;
}

.service-grid a {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
}

.service-grid a strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.service-grid a span {
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 520;
}

.service-grid .hygiene-badge {
  align-items: center;
}

.hygiene-badge img {
  width: min(100%, 220px);
  height: auto;
  transition: transform 260ms var(--ease-out), filter 220ms ease;
}

.gallery-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.gallery-section .section-heading p {
  color: var(--paper-deep);
}

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

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-warm);
  cursor: zoom-in;
  transition: transform 320ms var(--ease-out);
}

.gallery-item::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.72);
  background: rgb(27 25 23 / 0.66);
  color: var(--white);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px) rotate(-10deg) scale(0.88);
  transition: opacity 180ms ease, transform 260ms var(--ease-out), background-color 180ms ease;
}

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

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

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

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

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}

.reviews-heading h2 {
  margin: 0;
}

.rating {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}

.rating span,
.stars {
  letter-spacing: 0.02em;
}

.rating span {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.review {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: 34px 30px 24px;
  border-left: 1px solid rgb(27 25 23 / 0.38);
}

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

.stars {
  margin-bottom: 26px;
  font-size: 0.9rem;
}

.review-text {
  margin-bottom: 32px;
  font-size: clamp(1.1rem, 2vw, 1.48rem);
  font-weight: 780;
  line-height: 1.36;
}

.review footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  font-size: 0.82rem;
}

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

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

.review footer a {
  font-weight: 760;
}

.visit {
  background: var(--surface-warm);
  color: var(--white);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 100px);
}

.visit-copy address {
  margin-bottom: 12px;
  color: var(--paper-deep);
  font-size: 1.12rem;
  font-style: normal;
}

.phone {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
}

.hours {
  max-width: 440px;
  margin-bottom: 34px;
  border-top: 2px solid var(--ink);
}

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

.hours span {
  color: var(--paper-deep);
}

.hours strong {
  text-align: right;
}

.map-wrap {
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-deep);
}

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

.footer {
  padding-top: 76px;
  background: var(--black-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.7fr 0.7fr;
  gap: 42px;
  padding-bottom: 70px;
}

.footer h2 {
  margin-bottom: 18px;
  color: var(--paper-deep);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  object-fit: cover;
}

.footer-brand p {
  max-width: 340px;
  color: #d5cec6;
}

.footer-bottom {
  padding-block: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.18);
}

.footer-bottom p {
  margin: 0;
  color: #a9a098;
  font-size: 0.78rem;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgb(18 16 15 / 0.96);
  color: var(--white);
}

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

.lightbox::backdrop {
  background: rgb(18 16 15 / 0.86);
}

.lightbox-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 110px minmax(0, 1fr) 110px;
  align-items: center;
  padding: 84px 20px 30px;
}

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

.lightbox.skip-entry-motion[open],
.lightbox.skip-entry-motion[open] .lightbox-inner {
  animation: none;
}

.lightbox figure {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  max-width: 70ch;
  margin-top: 14px;
  color: #ddd6cf;
  font-size: 0.86rem;
  text-align: center;
}

.lightbox button {
  border: 1px solid rgb(255 255 255 / 0.54);
  border-radius: var(--radius);
  background: rgb(27 25 23 / 0.65);
  color: var(--white);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  min-width: 84px;
  min-height: 44px;
}

.lightbox-prev,
.lightbox-next {
  min-height: 52px;
}

@keyframes hero-in {
  from { opacity: 0.58; filter: blur(4px); transform: scale(1.075); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(44px) scale(0.975);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

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

@keyframes lightbox-content-in {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(48px) scale(0.985);
  transition: opacity 660ms var(--ease-out), filter 660ms var(--ease-out), transform 720ms var(--ease-out), clip-path 820ms var(--ease-in-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.motion-ready .portrait-media.reveal,
.motion-ready .signature-image.reveal,
.motion-ready .map-wrap.reveal {
  clip-path: inset(0 0 18% 0);
  transform: translateY(56px) scale(0.96);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    gap: 0;
    overflow-y: auto;
    background: var(--black-deep);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px) scale(0.985);
    transform-origin: top center;
    visibility: hidden;
    transition: opacity 160ms ease, transform 260ms var(--ease-drawer), visibility 0s linear 260ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav > a {
    padding: 17px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 1.06rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 240ms var(--ease-out), background-color 160ms ease;
  }

  .site-nav.is-open > a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open > a:nth-child(1) { transition-delay: 40ms; }
  .site-nav.is-open > a:nth-child(2) { transition-delay: 70ms; }
  .site-nav.is-open > a:nth-child(3) { transition-delay: 100ms; }
  .site-nav.is-open > a:nth-child(4) { transition-delay: 130ms; }
  .site-nav.is-open > a:nth-child(5) { transition-delay: 160ms; }

  .site-nav > a::after {
    display: none;
  }

  .nav-social {
    padding: 20px 22px 28px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 240ms var(--ease-out);
  }

  .site-nav.is-open .nav-social {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 190ms;
  }

  .about,
  .signature,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    order: 1;
  }

  .portrait-media {
    width: min(100%, 520px);
  }

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

  .menu-card:nth-child(2) {
    margin-top: 0;
  }

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

  .service-grid > * {
    border-bottom: 1px solid rgb(23 21 20 / 0.24);
  }

  .service-grid > *:nth-child(odd) {
    border-left: 0;
  }

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

  .review-list {
    grid-template-columns: 1fr;
  }

  .review {
    min-height: 0;
    border-top: 1px solid rgb(27 25 23 / 0.38);
    border-left: 0;
  }

  .review:first-child {
    border-top: 0;
  }

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

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

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

  .section {
    padding-block: 82px;
  }

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

  .brand span {
    font-size: 0.9rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-media {
    object-position: 54% 50%;
  }

  .hero-content {
    padding-top: 82px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 3.7rem);
    line-height: 0.86;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 28ch;
  }

  .hero-actions {
    width: 100%;
  }

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

  .about {
    gap: 38px;
  }

  .portrait-media {
    width: 100%;
  }

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

  .menu-section .section-heading {
    display: block;
  }

  .menu-section .section-heading .menu-heading-action {
    margin-top: 28px;
  }

  .menu-card-copy > p:not(.menu-price) {
    min-height: 0;
  }

  .signature {
    width: 100%;
  }

  .signature-image {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .signature-copy {
    margin-top: -24px;
    padding: 72px 24px 48px;
  }

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

  .service-grid > * {
    min-height: 80px;
    padding: 18px 4px;
    border-bottom: 1px solid rgb(23 21 20 / 0.24);
    border-left: 0;
  }

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

  .gallery-item::after {
    opacity: 1;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .review {
    padding-inline: 0;
  }

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

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

  .hours strong {
    text-align: left;
  }

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

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

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

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

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

  .lightbox figure img {
    max-height: calc(100dvh - 180px);
  }

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

@media (max-width: 390px) {
  .brand span {
    max-width: 118px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img {
    border-color: var(--accent);
    transform: rotate(-4deg) scale(1.07);
  }

  .button:hover {
    box-shadow: 0 7px 0 rgb(0 0 0 / 0.18);
    transform: translateY(-5px) scale(1.02);
  }

  .nav-social a:hover,
  .footer-social a:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-4px) rotate(-3deg) scale(1.04);
  }

  .menu-toggle:hover {
    background: var(--accent);
    color: var(--ink);
    transform: rotate(-2deg) scale(1.04);
  }

  .portrait-media:hover img,
  .signature-image:hover img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.055) rotate(-0.5deg);
  }

  .menu-card:hover {
    transform: translateY(-12px) rotate(-0.45deg);
  }

  .menu-card:hover .menu-photo img {
    filter: saturate(1.1) contrast(1.03);
    transform: scale(1.075);
  }

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

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

  .gallery-item:hover img {
    filter: saturate(1.1) contrast(1.04);
    transform: scale(1.085);
  }

  .gallery-item:hover::after {
    background: var(--accent);
    color: var(--ink);
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }

  .hygiene-badge:hover img {
    filter: saturate(1.08) drop-shadow(0 8px 0 rgb(23 21 20 / 0.18));
    transform: translateY(-5px) rotate(-1.5deg) scale(1.04);
  }

  .lightbox button:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-3px);
  }
}

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

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

  .motion-ready .reveal,
  .motion-ready .portrait-media.reveal,
  .motion-ready .signature-image.reveal,
  .motion-ready .map-wrap.reveal {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
  }

}
