:root {
  --paper: #d2b9a2;
  --paper-deep: #b4967d;
  --paper-soft: #e0ccb8;
  --ink: #1f2c3f;
  --muted: #5d5148;
  --line: #9e836d;
  --accent: #705234;
  --accent-dark: #4f3826;
  --white: #f3e4d6;
  --radius: 14px;
  --header-height: 72px;
  --shell: min(1240px, calc(100% - 48px));
  --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);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

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

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

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 4px;
  background: var(--accent);
  box-shadow: 0 2px 12px rgb(112 82 52 / 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  animation: scroll-progress linear both;
  animation-timeline: scroll(root block);
  will-change: transform;
}

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

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

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

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 8.6vw, 7rem);
  color: var(--white);
}

h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.4vw, 5.15rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-solid,
.site-header.menu-open {
  background: rgb(210 185 162 / 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgb(31 44 63 / 0.12);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.desktop-nav a,
.footer-grid nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 650;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
}

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

.social-link:active,
.button:active,
.gallery-item:active {
  transform: scale(0.96);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

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

.menu-toggle-lines span {
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms var(--ease-out);
}

.site-header.menu-open .menu-toggle-lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 29;
  padding: 36px 24px 28px;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-18px);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 360ms var(--ease-drawer), clip-path 360ms var(--ease-drawer);
  will-change: transform, opacity, clip-path;
}

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

.mobile-menu.is-open {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.mobile-menu.skip-motion,
.mobile-menu.skip-motion nav a,
.mobile-menu.skip-motion .mobile-menu-contact {
  transition: none;
}

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

.mobile-menu nav a {
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: clamp(2.15rem, 9vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 280ms var(--ease-out), padding-left 180ms ease;
}

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

.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 40ms; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 75ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 110ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 145ms; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: 180ms; }

.mobile-menu-contact {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease 190ms, transform 280ms var(--ease-out) 190ms;
}

.mobile-menu.is-open .mobile-menu-contact {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-contact a {
  color: var(--ink);
  font-weight: 700;
}

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

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 52% 54%;
  animation: hero-image-settle 1400ms var(--ease-out) both;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.28) 0%, rgb(0 0 0 / 0.38) 44%, rgb(0 0 0 / 0.68) 100%);
}

.hero-content {
  padding-block: calc(var(--header-height) + 24px) clamp(52px, 8vh, 88px);
}

.hero-content > * {
  animation: hero-content-enter 760ms var(--ease-out) both;
}

.hero-content > :nth-child(1) { animation-delay: 120ms; }
.hero-content > :nth-child(2) { animation-delay: 190ms; }
.hero-content > :nth-child(3) { animation-delay: 270ms; }
.hero-content > :nth-child(4) { animation-delay: 350ms; }

.site-header > .brand,
.site-header > .desktop-nav,
.site-header > .header-actions {
  animation: header-enter 620ms var(--ease-out) both;
}

.site-header > .desktop-nav { animation-delay: 80ms; }
.site-header > .header-actions { animation-delay: 140ms; }

.hero-copy {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 0 0 rgb(31 44 63 / 0);
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

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

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

.button-ghost {
  border-color: rgb(243 228 214 / 0.82);
  background: rgb(31 44 63 / 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgb(31 44 63 / 0.32);
}

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

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

@media (min-width: 768px) {
  .hero-content {
    width: min(760px, calc(100% - 48px));
    max-width: none;
    margin-left: auto;
    margin-right: max(24px, 8vw);
    text-align: right;
  }

  .hero-content h1 {
    max-width: none;
    margin-bottom: 14px;
    font-size: clamp(3.4rem, 7vw, 6.2rem);
  }

  .hero-content .hero-copy {
    max-width: 540px;
    margin-bottom: 22px;
    margin-left: auto;
    font-size: clamp(1rem, 1.65vw, 1.2rem);
  }

  .hero-actions {
    justify-content: flex-end;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-inline: 20px;
    font-size: 0.9rem;
  }
}

.fact-rail {
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

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

.fact-grid > div {
  display: grid;
  gap: 3px;
  min-height: 118px;
  padding: 28px 30px;
  border-left: 1px solid var(--line);
  transition: background-color 220ms ease, transform 220ms var(--ease-out);
}

.fact-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.fact-grid strong {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.fact-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.about-copy > p:not(.eyebrow) {
  max-width: 64ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
  font-weight: 750;
}

.text-link span {
  display: inline-block;
  transition: transform 180ms var(--ease-out);
}

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

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

.about-media {
  margin: 0;
  border-radius: var(--radius);
}

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

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

.section-heading {
  display: grid;
  gap: 2px;
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading p {
  max-width: 59ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.menu-card {
  min-width: 0;
  transform-origin: center bottom;
  transition: transform 260ms var(--ease-out);
}

.menu-media {
  margin-bottom: 25px;
  border-radius: var(--radius);
  background: #bfa893;
  box-shadow: 0 12px 30px rgb(31 44 63 / 0.08);
  transition: box-shadow 260ms ease;
}

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

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

.menu-card:nth-child(3) .menu-media img {
  object-position: 48% 47%;
}

.menu-card-copy {
  padding-inline: 2px;
}

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

.menu-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.menu-card li {
  font-weight: 650;
}

.service-story {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: stretch;
  gap: 0;
}

.service-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 82px);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--ink);
  color: var(--white);
}

.service-copy h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.55rem);
}

.service-copy > p {
  max-width: 38ch;
  color: #d7c6b6;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin-top: 30px;
}

.service-list span {
  padding-top: 12px;
  border-top: 1px solid rgb(243 228 214 / 0.22);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-section {
  padding-top: 20px;
  background: var(--paper-soft);
}

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

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #bfa893;
  cursor: zoom-in;
  box-shadow: 0 12px 28px rgb(31 44 63 / 0.08);
  transform-origin: center bottom;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.gallery-item:nth-child(1) img { object-position: 50% 48%; }
.gallery-item:nth-child(2) img { object-position: 50% 50%; }
.gallery-item:nth-child(3) img { object-position: 50% 56%; }
.gallery-item:nth-child(4) img { object-position: 50% 48%; }
.gallery-item:nth-child(5) img { object-position: 50% 49%; }
.gallery-item:nth-child(6) img { object-position: 50% 48%; }

.reviews {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(56px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.reviews-title {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.rating-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 14px;
}

.rating-line strong {
  grid-row: span 2;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 3.8rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.rating-line span,
.review-stars {
  color: var(--accent);
  letter-spacing: 0.1em;
}

.rating-line small {
  color: var(--muted);
}

.reviews-note {
  max-width: 280px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.review-list {
  display: grid;
  gap: 0;
}

.review {
  padding-block: 32px 38px;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms var(--ease-out), border-color 220ms ease;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar-link {
  display: block;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-deep);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.review-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
}

.review blockquote {
  max-width: 700px;
  margin: 12px 0 26px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: clamp(1.42rem, 2.7vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-footer cite {
  font-style: normal;
  font-weight: 750;
}

.review-date {
  color: var(--muted);
  font-size: 0.84rem;
}

.review-footer a {
  border-bottom: 1px solid currentColor;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.visit-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: stretch;
  gap: clamp(38px, 6vw, 84px);
}

.visit-details h2 {
  font-size: clamp(2.55rem, 4.8vw, 4.8rem);
}

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

.phone {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 750;
}

.hours {
  display: grid;
  max-width: 480px;
  margin-bottom: 30px;
}

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

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

.hours strong {
  white-space: nowrap;
}

.map-frame {
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #bfa893;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr auto;
  gap: 40px;
  align-items: start;
}

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

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.footer-brand strong {
  max-width: 190px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.footer-grid p {
  margin-bottom: 6px;
  color: var(--muted);
}

.footer-grid nav {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-socials {
  display: flex;
  gap: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  place-items: center;
  background: rgb(15 22 31 / 0.94);
  color: var(--white);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 70px 18px 28px;
}

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

.lightbox figcaption {
  min-height: 28px;
  margin-top: 12px;
  text-align: center;
  font-size: 0.88rem;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgb(243 228 214 / 0.5);
  background: rgb(15 22 31 / 0.72);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding-inline: 16px;
  border-radius: 999px;
}

.lightbox-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
}

.lightbox-prev {
  grid-column: 1;
}

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

.lightbox-next {
  grid-column: 3;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 680ms ease, transform 760ms var(--ease-out), clip-path 860ms var(--ease-in-out), box-shadow 260ms ease;
  will-change: transform, opacity;
}

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

.reveal-ready .gallery-item.reveal.is-visible:active {
  transform: scale(0.96);
}

.reveal-ready .portrait-media.reveal,
.reveal-ready .service-image.reveal {
  clip-path: inset(0 0 18% 0 round var(--radius));
}

.reveal-ready .portrait-media.reveal.is-visible,
.reveal-ready .service-image.reveal.is-visible {
  clip-path: inset(0 0 0 0 round var(--radius));
}

.lightbox:not([hidden]) {
  animation: lightbox-enter 260ms var(--ease-out) both;
}

.lightbox:not([hidden]) figure {
  animation: lightbox-figure-enter 360ms var(--ease-out) both;
}

.lightbox.skip-motion,
.lightbox.skip-motion figure {
  animation: none;
}

.lightbox-close,
.lightbox-nav {
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

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

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

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

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes lightbox-figure-enter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scroll-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 10px 24px rgb(15 22 31 / 0.22);
  }

  .social-link:hover {
    background: rgb(112 82 52 / 0.18);
    transform: translateY(-3px) rotate(4deg) scale(1.06);
  }

  .button:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 14px 28px rgb(15 22 31 / 0.2);
  }

  .mobile-menu nav a:hover {
    padding-left: 10px;
  }

  .fact-grid > div:hover {
    z-index: 1;
    background: rgb(243 228 214 / 0.28);
    transform: translateY(-6px);
  }

  .text-link:hover span {
    transform: translateX(7px) rotate(-8deg);
  }

  .about-media:hover img,
  .service-image:hover img {
    transform: scale(1.075);
  }

  .menu-card:hover,
  .reveal-ready .menu-card.reveal.is-visible:hover {
    transform: translateY(-12px) rotate(-0.55deg);
  }

  .menu-card:nth-child(even):hover,
  .reveal-ready .menu-card.reveal.is-visible:nth-child(even):hover {
    transform: translateY(-12px) rotate(0.55deg);
  }

  .menu-card:hover .menu-media {
    box-shadow: 0 24px 54px rgb(31 44 63 / 0.2);
  }

  .menu-card:hover .menu-media img {
    transform: scale(1.08);
  }

  .gallery-item:hover,
  .reveal-ready .gallery-item.reveal.is-visible:hover {
    box-shadow: 0 26px 54px rgb(31 44 63 / 0.22);
    transform: translateY(-12px) rotate(-1.1deg) scale(1.015);
  }

  .gallery-item:nth-child(even):hover,
  .reveal-ready .gallery-item.reveal.is-visible:nth-child(even):hover {
    transform: translateY(-12px) rotate(1.1deg) scale(1.015);
  }

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

  .review:hover,
  .reveal-ready .review.reveal.is-visible:hover {
    border-color: var(--accent);
    transform: translateX(9px);
  }

  .review:hover .review-avatar-link {
    box-shadow: 0 10px 24px rgb(31 44 63 / 0.18);
    transform: rotate(-5deg) scale(1.08);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    border-color: var(--white);
    background: rgb(112 82 52 / 0.9);
    transform: translateY(-2px) scale(1.06);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .social-link {
    display: none;
  }

  .about {
    grid-template-columns: 1fr 0.72fr;
    gap: 44px;
  }

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

  .service-image {
    min-height: 420px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .service-copy {
    border-radius: 0 0 var(--radius) var(--radius);
  }

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

  .reviews-title {
    position: static;
  }

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

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

  .footer-socials {
    grid-column: 3;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: min(100% - 32px, 640px);
    --header-height: 66px;
  }

  .section {
    padding-block: 76px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11.5vw, 4rem);
  }

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

  .brand span {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero-image {
    object-position: 8% 52%;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    min-width: 132px;
  }

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

  .fact-grid > div {
    min-height: 102px;
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
  }

  .fact-grid > div:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .about,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 46px;
  }

  .about-copy {
    order: 1;
  }

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

  .menu-grid {
    gap: 54px;
  }

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

  .service-story {
    width: var(--shell);
  }

  .service-image {
    min-height: 330px;
  }

  .service-copy {
    padding: 34px 24px 40px;
  }

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

  .gallery-section {
    padding-top: 0;
  }

  .gallery-grid {
    gap: 14px;
  }

  .reviews {
    gap: 48px;
  }

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

  .visit-details h2 {
    font-size: clamp(2.45rem, 11vw, 3.9rem);
  }

  .hours div {
    font-size: 0.9rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

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

  .footer-socials {
    grid-column: auto;
    justify-self: end;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .lightbox {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
  }

  .lightbox figure {
    padding-inline: 4px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 390px) {
  .menu-toggle-label {
    display: none;
  }

  .hero-actions .button {
    flex: 1;
    min-width: 0;
    padding-inline: 16px;
  }
}

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

  .scroll-progress {
    display: none;
  }

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

  .reveal-ready .reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
