/* =====================================================
   Aust'n Co Barbers — Global Stylesheet
   Design tokens, resets, shared components
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #17150f;
  --ink-2:      #1f1c15;
  --ink-3:      #272217;
  --stone:      #ece7dd;
  --stone-2:    #e3ddd1;
  --bone:       #f1ece2;
  --bone-dim:   #cabfac;
  --muted:      #8b8473;
  --accent:     #b0824e;
  --accent-deep:#8f6638;
  --line:       rgba(176,130,78,.22);
  --line-soft:  rgba(241,236,226,.10);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Light-theme section override ---------- */
section.theme-light {
  background: var(--stone);
  color: #23211d;
  --bone:       #23211d;
  --bone-dim:   #5b554b;
  --muted:      #8c8576;
  --accent:     #8f6638;
  --accent-deep:#73502a;
  --line:       rgba(35,33,29,.16);
  --line-soft:  rgba(35,33,29,.085);
}
section.theme-light.alt { background: var(--stone-2); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.01em;
}

/* ---------- Layout wrappers ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.block { padding: 140px 0; position: relative; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(38px, 5.4vw, 76px); }
.section-head .sub { max-width: 380px; color: var(--bone-dim); font-size: 16px; line-height: 1.7; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); opacity: .75; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--accent); opacity: .75; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 13px 26px;
  transition: .4s;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn:hover { background: var(--accent); color: var(--ink); }
.btn.solid { background: var(--accent); color: var(--ink); }
.btn.solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: background .5s, backdrop-filter .5s, padding .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 0; z-index: 121;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--bone);
  transition: transform .35s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* Mobile nav overlay */
.mob-nav {
  position: fixed; inset: 0; z-index: 115; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 40px 60px;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .38s, transform .42s cubic-bezier(.2,.7,.2,1);
}
.mob-nav.open { opacity: 1; pointer-events: auto; transform: none; }
.mob-lnk {
  font-family: var(--serif); font-size: clamp(34px,9vw,54px); color: var(--bone-dim);
  line-height: 1.1; display: block;
  border-bottom: 1px solid var(--line-soft); padding: 16px 0;
  transition: color .25s, padding-left .25s;
}
.mob-lnk:hover, .mob-lnk.here { color: var(--bone); padding-left: 8px; }
.mob-book { margin-top: 36px; align-self: flex-start; }
.site-header.scrolled {
  background: rgba(23,21,15,.8);
  backdrop-filter: blur(14px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand .bt {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone);
}
.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav a.lnk {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone-dim); transition: color .3s; position: relative;
}
.site-nav a.lnk::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent); transition: width .35s;
}
.site-nav a.lnk:hover,
.site-nav a.lnk.here { color: var(--bone); }
.site-nav a.lnk:hover::after,
.site-nav a.lnk.here::after { width: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
  background: var(--ink);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-brand img { width: 46px; margin-bottom: 18px; }
.foot-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 280px; }
.foot-col h4 {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; font-family: var(--sans); font-weight: 400;
}
.foot-col a { display: block; color: var(--bone-dim); font-size: 14px; margin-bottom: 13px; transition: color .3s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--line-soft);
  color: var(--muted); font-size: 12px; letter-spacing: .1em; flex-wrap: wrap; gap: 14px;
}
.foot-legal { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.foot-legal a { color: var(--muted); font-size: 12px; letter-spacing: .1em; transition: color .3s; }
.foot-legal a:hover { color: var(--accent); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; background: var(--ink-2);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: slide 32s linear infinite; width: max-content;
}
.marquee span {
  font-family: var(--serif); font-size: 24px; font-style: italic;
  color: var(--bone-dim); display: inline-flex; align-items: center; gap: 60px;
}
.marquee span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: 13px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Services table ---------- */
.svc { border-top: 1px solid var(--line-soft); }
.svc-row {
  display: grid; grid-template-columns: 54px 1fr auto auto;
  gap: 30px; align-items: center;
  padding: 34px 0; border-bottom: 1px solid var(--line-soft); transition: .45s; cursor: default;
}
.svc-row:hover { padding-left: 18px; background: linear-gradient(90deg,rgba(176,130,78,.07),transparent); }
.svc-row .idx { font-family: var(--serif); font-size: 18px; color: var(--accent); font-style: italic; }
.svc-row .name { font-family: var(--serif); font-size: clamp(26px,3vw,40px); color: var(--bone); transition: color .4s; }
.svc-row:hover .name { color: var(--accent); }
.svc-row .desc { font-size: 14px; color: var(--muted); max-width: 340px; line-height: 1.6; }
.svc-row .price { font-family: var(--serif); font-size: 30px; color: var(--bone); white-space: nowrap; }
.svc-row .price small { font-size: 13px; color: var(--muted); font-family: var(--sans); letter-spacing: .1em; }
.svc-note { margin-top: 30px; font-size: 13px; letter-spacing: .06em; color: var(--muted); }
.svc-note a { color: var(--accent); }

/* ---------- Products grid ---------- */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 70px; }
.prod-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line-soft); transition: .3s;
}
.prod-row:hover { border-color: var(--line); }
.prod-row .pn { font-family: var(--serif); font-size: 21px; color: var(--bone); }
.prod-row .pn em {
  font-style: normal; font-family: var(--sans); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-left: 8px;
}
.prod-row .pp { font-family: var(--serif); font-size: 21px; color: var(--accent); white-space: nowrap; }
.prod-cta { margin-top: 38px; font-size: 14px; color: var(--bone-dim); line-height: 1.7; max-width: 560px; }
.prod-cta a { color: var(--accent); }

/* ---------- Before / After slider ---------- */
.ba-wrap { position: relative; }
.ba {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  border: 1px solid var(--line); user-select: none; cursor: ew-resize; background: var(--ink-2);
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: var(--bone); transform: translateX(-1px); z-index: 5; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(23,21,15,.3);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; background: var(--ink-2);
  border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 15px; box-shadow: 0 10px 30px -12px rgba(0,0,0,.7);
}
.ba-tag {
  position: absolute; top: 18px; z-index: 6; font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--bone); background: rgba(23,21,15,.55);
  border: 1px solid var(--line); padding: 7px 13px; backdrop-filter: blur(4px);
}
.ba-tag.before { left: 18px; }
.ba-tag.after  { right: 18px; }
.ba-hint { margin-top: 20px; text-align: center; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
/* Portrait variant — phone photos */
.ba--portrait { aspect-ratio: 3/4; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ---------- Testimonials ---------- */
.quotes { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-stage { text-align: center; max-width: 900px; margin: 0 auto; min-height: 230px; }
.quote-stage .q {
  font-family: var(--serif); font-size: clamp(28px,4vw,52px); line-height: 1.28;
  font-style: italic; transition: opacity .6s;
}
.quote-stage .q em { color: var(--accent); font-style: italic; }
.quote-stage .who { margin-top: 34px; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--bone-dim); transition: opacity .6s; }
.stars { color: var(--accent); letter-spacing: .3em; font-size: 14px; margin-bottom: 26px; }
.quote-dots { display: flex; gap: 12px; justify-content: center; margin-top: 46px; }
.quote-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--accent);
  background: transparent; cursor: pointer; padding: 0; transition: .3s;
}
.quote-dots button.on { background: var(--accent); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 28px 0; cursor: pointer;
  font-family: var(--serif); font-size: 24px; color: var(--bone); transition: color .3s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .pm { font-family: var(--sans); font-size: 22px; color: var(--accent); transition: transform .4s; font-weight: 300; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.7,.2,1); }
.faq-a p { padding: 0 0 28px; color: var(--bone-dim); font-size: 16px; line-height: 1.8; max-width: 560px; }

/* ---------- Coverage / map ---------- */
.cover-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); min-height: 520px;
}
.cover-map { position: relative; background: var(--ink-2); overflow: hidden; }
.cover-info { padding: 64px 60px; display: flex; flex-direction: column; justify-content: center; gap: 30px; }
.cover-info h2 { font-size: clamp(34px,4.4vw,58px); }
.cover-info p { color: var(--bone-dim); font-size: 16px; line-height: 1.8; max-width: 420px; }
.cover-detail { display: flex; gap: 16px; align-items: flex-start; }
.cover-detail .k {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); width: 96px; flex: none; padding-top: 3px;
}
.cover-detail .v { font-size: 16px; color: var(--bone); line-height: 1.6; }
.cover-osm {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none;
  filter: invert(.92) hue-rotate(178deg) brightness(.95) contrast(.88) saturate(.5) sepia(.2);
}
.map-tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 110% at 50% 46%,rgba(176,130,78,.14),transparent 58%), linear-gradient(180deg,rgba(23,21,15,.16),rgba(23,21,15,.46));
}
.cover-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 32%; aspect-ratio: 1; border-radius: 50%; z-index: 1; pointer-events: none;
  border: 1px dashed rgba(176,130,78,.55);
  background: radial-gradient(circle,rgba(176,130,78,.10),transparent 70%);
}
.map-open {
  position: absolute; right: 16px; bottom: 14px; z-index: 4;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone); background: rgba(23,21,15,.6); border: 1px solid var(--line);
  padding: 8px 14px; backdrop-filter: blur(4px); transition: .3s;
}
.map-open:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3; pointer-events: none; }
.map-pin .dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(176,130,78,.5); animation: pulse 2.6s infinite;
}
.map-pin .lbl {
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
  white-space: nowrap; background: rgba(23,21,15,.7); padding: 5px 12px; border: 1px solid var(--line);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(176,130,78,.45); }
  70%  { box-shadow: 0 0 0 26px rgba(176,130,78,0); }
  100% { box-shadow: 0 0 0 0   rgba(176,130,78,0); }
}
.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 46px; }
.areas span {
  border: 1px solid var(--line-soft); padding: 9px 16px;
  font-size: 13px; letter-spacing: .03em; color: var(--bone-dim); transition: .3s;
}
.areas span:hover { border-color: var(--accent); color: var(--bone); }
.areas-note { margin-top: 26px; font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 150px 0; }
.cta-band h2 { font-size: clamp(44px,7vw,108px); line-height: 1; }
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p { color: var(--bone-dim); margin: 26px auto 44px; max-width: 440px; font-size: 17px; line-height: 1.7; }

/* ---------- Booking modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; background: rgba(8,7,5,.74); backdrop-filter: blur(8px);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity .5s;
  display: flex; align-items: center; justify-content: center; padding: 30px;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(720px,100%); max-height: 90vh; overflow: auto; background: var(--ink-2);
  border: 1px solid var(--line); transform: translateY(30px) scale(.98);
  transition: transform .55s cubic-bezier(.2,.7,.2,1); position: relative;
}
.modal-scrim.open .modal { transform: none; }
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 36px; border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; background: var(--ink-2); z-index: 3;
}
.modal-head .t { font-family: var(--serif); font-size: 24px; }
.modal-close {
  background: none; border: 1px solid var(--line); color: var(--bone);
  width: 40px; height: 40px; cursor: pointer; font-size: 18px; transition: .3s;
}
.modal-close:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.progress { display: flex; gap: 8px; padding: 22px 36px 0; }
.progress .seg { flex: 1; height: 2px; background: var(--line-soft); position: relative; overflow: hidden; }
.progress .seg i { position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s; }
.progress .seg.done i,
.progress .seg.active i { transform: scaleX(1); }
.step { padding: 34px 36px 40px; display: none; }
.step.active { display: block; animation: stepin .5s ease; }
@keyframes stepin { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.step .label { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.step h3 { font-family: var(--serif); font-size: 32px; margin-bottom: 28px; }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 14px; }
.opt { border: 1px solid var(--line-soft); padding: 22px 20px; cursor: pointer; transition: .3s; background: var(--ink-3); position: relative; }
.opt:hover { border-color: var(--accent); }
.opt.sel { border-color: var(--accent); background: linear-gradient(180deg,rgba(176,130,78,.12),transparent); }
.opt .on-mark {
  position: absolute; top: 12px; right: 12px; width: 18px; height: 18px;
  border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 10px; color: var(--accent); opacity: 0; transition: .3s;
}
.opt.sel .on-mark { opacity: 1; }
.opt .ot { font-family: var(--serif); font-size: 22px; color: var(--bone); }
.opt .od { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.opt .op { font-size: 13px; color: var(--accent); margin-top: 10px; letter-spacing: .08em; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 9px; }
.field input, .field textarea {
  width: 100%; background: var(--ink-3); border: 1px solid var(--line-soft);
  color: var(--bone); padding: 14px 16px; font-family: var(--sans); font-size: 15px; transition: .3s; border-radius: 0;
}
.field input::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.counter { display: flex; align-items: center; gap: 22px; }
.counter button {
  width: 52px; height: 52px; border: 1px solid var(--line); background: var(--ink-3);
  color: var(--accent); font-size: 24px; cursor: pointer; transition: .3s; font-weight: 300;
}
.counter button:hover { background: var(--accent); color: var(--ink); }
.counter .cv { font-family: var(--serif); font-size: 48px; min-width: 60px; text-align: center; }
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 34px; gap: 16px; }
.step-nav .back {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; transition: color .3s;
}
.step-nav .back:hover { color: var(--bone); }
.summary { background: var(--ink-3); border: 1px solid var(--line-soft); padding: 26px; }
.summary .sr { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.summary .sr:last-child { border: none; }
.summary .sr .k { color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-size: 11px; }
.summary .sr .v { color: var(--bone); text-align: right; }
.tc-check {
  display: flex; align-items: flex-start; gap: 13px; cursor: pointer; margin-top: 22px;
}
.tc-check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.tc-box {
  flex: none; width: 18px; height: 18px; border: 1px solid var(--line);
  background: var(--ink-3); position: relative; transition: border-color .25s, background .25s;
  margin-top: 1px;
}
.tc-check input:checked ~ .tc-box { border-color: var(--accent); background: var(--accent); }
.tc-check input:checked ~ .tc-box::after {
  content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px;
  border: 2px solid var(--ink); border-top: none; border-left: none; transform: rotate(45deg);
}
.tc-text { font-size: 13px; color: var(--muted); line-height: 1.55; }
.tc-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; transition: color .3s; }
.tc-text a:hover { color: var(--bone); }
.done-state { text-align: center; padding: 30px 0; }
.done-state .ring {
  width: 84px; height: 84px; border: 1px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; font-size: 34px; color: var(--accent);
}

/* ---------- Town finder ---------- */
.finder { max-width: 560px; }
.finder-field input {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line); color: var(--bone);
  padding: 20px 22px; font-family: var(--sans); font-size: 18px; font-weight: 300; transition: .3s;
}
.finder-field input::placeholder { color: var(--muted); }
.finder-field input:focus { outline: none; border-color: var(--accent); }
.finder-count { margin-top: 14px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.finder-count b { color: var(--accent); font-weight: 400; }
.areas span.hit { border-color: var(--accent); color: var(--bone); background: linear-gradient(120deg,rgba(176,130,78,.12),transparent); }
.areas span.hide { display: none; }
.areas-empty { display: none; margin-top: 30px; border: 1px solid var(--line); padding: 30px 34px; max-width: 560px; }
.areas-empty h3 { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--bone); margin-bottom: 10px; }
.areas-empty p { color: var(--bone-dim); font-size: 15px; line-height: 1.7; }
.areas-empty a { color: var(--accent); }

/* ---------- Work gallery ---------- */
.gal { column-count: 3; column-gap: 18px; }
.gal-cell { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; }
.gal-cell img { width: 100%; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.gal-cell:hover img { transform: scale(1.045); }
.gal-cell .gc-tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 3;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bone); background: rgba(23,21,15,.55); border: 1px solid var(--line);
  padding: 7px 12px; backdrop-filter: blur(4px);
}
.gal-cell.hide { display: none; }
.gal-empty { display: none; text-align: center; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 24px; padding: 60px 0; }
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.filters button {
  font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; border: 1px solid var(--line-soft); background: transparent;
  color: var(--bone-dim); padding: 11px 22px; transition: .35s;
}
.filters button:hover { border-color: var(--accent); color: var(--bone); }
.filters button.on { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ---------- The Van cinematic ---------- */
.cinema { position: relative; height: 520vh; background: #0c0b07; }
.stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 42%,#1a1711 0%,#0c0b07 70%);
}
.interior { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; will-change: transform; }
.interior-frame {
  position: relative; width: min(66vw,calc(88vh*.84)); height: 88vh;
  box-shadow: 0 70px 170px -50px rgba(0,0,0,.95);
}
.interior-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  filter: brightness(.3) saturate(.9); will-change: filter;
}
.interior-frame::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(130% 100% at 50% 40%,transparent 30%,rgba(8,7,5,.62) 100%);
}
.doorway {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 4;
  width: min(66vw,calc(88vh*.84)); height: 88vh; perspective: 2200px; perspective-origin: 50% 46%; will-change: transform,opacity;
}
.door-frame {
  position: absolute; inset: -1.6% -1.4%; z-index: 0; border-radius: 18px 18px 7px 7px;
  background: linear-gradient(180deg,#2b2820,#1b1813 60%,#121009);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), inset 0 0 0 1px rgba(0,0,0,.6), 0 60px 130px -50px rgba(0,0,0,.9);
}
.door-aperture { position: absolute; inset: 0; z-index: 1; }
.leaf { position: absolute; top: 0; height: 100%; width: 50%; backface-visibility: hidden; overflow: hidden; will-change: transform; }
.leaf.left  { left: 0;  transform-origin: left center; }
.leaf.right { right: 0; transform-origin: right center; }
.leaf-face {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,rgba(255,255,255,.018) 0 1px,transparent 1px 7px), linear-gradient(180deg,#262119 0%,#1d1812 46%,#15110b 100%);
  box-shadow: inset 0 2px 4px rgba(255,255,255,.06), inset 0 -60px 110px rgba(0,0,0,.55);
}
.leaf-face::before {
  content: ""; position: absolute; inset: 9% 11%; border-radius: 4px;
  border: 1px solid rgba(176,130,78,.42);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4), inset 0 26px 60px rgba(0,0,0,.45), 0 1px 0 rgba(176,130,78,.12);
}
.leaf .mono {
  position: absolute; top: 27%; left: 50%; transform: translateX(-50%); height: 30%; width: auto; opacity: .92;
  filter: brightness(0) saturate(100%) invert(63%) sepia(28%) saturate(720%) hue-rotate(348deg) brightness(92%) contrast(86%);
}
.leaf .rim { position: absolute; top: 0; bottom: 0; width: 34%; opacity: 0; mix-blend-mode: screen; }
.leaf.left  .rim { right: 0; background: linear-gradient(270deg,rgba(214,168,104,.6),transparent); }
.leaf.right .rim { left: 0;  background: linear-gradient(90deg,rgba(214,168,104,.6),transparent); }
.handle {
  position: absolute; top: 50%; height: 120px; width: 7px; transform: translateY(-50%); z-index: 3; border-radius: 4px;
  background: linear-gradient(90deg,#5b564d,#d4cebf 44%,#9a9486 60%,#4f4a41);
  box-shadow: 0 3px 10px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.2);
}
.leaf.left  .handle { right: 5%; }
.leaf.right .handle { left: 5%; }
.seam {
  position: absolute; left: 50%; top: 6%; bottom: 6%; width: 4px; transform: translateX(-50%); z-index: 2; opacity: 0;
  background: linear-gradient(180deg,transparent,rgba(214,168,104,.95),transparent); filter: blur(2px);
}
.spill {
  position: absolute; left: 50%; top: 48%; width: 30vw; height: 42vw; transform: translate(-50%,-50%) scale(.2);
  background: radial-gradient(closest-side,rgba(214,168,104,.6),rgba(176,130,78,.16) 48%,transparent 72%);
  z-index: 5; opacity: 0; pointer-events: none; mix-blend-mode: screen; filter: blur(10px);
}
.edge-fade { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(125% 115% at 50% 50%,transparent 34%,rgba(8,7,5,.78) 88%); }
.hotspots { position: absolute; inset: 0; z-index: 6; opacity: 0; pointer-events: none; }
.hot { position: absolute; transform: translate(-50%,-50%); }
.hot .pin {
  width: 13px; height: 13px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(176,130,78,.5); animation: hotpulse 2.8s infinite;
}
@keyframes hotpulse { 0%{box-shadow:0 0 0 0 rgba(176,130,78,.5)}70%{box-shadow:0 0 0 18px rgba(176,130,78,0)}100%{box-shadow:0 0 0 0 rgba(176,130,78,0)} }
.hot .lbl {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: rgba(12,11,7,.66); border: 1px solid var(--line);
  backdrop-filter: blur(6px); padding: 9px 15px;
}
.hot .lbl .t { font-family: var(--serif); font-size: 18px; color: var(--bone); line-height: 1.05; }
.hot .lbl .d { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-top: 3px; }
.hot.flip .lbl { left: auto; right: 24px; }
.cine-title {
  position: absolute; left: 0; right: 0; top: 41%; transform: translateY(-50%);
  z-index: 8; text-align: center; pointer-events: none; will-change: transform,opacity;
}
.cine-title::before {
  content: ""; position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: min(720px,76vw); height: 360px; z-index: -1;
  background: radial-gradient(closest-side,rgba(10,9,6,.82),rgba(10,9,6,.4) 55%,transparent 78%); filter: blur(8px);
}
.cine-title .eyebrow { justify-content: center; color: var(--bone); }
.cine-title .eyebrow::before,
.cine-title .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--accent); opacity: .8; }
.cine-title h1 { font-size: clamp(48px,8vw,118px); line-height: .95; margin-top: 22px; text-shadow: 0 8px 40px rgba(0,0,0,.7); }
.cine-title h1 em { font-style: italic; color: var(--accent); }
.cine-title .lead { max-width: 430px; margin: 24px auto 0; font-size: 17px; line-height: 1.7; color: var(--bone-dim); }
.cine-cap { position: absolute; left: 0; right: 0; bottom: 13%; z-index: 9; text-align: center; opacity: 0; pointer-events: none; will-change: opacity,transform; }
.cine-cap .k { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--accent); }
.cine-cap h2 { font-size: clamp(30px,4.4vw,58px); margin-top: 14px; text-shadow: 0 8px 40px rgba(0,0,0,.7); }
.cue {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 10;
  text-align: center; font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); will-change: opacity;
}
.cue .bar { width: 1px; height: 46px; margin: 12px auto 0; background: linear-gradient(var(--accent),transparent); position: relative; overflow: hidden; }
.cue .bar::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%; background: var(--bone);
  animation: cuemove 2.2s cubic-bezier(.6,.1,.3,1) infinite;
}
@keyframes cuemove { 0%{top:-50%} 60%,100%{top:100%} }
.cine-prog { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); z-index: 11; height: 160px; width: 2px; background: var(--line-soft); overflow: hidden; }
.cine-prog i { position: absolute; left: 0; top: 0; width: 100%; background: var(--accent); height: 0%; }

/* ---------- Van spec / features ---------- */
.spec { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.spec .cell { background: var(--ink); padding: 42px 36px; transition: .45s; }
.spec .cell:hover { background: var(--ink-2); }
.spec .cell .n { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--accent); }
.spec .cell h3 { font-family: var(--serif); font-size: 30px; margin: 16px 0 12px; color: var(--bone); }
.spec .cell p { font-size: 15px; line-height: 1.7; color: var(--bone-dim); }
.showcase { position: relative; height: 88vh; min-height: 540px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showcase img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.showcase::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(12,11,7,.86),rgba(12,11,7,.28) 52%,transparent 80%), linear-gradient(0deg,rgba(12,11,7,.72),transparent 46%);
}
.showcase .sc-copy { position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; z-index: 2; width: 100%; padding-bottom: 72px; }
.showcase .sc-copy h2 { font-size: clamp(40px,6vw,92px); line-height: 1; margin-top: 18px; }
.showcase .sc-copy h2 em { font-style: italic; color: var(--accent); }
.showcase .sc-copy p { max-width: 460px; margin-top: 20px; color: var(--bone-dim); font-size: 17px; line-height: 1.75; }
.duo { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; height: 600px; margin-top: 64px; }
.duo .cell { position: relative; overflow: hidden; }
.duo .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(.2,.7,.2,1); }
.duo .cell:hover img { transform: scale(1.045); }
.duo .tag {
  position: absolute; left: 18px; bottom: 16px; z-index: 3;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #f1ece2; background: rgba(12,11,7,.5); border: 1px solid rgba(241,236,226,.28); padding: 7px 13px; backdrop-filter: blur(4px);
}
.feat { border-top: 1px solid var(--line-soft); }
.feat-row {
  display: grid; grid-template-columns: 54px 1fr auto;
  gap: 30px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line-soft); transition: .45s;
}
.feat-row:hover { padding-left: 18px; background: linear-gradient(90deg,rgba(176,130,78,.07),transparent); }
.feat-row .idx { font-family: var(--serif); font-size: 18px; color: var(--accent); font-style: italic; }
.feat-row .name { font-family: var(--serif); font-size: clamp(24px,2.6vw,34px); color: var(--bone); }
.feat-row:hover .name { color: var(--accent); }
.feat-row .desc { font-size: 14px; color: var(--muted); max-width: 380px; line-height: 1.6; text-align: right; }
.assure { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.assure-card {
  border: 1px solid var(--line-soft); padding: 50px 46px;
  background: linear-gradient(180deg,var(--ink-2),var(--ink)); transition: .4s;
}
.assure-card:hover { border-color: var(--line); }
.assure-card .ac-k {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
}
.assure-card .ac-k::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .7; }
.assure-card h3 { font-family: var(--serif); font-size: clamp(28px,3.4vw,44px); margin: 18px 0 16px; color: var(--bone); line-height: 1.05; }
.assure-card p { color: var(--bone-dim); font-size: 16px; line-height: 1.8; max-width: 440px; }

/* ---------- About / Story / etc ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.about-copy h2 { font-size: clamp(34px,4.6vw,62px); margin: 24px 0 28px; }
.about-copy p { color: var(--bone-dim); font-size: 17px; line-height: 1.85; margin-bottom: 22px; max-width: 520px; }
.about-copy .sig { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent); margin-top: 8px; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 600px; object-fit: cover; }
.about-img .tag {
  position: absolute; bottom: -1px; left: -1px; background: var(--stone);
  border: 1px solid var(--line); padding: 20px 28px;
}
.about-img .tag .n { font-family: var(--serif); font-size: 22px; color: #23211d; }
.about-img .tag .l { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 6px; }
.creds span { border: 1px solid var(--line); color: var(--accent); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 8px 14px; }

/* Page hero variants */
.page-hero { position: relative; padding: 160px 0 90px; }
.ph-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.ph-copy h1 { font-size: clamp(52px,8vw,118px); line-height: .93; }
.ph-copy h1 em { font-style: italic; color: var(--accent); }
.ph-copy .lead { max-width: 460px; margin-top: 28px; font-size: 18px; line-height: 1.8; color: var(--bone-dim); }
.ph-meta { display: flex; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.ph-meta .m .k { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.ph-meta .m .v { font-family: var(--serif); font-size: 24px; color: var(--bone); }
.ph-img { position: relative; }
.ph-img img { width: 100%; height: 620px; object-fit: cover; }
.ph-img .badge {
  position: absolute; left: -1px; bottom: -1px; background: var(--ink-2);
  border: 1px solid var(--line); padding: 18px 26px;
}
.ph-img .badge .n { font-family: var(--serif); font-size: 24px; color: var(--bone); line-height: 1; }
.ph-img .badge .l { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-top: 6px; }

/* Story */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.story-grid p { color: var(--bone-dim); font-size: 17px; line-height: 1.9; margin-bottom: 22px; }
.pull {
  font-family: var(--serif); font-style: italic; font-size: clamp(28px,3.6vw,46px);
  line-height: 1.3; color: var(--bone); border-left: 1px solid var(--accent); padding-left: 30px;
}
.pull em { color: var(--accent); font-style: italic; }
.sig { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent); margin-top: 28px; }

/* Timeline */
.timeline { border-top: 1px solid var(--line); }
.tl-row {
  display: grid; grid-template-columns: 160px 1fr; gap: 40px;
  padding: 38px 0; border-bottom: 1px solid var(--line-soft); transition: .4s; align-items: baseline;
}
.tl-row:hover { padding-left: 16px; background: linear-gradient(90deg,rgba(176,130,78,.06),transparent); }
.tl-year { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--accent); }
.tl-body h3 { font-size: clamp(24px,2.6vw,32px); margin-bottom: 10px; }
.tl-body p { color: var(--bone-dim); font-size: 15px; line-height: 1.75; max-width: 560px; }

/* Credentials */
.cred-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cred-card { border: 1px solid var(--line); padding: 34px 30px; transition: .4s; }
.cred-card:hover { border-color: var(--accent); background: linear-gradient(160deg,rgba(143,102,56,.06),transparent); }
.cred-card .ck { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.cred-card h3 { font-size: clamp(24px,2.6vw,30px); margin-bottom: 10px; }
.cred-card p { color: var(--bone-dim); font-size: 14px; line-height: 1.7; }

/* Philosophy */
.philo { text-align: center; padding: 140px 0; }
.philo .eyebrow { justify-content: center; }
.philo h2 { font-size: clamp(36px,5.4vw,84px); line-height: 1.06; margin-top: 26px; max-width: 14ch; margin-left: auto; margin-right: auto; }
.philo h2 em { font-style: italic; color: var(--accent); }
.philo p { color: var(--bone-dim); max-width: 520px; margin: 30px auto 0; font-size: 17px; line-height: 1.8; }

/* Services hero chips */
.ph-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.ph-chips span { border: 1px solid var(--line); color: var(--bone-dim); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 10px 16px; }
.ph-chips span b { color: var(--accent); font-weight: 400; }
.ph-deco {
  position: absolute; top: 90px; right: 40px; writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 14px;
}
.ph-deco::after { content: ""; width: 1px; height: 54px; background: linear-gradient(var(--accent),transparent); }

/* Services menu categories */
.svc-cat { display: flex; align-items: center; gap: 26px; padding: 50px 0 6px; }
.svc-cat:first-child { padding-top: 6px; }
.svc-cat .ct { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--accent); white-space: nowrap; }
.svc-cat .line { flex: 1; height: 1px; background: var(--line); }
.svc-cat .ci { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.svc-mid .name { font-family: var(--serif); font-size: clamp(25px,3vw,38px); color: var(--bone); transition: color .4s; line-height: 1.05; }
.svc-row:hover .name { color: var(--accent); }
.svc-mid .desc { font-size: 14px; color: var(--muted); max-width: 420px; line-height: 1.6; margin-top: 6px; }

/* Addon callout */
.addon {
  margin-top: 60px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  border: 1px solid var(--line); background: linear-gradient(120deg,rgba(176,130,78,.08),transparent 70%); padding: 40px 44px;
}
.addon .ak { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); }
.addon h3 { font-size: clamp(28px,3.4vw,42px); margin: 14px 0 12px; }
.addon p { color: var(--bone-dim); font-size: 15px; line-height: 1.7; max-width: 520px; }
.addon .ap { font-family: var(--serif); font-size: 54px; color: var(--accent); white-space: nowrap; text-align: right; }
.addon .ap small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* How it works / 3-step flow */
.flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.flow-cell { border-top: 1px solid var(--line); padding-top: 26px; }
.flow-cell .n { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--accent); }
.flow-cell h3 { font-size: clamp(26px,3vw,34px); margin: 16px 0 14px; }
.flow-cell p { color: var(--bone-dim); font-size: 15px; line-height: 1.75; max-width: 340px; }

/* Work page hero */
.ph-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; flex-wrap: wrap; }
.ph-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.ph-stats .stat .n { font-family: var(--serif); font-size: 46px; color: var(--bone); line-height: 1; }
.ph-stats .stat .l { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* Featured split (work page) */
.feat-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); min-height: 560px; }
.feat-img { position: relative; overflow: hidden; background: var(--ink-2); }
.feat-img img { width: 100%; height: 100%; object-fit: cover; }
.feat-copy { padding: 64px 60px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.feat-copy h2 { font-size: clamp(32px,4vw,52px); }
.feat-copy p { color: var(--bone-dim); font-size: 16px; line-height: 1.8; max-width: 420px; }
.feat-copy .q { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--bone); line-height: 1.4; border-left: 1px solid var(--accent); padding-left: 22px; }
.feat-copy .who { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }

/* ---------- Inside grid (van preview / homepage) ---------- */
.inside-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 660px; }
.inside-cell { position: relative; overflow: hidden; }
.inside-cell.big { grid-row: 1 / 3; }
.inside-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(.2,.7,.2,1); }
.inside-cell:hover img { transform: scale(1.045); }
.inside-cell .ic-tag {
  position: absolute; left: 18px; bottom: 16px; z-index: 3;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #f1ece2; background: rgba(23,21,15,.5); border: 1px solid rgba(241,236,226,.28); padding: 7px 13px; backdrop-filter: blur(4px);
}
.inside-note { margin-top: 30px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: center; }
.inside-note p { max-width: 540px; color: var(--bone-dim); font-size: 16px; line-height: 1.7; }
.inside-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.inside-cell .cell-link { position: absolute; inset: 0; z-index: 4; }
.inside-cell .tour {
  position: absolute; right: 18px; top: 16px; z-index: 5;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #f1ece2; background: rgba(23,21,15,.5); border: 1px solid rgba(241,236,226,.28); padding: 7px 13px; backdrop-filter: blur(4px); transition: .3s; pointer-events: none;
}
.inside-cell.big:hover .tour { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* Hero stats */
.hero-stats { display: flex; gap: 60px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.hero-stats .stat .n { font-family: var(--serif); font-size: 40px; color: var(--bone); line-height: 1; }
.hero-stats .stat .l { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.scrollcue {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl; position: absolute; right: 40px; top: 50%; transform: translateY(-50%); z-index: 2;
  display: flex; align-items: center; gap: 14px;
}
.scrollcue::after { content: ""; width: 1px; height: 54px; background: linear-gradient(var(--accent),transparent); }

/* ---------- Legal / prose pages ---------- */
.legal-hero {
  padding: 160px 0 80px; border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow { margin-bottom: 22px; }
.legal-hero h1 { font-size: clamp(42px,7vw,96px); line-height: .95; }
.legal-meta {
  margin-top: 22px; font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}
.legal-body { padding: 100px 0 160px; }
.prose { max-width: 720px; }
.prose > * + * { margin-top: 20px; }
.prose h2 {
  font-size: clamp(26px,3.2vw,40px); color: var(--bone);
  margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line-soft);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { font-size: clamp(20px,2.4vw,28px); color: var(--bone); margin-top: 36px; }
.prose p { font-size: 16px; line-height: 1.85; color: var(--bone-dim); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { font-size: 16px; line-height: 1.8; color: var(--bone-dim); margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; transition: color .3s; }
.prose a:hover { color: var(--bone); }
.prose strong { color: var(--bone); font-weight: 500; }
.prose em { font-style: italic; }
.prose blockquote {
  border-left: 1px solid var(--accent); padding-left: 26px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px,2.4vw,28px); color: var(--bone); line-height: 1.45;
}
.prose hr { border: none; border-top: 1px solid var(--line-soft); margin: 48px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid,
  .cover-grid,
  .faq-grid,
  .ph-grid,
  .story-grid,
  .feat-split { grid-template-columns: 1fr; }
  .about-img img, .ph-img img { height: 440px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-nav .lnk { display: none; }
  .site-nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .scrollcue { display: none; }
  .cover-grid { min-height: 0; }
  .cover-map { min-height: 340px; }
  .inside-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .inside-cell { height: 300px; }
  .inside-cell.big { grid-row: auto; height: 380px; }
  .gal { column-count: 2; }
  .spec { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; height: auto; }
  .duo .cell { height: 340px; }
  .cine-prog { display: none; }
  .cinema { height: 260vh; }
  .interior-frame,
  .doorway { width: min(88vw,calc(80vh*.84)); height: 80vh; }
  .hotspots { display: none; }
  .cred-grid { grid-template-columns: 1fr; }
  .tl-row { grid-template-columns: 90px 1fr; gap: 24px; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow-cell { padding: 26px 0; }
  .addon { grid-template-columns: 1fr; gap: 18px; }
  .addon .ap { text-align: left; }
  .assure { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; gap: 0; }
  .feat-img { min-height: 360px; }
  .ph-deco { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .site-header { padding: 16px 22px; }
  .block { padding: 90px 0; }
  .page-hero { padding: 130px 0 60px; }
  .foot-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr auto; gap: 8px 18px; }
  .svc-row .idx { display: none; }
  .svc-row .desc { grid-column: 1/-1; order: 3; }
  .tl-row { grid-template-columns: 1fr; gap: 8px; }
  .feat-row { grid-template-columns: 1fr auto; gap: 6px 18px; }
  .feat-row .idx { display: none; }
  .feat-row .desc { grid-column: 1/-1; text-align: left; }
  .gal { column-count: 1; }
  .ph-stats { gap: 32px; }
  .cinema { height: 260vh; }
}
@media (prefers-reduced-motion: reduce) {
  .cue .bar::after, .hot .pin { animation: none; }
}
