:root {
  --paper: #f5eee4;
  --paper-mid: #efe1d0;
  --paper-deep: #e2cbb1;
  --ink: #2a211b;
  --muted: #6c5a4a;
  --accent: #a8512f;
  --accent-dark: #743621;
  --line: #cbb39b;
  --white: #fffaf3;
  --footer-muted: #dbc7ad;
  --map: #d2bea5;
  --header-height: 72px;
  --page-gutter: clamp(1rem, 4vw, 4.5rem);
  --max-width: 1380px;
  --radius: 2px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
}

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

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

button,
.button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #d58b47;
  outline-offset: 4px;
}

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

figure {
  margin: 0;
}

h1,
h2,
h3,
.wordmark span,
.footer-wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.1;
}

.visually-hidden {
  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: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--accent-dark);
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: var(--paper);
  border-bottom-color: rgb(42 33 27 / 0.14);
  backdrop-filter: blur(16px) saturate(120%);
}

.site-header:not(.is-scrolled) .wordmark small {
  color: rgb(255 255 255 / 0.82);
}

.site-header:not(.is-scrolled) .desktop-nav a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-shell {
  width: min(100%, var(--max-width));
  height: 100%;
  margin: 0 auto;
  padding-inline: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.wordmark small {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.1rem, 2.5vw, 2.5rem);
  white-space: nowrap;
}

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

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

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

.desktop-nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.65rem 1.1rem;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

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

.nav-cta:active {
  transform: scale(0.97);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  transition: transform 160ms var(--ease-out), border-color 180ms ease, background-color 180ms ease;
}

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

.site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgb(255 255 255 / 0.78);
}

.menu-toggle span[aria-hidden] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

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

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  padding: 1rem var(--page-gutter) 1.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-drawer), display 220ms allow-discrete;
}

.mobile-menu[hidden] {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}

@starting-style {
  .mobile-menu:not([hidden]) {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.mobile-menu a {
  display: block;
  padding: 0.9rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a:last-child {
  color: var(--accent);
}

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

.hero::before {
  position: absolute;
  z-index: -1;
  top: -28%;
  left: -18%;
  width: min(72vw, 68rem);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(238 174 106 / 0.24) 0%, rgb(238 174 106 / 0.08) 38%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translate3d(-4%, -2%, 0) scale(0.94);
  animation: hero-glow-drift 16s var(--ease-in-out) infinite alternate;
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  display: block;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.025) translate3d(0, 0, 0);
  animation: hero-ken-burns 20s var(--ease-in-out) infinite alternate;
}

.hero-scrim {
  z-index: -2;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.18) 0%, rgb(0 0 0 / 0.22) 42%, rgb(0 0 0 / 0.42) 100%);
}

.hero-content {
  position: relative;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 1rem) var(--page-gutter) clamp(3.5rem, 8vh, 6rem);
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > p:not(.eyebrow),
.hero-actions {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-content-enter 760ms var(--ease-out) forwards;
}

.hero-content > h1 {
  animation-delay: 70ms;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
  animation: eyebrow-line-breathe 3.4s var(--ease-in-out) infinite;
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-shadow: 0 2px 20px rgb(0 0 0 / 0.28);
}

.hero-content > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cue {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(3.5rem, 8vh, 6rem);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgb(255 250 243 / 0.86);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-cue i {
  position: relative;
  width: 1px;
  height: 3rem;
  overflow: hidden;
  background: rgb(255 250 243 / 0.3);
}

.hero-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  transform: translateY(-100%);
  animation: scroll-cue-flow 2.2s var(--ease-in-out) infinite;
}

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

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

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

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

.button-ghost {
  color: var(--white);
  background: rgb(42 33 27 / 0.3);
  border-color: rgb(255 250 243 / 0.8);
  backdrop-filter: blur(8px);
}

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

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--page-gutter);
}

.content-grid,
.menu-grid,
.gallery-grid,
.reviews-section,
.visit-details,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.intro-section {
  position: relative;
  overflow: clip;
}

.intro-section::before {
  position: absolute;
  top: 12%;
  right: -10rem;
  width: 25rem;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgb(168 81 47 / 0.18);
  border-radius: 50%;
  opacity: 0.7;
  animation: ambient-orbit 14s var(--ease-in-out) infinite alternate;
}

.intro-copy > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

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

.about-photo {
  box-shadow: 0 2rem 5rem rgb(80 46 28 / 0.14);
  transform: translate3d(0, 0, 0) rotate(-0.7deg);
  animation: portrait-float 8s var(--ease-in-out) infinite alternate;
}

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

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

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-line li {
  margin-right: 1.1rem;
  padding-right: 1.1rem;
  font-size: 0.9rem;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.service-line li:last-child {
  border-right: 0;
}

.brand-ribbon {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--accent);
  border-block: 1px solid rgb(255 250 243 / 0.25);
}

.brand-ribbon::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgb(116 54 33 / 0.3), transparent 18%, transparent 82%, rgb(116 54 33 / 0.3));
}

.brand-ribbon-track {
  width: max-content;
  display: flex;
  align-items: center;
  padding-block: clamp(0.8rem, 1.6vw, 1.25rem);
  transform: translate3d(0, 0, 0);
  animation: ribbon-flow 26s linear infinite;
}

.brand-ribbon-track span {
  flex: 0 0 auto;
  padding-right: 0.75em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--paper-deep);
}

.menu-section::before,
.menu-section::after {
  position: absolute;
  z-index: -1;
  width: 24rem;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.45;
}

.menu-section::before {
  top: -10rem;
  left: -9rem;
  background: radial-gradient(circle, rgb(255 250 243 / 0.52), transparent 68%);
  animation: menu-glow-left 13s var(--ease-in-out) infinite alternate;
}

.menu-section::after {
  right: -10rem;
  bottom: -12rem;
  background: radial-gradient(circle, rgb(168 81 47 / 0.2), transparent 68%);
  animation: menu-glow-right 15s var(--ease-in-out) infinite alternate;
}

.section-heading {
  width: min(100%, var(--max-width));
  margin: 0 auto clamp(2.5rem, 6vw, 4.5rem);
}

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

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

.menu-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 260ms var(--ease-out);
}

.menu-card .portrait-frame {
  box-shadow: 0 1.25rem 3rem rgb(90 52 30 / 0.12);
  transition: box-shadow 260ms ease;
}

.menu-photo img {
  object-position: 50% 50%;
  transition: transform 600ms var(--ease-out), filter 260ms ease;
}

.menu-copy {
  padding-top: 1.5rem;
}

.menu-copy h3 {
  margin-bottom: 0.65rem;
}

.menu-copy p {
  min-height: 3.2em;
  color: var(--muted);
}

.menu-copy ul {
  margin: 1.2rem 0 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.menu-copy li {
  padding-block: 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-note {
  width: min(100%, var(--max-width));
  margin: 2.25rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.signature-section {
  width: min(100%, calc(var(--max-width) + 2 * var(--page-gutter)));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: stretch;
}

.signature-media {
  min-height: 38rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.signature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.025) translate3d(0, 0, 0);
  animation: signature-image-breathe 12s var(--ease-in-out) infinite alternate;
}

.signature-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--accent);
}

.signature-copy::before {
  position: absolute;
  z-index: -1;
  right: -20%;
  bottom: -32%;
  width: 26rem;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 250 243 / 0.16), transparent 68%);
  animation: signature-glow 10s var(--ease-in-out) infinite alternate;
}

.signature-stamp {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2.5rem);
  right: clamp(1.25rem, 3vw, 2.5rem);
  width: clamp(4.5rem, 8vw, 7rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  border: 1px solid rgb(255 250 243 / 0.42);
  border-radius: 50%;
  color: rgb(255 250 243 / 0.72);
  font-family: Georgia, "Times New Roman", serif;
  transform: rotate(-8deg);
  animation: stamp-turn 18s linear infinite;
}

.signature-stamp::before,
.signature-stamp::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.signature-stamp::before {
  inset: 0.45rem;
  border: 1px dashed rgb(255 250 243 / 0.34);
}

.signature-stamp::after {
  top: -0.18rem;
  left: 50%;
  width: 0.38rem;
  aspect-ratio: 1;
  background: var(--white);
  transform: translateX(-50%);
}

.signature-stamp span {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.signature-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 9ch;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.signature-copy p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin-bottom: 2rem;
}

.text-link {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  display: inline-block;
  margin-left: 0.55rem;
  content: "→";
  transition: transform 180ms var(--ease-out);
}

.gallery-section {
  padding-top: clamp(3rem, 7vw, 6rem);
  background: var(--paper-mid);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 1.5rem);
}

.gallery-item {
  appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  transform: translate3d(0, 0, 0);
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.gallery-item img {
  object-position: 50% 50%;
  transition: transform 520ms var(--ease-out), filter 240ms ease;
}

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

.reviews-section {
  padding: clamp(5rem, 10vw, 9rem) var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.reviews-summary {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.reviews-summary h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.reviews-summary > p:last-child {
  color: var(--muted);
}

.rating {
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.rating span {
  display: block;
  margin-top: 0.75rem;
  font-family: Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.reviews-list {
  border-top: 1px solid var(--line);
}

.review {
  position: relative;
  padding: 2rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms var(--ease-out), border-color 220ms ease;
}

.review::before {
  position: absolute;
  top: 1.85rem;
  bottom: 2rem;
  left: -1.25rem;
  width: 2px;
  content: "";
  background: var(--accent);
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms var(--ease-out);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-author {
  display: inline-flex;
  align-items: center;
  order: 1;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 1rem;
  text-decoration: none;
}

.review-author:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-deep);
  object-fit: cover;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.review-stars {
  order: 2;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.review p {
  max-width: 54ch;
  margin: 1rem 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.review > a {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.visit-section {
  padding: clamp(5rem, 10vw, 9rem) 0 0;
  background: var(--paper-mid);
}

.visit-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(3rem, 7vw, 8rem);
  width: min(100%, calc(var(--max-width) + 2 * var(--page-gutter)));
  padding-inline: var(--page-gutter);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  box-sizing: border-box;
}

.visit-copy,
.hours {
  min-width: 0;
}

.visit-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, auto);
  column-gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.visit-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.4rem;
  grid-column: 1 / -1;
}

.visit-copy address {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-style: normal;
  font-size: 1.05rem;
}

.phone-link {
  display: block;
  margin-bottom: 0;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 700;
  text-decoration-color: transparent;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

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

.hours h3 {
  margin-bottom: 1.4rem;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  transition: transform 180ms var(--ease-out), border-color 180ms ease;
}

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

.hours dd {
  font-weight: 800;
}

.hours > p {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  margin: 0;
  min-height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: var(--map);
}

.map-frame iframe {
  width: 100%;
  height: clamp(420px, 42vw, 560px);
  display: block;
  border: 0;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
  padding: 3rem var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: start;
  color: var(--white);
  background: var(--accent);
}

.site-footer::before {
  position: absolute;
  z-index: -1;
  top: -140%;
  bottom: -140%;
  left: -30%;
  width: 22%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgb(255 250 243 / 0.13), transparent);
  transform: translate3d(-120%, 0, 0) rotate(12deg);
  animation: footer-light-pass 12s linear infinite;
}

.site-footer > div {
  min-width: 0;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
}

.footer-wordmark strong {
  font-size: 1.6rem;
}

.footer-wordmark span,
.site-footer p {
  color: var(--footer-muted);
  font-size: 0.85rem;
}

.site-footer p {
  margin-bottom: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-links a {
  position: relative;
  text-decoration: none;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.lightbox {
  width: min(94vw, 1100px);
  max-width: none;
  height: min(94vh, 900px);
  max-height: none;
  padding: 3.5rem 5rem;
  color: var(--white);
  background: rgb(42 33 27 / 0.98);
  border: 1px solid rgb(255 250 243 / 0.2);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out), display 260ms allow-discrete, overlay 260ms allow-discrete;
}

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

.lightbox[open].is-closing {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition-duration: 160ms;
}

.lightbox::backdrop {
  background: rgb(35 26 21 / 0.88);
  opacity: 0;
  transition: opacity 220ms ease, display 220ms allow-discrete, overlay 220ms allow-discrete;
}

.lightbox[open]::backdrop {
  opacity: 1;
}

.lightbox[open].is-closing::backdrop {
  opacity: 0;
  transition-duration: 140ms;
}

@starting-style {
  .lightbox[open] {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  .lightbox[open]::backdrop {
    opacity: 0;
  }
}

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

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: contain;
}

.lightbox figcaption {
  text-align: center;
  font-size: 0.88rem;
}

.lightbox button {
  position: absolute;
  min-width: 48px;
  min-height: 44px;
  color: var(--white);
  background: rgb(255 250 243 / 0.12);
  border: 1px solid rgb(255 250 243 / 0.7);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 150ms var(--ease-out), color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.lightbox-close {
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.4rem 0.75rem;
}

.lightbox-nav {
  top: 50%;
  padding: 0.55rem;
  transform: translateY(-50%);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.lightbox-prev {
  left: 0.75rem;
}

.lightbox-next {
  right: 0.75rem;
}

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

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

.reveal:not(.is-visible) .menu-card,
.reveal:not(.is-visible) .gallery-item,
.reveal:not(.is-visible) .review,
.reveal:not(.is-visible) .hours dl > div {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible .menu-card,
.reveal.is-visible .gallery-item,
.reveal.is-visible .review,
.reveal.is-visible .hours dl > div {
  opacity: 1;
  transform: translateY(0);
  animation: child-reveal 620ms var(--ease-out) backwards;
}

.reveal.is-visible :is(.menu-card, .gallery-item, .review, .hours dl > div):nth-child(2) {
  animation-delay: 55ms;
}

.reveal.is-visible :is(.menu-card, .gallery-item, .review, .hours dl > div):nth-child(3) {
  animation-delay: 110ms;
}

.reveal.is-visible :is(.gallery-item, .hours dl > div):nth-child(4) {
  animation-delay: 165ms;
}

.reveal.is-visible .gallery-item:nth-child(5) {
  animation-delay: 220ms;
}

.reveal.is-visible .gallery-item:nth-child(6) {
  animation-delay: 275ms;
}

@keyframes hero-ken-burns {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(-0.9%, 0.6%, 0);
  }
}

@keyframes hero-glow-drift {
  from {
    opacity: 0.56;
    transform: translate3d(-4%, -2%, 0) scale(0.94);
  }

  to {
    opacity: 0.82;
    transform: translate3d(18%, 10%, 0) scale(1.08);
  }
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eyebrow-line-breathe {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(0.55);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes scroll-cue-flow {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes ambient-orbit {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.96);
  }

  to {
    transform: translate3d(-4rem, 2rem, 0) rotate(8deg) scale(1.04);
  }
}

@keyframes portrait-float {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.7deg);
  }

  to {
    transform: translate3d(0, -10px, 0) rotate(0.35deg);
  }
}

@keyframes ribbon-flow {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes menu-glow-left {
  from {
    transform: translate3d(-8%, -4%, 0) scale(0.92);
  }

  to {
    transform: translate3d(20%, 18%, 0) scale(1.12);
  }
}

@keyframes menu-glow-right {
  from {
    transform: translate3d(8%, 6%, 0) scale(1.08);
  }

  to {
    transform: translate3d(-18%, -14%, 0) scale(0.92);
  }
}

@keyframes signature-image-breathe {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.065) translate3d(0.8%, -0.5%, 0);
  }
}

@keyframes signature-glow {
  from {
    opacity: 0.55;
    transform: translate3d(0, 0, 0) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate3d(-12%, -8%, 0) scale(1.12);
  }
}

@keyframes stamp-turn {
  from {
    transform: rotate(-8deg);
  }

  to {
    transform: rotate(352deg);
  }
}

@keyframes footer-light-pass {
  0%, 22% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0) rotate(12deg);
  }

  32%, 48% {
    opacity: 1;
  }

  60%, 100% {
    opacity: 0;
    transform: translate3d(720%, 0, 0) rotate(12deg);
  }
}

@keyframes child-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

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

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.8rem rgb(65 34 20 / 0.18);
  }

  .hero-cue:hover {
    color: var(--white);
  }

  .menu-card:hover {
    transform: translateY(-7px);
  }

  .menu-card:hover .portrait-frame {
    box-shadow: 0 1.8rem 4rem rgb(90 52 30 / 0.2);
  }

  .menu-card:hover .menu-photo img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.045);
  }

  .text-link:hover::after {
    transform: translateX(5px);
  }

  .gallery-item:hover {
    box-shadow: 0 1.5rem 3.5rem rgb(80 46 28 / 0.18);
    transform: translateY(-7px) rotate(-0.35deg);
  }

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

  .gallery-item:hover img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.045);
  }

  .review:hover {
    border-bottom-color: rgb(168 81 47 / 0.5);
    transform: translateX(8px);
  }

  .review:hover::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .review:hover .review-avatar {
    box-shadow: 0 0.55rem 1.4rem rgb(80 46 28 / 0.16);
    transform: scale(1.06) rotate(-2deg);
  }

  .phone-link:hover {
    color: var(--accent);
    text-decoration-color: currentColor;
  }

  .hours dl div:hover {
    border-bottom-color: var(--accent);
    transform: translateX(5px);
  }

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

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

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-cue {
    display: none;
  }

  .intro-grid,
  .signature-section,
  .reviews-section,
  .visit-details {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 46rem;
  }

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

  .about-photo {
    width: min(100%, 34rem);
  }

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

  .menu-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.75rem);
  }

  .signature-section {
    gap: 0;
  }

  .signature-media {
    min-height: 32rem;
  }

  .reviews-summary {
    position: static;
  }

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

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

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

  .wordmark span {
    font-size: 1.05rem;
  }

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

  .hero-content {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: clamp(2.5rem, 8vh, 4rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 16vw, 5.1rem);
    line-height: 0.9;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 22rem;
    font-size: 1rem;
  }

  .button {
    min-height: 50px;
  }

  .section {
    padding-block: 4.75rem;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .intro-grid {
    gap: 2.5rem;
  }

  .intro-section::before {
    display: none;
  }

  .about-photo {
    animation: none;
    transform: none;
  }

  .brand-ribbon-track {
    animation-duration: 20s;
  }

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

  .service-line li {
    margin-right: 0.7rem;
    padding-right: 0.7rem;
    font-size: 0.76rem;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .menu-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .menu-card + .menu-card {
    margin-top: 1.5rem;
  }

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

  .signature-section {
    padding-block: 4.75rem;
  }

  .signature-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .signature-copy {
    padding: 2rem 1.25rem 2.4rem;
  }

  .signature-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .signature-stamp {
    top: 1rem;
    right: 1rem;
    opacity: 0.52;
  }

  .menu-section::before,
  .menu-section::after {
    opacity: 0.28;
    animation: none;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .reviews-section {
    gap: 2rem;
    padding-block: 4.75rem;
  }

  .review-meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .review p {
    font-size: 1.35rem;
  }

  .visit-details {
    gap: 3rem;
  }

  .hours dl div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

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

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

  .footer-links {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .lightbox {
    width: 100vw;
    height: 100dvh;
    padding: 4.5rem 3.5rem;
    border: 0;
  }

  .lightbox-prev {
    left: 0.35rem;
  }

  .lightbox-next {
    right: 0.35rem;
  }
}

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

  .hero-media img,
  .hero::before,
  .eyebrow::before,
  .hero-cue i::after,
  .intro-section::before,
  .about-photo,
  .brand-ribbon-track,
  .menu-section::before,
  .menu-section::after,
  .signature-media img,
  .signature-copy::before,
  .signature-stamp,
  .site-footer::before {
    animation: none !important;
  }

  .hero-media img,
  .about-photo,
  .brand-ribbon-track,
  .signature-media img,
  .signature-stamp {
    transform: none !important;
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > p:not(.eyebrow),
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: reduced-fade 180ms ease-out both;
    animation-delay: 0ms;
  }

  .reveal,
  .reveal:not(.is-visible) .menu-card,
  .reveal:not(.is-visible) .gallery-item,
  .reveal:not(.is-visible) .review,
  .reveal:not(.is-visible) .hours dl > div,
  .reveal.is-visible .menu-card,
  .reveal.is-visible .gallery-item,
  .reveal.is-visible .review,
  .reveal.is-visible .hours dl > div {
    opacity: 1;
    transform: none;
    animation: none;
    transition: opacity 180ms ease;
  }

  .button:active,
  .nav-cta:active,
  .menu-toggle:active,
  .gallery-item:active,
  .lightbox button:active,
  .lightbox-nav:active,
  .menu-card:hover,
  .gallery-item:hover,
  .gallery-item:nth-child(even):hover,
  .review:hover,
  .review:hover .review-avatar,
  .hours dl div:hover {
    transform: none;
  }
}

@keyframes reduced-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
