:root {
  --ink: #1c1c1c;
  --ink-soft: #5d554e;
  --paper: #f3efeb;
  --paper-deep: #d5cfcd;
  --white: #fbf8f5;
  --accent: #9b4d35;
  --accent-dark: #613323;
  --line: #c6bbb8;
  --radius: 14px;
  --shadow: 0 22px 70px rgb(28 28 28 / .18);
  --page: min(1200px, calc(100% - 40px));
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; }
figure { margin: 0; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--white));
  box-shadow: 0 0 14px rgb(155 77 53 / .36);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--accent);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  color: var(--white);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.site-header.is-solid {
  color: var(--ink);
  background: rgb(243 239 235 / .96);
  box-shadow: 0 1px 0 rgb(28 28 28 / .12);
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--white);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.social-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background 160ms ease, color 160ms ease;
}
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.social-link:active { transform: scale(.96); }
.menu-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms ease;
}
.menu-toggle:active { transform: scale(.97); }
.menu-lines { width: 20px; display: grid; gap: 5px; }
.menu-lines i { height: 1px; width: 100%; display: block; background: currentColor; transition: transform 220ms var(--ease-out); }
.menu-toggle[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3px) rotate(-45deg); }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 22px max(24px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background: var(--accent-dark);
  opacity: 0;
  transform: translateY(-2%);
  transition: opacity 220ms ease, transform 280ms var(--ease-drawer);
}
.menu-panel[hidden] { display: none; }
.menu-panel.is-open { opacity: 1; transform: translateY(0); }
.menu-panel-top { display: flex; justify-content: space-between; align-items: center; }
.menu-panel-top p { margin: 0; font-size: 1.1rem; font-weight: 750; }
.icon-button {
  min-height: 44px;
  padding: 8px 14px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms ease;
}
.icon-button:active { transform: scale(.96); }
.menu-panel nav {
  width: min(760px, 100%);
  margin-top: clamp(60px, 10vh, 110px);
  display: grid;
}
.menu-panel nav a {
  padding: 10px 0;
  font-size: clamp(2.4rem, 8vw, 5.8rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.055em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 280ms var(--ease-out), color 160ms ease;
}
.menu-panel.is-open nav a { opacity: 1; transform: translateY(0); }
.menu-panel.is-open nav a:nth-child(1) { transition-delay: 30ms; }
.menu-panel.is-open nav a:nth-child(2) { transition-delay: 65ms; }
.menu-panel.is-open nav a:nth-child(3) { transition-delay: 100ms; }
.menu-panel.is-open nav a:nth-child(4) { transition-delay: 135ms; }
.menu-panel.is-open nav a:nth-child(5) { transition-delay: 170ms; }
.menu-phone { position: absolute; left: max(24px, calc((100vw - 1200px) / 2)); bottom: 28px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}
.hero-media, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; display: block; object-fit: cover; object-position: center 42%; will-change: transform; }
.hero-scrim {
  z-index: -2;
  background: linear-gradient(180deg, rgb(28 28 28 / .08) 0%, rgb(28 28 28 / .16) 48%, rgb(28 28 28 / .34) 100%);
}
.hero-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgb(255 255 255 / .13) 42%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  z-index: -1;
  right: clamp(24px, 8vw, 120px);
  top: clamp(110px, 18vh, 190px);
  width: clamp(150px, 18vw, 250px);
  aspect-ratio: 1;
  border: 1px solid rgb(251 248 245 / .34);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-orbit-ring {
  position: absolute;
  inset: 13%;
  border: 1px dashed rgb(251 248 245 / .45);
  border-radius: inherit;
}
.hero-orbit-seed {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 8px rgb(251 248 245 / .12), 0 0 32px rgb(251 248 245 / .45);
  transform: translateX(-50%);
}
.hero-content {
  width: var(--page);
  margin-inline: auto;
  padding: 112px 0 clamp(44px, 8vh, 80px);
}
.eyebrow {
  margin: 0 0 14px;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--accent-dark); }
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 7rem);
  line-height: .92;
  letter-spacing: -.065em;
}
.hero-copy {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
}
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:active { transform: scale(.97); }
.button-primary { color: var(--white); background: var(--accent); }
.button-ghost { color: var(--white); background: rgb(255 255 255 / .12); border-color: rgb(255 255 255 / .8); }
.button-dark { color: var(--white); background: var(--ink); }
.button-outline { color: var(--accent-dark); background: transparent; border-color: var(--accent-dark); }

.trust-strip {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1200px) / 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--accent);
  border-bottom: 1px solid rgb(251 248 245 / .5);
}
.trust-strip div { min-height: 126px; display: flex; flex-direction: column; justify-content: center; padding: 24px; }
.trust-strip div + div { border-left: 1px solid rgb(251 248 245 / .5); }
.trust-strip strong { font-size: clamp(1.35rem, 2.6vw, 2.15rem); line-height: 1.1; letter-spacing: -.04em; }
.trust-strip span { margin-top: 6px; color: var(--white); font-size: .9rem; }

.brand-marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-block: 1px solid rgb(251 248 245 / .22);
}
.brand-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
}
.brand-marquee span {
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: clamp(.78rem, 1.2vw, .98rem);
  font-weight: 800;
  letter-spacing: .18em;
  white-space: nowrap;
}
.brand-marquee i { padding-inline: 16px; color: var(--accent); font-style: normal; }

.js :where([data-reveal]) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js :where([data-reveal].is-visible) { opacity: 1; transform: translateY(0); }
.trust-strip [data-reveal]:nth-child(2), .menu-card:nth-child(2), .gallery-item:nth-child(2), .gallery-item:nth-child(5), .review:nth-child(2) { --reveal-delay: 70ms; }
.trust-strip [data-reveal]:nth-child(3), .menu-card:nth-child(3), .gallery-item:nth-child(3), .gallery-item:nth-child(6), .review:nth-child(3) { --reveal-delay: 140ms; }
.trust-strip [data-reveal]:nth-child(4), .gallery-item:nth-child(4) { --reveal-delay: 210ms; }

.section { width: var(--page); margin: 0 auto; padding: clamp(76px, 10vw, 140px) 0; }
.section h2, .visit-section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-heading { margin-bottom: 42px; }
.section-heading p { max-width: 620px; margin: 18px 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.section-heading.compact { margin-bottom: 32px; }

.story { width: 100%; padding-inline: max(20px, calc((100vw - 1200px) / 2)); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr); gap: clamp(42px, 8vw, 120px); align-items: center; color: var(--white); background: var(--accent); border-radius: 0; }
.story-copy p { max-width: 690px; margin: 28px 0 20px; color: var(--white); font-size: 1.05rem; }
.story .text-link { color: var(--white); }
.text-link { color: var(--accent-dark); font-weight: 750; text-underline-offset: 4px; }
.ratio-frame { position: relative; aspect-ratio: 3 / 4; display: block; overflow: hidden; border-radius: var(--radius); background: var(--paper-deep); }
.ratio-frame img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 600ms var(--ease-out), filter 300ms ease; }
.story-image { box-shadow: 0 24px 70px rgb(28 28 28 / .22); }
.story-image::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(105deg, transparent 38%, rgb(255 255 255 / .24) 50%, transparent 62%);
  transform: translateX(-70%) rotate(8deg);
  pointer-events: none;
}
.story-image img { object-position: center 46%; }

.menu-section { border-top: 1px solid var(--line); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card { min-width: 0; transform-origin: center bottom; transition: transform 260ms var(--ease-out); }
.menu-card .ratio-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(28 28 28 / .34));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.menu-card-copy { padding: 22px 4px 0; }
.menu-card h3 { margin: 0; font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.1; letter-spacing: -.03em; }
.menu-card p { min-height: 52px; margin: 12px 0 18px; color: var(--ink-soft); }
.menu-card ul { margin: 0; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line); }
.menu-card li { padding: 5px 0; }
.menu-card:nth-child(1) img { object-position: center 52%; }
.menu-card:nth-child(2) img { object-position: center 50%; }
.menu-card:nth-child(3) img { object-position: center 48%; }
.menu-cta { margin-top: 40px; }

.gallery-section { width: 100%; padding: 30px max(20px, calc((100vw - 1200px) / 2)) clamp(76px, 10vw, 140px); color: var(--white); background: var(--accent); border-radius: 0; }
.gallery-section .eyebrow.dark { color: var(--paper-deep); }
.gallery-section .section-heading p { color: var(--paper-deep); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item { display: block; padding: 0; border: 0; border-radius: var(--radius); background: transparent; cursor: zoom-in; }
.gallery-item { perspective: 900px; }
.gallery-item .ratio-frame { transition: transform 300ms var(--ease-out), box-shadow 300ms ease; }
.gallery-item:active .ratio-frame { transform: scale(.985); }
.gallery-item:focus-visible { outline: 3px solid var(--white); outline-offset: 5px; }
.gallery-item:nth-child(1) img { object-position: center 50%; }
.gallery-item:nth-child(2) img { object-position: center 52%; }
.gallery-item:nth-child(3) img { object-position: center 50%; }
.gallery-item:nth-child(4) img { object-position: center 48%; }
.gallery-item:nth-child(5) img { object-position: center 36%; }
.gallery-item:nth-child(6) img { object-position: center 52%; }

.reviews-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(44px, 8vw, 120px); border-top: 1px solid var(--line); }
.reviews-intro h2 { font-size: clamp(2.3rem, 5vw, 4.5rem); }
.reviews-intro > p:last-child { margin: 22px 0 0; color: var(--ink-soft); }
.reviews-intro > p strong { color: var(--ink); font-size: 1.6rem; }
.reviews-list { border-top: 1px solid var(--ink); }
.review { padding: 28px 0; border-bottom: 1px solid var(--line); transition: transform 220ms var(--ease-out), border-color 220ms ease; }
.review .stars { margin: 0; color: var(--accent); letter-spacing: .11em; }
.review blockquote { max-width: 670px; margin: 14px 0 20px; font-size: clamp(1.12rem, 2.2vw, 1.55rem); line-height: 1.42; }
.review > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.review-author { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.review-avatar { width: 48px; height: 48px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; background: var(--paper-deep); transition: transform 240ms var(--ease-out); }
.review cite { font-style: normal; font-weight: 750; }
.review a { color: var(--accent-dark); font-weight: 700; text-underline-offset: 4px; white-space: nowrap; }

.visit-section { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); min-height: 700px; background: var(--paper-deep); }
.visit-details { padding: clamp(60px, 8vw, 120px) max(24px, calc((100vw - 1200px) / 2)); padding-right: clamp(34px, 7vw, 100px); color: var(--white); background: var(--accent); }
.visit-details .eyebrow.dark { color: var(--white); }
.visit-details address { margin: 28px 0 8px; color: var(--white); font-style: normal; font-size: 1.1rem; }
.visit-phone { color: var(--white); font-size: 1.4rem; font-weight: 750; text-underline-offset: 4px; }
.hours { margin-top: 32px; border-top: 1px solid rgb(251 248 245 / .5); }
.hours div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgb(251 248 245 / .5); }
.hours strong { white-space: nowrap; }
.visit-details .button-primary { color: var(--white); background: var(--ink); }
.visit-details .button-outline { color: var(--white); border-color: var(--white); }
.hours div { transition: transform 180ms var(--ease-out); }
.map-wrap { min-height: 520px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 520px; display: block; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 46px max(20px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background: var(--ink);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 50px; height: 50px; border-radius: 10px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand span { color: var(--paper-deep); font-size: .88rem; }
.footer-contact { display: grid; gap: 4px; }
.footer-contact a { color: var(--paper-deep); text-decoration: none; }
.footer-nav { display: flex; align-items: center; gap: 18px; }
.footer-nav > a:not(.social-link) { text-underline-offset: 4px; }
.footer-social { width: 42px; height: 42px; }

dialog { border: 0; padding: 0; }
dialog::backdrop { background: rgb(28 28 28 / .72); backdrop-filter: blur(6px); }
.booking-dialog {
  width: min(820px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booking-dialog[open] { animation: dialog-enter 280ms var(--ease-out) both; }
.booking-form { padding: clamp(24px, 5vw, 48px); }
.dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.dialog-head p { margin: 0 0 6px; color: var(--accent-dark); font-weight: 750; }
.dialog-head h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1; letter-spacing: -.045em; }
.dialog-head .icon-button { color: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.form-grid label { display: grid; gap: 7px; align-content: start; }
.form-grid label > span { font-weight: 750; }
.form-grid .wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #a99992;
  border-radius: 8px;
}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--ink-soft); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgb(155 77 53 / .25); border-color: var(--accent); }
[aria-invalid="true"] { border-color: #a42f2f; }
.field-error { min-height: 18px; color: #8d2323; font-size: .8rem; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.form-status { max-width: 440px; margin: 0; color: var(--accent-dark); font-weight: 700; }

.lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  color: var(--white);
  background: rgb(28 28 28 / .97);
}
.lightbox[open] { animation: lightbox-enter 220ms ease both; }
.lightbox figure { width: min(1100px, calc(100% - 150px)); height: calc(100dvh - 110px); margin: 55px auto; display: grid; place-items: center; }
.lightbox img { max-width: 100%; max-height: calc(100dvh - 150px); display: block; object-fit: contain; }
.lightbox figcaption { align-self: end; color: var(--paper-deep); text-align: center; }
.lightbox-close, .lightbox-nav {
  position: fixed;
  z-index: 2;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: rgb(255 255 255 / .1);
  border: 1px solid rgb(255 255 255 / .65);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms ease;
}
.lightbox-close:active { transform: scale(.96); }
.lightbox-nav.previous:active { transform: translateY(-50%) translateX(-3px) scale(.96); }
.lightbox-nav.next:active { transform: translateY(-50%) translateX(3px) scale(.96); }
.lightbox-close { right: 20px; top: 18px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.previous { left: 20px; }
.lightbox-nav.next { right: 20px; }

:focus-visible { outline: 3px solid #b05d41; outline-offset: 3px; }

@media (hover: hover) and (pointer: fine) {
  .social-link:hover { transform: translateY(-3px) rotate(-3deg); background: rgb(255 255 255 / .12); }
  .site-header.is-solid .social-link:hover { color: var(--white); background: var(--accent); }
  .menu-toggle:hover, .icon-button:hover { background: rgb(255 255 255 / .12); }
  .menu-panel nav a:hover { color: var(--paper-deep); transform: translateX(10px); }
  .button:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgb(28 28 28 / .16); }
  .button-primary:hover { background: var(--accent-dark); }
  .button-ghost:hover { background: rgb(255 255 255 / .2); }
  .trust-strip div { transition: background 180ms ease, transform 220ms var(--ease-out); }
  .trust-strip div:hover { z-index: 1; background: rgb(97 51 35 / .38); transform: translateY(-4px); }
  .text-link:hover { text-decoration-thickness: 3px; }
  .menu-card:hover { transform: translateY(-8px); }
  .menu-card:hover .ratio-frame img { transform: scale(1.055); }
  .menu-card:hover .ratio-frame::after { opacity: 1; }
  .gallery-item:hover .ratio-frame { transform: translateY(-8px) rotateX(1.5deg) rotateY(-1.5deg); box-shadow: 0 28px 64px rgb(28 28 28 / .28); }
  .gallery-item:nth-child(even):hover .ratio-frame { transform: translateY(-8px) rotateX(1.5deg) rotateY(1.5deg); }
  .gallery-item:hover img { transform: scale(1.045); }
  .review:hover { transform: translateX(8px); border-color: var(--accent); }
  .review:hover .review-avatar { transform: scale(1.08) rotate(-3deg); }
  .visit-details .button-outline:hover { color: var(--accent-dark); background: var(--white); }
  .hours div:hover { transform: translateX(5px); }
  .lightbox-close:hover { background: rgb(255 255 255 / .2); transform: rotate(-3deg); }
  .lightbox-nav:hover { background: rgb(255 255 255 / .2); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * { animation: rise-in .7s both; }
  .hero-content > :nth-child(2) { animation-delay: .08s; }
  .hero-content > :nth-child(3) { animation-delay: .16s; }
  .hero-content > :nth-child(4) { animation-delay: .24s; }
  .hero-media { animation: hero-breathe 18s var(--ease-in-out) infinite alternate; }
  .hero-scrim::after { animation: light-pass 12s var(--ease-in-out) 1.5s infinite; }
  .hero-orbit { animation: orbit-spin 26s linear infinite; }
  .hero-orbit-ring { animation: orbit-spin-reverse 18s linear infinite; }
  .hero-orbit-seed { animation: seed-pulse 4.6s ease-in-out infinite; }
  .brand-marquee-track { animation: marquee-flow 24s linear infinite; }
  .story-image { animation: story-float 8s ease-in-out infinite; }
  .story-image::after { animation: story-light 9s var(--ease-in-out) 1s infinite; }
  .hero-media, .hero-scrim::after, .hero-orbit, .hero-orbit-ring, .hero-orbit-seed, .brand-marquee-track, .story-image, .story-image::after { animation-play-state: paused; }
  .hero.is-in-view .hero-media, .hero.is-in-view .hero-scrim::after, .hero.is-in-view .hero-orbit, .hero.is-in-view .hero-orbit-ring, .hero.is-in-view .hero-orbit-seed, .brand-marquee.is-in-view .brand-marquee-track, .story-image.is-in-view, .story-image.is-in-view::after { animation-play-state: running; }
}

@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-breathe { from { transform: scale(1.01) translate3d(0, 0, 0); } to { transform: scale(1.065) translate3d(-.8%, -.6%, 0); } }
@keyframes light-pass { 0%, 58% { transform: translateX(-120%); opacity: 0; } 70% { opacity: 1; } 86%, 100% { transform: translateX(120%); opacity: 0; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes seed-pulse { 0%, 100% { opacity: .72; transform: translateX(-50%) scale(.9); } 50% { opacity: 1; transform: translateX(-50%) scale(1.15); } }
@keyframes marquee-flow { to { transform: translateX(-50%); } }
@keyframes story-float { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-.25deg); } 50% { transform: translate3d(0, -9px, 0) rotate(.25deg); } }
@keyframes story-light { 0%, 55% { transform: translateX(-70%) rotate(8deg); opacity: 0; } 68% { opacity: 1; } 82%, 100% { transform: translateX(70%) rotate(8deg); opacity: 0; } }
@keyframes dialog-enter { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes lightbox-enter { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 900px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(3) { border-left: 0; border-top: 1px solid rgb(251 248 245 / .5); }
  .trust-strip div:nth-child(4) { border-top: 1px solid rgb(251 248 245 / .5); }
  .story { grid-template-columns: 1fr; }
  .story-copy { max-width: 720px; }
  .story-image { width: min(620px, 100%); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-section { grid-template-columns: 1fr; }
  .reviews-intro { max-width: 650px; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-details { padding-left: max(24px, calc((100vw - 720px) / 2)); padding-right: max(24px, calc((100vw - 720px) / 2)); }
  .map-wrap { min-height: 500px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  :root { --page: calc(100% - 32px); }
  .site-header { height: 66px; padding-inline: 16px; }
  .brand span { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .social-link { width: 42px; height: 42px; }
  .menu-toggle { padding: 0 12px; }
  .menu-toggle > span:first-child { display: none; }
  .hero-media { object-position: center 42%; }
  .hero-orbit { right: -34px; top: 18%; width: 140px; opacity: .52; }
  .hero-content { padding: 100px 0 38px; }
  .hero h1 { max-width: 360px; font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero-copy { max-width: 320px; margin-top: 14px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; padding-inline: 14px; }
  .trust-strip div { min-height: 104px; padding: 18px 14px; }
  .trust-strip strong { font-size: 1.35rem; }
  .section { padding: 78px 0; }
  .section h2, .visit-section h2 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .story { gap: 40px; }
  .menu-grid, .gallery-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-card p { min-height: 0; }
  .gallery-grid { gap: 16px; }
  .gallery-item .ratio-frame { aspect-ratio: 3 / 4; }
  .review > div { align-items: flex-start; flex-direction: column; gap: 7px; }
  .visit-details { padding: 70px 20px; }
  .visit-actions { align-items: stretch; flex-direction: column; }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  .site-footer { grid-template-columns: 1fr; padding: 42px 20px; }
  .footer-nav { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .wide { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .lightbox figure { width: calc(100% - 32px); height: calc(100dvh - 150px); margin: 70px auto 80px; }
  .lightbox img { max-height: calc(100dvh - 190px); }
  .lightbox-nav { top: auto; bottom: 18px; transform: none; }
  .lightbox-nav.previous:active { transform: translateX(-3px) scale(.96); }
  .lightbox-nav.next:active { transform: translateX(3px) scale(.96); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js :where([data-reveal]), .js :where([data-reveal].is-visible) { opacity: 1; transform: none; transition: opacity 120ms ease; }
  .hero-media, .hero-orbit, .hero-orbit-ring, .hero-orbit-seed, .story-image, .brand-marquee-track { transform: none !important; }
  .hero-scrim::after, .story-image::after { display: none; }
  .brand-marquee-track { width: 100%; justify-content: center; }
  .brand-marquee-track span:last-child { display: none; }
  .brand-marquee span { white-space: normal; text-align: center; }
  .menu-panel { transform: none; transition: opacity 120ms ease; }
  .menu-panel nav a { transform: none; }
  .button:hover, .social-link:hover, .menu-card:hover, .gallery-item:hover .ratio-frame, .review:hover { transform: none; }
}
