/* ===== Home: visueel nautisch thema ===== */
.section-head{
  margin-bottom: 22px;
}
.section-head h2{
  font-family: "Cardo", serif;
  letter-spacing: .02em;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 6px 0 10px;
}

/* Triptych layout */
.triptych{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}
.tile{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 12px;
  overflow: hidden;
  position: relative;
}
.tile figcaption{
  color: var(--muted);
  font-size: .95rem;
  padding: 10px 2px 2px;
}

/* Intro body copy */
.intro-body{
  margin-top: 16px;
  color: var(--muted);
  display: grid; gap: 10px;
}

/* Subtiele kaartlijnen op achtergrond */
.chart-stripes{
  position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(255,255,255,.04) 13px 14px),
    radial-gradient(800px 200px at 10% 10%, rgba(77,179,226,.06), transparent 70%),
    radial-gradient(600px 180px at 90% 20%, rgba(226,179,77,.06), transparent 70%);
  mask: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

/* Parallax hint (mousemove) */
.parallax-item{
  transform-style: preserve-3d;
  will-change: transform;
}

/* A11y focus */
a:focus-visible, button:focus-visible{
  outline: 2px dashed var(--accent);
  outline-offset: 3px;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .triptych{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px){
  .triptych{ grid-template-columns: 1fr; }
}
/* ===== Sectie 2: Gallery Ribbon ===== */
.gallery-ribbon{ overflow: hidden; position: relative; }
.ribbon-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: clamp(12px, 2vw, 18px);
  overflow-x: auto;
  padding: 4px clamp(12px, 4vw, 28px) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.ribbon-track:focus{ outline: 2px dashed var(--accent); outline-offset: 2px; }
.ribbon-card{
  scroll-snap-align: start;
  min-width: 320px;
  max-width: 350px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  padding: 10px;
}
.ribbon-card figcaption{ color: var(--muted); font-size: .94rem; padding: 8px 4px 2px; }
.ribbon-hint{
  position: absolute; right: 10px; bottom: 8px; font-size: .8rem; color: var(--muted);
  opacity: .7; pointer-events: none; animation: hintPulse 2.6s ease-in-out infinite;
}
@keyframes hintPulse{
  0%,100%{ transform: translateX(0); opacity:.6; }
  50%{ transform: translateX(6px); opacity: 1; }
}

/* ===== Sectie 3: Materiaallab ===== */
.material-lab .lab-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(14px, 2.4vw, 24px);
  align-items: start;
}
.lab-figure{ margin: 0; position: relative; }
.lab-figure figcaption{ color: var(--muted); font-size: .92rem; padding: 8px 2px 0; }

/* плавные «парящие» карточки */
.float-a, .float-b{ animation: floaty 8s ease-in-out infinite; }
.float-b{ animation-duration: 9.5s; animation-delay: .8s; }
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

.lab-text h3{
  font-family: "Cardo", serif;
  margin: 0 0 6px;
}
.lab-text p{ color: var(--muted); margin: 0 0 10px; }

/* ===== Sectie 4: Werf-flow (zigzag) ===== */
.werf-flow{ position: relative; }
.flow-steps{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: clamp(16px, 2.2vw, 26px);
}
.flow-step{
  display: grid; gap: 14px;
  grid-template-columns: 350px 1fr;
  align-items: center;
  position: relative;
}
.flow-media img{ display: block; }
.flow-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.flow-copy p{ margin: 0; color: var(--muted); }

.flow-path{
  position: absolute; inset: 0 0 0 0; pointer-events: none;
  background:
    radial-gradient(8px 8px at 12% 22%, var(--brand), transparent 60%),
    radial-gradient(8px 8px at 52% 48%, var(--accent), transparent 60%),
    radial-gradient(8px 8px at 82% 76%, var(--brand), transparent 60%);
  mask: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  opacity: .25;
}

/* ZIGZAG: каждая вторая строка меняет порядок */
.flow-step:nth-child(even){
  grid-template-columns: 1fr 350px;
}
.flow-step:nth-child(even) .flow-media{ order: 2; }
.flow-step:nth-child(even) .flow-copy{ order: 1; }

/* ===== Hover-блик для всех новых изображений ===== */
.ribbon-card img, .lab-figure img, .flow-media img{
  position: relative;
  transition: filter .5s ease;
}
.ribbon-card:hover img,
.lab-figure:hover img,
.flow-media:hover img{
  filter: brightness(1.04) saturate(1.05);
}

/* ===== Responsive для секций 2–4 ===== */
@media (max-width: 992px){
  .material-lab .lab-grid{ grid-template-columns: 1fr; }
  .flow-step, .flow-step:nth-child(even){ grid-template-columns: 1fr; }
}
@media (max-width: 576px){
  .ribbon-card{ min-width: 280px; }
}
/* ===== Sectie 5: Dock-mosaic ===== */
.dock-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}
.dock-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.dock-card figcaption{ color: var(--muted); padding: 8px 2px 0; font-size: .94rem; }

/* Unieke bob-animaties per kaart */
@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.bob-1{ animation: bob 6.5s ease-in-out infinite; }
.bob-2{ animation: bob 7.4s ease-in-out infinite .4s; }
.bob-3{ animation: bob 8.2s ease-in-out infinite .8s; }

/* Water glinstering laag (caustics) */
.water-caustics{
  position: absolute; inset: -20% -10% -20% -10%;
  background:
    radial-gradient(120px 40px at 10% 30%, rgba(77,179,226,.18), transparent 70%),
    radial-gradient(150px 50px at 80% 50%, rgba(226,179,77,.15), transparent 70%),
    radial-gradient(100px 40px at 40% 80%, rgba(77,179,226,.12), transparent 70%);
  filter: blur(14px);
  mix-blend-mode: screen;
  animation: caustics 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes caustics{
  0%{ transform: translateX(-8px) translateY(0) rotate(0deg); opacity:.35; }
  100%{ transform: translateX(8px) translateY(-6px) rotate(6deg); opacity:.55; }
}

.dock-note{ color: var(--muted); margin-top: 10px; }

/* ===== Sectie 6: Windlab (Beaufortmeter) ===== */
.wind-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2.2vw, 24px);
  align-items: center;
}
.wind-fig figcaption{ color: var(--muted); padding: 8px 2px 0; font-size: .92rem; }

/* Gauge layout */
.gauge{
  --size: 220px;
  --needle: 4px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,255,255,.06), rgba(255,255,255,.02) 48%, transparent 52%),
    conic-gradient(from 200deg, var(--accent), var(--brand));
  mask: radial-gradient(circle at 50% 60%, transparent 0 46%, #000 47%);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.gauge-arc{
  position: absolute; inset: 10% 10% auto 10%; height: 50%;
  border-top: 2px dashed rgba(255,255,255,.35);
  border-left: 2px dashed transparent; border-right: 2px dashed transparent;
  border-radius: 1000px 1000px 0 0;
}
.gauge-needle{
  position: absolute; bottom: 28%;
  width: var(--needle); height: 42%;
  background: #fff; transform-origin: 50% 100%;
  transform: rotate(0deg);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0,0,0,.35);
}
.gauge-readout{
  position: absolute; bottom: 10%;
  font-size: .9rem; color: var(--ink); text-align: center;
  display: grid; gap: 2px;
}
.gauge-readout .bf strong{ color: var(--brand); }
.gauge-readout .desc{ color: var(--muted); font-size: .85rem; }

/* Anemometer (draait continu) */
.anemo{
  position: absolute; top: 18%; width: 80px; height: 80px;
  animation: spin 2.8s linear infinite;
}
.anemo .cup{
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.anemo .cup:nth-child(1){ transform: translate(-50%, -50%) translateX(28px); }
.anemo .cup:nth-child(2){ transform: translate(-50%, -50%) rotate(120deg) translateX(28px); }
.anemo .cup:nth-child(3){ transform: translate(-50%, -50%) rotate(240deg) translateX(28px); }
@keyframes spin{
  to{ transform: rotate(360deg); }
}

.wind-copy{ color: var(--muted); margin-top: 12px; }

/* ===== Sectie 7: Mini-tijdlijn (tekenende lijn + in-plaats-kantelen) ===== */
.mini-timeline{ position: relative; }
.timeline-track{
  --p: 0%; /* progress via JS */
  height: 4px; border-radius: 2px; margin: 6px 0 22px;
  background: linear-gradient(90deg, var(--brand) var(--p), rgba(255,255,255,.12) var(--p));
  box-shadow: inset 0 0 12px rgba(0,0,0,.4);
  transition: background .5s ease;
}
.timeline-steps{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: clamp(16px, 2.2vw, 26px);
}
.tstep{
  display: grid; gap: 12px;
  grid-template-columns: 350px 1fr;
  align-items: center;
}
.tcopy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.tcopy p{ margin: 0; color: var(--muted); }

/* subtiele kantel-animatie bij in-view */
.tmedia{ transform: rotate(-2deg); transition: transform 700ms cubic-bezier(.2,.9,.2,1); }
.reveal.in-view .tmedia{ transform: rotate(0deg); }

/* ===== Responsive для секций 5–7 ===== */
@media (max-width: 992px){
  .dock-grid{ grid-template-columns: repeat(2, 1fr); }
  .wind-grid{ grid-template-columns: 1fr; justify-items: center; }
  .tstep{ grid-template-columns: 1fr; }
}
@media (max-width: 576px){
  .dock-grid{ grid-template-columns: 1fr; }
  .gauge{ --size: 200px; }
}
.dock-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  overflow: clip; /* было отсутствовало — предотвращает горизонтальный скролл от абсолютных слоёв */
}

.water-caustics{
  position: absolute;
  /* раньше стояли отрицательные отступы по X, из-за них всё «ширилось» */
  inset: -10% 0 -10% 0; /* вертикальная «дышка» оставлена, по X — строго в границах */
  background:
    radial-gradient(120px 40px at 10% 30%, rgba(77,179,226,.18), transparent 70%),
    radial-gradient(150px 50px at 80% 50%, rgba(226,179,77,.15), transparent 70%),
    radial-gradient(100px 40px at 40% 80%, rgba(77,179,226,.12), transparent 70%);
  filter: blur(14px);
  mix-blend-mode: screen;
  animation: caustics 12s ease-in-out infinite alternate;
  pointer-events: none;
}
/* ===== Sectie 5: Dock-mosaic (фикс узких карточек) ===== */
.dock-grid{
  position: relative;
  display: grid;
  /* было: repeat(3, 1fr) — давило карточки
     стало: auto-fit + minmax => карточки переносятся на новую строку,
     но не становятся уже 280px */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  overflow: clip;
}

.dock-card{
  min-width: 280px;           /* гарантируем комфортную ширину */
  max-width: 350px;           /* соблюдаем лимит картинок */
  margin-inline: auto;        /* красиво центрируем в колонке */
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  padding: 10px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 360px){
  /* на совсем узких — убираем жёсткий минимум, чтоб поместилось */
  .dock-grid{ grid-template-columns: 1fr; }
  .dock-card{ min-width: 0; }
}
/* ===== Sectie 8: Hull morph ===== */
.hull-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}
.hull-graph{
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}
.spant-svg{ width: 100%; height: auto; display: block; }
.hull-graph figcaption{ color: var(--muted); font-size: .9rem; padding-top: 6px; }

.hull-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.hull-copy p{ margin: 0 0 10px; color: var(--muted); }

.hull-gallery{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}
.hull-gallery figure figcaption{ color: var(--muted); font-size: .92rem; padding-top: 6px; }

/* ===== Sectie 9: Harbor line ===== */
.beacon-strip{
  position: relative;
  height: 10px;
  border-radius: 999px;
  margin: 8px 0 18px;
  background:
    radial-gradient(10px 10px at 0% 50%, rgba(255,255,255,.85), transparent 60%) repeat-x;
  background-size: 60px 10px;
  background-position: 0 0;
  animation: beacons 3s linear infinite;
  box-shadow: inset 0 0 12px rgba(0,0,0,.5);
}
@keyframes beacons{
  to{ background-position: -60px 0; }
}

.harbor-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}
.harbor-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.harbor-copy p{ margin: 0 0 10px; color: var(--muted); }

/* ===== Sectie 10: Rope language (кнопки-узлы) ===== */
.knot-belt{
  list-style: none; padding: 0; margin: 0 0 8px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(12px, 2vw, 22px);
}
.knot{
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    radial-gradient(80px 12px at 50% 100%, rgba(226,179,77,.12), transparent 70%);
  outline: none;
}
.knot figure{ margin: 0; }
.knot figcaption{ color: var(--muted); font-size: .92rem; padding-top: 6px; }

/* подсказка: выезжает снизу и «дышит» */
.knot .hint{
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  font-size: .8rem; color: var(--ink);
  background: rgba(27,42,68,.75);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.knot:focus-visible .hint,
.knot:hover .hint{
  transform: translateY(0); opacity: 1;
  animation: hintBreath 2.8s ease-in-out infinite;
}
@keyframes hintBreath{
  0%,100%{ box-shadow: 0 0 0 rgba(226,179,77,0); }
  50%{ box-shadow: 0 0 20px rgba(226,179,77,.25); }
}

.rope-copy{ color: var(--muted); }

/* ===== Responsive voor secties 8–10 ===== */
@media (max-width: 992px){
  .hull-grid{ grid-template-columns: 1fr; }
  .harbor-grid{ grid-template-columns: 1fr; }
}
/* ===== Sectie 11: Werf-soundscape ===== */
.ws-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}
.ws-figure figcaption{ color: var(--muted); font-size: .92rem; padding-top: 6px; }
.ws-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.ws-copy p{ margin: 0; color: var(--muted); }

/* Equalizer */
.eq-wrap{
  position: relative; display: grid; place-items: end center;
  width: min(360px, 80vw); height: 220px;
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding: 10px 16px;
  overflow: hidden;
}
.eq{
  --amp: 1; /* JS меняет амплитуду 0.6–1.6 */
  display: grid; grid-auto-flow: column; grid-auto-columns: 14px; gap: 10px; align-items: end;
  height: 100%; width: 100%;
}
.eq .bar{
  height: 60px; width: 14px; border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
  animation: pump 1200ms ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.eq .bar:nth-child(3n){ animation-duration: 1000ms; }
.eq .bar:nth-child(4n){ animation-duration: 1400ms; }
.eq .bar:nth-child(5n){ animation-duration: 900ms; }
@keyframes pump{
  0%,100%{ transform: scaleY(calc(.45 * var(--amp))); }
  50%{ transform: scaleY(calc(1 * var(--amp))); }
}

/* ===== Sectie 12: Pitch & Caulking ===== */
.pc-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
  position: relative;
  overflow: clip;
}
.pc-fig figcaption{ color: var(--muted); font-size: .92rem; padding-top: 6px; }
.pc-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.pc-copy p{ margin: 0; color: var(--muted); }

/* Смоляная «волна» */
.pitch-wave{
  position: absolute; left: 0; right: 0; top: -40px; height: 160px; z-index: -1;
  background:
    radial-gradient(60px 20px at 10% 40%, rgba(226,179,77,.18), transparent 70%),
    radial-gradient(80px 24px at 60% 30%, rgba(77,179,226,.15), transparent 70%),
    conic-gradient(from 180deg at 50% 100%, rgba(255,255,255,.08), rgba(255,255,255,0) 40%);
  filter: blur(10px);
  animation: tarFlow 8s ease-in-out infinite alternate;
  opacity: .5;
}
@keyframes tarFlow{
  0%{ transform: translateY(0) scaleX(1); }
  100%{ transform: translateY(8px) scaleX(1.06); }
}

/* ===== Sectie 13: Map ribbon ===== */
.map-strip{
  --active: 0; /* 0..1, JS поднимает до 1 при входе */
  position: relative; height: 18px; border-radius: 999px; margin: 8px 0 18px;
  background:
    linear-gradient(90deg, rgba(77,179,226,.3), rgba(226,179,77,.3)),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(255,255,255,.1) 40px 42px);
  box-shadow: inset 0 0 12px rgba(0,0,0,.5);
  overflow: clip;
}
.map-strip .m{
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, #fff, #ffd27a 60%, transparent 70%);
  opacity: 0; /* по умолчанию не видны */
}
.map-strip.active .m{ animation: pulse 2.2s ease-in-out infinite; opacity: 1; }
.map-strip .m1{ left: 12%; animation-delay: .1s; }
.map-strip .m2{ left: 32%; animation-delay: .4s; }
.map-strip .m3{ left: 51%; animation-delay: .7s; }
.map-strip .m4{ left: 72%; animation-delay: 1.0s; }
.map-strip .m5{ left: 88%; animation-delay: 1.3s; }
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(226,179,77,.0); transform: translate(-50%, -50%) scale(1); }
  50%{ box-shadow: 0 0 20px 6px rgba(226,179,77,.25); transform: translate(-50%, -50%) scale(1.15); }
}

.map-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}
.map-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.map-copy p{ margin: 0; color: var(--muted); }

/* ===== Responsive для секций 11–13 ===== */
@media (max-width: 992px){
  .ws-grid{ grid-template-columns: 1fr; justify-items: center; }
  .pc-grid{ grid-template-columns: 1fr; }
  .map-grid{ grid-template-columns: 1fr; }
}
/* ===== Sectie 14: Test sail (wake) ===== */
.ts-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}
.ts-fig figcaption{ color: var(--muted); font-size: .92rem; padding-top: 6px; }
.ts-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.ts-copy p{ margin: 0; color: var(--muted); }

/* Kielzog-полоса — управляемая переменной скорости */
.sea-wake{
  --spd: 12s;           /* по умолчанию */
  height: 14px;
  border-radius: 999px;
  margin: 6px 0 12px;
  background:
    radial-gradient(12px 6px at 0% 50%, rgba(255,255,255,.85), transparent 60%) repeat-x,
    radial-gradient(40px 12px at 0% 50%, rgba(77,179,226,.25), transparent 70%) repeat-x;
  background-size: 48px 14px, 120px 14px;
  background-position: 0 0, 0 0;
  animation: wakeShift var(--spd) linear infinite;
  box-shadow: inset 0 0 12px rgba(0,0,0,.45);
}
@keyframes wakeShift{
  to{ background-position: -48px 0, -120px 0; }
}

/* ===== Sectie 15: Heritage finale ===== */
.heritage-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}
.heritage-fig figcaption{ color: var(--muted); font-size: .92rem; padding-top: 6px; }
.heritage-copy h3{ margin: 0 0 6px; font-family: "Cardo", serif; }
.heritage-copy p{ margin: 0; color: var(--muted); }

/* Сверкающий заголовок блока (shine) */
.shine h2{
  position: relative;
  background: linear-gradient(90deg, #fff, #fff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shine::after{
  content:"";
  position:absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent 40%, var(--accent));
  opacity: .35;
}

/* Стат-бейджи */
.stats-belt{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}
.stat{
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  text-align: center;
}
.stat .val{
  display: inline-block;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--brand);
  min-width: 2ch;
}
.stat .unit{ color: var(--ink); margin-left: 2px; }
.stat p{ color: var(--muted); margin: 6px 0 0; }

/* Responsive 14–15 */
@media (max-width: 992px){
  .ts-grid{ grid-template-columns: 1fr; }
  .heritage-grid{ grid-template-columns: 1fr; }
  .stats-belt{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px){
  .stats-belt{ grid-template-columns: 1fr; }
}
