/* Demo design system (templates/site). Theme tokens are injected per site into :root
   by the builder (colours, fonts, radius); everything else derives from them with
   color-mix(), so one stylesheet serves every business and still looks like theirs. */

/* ---------- tokens & derived values ---------- */
:root {
  --radius-none: 0; --radius-sm: 6px; --radius-md: 14px; --radius-lg: 24px; --radius-full: 999px;
  --r: var(--radius-md);
  --container: 1200px;
  --gutter: clamp(18px, 4vw, 40px);
  --section: clamp(64px, 9vw, 128px);
  --header-h: 76px;
  --muted: color-mix(in srgb, var(--text) 64%, var(--bg));
  --line: color-mix(in srgb, var(--text) 12%, var(--bg));
  --line-strong: color-mix(in srgb, var(--text) 22%, var(--bg));
  --primary-soft: color-mix(in srgb, var(--primary) 10%, var(--bg));
  --primary-softer: color-mix(in srgb, var(--primary) 5%, var(--bg));
  --secondary-soft: color-mix(in srgb, var(--secondary) 12%, var(--bg));
  --shadow-sm: 0 1px 2px color-mix(in srgb, var(--text) 8%, transparent), 0 2px 8px color-mix(in srgb, var(--text) 6%, transparent);
  --shadow-md: 0 8px 24px color-mix(in srgb, var(--text) 12%, transparent), 0 2px 6px color-mix(in srgb, var(--text) 8%, transparent);
  --shadow-lg: 0 24px 60px color-mix(in srgb, var(--text) 20%, transparent);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --step--1: clamp(.86rem, .82rem + .2vw, .95rem);
  --step-0: clamp(1rem, .95rem + .25vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.05rem + .5vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  --step-3: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem);
  --step-4: clamp(2.2rem, 1.6rem + 3vw, 3.6rem);
  --step-5: clamp(2.6rem, 1.6rem + 5vw, 5.2rem);
}
[data-radius="none"] { --r: var(--radius-none); }
[data-radius="sm"] { --r: var(--radius-sm); }
[data-radius="lg"] { --r: var(--radius-lg); }
[data-radius="full"] { --r: var(--radius-lg); }
[data-mood="dark"] {
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.6);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: var(--step-0); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; background-size: cover; background-position: center; }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: .15em; }
a:hover { text-decoration-thickness: 2px; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; font-weight: 700; text-wrap: balance; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-1); font-weight: 650; }
[data-headings="uppercase"] h1, [data-headings="uppercase"] h2, [data-headings="uppercase"] .eyebrow { text-transform: uppercase; letter-spacing: .04em; }
[data-headings="uppercase"] h1 { letter-spacing: .02em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--primary) 60%, transparent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--primary); color: var(--primary-ink); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.small { font-size: var(--step--1); }
.muted { color: var(--muted); }
.lead { font-size: var(--step-1); color: var(--muted); max-width: 62ch; line-height: 1.55; }
.eyebrow {
  font-family: var(--font-body); font-size: var(--step--1); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--secondary); margin: 0 0 .9em;
}
.eyebrow.on-dark { color: rgba(255,255,255,.85); }
.eyebrow.on-primary { color: color-mix(in srgb, var(--primary-ink) 80%, transparent); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--primary); color: var(--primary-ink); padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
.ic { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic.big { width: 2.2rem; height: 2.2rem; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* ---------- buttons & chips ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em; padding: .8em 1.5em; border-radius: var(--r); border: 2px solid transparent;
  font-weight: 650; font-size: var(--step-0); line-height: 1.1; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s; white-space: nowrap;
}
[data-radius="full"] .btn, [data-radius="full"] .chips li, [data-radius="full"] .hours-chips li { border-radius: var(--radius-full); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: var(--primary-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--primary) 88%, var(--text)); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-light { background: rgba(255,255,255,.92); color: #111; backdrop-filter: blur(8px); }
.btn-light:hover { background: #fff; }
.btn-lg { padding: 1em 1.9em; font-size: var(--step-0); }
.btn-sm { padding: .55em 1em; font-size: var(--step--1); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chips li {
  padding: .45em .95em; border-radius: var(--r); font-size: var(--step--1); font-weight: 600;
  background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(10px);
}
.hero-split .chips li, .hero-mosaic .chips li, .hero-minimal .chips li { background: var(--primary-soft); color: var(--text); border-color: transparent; }
.chips.center { justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line); transition: background .35s, border-color .35s, box-shadow .35s, color .35s;
}
.site-header.over-hero:not(.scrolled) { background: transparent; border-color: transparent; color: #fff; }
.site-header.over-hero:not(.scrolled) .nav a, .site-header.over-hero:not(.scrolled) .wordmark { color: #fff; }
.site-header.over-hero:not(.scrolled) .burger span { background: #fff; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 100%; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: inherit; flex: none; max-width: 38%; }
.brand .logo { height: 44px; width: auto; max-width: 240px; object-fit: contain; object-position: left center; }
.site-header.over-hero:not(.scrolled) .brand .logo { filter: drop-shadow(0 1px 6px rgba(0,0,0,.35)); }
.wordmark { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); letter-spacing: -.01em; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav { min-width: 0; }
.nav ul { display: flex; gap: 2px; flex-wrap: nowrap; overflow: hidden; }
.nav li { flex: none; }
.nav a { display: block; padding: .55em .8em; border-radius: 8px; color: var(--text); text-decoration: none; font-weight: 550; font-size: var(--step--1); transition: background .2s; white-space: nowrap; }
.nav a:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; align-items: center; border-radius: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .burger { display: flex; }
  .brand { max-width: calc(100% - 130px); }
  .header-cta span { display: none; }
  .header-cta { padding: .6em .75em; }
  .nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg); padding: 24px var(--gutter); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .3s var(--ease); overflow: auto; }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav ul { flex-direction: column; gap: 2px; }
  .nav a { font-size: var(--step-2); font-family: var(--font-display); padding: .5em .25em; color: var(--text) !important; border-bottom: 1px solid var(--line); border-radius: 0; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { background: var(--bg); color: var(--text); border-color: var(--line); }
  body.nav-open .site-header .wordmark, body.nav-open .burger span { color: var(--text); background: var(--text); }
}

/* ---------- hero ---------- */
.hero { position: relative; }
.hero .display { margin-bottom: .35em; }
.hero-sub { font-size: var(--step-1); max-width: 58ch; line-height: 1.5; margin-bottom: 1.6em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.hero-actions.center { justify-content: center; }
.hero-fullbleed, .hero-band {
  min-height: 100svh; display: flex; align-items: flex-end; color: #fff; padding: calc(var(--header-h) + 48px) 0 clamp(56px, 8vw, 110px); isolation: isolate;
}
.hero-band { min-height: 70svh; align-items: center; text-align: center; }
.hero-band .hero-content { margin-inline: auto; }
.hero-band .hero-sub { margin-inline: auto; }
.hero-band .hero-actions { justify-content: center; }
.hero-band .chips { justify-content: center; }
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--text); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s var(--ease) both; transform-origin: center; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.25) 100%); }
.hero-band .hero-shade { background: rgba(0,0,0,.45); }
.hero-fullbleed .hero-content { max-width: 820px; margin-left: 0; margin-right: auto; width: 100%; }
.hero-fullbleed .display, .hero-band .display { text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-fullbleed .hero-sub, .hero-band .hero-sub { color: rgba(255,255,255,.9); }
.scroll-cue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); color: #fff; opacity: .8; animation: cue 2s infinite; }
.scroll-cue .ic { width: 28px; height: 28px; }
@keyframes cue { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
.hero-split, .hero-mosaic { padding: calc(var(--header-h) + clamp(32px, 6vw, 80px)) 0 clamp(40px, 6vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-visual { aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hero-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.hero-visual img { animation: fadeUp .9s var(--ease) both; }
.hero-text .display { animation: fadeUp .7s var(--ease) both; }
.hero-text .hero-sub, .hero-text .hero-actions, .hero-text .chips, .hero-text .eyebrow { animation: fadeUp .8s .1s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.mosaic { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; aspect-ratio: 1; }
.mosaic-cell { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); }
.mosaic-cell:first-child { grid-row: 1 / 3; }
.mosaic-1 .mosaic-cell:first-child { grid-column: 1 / 3; }
.mosaic-2 { grid-template-rows: 1fr; aspect-ratio: 4 / 3; }
.mosaic-2 .mosaic-cell:first-child { grid-row: auto; }
.hero-minimal { padding: calc(var(--header-h) + clamp(56px, 10vw, 120px)) 0 clamp(56px, 9vw, 110px); overflow: hidden; text-align: center; }
.hero-minimal .hero-content { max-width: 860px; margin-inline: auto; position: relative; }
.hero-minimal .hero-sub { margin-inline: auto; }
.hero-logo { max-height: 120px; width: auto; margin: 0 auto 28px; object-fit: contain; }
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.hero-orbs span { position: absolute; width: 48vw; height: 48vw; max-width: 700px; max-height: 700px; border-radius: 50%; filter: blur(80px); opacity: .35; }
.hero-orbs span:first-child { background: var(--primary); top: -20%; left: -10%; }
.hero-orbs span:last-child { background: var(--secondary); bottom: -30%; right: -10%; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .hero-fullbleed { min-height: 92svh; }
  .mosaic { aspect-ratio: 4 / 3; }
}

/* ---------- sections ---------- */
.section { padding-block: var(--section); }
.section + .section { padding-top: 0; }
.sec-cta.v-band + .section, .sec-gallery.v-strip + .section { padding-top: var(--section); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head h2 { margin-bottom: .35em; }
.section-head .lead { margin-bottom: 0; }
.section-cta { margin: 36px 0 0; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: clamp(16px, 2.5vw, 28px); grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.nav li.nav-overflow { display: none; }
@media (max-width: 900px) { .nav li.nav-overflow { display: block; } }

/* cards */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media.tall { aspect-ratio: 3 / 2; }
.card-media img { transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: clamp(18px, 2.4vw, 26px); display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-body p { margin: 0 0 8px; color: var(--muted); }
.card-body h3 { margin-bottom: 6px; }
.card.icon-card { padding: clamp(20px, 2.6vw, 28px); gap: 6px; }
.card.icon-card p { color: var(--muted); margin: 0; }
.icon-bubble { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: calc(var(--r) * .8); background: var(--primary-soft); color: var(--primary); margin-bottom: 14px; }
.icon-bubble .ic { width: 24px; height: 24px; }
.price { font-weight: 700; color: var(--primary); font-variant-numeric: tabular-nums; white-space: nowrap; margin-top: auto; }

/* split / about */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-grid.no-image { grid-template-columns: 1fr; max-width: 760px; }
.split-grid.flip .split-visual { order: 2; }
.split-visual { border-radius: var(--r); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-md); }
.split-text .lead { color: var(--text); }
.split-text h3 { font-size: var(--step-2); }
.alternating { display: grid; gap: clamp(48px, 7vw, 96px); }
.alternating .split-visual { aspect-ratio: 4 / 3; }
.columns-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 72px); }
.columns-visual { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; margin-top: 24px; }
.centered-text { max-width: 760px; margin-inline: auto; text-align: center; }
.centered-text .lead { margin-inline: auto; color: var(--text); }
.wide-visual { margin-top: clamp(32px, 5vw, 56px); border-radius: var(--r); overflow: hidden; aspect-ratio: 21 / 9; box-shadow: var(--shadow-md); }
.highlights { display: grid; gap: 12px; margin: 24px 0 28px; }
.highlights li { display: flex; gap: 12px; align-items: flex-start; }
.highlights .ic { width: 22px; height: 22px; color: var(--primary); margin-top: 3px; }
.highlights strong { display: block; }
.highlights span { color: var(--muted); }
.highlights.row { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: left; }
@media (max-width: 900px) {
  .split-grid, .columns-grid { grid-template-columns: 1fr; }
  .split-grid.flip .split-visual { order: 0; }
}

/* service list */
.service-list { display: grid; counter-reset: s; border-top: 1px solid var(--line); }
.service-list li { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.service-list .num { font-family: var(--font-display); color: var(--secondary); font-weight: 700; font-size: var(--step-1); }
.service-list h3 { margin-bottom: 4px; }
.service-list p { margin: 0; color: var(--muted); }

/* menu */
.menu-layout { display: grid; gap: clamp(28px, 5vw, 64px); }
.menu-layout.has-image { grid-template-columns: 1.3fr .8fr; align-items: start; }
.menu-visual { border-radius: var(--r); overflow: hidden; aspect-ratio: 3 / 4; position: sticky; top: calc(var(--header-h) + 24px); box-shadow: var(--shadow-md); }
.menu-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 48px) clamp(28px, 5vw, 64px); }
.menu-groups.single { grid-template-columns: 1fr; max-width: 760px; }
.menu-group h3 { font-size: var(--step-2); padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; margin-bottom: 14px; }
.menu li { display: flex; align-items: baseline; gap: 10px; padding: 10px 0; }
.dish { display: flex; flex-direction: column; }
.dish-name { font-weight: 600; }
.dish small { color: var(--muted); font-size: var(--step--1); }
.leader { flex: 1; border-bottom: 1px dotted var(--line-strong); min-width: 16px; transform: translateY(-5px); }
.menu li.no-price .leader { border-bottom: 0; }
.menu .price { margin: 0; }
@media (max-width: 900px) { .menu-layout.has-image { grid-template-columns: 1fr; } .menu-visual { position: static; aspect-ratio: 4 / 3; } }
@media (max-width: 640px) { .menu-groups { grid-template-columns: 1fr; } }

/* galleries */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid figure, .gallery-featured figure, .gallery-masonry figure, .strip-item { margin: 0; position: relative; }
.lb { display: block; overflow: hidden; border-radius: calc(var(--r) * .7); aspect-ratio: 4 / 3; background: var(--line); }
.lb img { transition: transform .7s var(--ease), filter .4s; }
.lb:hover img { transform: scale(1.05); }
figcaption { position: absolute; left: 12px; bottom: 12px; right: 12px; font-size: var(--step--1); color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.6); pointer-events: none; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease); }
figure:hover figcaption { opacity: 1; transform: none; }
.gallery-featured { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 12px; }
.gallery-featured .big { grid-column: span 2; grid-row: span 2; }
.gallery-featured .big .lb { aspect-ratio: auto; height: 100%; }
.gallery-featured .lb { aspect-ratio: 1; }
.gallery-masonry { columns: 3; column-gap: 12px; }
.gallery-masonry figure { break-inside: avoid; margin-bottom: 12px; }
.gallery-masonry .lb { aspect-ratio: auto; }
.gallery-strip { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gutter) 20px; scrollbar-width: thin; }
.gallery-strip .strip-item { flex: 0 0 min(78vw, 520px); scroll-snap-align: center; }
.gallery-strip .lb { aspect-ratio: 4 / 5; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-masonry { columns: 2; } .gallery-featured { grid-template-columns: repeat(2, 1fr); } .gallery-featured .big { grid-column: span 2; grid-row: span 1; } .gallery-featured .big .lb { aspect-ratio: 16 / 10; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* units */
.unit-list { display: grid; gap: 20px; }
.unit-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.unit-row.no-image { grid-template-columns: 1fr; }
.unit-media { aspect-ratio: 4 / 3; }
.unit-body { padding: clamp(20px, 3vw, 36px); display: flex; flex-direction: column; }
.unit-body p { color: var(--muted); }
@media (max-width: 720px) { .unit-row { grid-template-columns: 1fr; } }

/* features */
.feature { padding: 8px 0; }
.feature p { color: var(--muted); margin: 0; }
.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; padding: clamp(18px, 3vw, 28px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.feature-row li { display: flex; gap: 14px; align-items: center; }
.feature-row .ic { width: 30px; height: 30px; color: var(--primary); }
.feature-row strong { display: block; }
.feature-row span { color: var(--muted); font-size: var(--step--1); }

/* hours */
.hours-wrap { max-width: 640px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--step-0); }
.hours-table th, .hours-table td { padding: 14px 8px; border-bottom: 1px solid var(--line); text-align: left; }
.hours-table th { font-weight: 600; width: 45%; }
.hours-table td { font-variant-numeric: tabular-nums; color: var(--muted); }
.hours-table tr.today th, .hours-table tr.today td { color: var(--primary); font-weight: 700; }
.hours-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hours-chips li { padding: 12px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); display: grid; }
.hours-chips span { color: var(--muted); font-variant-numeric: tabular-nums; }
.open-now { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 600; font-size: var(--step--1); margin: 0 0 18px; }
.open-now .dot { width: 9px; height: 9px; border-radius: 50%; background: #2fa55a; box-shadow: 0 0 0 4px rgba(47,165,90,.18); }
.open-now.closed .dot { background: #c94b3a; box-shadow: 0 0 0 4px rgba(201,75,58,.18); }
.hours { display: grid; gap: 4px; }

/* faq */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 10px; }
.faq { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 0 clamp(16px, 2.4vw, 24px); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-weight: 650; font-size: var(--step-0); }
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { transition: transform .3s var(--ease); color: var(--muted); }
.faq[open] .chev { transform: rotate(180deg); color: var(--primary); }
.faq-body { padding: 0 0 18px; color: var(--muted); }
.faq-body p { margin: 0; }

/* cta */
.sec-cta.v-band { position: relative; isolation: isolate; color: #fff; padding-block: clamp(72px, 10vw, 140px); background: var(--primary); text-align: center; }
.band-media { position: absolute; inset: 0; z-index: -1; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-shade { position: absolute; inset: 0; background: color-mix(in srgb, var(--primary) 55%, rgba(0,0,0,.55)); }
.band-content { max-width: 760px; }
.band-content h2 { color: #fff; }
.band-content .lead { color: rgba(255,255,255,.88); margin-inline: auto; }
.sec-cta.v-band:not(.has-image) .band-content h2 { color: var(--primary-ink); }
.sec-cta.v-band:not(.has-image) .band-content .lead { color: color-mix(in srgb, var(--primary-ink) 85%, transparent); }
.cta-box { background: var(--primary); color: var(--primary-ink); border-radius: var(--r); padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center; box-shadow: var(--shadow-md); }
.cta-box h2 { color: inherit; font-size: var(--step-3); }
.cta-box .lead { color: color-mix(in srgb, var(--primary-ink) 82%, transparent); margin: 0; }
@media (max-width: 720px) { .cta-box { grid-template-columns: 1fr; } }

/* documents */
.doc-list { display: grid; gap: 12px; max-width: 760px; }
.doc { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); color: var(--text); text-decoration: none; transition: border-color .2s, transform .25s var(--ease), box-shadow .25s; }
.doc:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.doc .ic { width: 28px; height: 28px; color: var(--primary); }
.doc div { flex: 1; display: grid; }
.doc span:not(.doc-dl) { color: var(--muted); font-size: var(--step--1); }
.doc-dl { color: var(--primary); font-weight: 600; font-size: var(--step--1); }

/* map */
.map-box { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--surface); min-height: 340px; display: grid; }
.map-placeholder { display: grid; place-items: center; gap: 10px; text-align: center; padding: 40px 24px; align-content: center; }
.map-placeholder .ic { color: var(--primary); }
.map-address { font-weight: 600; font-size: var(--step-1); margin: 0; }
.map-placeholder .small { margin: 6px 0 0; max-width: 46ch; }
.map-box iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.contact-map { margin-top: clamp(32px, 5vw, 56px); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); }
.contact-grid.no-form { grid-template-columns: 1fr; max-width: 640px; }
.contact-info { display: grid; gap: 22px; align-content: start; }
.contact-line { display: flex; gap: 14px; margin: 0; align-items: flex-start; }
.contact-line .ic { width: 24px; height: 24px; color: var(--primary); margin-top: 4px; }
.contact-line > span { display: grid; gap: 2px; }
.lbl { font-size: var(--step--1); color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.social { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 0; }
.contact-form { display: grid; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(20px, 3vw, 32px); }
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: var(--step--1); }
.contact-form input, .contact-form textarea { font: inherit; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: calc(var(--r) * .6); background: var(--bg); color: var(--text); width: 100%; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 20%, transparent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: start; }
.form-note { margin: 0; }
.form-note.sent { color: #2fa55a; font-weight: 600; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* footer */
.site-footer { border-top: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 60%, var(--bg)); padding: clamp(40px, 6vw, 64px) 0 28px; color: var(--muted); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand .logo { height: 40px; width: auto; max-width: 180px; margin-bottom: 12px; object-fit: contain; object-position: left; }
.footer-brand .wordmark { display: block; margin-bottom: 8px; }
.footer-nav { display: grid; gap: 6px; align-content: start; }
.footer-nav a { color: var(--text); text-decoration: none; }
.footer-nav a:hover { color: var(--primary); }
.footer-contact p { margin: 0 0 4px; }
.footer-contact a { color: var(--text); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.footer-legal p { margin: 0; }
.demo-note { opacity: .8; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 22px; } }

/* lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; margin: 0; color: #fff; }
.lightbox::backdrop { background: rgba(10,10,10,.92); backdrop-filter: blur(6px); }
.lightbox figure { margin: 0; display: grid; place-items: center; height: 100%; padding: 56px 64px; gap: 12px; grid-template-rows: 1fr auto; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 130px); object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox figcaption { position: static; opacity: 1; transform: none; text-shadow: none; color: rgba(255,255,255,.85); text-align: center; }
.lightbox button { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox button:hover { background: rgba(255,255,255,.18); }
.lightbox .ic { width: 26px; height: 26px; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close { top: 16px; right: 16px; transform: none; }
@media (max-width: 720px) { .lightbox figure { padding: 64px 12px 24px; } .lb-prev, .lb-next { top: auto; bottom: 0; transform: none; } .lightbox img { max-height: calc(100vh - 150px); } }

/* motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
