/* ============================================================
   BASE: shared components. Reads tokens from theme.css.
   Avoid editing per client; override in a small client.css instead
   so kit fixes can be copied forward.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; font-family: var(--body); font-size: 17px; line-height: 1.6;
  color: var(--text); background: var(--surface); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; } /* height:auto so width/height attrs don't stretch scaled images */
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.05; margin: 0; letter-spacing: var(--display-tracking); }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
.num { white-space: nowrap; } /* phone numbers, wrapped automatically by main.js */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--on-accent); padding: 8px 14px; z-index: 100; font-weight: 700; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Eyebrow label */
.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-2); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.on-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px;
  font: 700 14px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--radius); cursor: pointer; transition: .2s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost { border-color: color-mix(in srgb, var(--on-dark) 40%, transparent); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ink { background: var(--ink); color: var(--on-dark); }
.btn-ink:hover { background: var(--accent-2); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; color: var(--on-dark);
  background: color-mix(in srgb, var(--ink) 96%, transparent); backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-size: 25px; color: var(--accent); }
.brand-name em { font-style: normal; color: var(--on-dark); }
.brand.has-logo { flex-direction: row; align-items: center; gap: 12px; } /* optional SITE.logo */
.brand-logo { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.foot-brand .brand-logo { height: 72px; margin-bottom: 12px; }
.brand-sub { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 6px; }
@media (max-width: 440px) { .site-header .brand-name { font-size: 20px; } }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-muted); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--on-dark); }
.nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }
.nav .btn { padding: 11px 18px; font-size: 12.5px; color: var(--on-accent); }
.menu-toggle { display: none; background: none; border: 0; color: var(--on-dark); padding: 8px; cursor: pointer; }
.menu-toggle svg { width: 28px; height: 28px; }
/* Dropdowns (nav items with children) */
.nav-group { position: relative; display: flex; align-items: center; gap: 2px; }
.nav .nav-parent.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.sub-toggle { background: none; border: 0; padding: 4px; color: inherit; cursor: pointer; display: grid; place-items: center; opacity: .7; }
.sub-toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-group.open .sub-toggle svg { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + 10px); left: -18px; min-width: 240px; z-index: 60;
  background: var(--surface); color: var(--text); border-radius: var(--radius); padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18); border: 1px solid var(--line);
  display: grid; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s, transform .18s, visibility .18s;
}
.sub::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; } /* hover bridge */
.nav-group.wide .sub { grid-template-columns: 1fr 1fr; min-width: 480px; column-gap: 6px; }
/* main.js adds .sub-flip to any dropdown that would run past the viewport edge (even closed, it takes layout width) */
.nav-group.sub-flip .sub { left: auto; right: -12px; }
.nav .sub a { text-transform: none; letter-spacing: 0; font-size: 14.5px; font-weight: 600; padding: 9px 12px; border: 0; border-radius: 4px; color: var(--text); opacity: 1; white-space: nowrap; }
.nav .sub a:hover, .nav .sub a[aria-current="page"] { background: var(--surface-2); color: var(--accent-2); }
@media (min-width: 821px) {
  .nav-group:hover .sub, .nav-group:focus-within .sub, .nav-group.open .sub { opacity: 1; visibility: visible; transform: none; }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); padding: 8px 20px 20px; display: none;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  }
  .nav.open { display: flex; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav a, .nav a[aria-current="page"] { padding: 16px 0; border-bottom: 1px solid color-mix(in srgb, var(--on-dark) 8%, transparent); }
  .nav .btn { margin-top: 16px; justify-content: center; padding: 16px; }
  .nav-group { flex-wrap: wrap; }
  .nav-group .nav-parent { flex: 1; }
  .sub-toggle { padding: 12px; opacity: 1; }
  .sub-toggle svg { width: 18px; height: 18px; }
  .sub { position: static; flex-basis: 100%; min-width: 0; box-shadow: none; border: 0; padding: 4px 0 10px 14px; background: transparent; color: inherit;
         opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-group.wide .sub { min-width: 0; grid-template-columns: 1fr; }
  .nav-group.open .sub { display: grid; }
  .nav .sub a { padding: 11px 0; color: inherit; opacity: .85; white-space: normal; }
}

/* ---------- Open-now pill ---------- */
.status {
  display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600;
  padding: 8px 14px 8px 12px; border-radius: 99px;
  background: color-mix(in srgb, var(--on-dark) 8%, transparent); border: 1px solid color-mix(in srgb, var(--on-dark) 15%, transparent);
}
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: #8a8580; }
.status.is-open .dot { background: #5fc46b; box-shadow: 0 0 0 4px rgba(95,196,107,.2); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(95,196,107,0); } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(ellipse 60% 70% at 78% 60%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 110%, color-mix(in srgb, var(--accent-2) 35%, transparent), transparent 70%),
    var(--ink);
}
.hero::before, .grain::before {
  content: ""; position: absolute; inset: 0; opacity: .07; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; padding: 88px 0 110px; }
.hero h1 { font-size: clamp(50px, 7.4vw, 104px); }
.hero h1 .accent { color: var(--accent); display: block; }
.hero .lede { font-size: 19.5px; max-width: 36ch; color: var(--on-dark-muted); margin: 26px 0 34px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; font-size: 14.5px; color: var(--on-dark-muted); }
.hero-meta a { text-decoration: none; }
.hero-meta a:hover { color: var(--accent); }

/* Polaroid-style framed photo (works well with small/low-res client photos) */
.framed { position: relative; justify-self: center; }
.framed figure {
  margin: 0; background: var(--surface); padding: 12px 12px 50px; transform: rotate(2.5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,.5); max-width: 420px;
}
.framed figcaption { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-family: var(--display); color: var(--ink); font-size: 17px; }
.framed img, .framed .ph-img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.stamp {
  position: absolute; right: -22px; top: -44px; width: 138px; height: 138px; border-radius: 50%;
  background: var(--accent-2); color: var(--on-dark); display: grid; place-items: center; text-align: center;
  transform: rotate(-12deg); box-shadow: 0 14px 30px rgba(0,0,0,.45);
  border: 3px dashed color-mix(in srgb, var(--on-dark) 50%, transparent); outline: 6px solid var(--accent-2);
}
.stamp b { font-family: var(--display); font-size: 36px; display: block; line-height: 1; font-weight: 400; }
.stamp span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 70px; padding: 56px 0 90px; }
  .framed figure { max-width: 340px; }
  .stamp { right: -18px; width: 116px; height: 116px; }
  .stamp b { font-size: 30px; }
}

/* ---------- Hero extras (all optional) ----------
   .hero-enter on the hero: staged entrance. Wrap h1 lines as <span class="ln"><span>Line.</span></span>.
   .swash: hand-drawn SVG underline inside an h1 line. .enter-rise (+ --enter-delay) for any other piece.
   [data-showcase] + .slide: carousel (main.js). [data-parallax] + .depth (--d): pointer depth layers (main.js).
   Keyframes define only `from`, so every element ends on its own styles (rotations, etc. survive). */
.hero-enter { --ease: cubic-bezier(.2, .8, .2, 1); }
.hero-enter .eyebrow, .hero-enter .lede, .hero-enter .actions, .hero-enter .hero-meta { animation: enterRise .8s var(--ease) both; }
.hero-enter .lede { animation-delay: .45s; }
.hero-enter .actions { animation-delay: .6s; }
.hero-enter .hero-meta { animation-delay: .75s; }
.hero-enter h1 .ln { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.16em; } /* padding leaves room for descenders + swash */
.hero-enter h1 .ln > * { display: inline-block; animation: lineUp .9s var(--ease) both; }
.hero-enter h1 .ln:nth-child(1) > * { animation-delay: .1s; }
.hero-enter h1 .ln:nth-child(2) > * { animation-delay: .25s; }
.hero-enter h1 .ln:nth-child(3) > * { animation-delay: .4s; }
.hero-enter .stamp { animation: stampIn .7s 1.1s cubic-bezier(.3, 1.6, .5, 1) both; }
.enter-rise { animation: enterRise .9s var(--enter-delay, .3s) var(--ease, ease) both; }
.hero h1 .accent:has(.swash) { position: relative; }
.swash { position: absolute; left: 0; bottom: -.08em; width: 100%; height: .22em; overflow: visible; pointer-events: none; }
.swash path { fill: none; stroke: var(--swash, var(--accent)); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 420; animation: drawSwash .9s 1s cubic-bezier(.6, 0, .2, 1) forwards; }

.showcase-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 3; } /* holds the stacked slides when the slides' parent has no size of its own */
[data-showcase] .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; scale: 1.08; transition: opacity .9s ease, scale 5s ease-out; }
[data-showcase] .slide.is-on { opacity: 1; scale: 1; }
.showcase-tag { position: absolute; left: 14px; top: 14px; z-index: 2; display: flex; align-items: baseline; gap: 10px; padding: 9px 14px; border-radius: 99px;
  text-decoration: none; color: var(--on-dark); background: color-mix(in srgb, var(--ink) 78%, transparent); backdrop-filter: blur(6px);
  border: 1px solid color-mix(in srgb, var(--on-dark) 18%, transparent); }
a.showcase-tag:hover { border-color: var(--tag-accent, var(--accent)); }
.showcase-tag.swap { animation: tagSwap .5s cubic-bezier(.2, .8, .2, 1); }
.showcase-name { font: italic 700 16px/1.1 var(--display); }
.showcase-price { font-weight: 800; font-size: 13.5px; color: var(--tag-accent, var(--accent)); font-variant-numeric: tabular-nums; }
.showcase-price:empty { display: none; }
.showcase-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.showcase-dots button { width: 26px; height: 6px; padding: 0; border: 0; border-radius: 99px; cursor: pointer; background: color-mix(in srgb, currentColor 25%, transparent); transition: .3s cubic-bezier(.2, .8, .2, 1); }
.showcase-dots button:hover { background: color-mix(in srgb, currentColor 55%, transparent); }
.showcase-dots button[aria-pressed="true"] { width: 42px; background: var(--accent); }
.showcase-dots button:focus-visible { outline-offset: 4px; }

.depth { translate: calc(var(--px, 0) * var(--d, 0px)) calc(var(--py, 0) * var(--d, 0px)); transition: translate .7s cubic-bezier(.2, .8, .2, 1); }

/* Steam: <div class="steam" aria-hidden="true"><span></span><span></span><span></span></div>, positioned by the client */
.steam { position: absolute; width: 90px; height: 70px; display: flex; justify-content: space-between; pointer-events: none; }
.steam span { width: 12px; height: 100%; border-radius: 50%; filter: blur(5px); opacity: 0; animation: steamRise 3.4s ease-in-out infinite;
  background: linear-gradient(to top, transparent, color-mix(in srgb, var(--on-dark) 55%, transparent) 45%, transparent); }
.steam span:nth-child(2) { animation-delay: 1.1s; height: 85%; align-self: end; }
.steam span:nth-child(3) { animation-delay: 2.2s; }

@keyframes enterRise { from { opacity: 0; transform: translateY(26px); } }
@keyframes lineUp { from { transform: translateY(110%); } }
@keyframes drawSwash { to { stroke-dashoffset: 0; } }
@keyframes stampIn { from { opacity: 0; transform: rotate(-140deg) scale(.3); } }
@keyframes tagSwap { from { opacity: 0; transform: translateY(-8px); } }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(24px) scaleY(.6); }
  35% { opacity: .9; }
  70% { transform: translateY(-14px) scaleY(1) skewX(8deg); }
  100% { opacity: 0; transform: translateY(-40px) scaleY(1.2) skewX(-6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-enter *, .enter-rise, .showcase-tag.swap { animation: none !important; }
  .swash path { animation: none; stroke-dashoffset: 0; }
  [data-showcase] .slide, .depth { transition: none; }
  .steam { display: none; }
}

/* ---------- Ticker ---------- */
.ticker { background: var(--accent); color: var(--on-accent); overflow: hidden; border-block: 3px solid var(--ink); }
.ticker-track { display: flex; width: max-content; animation: scroll 38s linear infinite; }
.ticker span { font-family: var(--display); font-size: 21px; padding: 15px 0; white-space: nowrap; display: inline-flex; align-items: center; }
.ticker span::after { content: "✦"; font-size: 13px; margin: 0 28px; color: var(--accent-2); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.hero, .page-hero { padding: 0; }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(36px, 5vw, 60px); }
.section-head p:not(.eyebrow) { font-size: 18.5px; color: var(--muted); margin-top: 18px; } /* :not() so eyebrows keep their size + color */
.on-dark { background: var(--ink-2); color: var(--on-dark); }
.on-dark .section-head p:not(.eyebrow) { color: var(--on-dark-muted); }
.alt { background: var(--surface-2); }

/* Facts row */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); }
.fact { padding: 30px 26px 8px 0; border-right: 1px solid var(--line); }
.fact + .fact { padding-left: 26px; }
.fact:last-child { border-right: 0; }
.fact > b { font-family: var(--display); font-weight: 400; font-size: 44px; line-height: 1; color: var(--accent-2); display: block; margin-bottom: 12px; }
.fact > span { font-size: 15px; color: var(--muted); display: block; }
@media (max-width: 860px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(3) { padding-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* Split: photo stack + copy */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split h2 { font-size: clamp(36px, 4.6vw, 56px); margin-bottom: 22px; }
.on-dark .split p:not(.eyebrow) { color: var(--on-dark-muted); font-size: 18px; }
.photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-stack > * { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.photo-stack > :first-child { grid-row: span 2; aspect-ratio: 3/4.4; }
.photo-stack > :not(:first-child) { aspect-ratio: 4/3; }
.photo-stack > .ph-img { min-height: 0; } /* min-height + aspect-ratio forced a ~455px min width on phones */
.split > * { min-width: 0; }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.mini-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 16px; }
.on-dark .mini-card { border-color: color-mix(in srgb, var(--on-dark) 14%, transparent); }
.mini-card b { display: block; font-size: 15px; margin-bottom: 4px; }
.mini-card small { font-size: 13.5px; opacity: .7; line-height: 1.45; display: block; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 520px) { .mini-cards { grid-template-columns: 1fr; } }

/* Feature cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.1); }
.card > img, .card > .ph-img { aspect-ratio: 4/3.2; object-fit: cover; width: 100%; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--muted); flex: 1; }
.card .price { font-weight: 800; font-size: 15px; color: var(--accent-2); }
.tag { align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; background: var(--accent); color: var(--on-accent); padding: 4px 8px; margin-bottom: 12px; border-radius: 2px; }
.center-cta { text-align: center; margin-top: 48px; }
@media (max-width: 1000px) { .cards, .cards.three { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cards, .cards.three { grid-template-columns: 1fr; } }

/* Story + timeline */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.story-grid h2 { font-size: clamp(36px, 4.6vw, 58px); }
.story-lead { font-size: 21px; line-height: 1.55; margin-top: 26px; }
.pull { margin: 40px 0 0; padding: 28px 0 0; border-top: 2px solid var(--ink); font-family: var(--display); font-size: 30px; line-height: 1.2; color: var(--accent-2); }
.pull cite { display: block; font: 600 13px/1.4 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 14px; font-style: normal; }
.timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--ink); }
.timeline li { position: relative; padding: 0 0 36px 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 2px solid var(--ink); }
.timeline b { font-family: var(--display); font-weight: 400; font-size: 22px; display: block; margin-bottom: 6px; }
.timeline p { color: var(--muted); margin: 0; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 56px; } }

/* Visit: info + hours + map */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; border: 1px solid color-mix(in srgb, var(--on-dark) 12%, transparent); }
.visit-info { padding: 48px; }
.visit-info h2 { font-size: clamp(34px, 4.4vw, 54px); margin-bottom: 26px; }
.visit-info address { font-style: normal; font-size: 20px; line-height: 1.5; margin-bottom: 8px; }
.visit-info .phone { font-family: var(--display); font-size: 30px; color: var(--accent); text-decoration: none; display: inline-block; margin: 8px 0 28px; }
.hours { width: 100%; border-collapse: collapse; font-size: 16px; margin: 22px 0 32px; }
.hours td { padding: 10px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
.hours td:last-child { text-align: right; opacity: .85; }
.hours tr.today td { color: var(--accent); font-weight: 700; opacity: 1; }
.hours tr.today td:first-child::after { content: "Today"; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; background: var(--accent); color: var(--on-accent); padding: 3px 6px; margin-left: 10px; border-radius: 2px; vertical-align: 2px; }
.hours tr.closed td:last-child { opacity: .5; }
.map { min-height: 440px; background: var(--ink-3); }
.map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(.4) contrast(1.05); }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } .visit-info { padding: 32px 24px; } .map, .map iframe { min-height: 320px; } }

/* ---------- Inner page hero ---------- */
.page-hero { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.page-hero .wrap { padding: 80px 0 70px; position: relative; z-index: 1; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent), transparent 65%); }
.page-hero h1 { font-size: clamp(48px, 7vw, 90px); }
.page-hero p:not(.eyebrow) { font-size: 19px; color: var(--on-dark-muted); max-width: 56ch; margin: 20px 0 0; }

/* ---------- Menu / services list ---------- */
.menu-bar { position: sticky; top: var(--header-h); z-index: 40; background: var(--surface); border-bottom: 1px solid var(--line); }
.menu-bar .wrap { display: flex; align-items: center; gap: 18px; padding: 12px 0; }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: none; font: 600 13.5px/1 var(--body); padding: 10px 15px; border-radius: 99px; text-decoration: none; border: 1px solid var(--line); background: #fff; color: var(--text); white-space: nowrap; transition: .15s; }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--accent); border-color: var(--ink); }
.search { position: relative; flex: none; width: 240px; }
.search input { width: 100%; font: 15px var(--body); padding: 10px 14px 10px 38px; border-radius: 99px; border: 1px solid var(--line); background: #fff; color: var(--text); }
.search input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 40%, transparent); }
.search svg { position: absolute; left: 13px; top: 50%; translate: 0 -50%; width: 16px; height: 16px; color: var(--muted); }
@media (max-width: 720px) { .menu-bar .wrap { flex-direction: column; align-items: stretch; gap: 10px; } .search { width: 100%; order: -1; } }

.menu-wrap { padding: 64px 0 110px; }
.menu-group > h2 { font: 800 15px var(--body); letter-spacing: .26em; text-transform: uppercase; color: var(--accent-2); display: flex; align-items: center; gap: 18px; margin: 56px 0 30px; }
.menu-group > h2::after { content: ""; flex: 1; height: 2px; background: var(--ink); }
.menu-group:first-child > h2 { margin-top: 0; }
.menu-sections { columns: 2; column-gap: 64px; }
.menu-section { break-inside: avoid; margin-bottom: 52px; padding: 0; } /* padding: 0 cancels the global section padding */
.menu-section h3 { font-size: 30px; margin-bottom: 6px; }
.menu-section .blurb { color: var(--muted); font-size: 15.5px; margin: 0 0 8px; }
.menu-section ul { list-style: none; margin: 14px 0 0; padding: 0; }
.menu-section li { padding: 11px 0; border-bottom: 1px dashed var(--line); }
.item-line { display: flex; align-items: baseline; gap: 12px; }
.item-name { font-weight: 600; font-size: 16.5px; }
.item-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.item-price { font-weight: 800; font-variant-numeric: tabular-nums; font-size: 16px; white-space: nowrap; }
.item-desc { font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.item-link { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; }
.item-link:hover .item-name { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.item-arrow { color: var(--accent-2); transition: transform .2s; }
.item-link:hover .item-arrow { transform: translateX(4px); }
.menu-section .note { font-size: 14px; color: var(--muted); background: var(--surface-2); padding: 14px 16px; border-radius: var(--radius); margin-top: 16px; border-left: 3px solid var(--accent); line-height: 1.5; }
.menu-section.feature { background: var(--ink); color: var(--on-dark); padding: 30px 30px 24px; border-radius: var(--radius); position: relative; }
.menu-section.feature[data-label]::before { content: attr(data-label); position: absolute; top: -12px; left: 30px; background: var(--accent); color: var(--on-accent); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; }
.menu-section.feature h3 { color: var(--accent); }
.menu-section.feature .blurb, .menu-section.feature .item-desc { color: var(--on-dark-muted); }
.menu-section.feature li { border-color: color-mix(in srgb, var(--on-dark) 15%, transparent); }
.menu-section.feature .item-dots { border-color: color-mix(in srgb, var(--on-dark) 25%, transparent); }
/* Menu rows with a photo (item[3] = { img: PHOTOS key }): text left, square thumb right; the thumb opens the lightbox */
.menu-section li.has-img { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; }
.item-img { all: unset; display: block; box-sizing: border-box; cursor: zoom-in; width: 84px; height: 84px; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.item-img:hover img { transform: scale(1.07); }
.item-img:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
@media (max-width: 540px) { .item-img { width: 72px; height: 72px; } .menu-section li.has-img { gap: 14px; } }
.no-results { text-align: center; padding: 60px 0; color: var(--muted); font-size: 18px; }
.menu-disclaimer { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 22px; }
mark { background: color-mix(in srgb, var(--accent) 45%, transparent); color: inherit; padding: 0 1px; border-radius: 2px; }
@media (max-width: 860px) { .menu-sections { columns: 1; } }

/* ---------- Gallery + lightbox ---------- */
.gallery { columns: 3; column-gap: 18px; padding: 70px 0 110px; }
.gallery figure { margin: 0 0 18px; break-inside: avoid; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-3); }
.gallery button { all: unset; display: block; cursor: zoom-in; width: 100%; }
.gallery button:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.gallery img { width: 100%; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; color: var(--on-dark); font-weight: 600; font-size: 15px; background: linear-gradient(transparent, color-mix(in srgb, var(--ink) 85%, transparent)); pointer-events: none; }
.gallery figcaption small { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 800; }
.gallery .is-ph .ph-img { aspect-ratio: 4/3; padding-bottom: 60px; }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 540px) { .gallery { columns: 1; } }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,12,12,.94); display: none; align-items: center; justify-content: center; padding: 60px 70px; }
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; text-align: center; color: var(--on-dark); }
/* max-width must be a viewport length: a % would collapse inside the shrink-to-fit figure */
.lightbox img { max-height: calc(100vh - 160px); max-width: min(1000px, calc(100vw - 140px)); margin: 0 auto; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox figcaption { margin-top: 16px; font-size: 16px; }
.lb-btn { position: absolute; background: rgba(255,255,255,.1); color: var(--on-dark); border: 0; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 24px; display: grid; place-items: center; }
.lb-btn:hover { background: var(--accent); color: var(--on-accent); }
.lb-close { top: 18px; right: 18px; }
.lightbox.single .lb-prev, .lightbox.single .lb-next { display: none; }
.lb-prev { left: 14px; top: 50%; translate: 0 -50%; }
.lb-next { right: 14px; top: 50%; translate: 0 -50%; }
@media (max-width: 600px) {
  .lightbox { padding: 70px 12px; }
  .lightbox img { max-width: calc(100vw - 24px); }
  .lb-prev, .lb-next { top: auto; bottom: 14px; translate: none; }
  .lb-prev { left: calc(50% - 60px); } .lb-next { right: calc(50% - 60px); }
}

/* ---------- Product cards ([data-products]) ---------- */
.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; }
.product { display: block; text-decoration: none; color: inherit; }
.product-img { display: block; aspect-ratio: 4/5; background: var(--surface-2); border-radius: var(--radius); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
/* Wide two-view product shots: letterbox instead of cropping; set the product's bg to the photo's own backdrop color */
.product.is-contain .product-img img { object-fit: contain; }
.product:hover .product-img img { transform: scale(1.04); }
.product-meta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3px 14px; padding-top: 14px; align-items: baseline; }
.product-name { font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.product-price { font-family: var(--display); font-size: 18px; }
.product-sub { grid-column: 1 / -1; font-size: 14px; color: var(--muted); }
.product:hover .product-name { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 1000px) { .products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; } .product-name { font-size: 12px; letter-spacing: .1em; } }

/* ---------- Photo placeholder (shot list) ---------- */
.ph-img {
  display: grid; place-items: center; text-align: center; padding: 20px; min-height: 160px;
  background: repeating-linear-gradient(45deg, color-mix(in srgb, var(--ink) 5%, transparent) 0 12px, transparent 12px 24px), var(--surface-2);
  color: var(--muted); font: 600 13px/1.45 var(--body); border: 2px dashed var(--line); border-radius: var(--radius);
}
.on-dark .ph-img, .hero .ph-img { background: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px), var(--ink-3); color: var(--on-dark-muted); border-color: rgba(255,255,255,.15); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); padding: 72px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(30px, 4vw, 48px); color: var(--on-accent); max-width: 18ch; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding: 70px 0 34px; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: var(--foot-cols, 1.4fr 1fr 1fr 1fr); gap: 40px; padding-bottom: 50px; border-bottom: 1px solid color-mix(in srgb, var(--on-dark) 10%, transparent); }
.site-footer h4 { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-brand .brand-name { font-size: 30px; }
.foot-brand p { margin-top: 16px; max-width: 32ch; }
.foot-base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; opacity: .65; }
.site-footer .foot-sub { margin-top: 26px; }
.foot-areas ul { grid-template-columns: 1fr 1fr; column-gap: 18px; }
.foot-cta { margin-top: 20px; }
.foot-license { font-size: 13px; opacity: .8; }
@media (max-width: 1080px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* Mobile call bar */
.call-bar { display: none; }
@media (max-width: 640px) {
  .call-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; box-shadow: 0 -6px 20px rgba(0,0,0,.25); }
  .call-bar a { text-align: center; padding: 16px; font-weight: 800; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
  .call-bar a:first-child { background: var(--accent); color: var(--on-accent); }
  .call-bar a:last-child { background: var(--ink); color: var(--on-dark); }
  body { padding-bottom: 52px; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .status.is-open .dot { animation: none; }
}
