:root {
  --ink: #7b1f32;
  --ink-soft: #743a45;
  --paper: #f7faf8;
  --mint: #b7d4c8;
  --mint-deep: #86a592;
  --accent: #f0d249;
  --accent-dark: #bc2547;
  --line: rgba(123, 31, 50, 0.18);
  --header-height: 72px;
  --radius: 4px;
  --shadow: 0 18px 48px rgba(123, 31, 50, 0.16);
  --z-header: 30;
  --z-dock: 36;
  --z-lightbox: 80;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --display: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button { font: inherit; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: clamp(5.5rem, 10vw, 9rem); }
.section-heading { max-width: 680px; margin-bottom: clamp(2.25rem, 5vw, 4rem); }
.section-heading h2, .gallery-heading h2, .story h2, .reviews-heading h2, .visit-info h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.038em;
}
.section-heading p { max-width: 52ch; margin: 1.2rem 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.hero-name {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  color: #f9fcfb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.site-header.is-solid, .site-header.menu-active {
  color: var(--ink);
  background: rgba(247, 250, 248, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 0.38rem;
  font-family: var(--display);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.04em;
}
.wordmark small { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; font-size: 0.9rem; font-weight: 650; }
.desktop-nav a { position: relative; padding-block: 0.4rem; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease-out); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 0.75rem; }
.social-links { display: flex; align-items: center; gap: 0.35rem; }
.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}
.social-links a:hover { background: rgba(255, 255, 255, 0.14); }
.is-solid .social-links a:hover, .menu-active .social-links a:hover, .social-links-footer a:hover { background: rgba(123, 31, 50, 0.08); }
.social-links svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-links svg path { fill: currentColor; stroke: none; }
.social-links .solid-dot { fill: currentColor; stroke: none; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0 10px; border: 0; background: transparent; color: currentColor; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: currentColor; transition: transform 180ms var(--ease-out); }
.menu-active .menu-toggle span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
.menu-active .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-height) 0 auto; z-index: 2; isolation: isolate; padding: 1.25rem 20px 2rem; color: var(--ink); background: #f7faf8; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform-origin: top; transition: transform 240ms var(--ease-out), opacity 180ms var(--ease-out); }
.mobile-menu:not([hidden]) { transform: translateY(0); opacity: 1; }
@starting-style { .mobile-menu:not([hidden]) { transform: translateY(-12px); opacity: 0; } }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 0.8rem 0; font-family: var(--display); font-size: 1.55rem; font-weight: 650; text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-menu .social-links { margin-top: 1rem; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
}
.hero-image, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -3; display: block; object-fit: cover; object-position: 52% 42%; animation: hero-breathe 16s var(--ease-in-out) infinite alternate; will-change: transform; }
.hero-scrim { z-index: -2; background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0.50) 100%); }
.hero-content { display: grid; gap: clamp(2.5rem, 7vh, 5rem); padding-block: calc(var(--header-height) + 3rem) clamp(2rem, 5vh, 3.5rem); }
.hero-copy { align-self: end; }
.hero-name { margin-bottom: 0.85rem; color: rgba(255, 255, 255, 0.94); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 670;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.18);
}
.hero-intro { max-width: 43ch; margin: 1.5rem 0 0; font-size: clamp(1.04rem, 2vw, 1.3rem); line-height: 1.48; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.9rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 150ms var(--ease-out), background-color 160ms ease, border-color 160ms ease;
}
.button:active { transform: translateY(1px) scale(0.97); }
.button-primary { color: #fff; background: var(--accent-dark); border-color: var(--accent-dark); }
.button-primary:hover { background: #941d37; border-color: #941d37; }
.button-ghost { color: #fff; background: rgba(82, 18, 32, 0.3); border-color: rgba(255, 255, 255, 0.86); backdrop-filter: blur(4px); }
.button-ghost:hover { background: rgba(82, 18, 32, 0.48); }
.button-outline-light { color: #fff; border-color: rgba(255, 255, 255, 0.62); }
.button-outline-light:hover { color: var(--ink); background: #fff; border-color: #fff; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}
.hero-facts > * { min-width: 0; padding: 1rem 1.5rem 0 0; text-decoration: none; }
.hero-facts > * + * { padding-left: 1.5rem; border-left: 1px solid rgba(255, 255, 255, 0.35); }
.hero-facts span { display: block; margin-bottom: 0.2rem; color: rgba(255, 255, 255, 0.76); font-size: 0.78rem; }
.hero-facts strong { display: block; font-size: 0.96rem; font-weight: 750; line-height: 1.35; }
.hero-facts a:hover strong { text-decoration: underline; text-underline-offset: 0.2em; }

.hero-badge {
  position: absolute;
  z-index: 1;
  top: clamp(110px, 18vh, 180px);
  right: max(24px, calc((100vw - 1180px) / 2));
  width: clamp(112px, 11vw, 150px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  text-align: center;
  box-shadow: 0 12px 0 rgba(123, 31, 50, 0.86);
  animation: badge-float 5.5s var(--ease-in-out) infinite alternate;
}
.hero-badge::before { content: ""; position: absolute; inset: -9px; border: 2px dashed rgba(240, 210, 73, 0.9); border-radius: 50%; animation: badge-spin 18s linear infinite; }
.hero-badge strong { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 0.92; letter-spacing: -0.04em; text-transform: uppercase; }
.hero-badge span { margin-top: 0.35rem; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }

.brand-ticker { overflow: hidden; color: #fff; background: var(--accent-dark); border-block: 1px solid rgba(123, 31, 50, 0.35); }
.brand-ticker-track { width: max-content; display: flex; animation: ticker-flow 24s linear infinite; will-change: transform; }
.brand-ticker-group { display: flex; align-items: center; gap: 1.4rem; padding: 0.85rem 0.7rem; white-space: nowrap; }
.brand-ticker-group span { font-family: var(--display); font-size: clamp(0.88rem, 1.3vw, 1.05rem); font-weight: 750; }
.brand-ticker-group i { color: var(--accent); font-style: normal; }

.story { width: 100%; max-width: none; margin-inline: 0; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr); align-items: center; gap: clamp(3rem, 9vw, 8.5rem); padding-inline: max(20px, calc((100vw - 1180px) / 2)); background: var(--accent); }
.story-copy { padding-left: clamp(0rem, 4vw, 3.5rem); }
.story-label, .reviews-intro, .visit-label { margin: 0 0 1.2rem; font-size: 0.96rem; font-weight: 750; }
.story-label, .reviews-intro { color: var(--ink); }
.story-copy > p:not(.story-label) { max-width: 53ch; margin: 1.5rem 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.story-quote { max-width: 19ch; margin: 2.5rem 0 0; font-family: var(--display); font-size: clamp(1.4rem, 2.5vw, 2.15rem); font-weight: 650; line-height: 1.2; letter-spacing: -0.025em; }
.story-visual { position: relative; padding: 0 0 2.4rem 2.4rem; }
.ratio-3-4 { display: block; aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-3-4 img { width: 100%; height: 100%; display: block; object-fit: cover; }
.story-media { margin: 0; box-shadow: var(--shadow); }
.story-media img { object-position: 50% 52%; animation: photo-breathe 9s var(--ease-in-out) infinite alternate; will-change: transform; }
.service-panel { position: absolute; inset: auto auto 0 0; width: min(300px, 78%); display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; padding: 1.35rem 1.5rem; color: #fff; background: var(--accent-dark); animation: panel-float 4.8s var(--ease-in-out) infinite alternate; will-change: transform; }
.service-panel span { font-size: 0.82rem; font-weight: 750; }
.service-panel span:not(:last-child)::after { content: "·"; margin-left: 1rem; opacity: 0.65; }

.menu-section { background: var(--mint); }
.menu-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr); align-items: end; max-width: none; gap: 3rem; }
.menu-heading p { margin: 0; }
.menu-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr); align-items: start; gap: clamp(2rem, 6vw, 5rem); }
.menu-board-trigger { position: relative; width: 100%; padding: 0; overflow: hidden; border: 0; color: #fff; background: var(--ink); cursor: zoom-in; transform-style: preserve-3d; transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
.menu-board-trigger img { width: 100%; height: auto; aspect-ratio: 4 / 5; display: block; object-fit: cover; transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); }
.menu-board-trigger span { position: absolute; inset: auto 1rem 1rem auto; padding: 0.55rem 0.75rem; background: rgba(82, 18, 32, 0.82); font-size: 0.78rem; font-weight: 750; }
.menu-list { border-block: 1px solid rgba(123, 31, 50, 0.42); }
.menu-group { padding: 1.6rem 0; }
.menu-group + .menu-group { border-top: 1px solid var(--line); }
.menu-group h3 { margin: 0; font-family: var(--display); font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.1; letter-spacing: -0.03em; }
.menu-group > p { margin: 0.6rem 0 1rem; color: var(--ink-soft); }
.menu-group dl { margin: 0; }
.menu-group dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; padding: 0.5rem 0; }
.menu-group dt { font-weight: 650; line-height: 1.35; }
.menu-group dd { margin: 0; font-weight: 800; white-space: nowrap; }
.menu-note { margin: 0; padding: 1.1rem 0 1.25rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.82rem; }
.menu-photo-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: clamp(2.5rem, 6vw, 5rem); }
.menu-photo-strip figure { margin: 0; transition: transform 220ms var(--ease-out); }
.menu-media img { object-position: 50% 50%; }
.menu-photo-strip figure:nth-child(2) img { object-position: 52% 50%; }
.menu-photo-strip figure:nth-child(3) img { object-position: 50% 55%; }
.menu-photo-strip figcaption { padding: 0.8rem 0 0; font-size: 0.86rem; font-weight: 750; }

.gallery-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr); align-items: end; gap: 3rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.gallery-heading p { max-width: 43ch; margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-item { display: block; min-width: 0; padding: 0; border: 0; color: var(--ink); background: transparent; text-align: left; cursor: zoom-in; transition: transform 220ms var(--ease-out); }
.gallery-frame { display: block; background: var(--mint); }
.gallery-frame img { transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:nth-child(1) img { object-position: 50% 48%; }
.gallery-item:nth-child(2) img { object-position: 50% 48%; }
.gallery-item:nth-child(3) img { object-position: 50% 48%; }
.gallery-item:nth-child(4) img { object-position: 50% 50%; }
.gallery-item:nth-child(5) img { object-position: 50% 50%; }
.gallery-item:nth-child(6) img { object-position: 58% 50%; }

.reviews-section { background: #e1eee8; }
.reviews-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.reviews-heading h2 { max-width: 720px; }
.reviews-intro { margin-bottom: 0.8rem; }
.rating-summary { flex: 0 0 auto; min-width: 190px; padding-bottom: 0.25rem; text-align: right; }
.rating-summary strong { display: block; font-family: var(--display); font-size: clamp(3rem, 5vw, 4.8rem); line-height: 0.85; letter-spacing: -0.04em; animation: rating-breathe 4s var(--ease-in-out) infinite alternate; }
.rating-summary span { display: block; margin-top: 0.65rem; color: var(--ink); letter-spacing: 0.1em; }
.rating-summary small { display: block; margin-top: 0.25rem; color: var(--ink-soft); }
.reviews-grid { display: grid; grid-template-columns: 1.28fr 1fr; grid-template-rows: repeat(2, auto); gap: 1.25rem; }
.review { position: relative; overflow: hidden; padding: clamp(1.6rem, 3vw, 2.4rem); background: var(--paper); transition: transform 220ms var(--ease-out); }
.review-featured { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: var(--ink); }
.review-featured::after { content: ""; position: absolute; inset: -35% auto -35% -50%; width: 32%; background: rgba(255, 255, 255, 0.08); transform: skewX(-18deg) translateX(-220%); animation: review-glint 7s var(--ease-in-out) infinite; pointer-events: none; }
.review-featured .review-meta p, .review-featured a { color: var(--accent); }
.review-meta { display: flex; align-items: center; gap: 0.85rem; }
.review-meta img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review-meta h3 { margin: 0; font-size: 1rem; }
.review-meta p { margin: 0.15rem 0 0; color: var(--accent-dark); letter-spacing: 0.08em; }
.review blockquote { margin: 1.6rem 0; font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 2rem); font-weight: 580; line-height: 1.32; letter-spacing: -0.025em; text-wrap: pretty; }
.review:not(.review-featured) blockquote { font-size: 1.12rem; }
.review a { width: fit-content; color: var(--accent-dark); font-weight: 750; }

.visit-section { padding-block: 0; background: var(--paper); }
.visit-layout { width: 100%; max-width: none; display: grid; grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr); align-items: start; background: var(--mint); }
.visit-info { padding: clamp(3.5rem, 6vw, 5.5rem) max(28px, calc((100vw - 1180px) / 2)); padding-right: clamp(2rem, 7vw, 6rem); background: var(--ink); color: #f7faf8; }
.visit-label { color: var(--accent); }
.visit-info address { margin-top: 2rem; font-style: normal; font-size: 1.15rem; }
.phone-link { display: inline-block; margin-top: 1rem; color: #fff; font-size: 1.2rem; font-weight: 750; }
.visit-services { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.visit-services span { padding: 0.35rem 0.6rem; border: 1px solid rgba(255, 255, 255, 0.28); font-size: 0.78rem; }
.hours { margin-top: 2.5rem; }
.hours h3 { margin: 0 0 1rem; font-family: var(--display); font-size: 1.3rem; }
.hours dl { max-width: 430px; margin: 0; }
.hours dl div { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.hours dd { margin: 0; text-align: right; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.map-wrap { height: 540px; min-height: 0; position: sticky; top: 88px; background: var(--mint); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 0; display: block; }

@media (min-width: 1100px) {
  .visit-layout { grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr); align-items: stretch; }
  .visit-info {
    height: 540px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 28px 40px 28px max(28px, calc((100vw - 1180px) / 2));
  }
  .visit-info h2 { font-size: clamp(3rem, 4vw, 4.25rem); line-height: 0.98; }
  .visit-label { margin-bottom: 0.7rem; font-size: 1rem; }
  .visit-content { min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; align-items: start; margin-top: 1.25rem; }
  .visit-info address { margin-top: 0; font-size: 1.06rem; line-height: 1.45; }
  .phone-link { margin-top: 0.55rem; font-size: 1.12rem; }
  .visit-services { gap: 0.4rem; margin-top: 1rem; }
  .visit-services span { padding: 0.31rem 0.55rem; font-size: 0.78rem; line-height: 1.35; }
  .hours { margin-top: 0; }
  .hours h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
  .hours dl div { gap: 0.5rem; padding: 0.45rem 0; font-size: 0.86rem; }
  .visit-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; margin-top: 1rem; }
  .visit-actions .button { min-width: 0; min-height: 44px; justify-content: center; padding: 0.55rem 0.6rem; font-size: 0.9rem; }
  .map-wrap { height: 540px; position: static; }
}

@media (min-width: 901px) and (max-width: 1099px) {
  .visit-layout { grid-template-columns: 1fr; background: transparent; }
  .map-wrap { height: 420px; position: static; }
}

.site-footer { padding-block: 4rem 1.5rem; background: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.8fr; gap: 2rem; }
.footer-wordmark { font-family: var(--display); font-size: 1.65rem; font-weight: 750; letter-spacing: -0.04em; text-decoration: none; }
.footer-grid p { color: var(--ink-soft); }
.footer-links { display: grid; align-content: start; gap: 0.5rem; }
.social-links-footer { margin-top: 0.9rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.86rem; }
.mobile-action-dock { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  padding: 76px 20px 24px;
  color: #fff;
  background: rgba(62, 12, 25, 0.94);
}
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(100%, 1040px); max-height: calc(100svh - 110px); margin: auto; }
.lightbox img { max-width: 100%; max-height: calc(100svh - 110px); display: block; margin: auto; object-fit: contain; }
.lightbox button { width: 52px; height: 52px; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 50%; color: #fff; background: rgba(0, 0, 0, 0.28); cursor: pointer; }
.lightbox-close { position: absolute; top: 18px; right: 20px; font-size: 2rem; line-height: 1; }
.lightbox-nav { justify-self: center; font-size: 1.6rem; }
.lightbox:not([hidden]) { animation: lightbox-enter 220ms var(--ease-out) both; }
.lightbox:not([hidden]) figure { animation: lightbox-image-enter 320ms var(--ease-out) both; }

.motion-enabled .motion-reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out); transition-delay: var(--motion-delay, 0ms); }
.motion-enabled .motion-reveal.is-visible { opacity: 1; transform: translateY(0); }
.motion-enabled .motion-reveal[data-motion="image"] { transform: translateY(34px) scale(0.96); clip-path: inset(0 0 12% 0); transition: opacity 720ms var(--ease-out), transform 820ms var(--ease-out), clip-path 820ms var(--ease-out); }
.motion-enabled .motion-reveal[data-motion="image"].is-visible { transform: translateY(0) scale(1); clip-path: inset(0); }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .social-links a:hover { transform: translateY(-2px) rotate(-4deg); }
  .button:hover { transform: translateY(-2px); }
  .button:active { transform: translateY(1px) scale(0.97); }
  .brand-ticker:hover .brand-ticker-track { animation-play-state: paused; }
  .menu-photo-strip figure:hover { transform: translateY(-7px) rotate(0.4deg); }
  .menu-board-trigger:hover { box-shadow: 0 20px 0 rgba(123, 31, 50, 0.16); }
  .menu-board-trigger:hover img { transform: scale(1.035); }
  .gallery-item:hover { transform: translateY(-8px) rotate(0.35deg); }
  .gallery-item:hover .gallery-frame img { transform: scale(1.04); }
  .review:hover { transform: translateY(-6px); }
  .lightbox button { transition: transform 150ms var(--ease-out), background-color 150ms ease; }
  .lightbox button:hover { transform: scale(1.08); background: rgba(255, 255, 255, 0.14); }
}

@keyframes hero-breathe { from { transform: scale(1.025) translate3d(0, 0, 0); } to { transform: scale(1.095) translate3d(-1.2%, -0.8%, 0); } }
@keyframes badge-float { from { transform: translate3d(0, 0, 0) rotate(-3deg); } to { transform: translate3d(0, 14px, 0) rotate(3deg); } }
@keyframes badge-spin { to { transform: rotate(360deg); } }
@keyframes ticker-flow { to { transform: translate3d(-50%, 0, 0); } }
@keyframes photo-breathe { from { transform: scale(1.01) translate3d(0, 0, 0); } to { transform: scale(1.065) translate3d(-1%, -0.6%, 0); } }
@keyframes panel-float { from { transform: translate3d(0, 0, 0) rotate(-0.5deg); } to { transform: translate3d(0, -9px, 0) rotate(0.7deg); } }
@keyframes rating-breathe { from { transform: scale(1); opacity: 0.88; } to { transform: scale(1.045); opacity: 1; } }
@keyframes review-glint { 0%, 58% { transform: skewX(-18deg) translateX(-220%); opacity: 0; } 66% { opacity: 1; } 82%, 100% { transform: skewX(-18deg) translateX(620%); opacity: 0; } }
@keyframes lightbox-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightbox-image-enter { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 900px) {
  .desktop-nav, .social-links-header { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header.menu-active::before { content: ""; position: fixed; inset: var(--header-height) 0 0; z-index: 1; background: rgba(247, 250, 248, 0.94); backdrop-filter: blur(12px); }
  .menu-toggle { display: block; }
  .hero-badge { width: 104px; top: 102px; right: 24px; }
  .story { grid-template-columns: 1fr 0.75fr; gap: 2.5rem; }
  .story-copy { padding-left: 0; }
  .menu-heading, .gallery-heading { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
  .menu-heading p, .gallery-heading p { margin-top: 0; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-board-trigger { max-width: 720px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .visit-layout { grid-template-columns: 1fr; background: transparent; }
  .visit-info { padding-inline: max(28px, calc((100vw - 720px) / 2)); }
  .map-wrap { height: 420px; position: static; }
  .map-wrap, .map-wrap iframe { min-height: 0; }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .shell { width: min(100% - 32px, 680px); }
  .section { padding-block: 5rem; }
  .site-header { height: var(--header-height); padding-inline: 16px; }
  .wordmark { font-size: 0.98rem; }
  .hero-content { gap: 2.4rem; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .hero h1 { max-width: 8ch; font-size: clamp(3.4rem, 16vw, 5.25rem); line-height: 0.91; }
  .hero-intro { max-width: 32ch; font-size: 1.02rem; }
  .hero-ctas { width: 100%; }
  .hero-ctas .button { flex: 1 1 145px; }
  .hero-image { object-position: 50% 42%; }
  .hero-badge { width: 88px; top: 84px; right: 18px; box-shadow: 0 8px 0 rgba(123, 31, 50, 0.86); }
  .hero-badge strong { font-size: 1rem; }
  .hero-badge span { font-size: 0.56rem; }
  .brand-ticker-group { gap: 1rem; padding-block: 0.7rem; }
  .hero-facts { display: none; }
  .story { grid-template-columns: 1fr; gap: 2.4rem; }
  .story { width: 100%; max-width: none; margin-inline: 0; padding-inline: 16px; }
  .story-copy { order: 1; }
  .story-visual { order: 2; width: 100%; padding: 0 0 1.8rem 1.2rem; }
  .service-panel { width: min(300px, 88%); padding: 1rem 1.1rem; }
  .menu-photo-strip { gap: 0.6rem; }
  .menu-photo-strip figcaption { font-size: 0.76rem; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-heading { display: block; }
  .rating-summary { margin-top: 2rem; text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .review-featured { grid-row: auto; }
  .review blockquote, .review:not(.review-featured) blockquote { font-size: 1.18rem; }
  .visit-info { padding-inline: 24px; }
  .hours dl div { grid-template-columns: minmax(0, 1fr) auto; font-size: 0.92rem; }
  .map-wrap { height: 340px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .mobile-action-dock {
    position: fixed;
    inset: auto 0 0;
    z-index: var(--z-dock);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .mobile-action-dock a { min-height: 48px; display: grid; place-items: center; font-weight: 800; text-decoration: none; }
  .mobile-action-dock a:first-child { color: #fff; background: var(--ink); }
  .mobile-action-dock a:last-child { color: #fff; background: var(--accent-dark); }
  .lightbox { grid-template-columns: 54px minmax(0, 1fr) 54px; padding-inline: 4px; }
  .lightbox button { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .hero-content { gap: 1.5rem; }
  .menu-photo-strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .visit-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .hero-image, .hero-badge, .hero-badge::before, .brand-ticker-track, .story-media img, .service-panel, .rating-summary strong, .review-featured::after { animation: none !important; transform: none !important; }
  .motion-reveal, .motion-reveal.is-visible { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-solid, .site-header.menu-active { background: var(--paper); backdrop-filter: none; }
  .site-header.menu-active::before { background: var(--paper); backdrop-filter: none; }
  .button-ghost { background: rgba(82, 18, 32, 0.66); backdrop-filter: none; }
}
