/* ===========================================================================
   936 Centennial St — listing site styles
   Editorial, Tom Ford-leaning: heavy geometric caps, wide tracking, plum
   accent, generous air. Critical above-the-fold rules are inlined in
   index.html; this file carries everything else.
   =========================================================================== */

:root {
  --ink: #171417;
  --ink-soft: #353134;
  --paper: #ffffff;
  --shell: #f6f4f5;
  --plum: #340c3d;
  --plum-deep: #230821;
  --slate: #6b6268;
  --hairline: #e8e4e6;
  --sans: "Jost", "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.2rem, 5vw, 4rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink-soft); background: var(--paper); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.no-scroll { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- type ---------- */
h1, h2, h3 { font-weight: 700; color: var(--ink); line-height: 1.1; text-wrap: balance; }
.kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.9rem;
}
.sec-title {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.container { max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }
section { padding: clamp(3.8rem, 9vw, 6.5rem) 0; }

/* ---------- hero ---------- */
.hero { position: relative; height: 100svh; min-height: 560px; padding: 0; overflow: hidden; background: var(--ink); }
.hero picture, .hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,20,23,0.25) 0%, rgba(23,20,23,0.05) 40%, rgba(23,20,23,0.62) 100%); }
.hero-copy { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 0 var(--gutter) clamp(3.2rem, 8vh, 5rem); color: #fff; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.hero-h1 {
  color: #fff;
  font-size: clamp(2rem, 7.2vw, 4.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  text-shadow: 0 2px 26px rgba(0,0,0,0.35);
}
.hero-h1 small { display: block; font-size: 0.36em; font-weight: 500; letter-spacing: 0.3em; margin-top: 0.7rem; color: rgba(255,255,255,0.92); }
.hero-price { margin-top: 1.1rem; font-size: clamp(1rem, 2.4vw, 1.35rem); font-weight: 500; letter-spacing: 0.14em; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.85); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; text-align: center; }
.scroll-cue::after { content: ""; display: block; width: 1px; height: 34px; margin: 0.5rem auto 0; background: linear-gradient(rgba(255,255,255,0.9), transparent); }

/* ---------- typographic hero (pre-photography coming-soon state) ---------- */
.hero-typographic {
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(52, 12, 61, 0.55), transparent 60%),
    var(--ink);
}
.hero-typographic::after { background: none; }
.hero-typographic .hero-copy { inset: 0; display: grid; align-content: center; }
.hero-typographic .hero-eyebrow { color: #b895c4; }
.hero-typographic .hero-price { color: rgba(255,255,255,0.75); }
.hero-typographic .hero-h1 { text-shadow: none; }
.hero-typographic .hero-h1 small { color: rgba(255,255,255,0.8); }
.hero-typographic + * { border-top: none; }

/* ---------- nav that arrives on scroll ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem var(--gutter);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.site-nav.is-on { transform: translateY(0); }
.nav-addr { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); text-decoration: none; }
.nav-cta {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: var(--plum); text-decoration: none; padding: 0.65rem 1.1rem;
  transition: background 0.3s var(--ease);
}
.nav-cta:hover { background: var(--plum-deep); }

/* ---------- stats band ---------- */
.stats { padding: clamp(2.2rem, 5vw, 3.4rem) 0; border-bottom: 1px solid var(--hairline); }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1.4rem; text-align: center; }
.stat-n { display: block; font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700; letter-spacing: 0.06em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-l { display: block; margin-top: 0.2rem; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); }

/* ---------- gallery ---------- */
.gallery { padding-top: 0; }
.g-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.5rem, 1.2vw, 1rem); margin-top: 2.2rem; }
.g-item { border: none; background: none; padding: 0; cursor: zoom-in; overflow: hidden; }
.g-item:nth-child(6n+1) { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.03); }
.g-item:focus-visible { outline: 3px solid var(--plum); outline-offset: 2px; }
@media (min-width: 860px) {
  .g-grid { grid-template-columns: repeat(3, 1fr); }
  .g-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 1; }
}

/* ---------- lightbox ---------- */
.lightbox { border: none; background: rgba(15,12,15,0.96); width: 100vw; height: 100vh; max-width: none; max-height: none; padding: 0; }
.lightbox::backdrop { background: rgba(15,12,15,0.96); }
.lightbox img { position: absolute; inset: 0; margin: auto; max-width: 92vw; max-height: 86vh; width: auto; height: auto; object-fit: contain; }
.lb-btn { position: absolute; z-index: 2; background: none; border: 1px solid rgba(255,255,255,0.4); color: #fff; font-family: var(--sans); font-size: 1rem; width: 46px; height: 46px; cursor: pointer; transition: border-color .25s, background .25s; }
.lb-btn:hover, .lb-btn:focus-visible { border-color: #fff; background: rgba(255,255,255,0.12); }
#lbPrev { left: 0.8rem; top: 50%; transform: translateY(-50%); }
#lbNext { right: 0.8rem; top: 50%; transform: translateY(-50%); }
#lbClose { top: 0.8rem; right: 0.8rem; }
.lb-count { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-size: 0.72rem; letter-spacing: 0.2em; }

/* ---------- video ---------- */
.video-shell { position: relative; aspect-ratio: 16 / 9; margin-top: 2.2rem; background: var(--ink); overflow: hidden; }
.video-shell picture img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play { position: absolute; inset: 0; display: grid; place-items: center; background: none; border: none; cursor: pointer; }
.video-play span {
  display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: var(--plum); font-size: 1.5rem;
  transition: transform 0.4s var(--ease);
}
.video-play:hover span, .video-play:focus-visible span { transform: scale(1.07); }

/* ---------- floor plan ---------- */
.plan-wrap { position: relative; margin-top: 2.2rem; overflow: hidden; border: 1px solid var(--hairline); touch-action: none; background: var(--shell); }
.plan-wrap img { transition: transform 0.25s var(--ease); transform-origin: center; cursor: grab; }
.plan-tools { position: absolute; right: 0.8rem; bottom: 0.8rem; display: flex; gap: 0.5rem; }
.plan-tools button { width: 42px; height: 42px; border: 1px solid var(--ink); background: #fff; font-size: 1.1rem; cursor: pointer; }

/* ---------- spec sheet ---------- */
.details { background: var(--shell); }
.detail-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); margin-top: 2.2rem; }
@media (min-width: 860px) { .detail-grid { grid-template-columns: 1.1fr 0.9fr; } }
.spec-sheet { border-top: 1px solid var(--ink); }
.spec-row { display: flex; justify-content: space-between; gap: 1.5rem; padding: 0.85rem 0; border-bottom: 1px solid var(--hairline); }
.spec-row dt { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); padding-top: 0.2rem; }
.spec-row dd { text-align: right; font-weight: 500; color: var(--ink); }
.feature-list { list-style: none; border-top: 1px solid var(--ink); }
.feature-list li { padding: 0.85rem 0 0.85rem 1.6rem; border-bottom: 1px solid var(--hairline); position: relative; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 1.42rem; width: 14px; height: 2px; background: var(--plum); }

/* ---------- neighborhood ---------- */
.hood-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); margin-top: 2.2rem; align-items: start; }
@media (min-width: 860px) { .hood-grid { grid-template-columns: 1fr 1fr; } }
.hood-copy p { margin-bottom: 1rem; max-width: 58ch; }
.hood-copy strong { color: var(--ink); }
.map-shell { aspect-ratio: 4 / 3; border: 1px solid var(--hairline); }
.map-shell iframe { width: 100%; height: 100%; border: 0; }

/* ---------- showing form ---------- */
.showing { background: var(--ink); color: #cfc9cd; }
.showing .kicker { color: #b895c4; }
.showing .sec-title { color: #fff; }
.show-form { margin-top: 2.2rem; display: grid; gap: 1.3rem; max-width: 620px; }
.f-row { display: grid; gap: 0.4rem; }
.f-row label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #9a9298; }
.f-row input, .f-row select, .f-row textarea {
  font-family: var(--sans); font-size: 1rem; color: #fff;
  background: transparent; border: none; border-bottom: 1.5px solid #4a444a;
  padding: 0.7rem 0.1rem; border-radius: 0;
}
.f-row input:focus-visible, .f-row select:focus-visible, .f-row textarea:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.f-row select { appearance: none; }
.f-row option { color: var(--ink); }
.f-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .f-split { grid-template-columns: 1fr; } }
.f-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.74rem; line-height: 1.55; color: #9a9298; }
.f-consent input { margin-top: 0.2rem; width: 15px; height: 15px; accent-color: #fff; flex-shrink: 0; }
.f-consent a { color: #cfc9cd; }
.form-status { min-height: 1.3em; font-size: 0.85rem; }
.form-status.is-error { color: #e8a49b; }
.btn-submit {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  background: #fff; color: var(--ink); border: none; padding: 1.05rem 2rem; cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-submit:hover, .btn-submit:focus-visible { background: #b895c4; color: var(--plum-deep); }
.btn-submit:disabled { opacity: 0.5; cursor: default; }
.form-done { margin-top: 2.2rem; padding: 1.8rem; border-left: 3px solid #b895c4; max-width: 620px; }
.form-done p { color: #fff; }
.form-done p + p { margin-top: 0.5rem; color: #9a9298; font-size: 0.9rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- agent footer ---------- */
/* <footer> misses the generic `section` padding rule, so it sets its own —
   equal above the kicker and below the legal line, per request. */
.agents { border-top: 1px solid var(--hairline); padding: clamp(1.3rem, 3vw, 1.8rem) 0; }
/* The section heading is the brokerage mark itself — the kicker says
   "Presented By" and the logo answers who. Its alt text keeps the h2
   meaningful to screen readers and search. */
.agents-logo { display: block; height: 52px; width: auto; margin-top: 1rem; }
@media (max-width: 600px) { .agents-logo { height: 42px; } }
.agent-rows { display: grid; gap: 1.8rem; margin-top: 2rem; }
.agent-name { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.agent-primary .agent-name { font-size: 1.45rem; }
.agent-role { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); margin-top: 0.2rem; }
.agent-tel { display: inline-block; margin-top: 0.4rem; font-weight: 500; color: var(--plum); text-decoration: none; font-size: 1.05rem; }
.agent-tel:hover { text-decoration: underline; }
.brokerage-line { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--hairline); font-size: 0.74rem; color: var(--slate); line-height: 1.7; }

/* ---------- photography sample strip (pre-shoot state) ---------- */
.samples { padding-top: 0; }
.sample-note { max-width: 58ch; margin-top: 1.2rem; color: var(--slate); }
.sample-note strong { color: var(--ink); }
.sample-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.5rem, 1.2vw, 1rem); margin-top: 1.8rem; }
@media (max-width: 700px) { .sample-strip { grid-template-columns: 1fr; } }
.sample-item { position: relative; margin: 0; }
.sample-item::after {
  content: "Sample"; position: absolute; top: 0.6rem; left: 0.6rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; background: rgba(23,20,23,0.72); padding: 0.3rem 0.55rem;
}

/* ---------- agent photos ---------- */
.agent { display: flex; align-items: center; gap: 1.3rem; }
.agent-photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.agent-primary .agent-photo { width: 108px; height: 108px; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; text-align: center; text-decoration: none;
  background: var(--plum); color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.05rem 1rem calc(1.05rem + env(safe-area-inset-bottom));
}
@media (max-width: 760px) {
  .sticky-cta { display: block; }
  .showing { scroll-margin-bottom: 4rem; }
  body { padding-bottom: 3.4rem; }
}

/* ---------- fades ---------- */
.fade { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade.in { opacity: 1; transform: none; }

/* ---------- print: a clean flyer ---------- */
@media print {
  .site-nav, .scroll-cue, .sticky-cta, .video, .showing, .lightbox, .plan-tools { display: none !important; }
  .hero { height: 320px; min-height: 0; }
  .hero::after { display: none; }
  .hero-copy { color: #000; position: static; padding: 0.8rem 0; }
  .hero-h1 { color: #000; text-shadow: none; font-size: 22pt; }
  .hero-eyebrow, .hero-price { color: #000; }
  section { padding: 1rem 0; }
  .g-grid { grid-template-columns: repeat(3, 1fr); gap: 4pt; }
  .g-item:nth-child(6n+1) { grid-column: span 1; }
  .g-item:nth-child(n+10) { display: none; }
  .details, .showing { background: #fff; color: #000; }
  .fade { opacity: 1; transform: none; }
  .spec-row, .feature-list li { page-break-inside: avoid; }
  .map-shell { display: none; }
}

/* ===========================================================================
   Bacal-style slider layout
   =========================================================================== */
/* Not a full-screen cover: the photo stage stops around 72% of the viewport
   with the filmstrip in normal flow beneath it, so the FOR SALE masthead
   peeks up under the fold the way the reference site does. */
.hero-slider { background: var(--ink); }
.slide-stage {
  position: relative;
  height: clamp(420px, 72svh, 780px);
  overflow: hidden;
}
@media (max-width: 700px) { .slide-stage { height: clamp(320px, 52svh, 520px); } }
/* The H1 stays for structure/SEO but the visual address lives in the
   masthead below the slider, as on the reference site. */
.sr-address { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

#slides, .slide { position: absolute; inset: 0; }
.slide { opacity: 0; transition: opacity 0.7s var(--ease); }
.slide.is-on { opacity: 1; }
.slide picture, .slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.sample-chip {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; background: rgba(23,20,23,0.78); padding: 0.45rem 0.7rem;
}
.lb-sample { top: 0.9rem; left: 0.9rem; }

.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(23,20,23,0.35); color: #fff; font-size: 1.05rem; cursor: pointer;
  transition: background 0.3s var(--ease);
}
.slide-arrow:hover, .slide-arrow:focus-visible { background: rgba(23,20,23,0.7); }
#slidePrev { left: 1rem; } #slideNext { right: 1rem; }
.slide-full {
  position: absolute; top: 1rem; right: 1rem; z-index: 4;
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(23,20,23,0.35); color: #fff; font-size: 1.1rem; cursor: pointer;
}
.slide-count {
  position: absolute; right: 1.1rem; bottom: 1.1rem; z-index: 4;
  color: rgba(255,255,255,0.85); font-size: 0.7rem; letter-spacing: 0.2em;
}

.thumbs {
  display: flex; gap: 4px; overflow-x: auto; padding: 4px 0;
  background: var(--ink);
  scrollbar-width: none;
}
.thumbs::-webkit-scrollbar { display: none; }
.thumb {
  flex: 0 0 auto; width: 148px; height: 92px; padding: 0; border: none;
  cursor: pointer; opacity: 0.65; transition: opacity 0.3s var(--ease);
  position: relative; background: var(--ink);
}
.thumb picture, .thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-on, .thumb:hover, .thumb:focus-visible { opacity: 1; }
.thumb.is-on::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: #fff; }
.thumb-all {
  width: auto; padding: 0 1.3rem; opacity: 1;
  color: #fff; font-family: var(--sans); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(23,20,23,0.6); border-left: 1px solid rgba(255,255,255,0.25);
}

/* ---------- floor plan ---------- */
.plans { padding-top: clamp(1.5rem, 3vw, 2.2rem); }
.plan-caption { margin-top: 1rem; color: var(--slate); font-size: 0.92rem; max-width: 58ch; }
.plan-wrap {
  position: relative; margin-top: 1.6rem; overflow: hidden;
  border: 1px solid var(--hairline); background: #fff;
  touch-action: none;
}
.plan-wrap img { width: 100%; height: auto; transition: transform 0.25s var(--ease); transform-origin: center; cursor: grab; display: block; }
.plan-wrap img:active { cursor: grabbing; }
.plan-tools { position: absolute; right: 0.8rem; bottom: 0.8rem; display: flex; gap: 0.5rem; }
.plan-tools button {
  width: 44px; height: 44px; border: 1px solid var(--ink); background: #fff;
  font-family: var(--sans); font-size: 1.15rem; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.plan-tools button:hover, .plan-tools button:focus-visible { background: var(--ink); color: #fff; }
@media print { .plans { display: block; } .plan-tools { display: none !important; } }

/* ---------- masthead ---------- */
.masthead { padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(1.6rem, 4vw, 2.6rem); border-bottom: 1px solid var(--hairline); }
.status-chip {
  display: inline-block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #fff; background: var(--plum); padding: 0.45rem 0.85rem;
}
.masthead-addr { font-size: clamp(1.9rem, 5vw, 3.4rem); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1.1rem; }
.masthead-sub { margin-top: 0.5rem; font-size: clamp(0.95rem, 2vw, 1.15rem); letter-spacing: 0.12em; color: var(--slate); text-transform: uppercase; }
.qstat-row { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3rem); margin-top: 1.8rem; }
.qstat-n { display: block; font-size: clamp(1.3rem, 2.8vw, 1.8rem); font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.qstat-l { display: block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-top: 0.15rem; }

/* ---------- description + agent rail ---------- */
.descr-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .descr-grid { grid-template-columns: 1.5fr 1fr; } }
.descr-body { margin-top: 1.6rem; max-width: 62ch; }
.descr-body p { margin-bottom: 1rem; }
.agent-rail { border: 1px solid var(--hairline); padding: 1.6rem; align-self: start; }
.agent-rail .agent-rows { margin-top: 0; display: grid; gap: 1.6rem; }
.agent-contact {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: var(--ink); padding: 0.7rem 1.2rem; text-decoration: none;
  transition: background 0.3s var(--ease);
}
.agent-contact:hover, .agent-contact:focus-visible { background: var(--plum); }

/* ---------- categorised spec tables ---------- */
.spec-columns { display: grid; gap: clamp(2rem, 5vw, 3.4rem); margin-top: 2.2rem; }
@media (min-width: 860px) { .spec-columns { grid-template-columns: 1fr 1fr; } }
.spec-title { font-size: 1rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); padding-bottom: 0.7rem; border-bottom: 2px solid var(--ink); }

@media print {
  .slide-arrow, .slide-full, .thumbs, .slide-count { display: none !important; }
  .slide-stage { height: 300px; }
  .agent-rail { border: none; padding: 0; }
}
