/* =========================================================================
   LIVENTO VENTURES — design system
   Palette, type and rhythm carried over 1:1 from the approved design file.
   ========================================================================= */

:root {
  /* Surfaces */
  --bg:            oklch(97% 0.01 80);
  --surface:       oklch(99% 0.005 80);
  --surface-sunk:  oklch(94% 0.012 80);
  --placeholder:   oklch(91% 0.014 80);

  /* Ink */
  --ink:           oklch(22% 0.02 60);
  --ink-70:        oklch(40% 0.02 60);
  --ink-55:        oklch(48% 0.02 60);
  --ink-40:        oklch(62% 0.02 60);

  /* Accent — terracotta */
  --accent:        oklch(50% 0.1 40);
  --accent-deep:   oklch(42% 0.1 40);
  --accent-light:  oklch(70% 0.1 40);
  --accent-wash:   oklch(94% 0.03 45);

  /* Lines */
  --line:          oklch(88% 0.012 80);
  --line-strong:   oklch(78% 0.02 70);

  /* Dark sections */
  --dark:          oklch(24% 0.02 60);
  --dark-2:        oklch(30% 0.02 60);
  --dark-3:        oklch(34% 0.02 60);
  --dark-line:     oklch(40% 0.02 60);
  --dark-ink:      oklch(96% 0.01 80);
  --dark-ink-70:   oklch(78% 0.01 80);

  /* Type */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  Karla, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --wrap: 1240px;
  --gut: 40px;
  --section: 96px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur: .55s;

  --shadow-sm: 0 1px 2px oklch(22% 0.02 60 / .05), 0 4px 14px oklch(22% 0.02 60 / .05);
  --shadow-md: 0 2px 6px oklch(22% 0.02 60 / .06), 0 18px 46px oklch(22% 0.02 60 / .10);
  --shadow-lg: 0 4px 10px oklch(22% 0.02 60 / .07), 0 34px 80px oklch(22% 0.02 60 / .16);
}

@media (max-width: 900px) { :root { --gut: 24px; --section: 64px; } }
@media (max-width: 560px) { :root { --gut: 20px; --section: 52px; } }

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* `clip` contains horizontal overflow without creating a scroll container,
   which would otherwise break scroll propagation and position:sticky. */
body { overflow-x: clip; }
body.is-locked { position: fixed; inset: 0; width: 100%; overflow: hidden; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-deep); }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

::selection { background: var(--accent); color: #fff; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.section { padding-top: var(--section); padding-bottom: var(--section); }
.section--tight { padding-top: calc(var(--section) * .7); padding-bottom: calc(var(--section) * .7); }
.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band--dark { background: var(--dark); color: var(--dark-ink); border: 0; }
.band--accent { background: var(--accent); color: #fff; }
.grid { display: grid; gap: 64px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid--hero { grid-template-columns: 1.1fr .9fr; align-items: center; }
.stack { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-20 { gap: 20px; } .gap-24 { gap: 24px; } .gap-28 { gap: 28px; } .gap-40 { gap: 40px; }

/* ---------- type ---------- */
.eyebrow {
  font: 600 12px/1 var(--sans); letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
}
.band--dark .eyebrow { color: var(--accent-light); }
.h1 { font: 400 clamp(38px, 5.2vw, 58px)/1.08 var(--serif); letter-spacing: -.01em; text-wrap: pretty; }
.h2 { font: 400 clamp(29px, 3.6vw, 44px)/1.15 var(--serif); text-wrap: pretty; }
.h3 { font: 500 clamp(19px, 1.8vw, 22px)/1.25 var(--serif); }
.lead { font: 400 clamp(16px, 1.4vw, 18px)/1.6 var(--sans); color: var(--ink-70); text-wrap: pretty; }
.body { font: 400 clamp(15px, 1.2vw, 17px)/1.65 var(--sans); color: var(--ink-70); text-wrap: pretty; }
.small { font: 400 15px/1.6 var(--sans); color: var(--ink-55); }
.band--dark .lead, .band--dark .body, .band--dark .small { color: var(--dark-ink-70); }
.serif-em { font-style: italic; color: var(--accent); }
.num { font: 500 13px/1 var(--serif); color: var(--accent-light); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 15px 24px; border-radius: 2px;
  font: 600 14px/1 var(--sans); letter-spacing: .03em;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color .35s var(--ease), background .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
  will-change: transform;
}
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:hover::after { transform: translateY(0); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary::after { background: var(--accent-deep); }
.btn--primary:hover { color: #fff; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink::after { background: var(--accent); }
.btn--ink:hover { color: #fff; }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: #fff; border-color: var(--ink); }

.btn--light { background: #fff; color: var(--accent); }
.btn--light::after { background: oklch(96% 0.01 80); }
.btn--light:hover { color: var(--accent-deep); }

.btn--onDark { border: 1px solid oklch(60% 0.02 60); color: var(--dark-ink); }
.btn--onDark::after { background: var(--dark-ink); }
.btn--onDark:hover { color: var(--dark); }

.btn--sm { padding: 11px 17px; font-size: 13px; }
.btn--lg { padding: 18px 30px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .38; pointer-events: none; }
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* text link with animated rule */
.link-line {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  font: 600 13px/1 var(--sans); letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent); padding-bottom: 3px;
}
.link-line::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.link-line:hover::after { transform: scaleX(1); transform-origin: left; }
.link-line span { transition: transform .35s var(--ease); }
.link-line:hover span:last-child { transform: translateX(4px); }

/* ---------- media ---------- */
.media {
  position: relative; overflow: hidden; border-radius: 2px;
  background: var(--placeholder);
}
.media::before { content: ''; display: block; }
.media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.1s var(--ease), opacity .7s ease;
}
.media--4x3::before  { padding-top: 75%; }
.media--4x5::before  { padding-top: 125%; }
.media--5x4::before  { padding-top: 80%; }
.media--1x1::before  { padding-top: 100%; }
.media--16x10::before{ padding-top: 62.5%; }
.media--21x9::before { padding-top: 42.85%; }
.media--3x2::before  { padding-top: 66.6%; }
.media img.is-loading { opacity: 0; }
a:hover .media img, .card:hover .media img, .media--zoom:hover img { transform: scale(1.045); }
.media--contain { background: var(--surface); border: 1px solid var(--line); }
.media--contain img { object-fit: contain; }

.media__tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  padding: 6px 10px; background: oklch(99% 0.005 80 / .9);
  backdrop-filter: blur(6px);
  font: 600 10px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); border-radius: 2px;
}

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: oklch(97% 0.01 80 / .88);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line); background: oklch(97% 0.01 80 / .96); }
.hdr__in {
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 var(--gut); height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height .4s var(--ease);
}
.hdr.is-stuck .hdr__in { height: 62px; }
.brand { display: flex; align-items: baseline; gap: 8px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__name { font: 600 22px/1 var(--serif); letter-spacing: .02em; }
.brand__sub { font: 600 10px/1 var(--sans); letter-spacing: .22em; color: var(--accent); }

.nav { display: flex; gap: 2px; align-items: center; }
.nav__link {
  position: relative; padding: 9px 11px; border-radius: 2px;
  font: 500 14px/1 var(--sans); color: oklch(30% 0.02 60); white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 11px; right: 11px; bottom: 2px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { color: var(--accent); }
.hdr__cta { margin-left: 12px; white-space: nowrap; }

.burger {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span {
  display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mnav {
  position: fixed; inset: 0; z-index: 55;
  background: var(--bg);
  padding: 96px var(--gut) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .5s var(--ease), visibility .4s;
}
.mnav.is-open { opacity: 1; visibility: visible; transform: none; }
.mnav__list { display: flex; flex-direction: column; }
.mnav__link {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font: 400 30px/1.1 var(--serif); color: var(--ink);
  opacity: 0; transform: translateY(14px);
}
.mnav.is-open .mnav__link { animation: mnavIn .55s var(--ease) forwards; }
.mnav__link i { font: 600 11px/1 var(--sans); letter-spacing: .16em; color: var(--ink-40); font-style: normal; }
.mnav__link.is-active { color: var(--accent); }
@keyframes mnavIn { to { opacity: 1; transform: none; } }

/* scroll progress rail */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 70;
  background: var(--accent); width: 0; transition: width .1s linear;
}

/* ---------- footer ---------- */
.ftr { border-top: 1px solid var(--line); background: var(--surface); }
.ftr__in {
  max-width: var(--wrap); margin: 0 auto; padding: 56px var(--gut) 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
.ftr__col h4 {
  font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-40); margin-bottom: 18px;
}
.ftr__col a { display: block; padding: 7px 0; font: 500 14px/1.4 var(--sans); color: var(--ink); }
.ftr__col a:hover { color: var(--accent); }
.ftr__bar {
  max-width: var(--wrap); margin: 0 auto;
  padding: 22px var(--gut) 40px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font: 400 13px/1.5 var(--sans); color: var(--ink-55);
}
.route-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.route-line b { font-weight: 600; color: var(--ink); }
.route-line i { font-style: normal; color: var(--accent); }

/* ---------- reveal animation ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal='fade'] { transform: none; }
[data-reveal='left']  { transform: translateX(-30px); }
[data-reveal='right'] { transform: translateX(30px); }
[data-reveal='scale'] { transform: scale(.955); }
[data-reveal].is-in { transform: none; }

/* line that draws itself in */
[data-rule] { transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease); }
[data-rule].is-in { transform: scaleX(1); }

/* per-page entry */
.page { animation: pageIn .6s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } }

/* hero image parallax wrapper */
.parallax { will-change: transform; }

/* ---------- cards & lists ---------- */
.card {
  display: flex; flex-direction: column; gap: 20px; color: inherit;
  transition: transform .5s var(--ease);
}
.card:hover { color: inherit; transform: translateY(-4px); }
.card__kicker {
  font: 600 13px/1 var(--sans); letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
}
.card__more { font: 600 13px/1 var(--sans); color: var(--ink); margin-top: 4px; display: inline-flex; gap: 6px; }
.card:hover .card__more { color: var(--accent); }

.rule-list li {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font: 500 16px/1.4 var(--sans);
  display: flex; align-items: center; gap: 12px;
}
.rule-list--top li { border-bottom: 0; border-top: 1px solid var(--line); }
.band--dark .rule-list li { border-color: var(--dark-line); }
.rule-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex: none;
  transform: scale(0); transition: transform .5s var(--ease); transition-delay: var(--d, 0ms);
}
.rule-list li.is-in::before { transform: scale(1); }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat b { font: 400 clamp(24px, 2.4vw, 30px)/1 var(--serif); font-weight: 400; }
.stat span { font: 600 11px/1.3 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }

.pillar-row { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--dark-line); }
.pillar { padding: 0 28px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid var(--dark-line); }
.pillar:last-child { border-right: 0; }

.callout {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  padding: 20px 24px; background: var(--bg); border-left: 2px solid var(--accent);
}
.callout p { flex: 1; min-width: 220px; font: 500 15px/1.5 var(--sans); }

.kit-card {
  border: 1px solid var(--line); background: var(--surface); padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .4s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.kit-card:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.kit-card__size { font: 400 48px/1 var(--serif); }
.kit-card__label { font: 600 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.kit-card__meta { display: flex; justify-content: space-between; gap: 12px; font: 500 13px/1.4 var(--sans); color: var(--ink-55); padding-top: 4px; border-top: 1px solid var(--line); }

/* ---------- home hero ---------- */
.hero { padding-top: clamp(56px, 7vw, 96px); padding-bottom: var(--section); }
/* The ready flag lives on the heading itself, not on an ancestor — not every
   page wraps its H1 in a .hero section, and a missed ancestor would leave the
   heading stuck at opacity 0. */
.hero__title span.word { display: inline-block; opacity: 0; transform: translateY(24px) rotate(1.5deg); }
.hero__title.is-ready span.word { animation: wordIn .85s var(--ease) forwards; }
@keyframes wordIn { to { opacity: 1; transform: none; } }

.hero__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 7px 13px; border: 1px solid var(--line-strong); border-radius: 100px;
  font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55);
}

/* marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; gap: 14px; padding: 18px 30px;
  font: 500 14px/1 var(--sans); color: var(--ink-55); white-space: nowrap;
}
.marquee__item::after { content: '·'; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 0 26px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.step:first-child { padding-left: 0; border-left: 0; }
.step__n { font: 500 13px/1 var(--serif); color: var(--accent); }

/* ---------- gallery ---------- */
.gal-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.gal-filter button {
  padding: 9px 15px; border: 1px solid var(--line); border-radius: 100px; background: var(--surface);
  font: 600 12px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-55);
  transition: all .3s var(--ease);
}
.gal-filter button:hover { border-color: var(--line-strong); color: var(--ink); }
.gal-filter button.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.gal-item { transition: opacity .45s var(--ease), transform .45s var(--ease); }
.gal-item.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: oklch(18% 0.02 60 / .94);
  display: flex; align-items: center; justify-content: center; padding: 4vh 4vw;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  backdrop-filter: blur(6px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 2px; transform: scale(.96); transition: transform .45s var(--ease); }
.lightbox.is-open img { transform: none; }
.lightbox__cap { position: absolute; left: 0; right: 0; bottom: 20px; text-align: center; color: oklch(85% 0.01 80); font: 500 13px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.lightbox__x { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; color: #fff; font-size: 22px; display: flex; align-items: center; justify-content: center; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; color: #fff; font-size: 26px; display: flex; align-items: center; justify-content: center; background: oklch(100% 0 0 / .08); border-radius: 50%; transition: background .3s; }
.lightbox__nav:hover { background: oklch(100% 0 0 / .18); }
.lightbox__prev { left: 16px; } .lightbox__next { right: 16px; }

/* =========================================================================
   MODAL / FLOW ENGINE
   ========================================================================= */
.modal {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: oklch(20% 0.02 60 / .5); backdrop-filter: blur(5px); }
.modal__card {
  position: relative; width: 100%; max-width: 940px; max-height: 92vh;
  background: var(--bg); border-radius: 3px 3px 0 0;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(28px); transition: transform .5s var(--ease);
}
.modal.is-open .modal__card { transform: none; }
@media (min-width: 760px) {
  .modal { align-items: center; padding: 4vh 24px; }
  .modal__card { border-radius: 3px; max-height: 92vh; }
}

.modal__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px var(--gut) 18px; border-bottom: 1px solid var(--line); flex: none;
  background: var(--surface);
}
.modal__eyebrow { font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.modal__title { font: 400 clamp(21px, 2.4vw, 27px)/1.15 var(--serif); margin-top: 9px; }
.modal__x {
  width: 38px; height: 38px; flex: none; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--ink-55);
  transition: all .3s var(--ease);
}
.modal__x:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(90deg); }
.modal__body { overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; flex: 1; }
.modal__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px var(--gut); border-top: 1px solid var(--line); background: var(--surface); flex: none;
}

/* progress dots */
.stepper { display: flex; align-items: center; gap: 10px; }
.stepper__dot {
  display: flex; align-items: center; gap: 8px;
  font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-40);
  transition: color .4s var(--ease);
}
.stepper__dot b {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font: 600 11px/1 var(--sans); transition: all .4s var(--ease);
}
.stepper__dot.is-done b { background: var(--accent); border-color: var(--accent); color: #fff; }
.stepper__dot.is-active { color: var(--ink); }
.stepper__dot.is-active b { border-color: var(--accent); color: var(--accent); }
.stepper__bar { width: 26px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.stepper__bar::after { content: ''; position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.stepper__bar.is-done::after { transform: scaleX(1); }

/* step panels slide */
.steps-view { position: relative; }
.step-panel { padding: 28px var(--gut) 34px; animation: stepIn .45s var(--ease) both; }
.step-panel.is-back { animation: stepInBack .45s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } }
@keyframes stepInBack { from { opacity: 0; transform: translateX(-26px); } }

/* ---------- form controls ---------- */
.field { display: flex; flex-direction: column; gap: 9px; }
.field__label { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); }
.field__hint { font: 400 13px/1.5 var(--sans); color: var(--ink-40); }
.field__err { font: 500 12px/1.4 var(--sans); color: oklch(52% 0.17 27); display: none; }
.field.has-err .field__err { display: block; }
.field.has-err .input, .field.has-err .select { border-color: oklch(60% 0.17 27); }

.input, .select, .textarea {
  width: 100%; padding: 14px 15px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 2px;
  font: 400 15px/1.4 var(--sans); color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px oklch(50% 0.1 40 / .1);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-40); }
.textarea { min-height: 96px; resize: vertical; }
.select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23786a5e' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .span-2 { grid-column: 1 / -1; }

/* option tiles */
.opt-grid { display: grid; gap: 12px; }
.opt-grid--2 { grid-template-columns: 1fr 1fr; }
.opt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.opt-grid--4 { grid-template-columns: repeat(4, 1fr); }

.opt {
  position: relative; display: flex; flex-direction: column; gap: 6px; text-align: left;
  padding: 16px 16px 15px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 2px; cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.opt:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.opt.is-on { border-color: var(--accent); background: var(--accent-wash); }
.opt.is-on::after {
  content: '✓'; position: absolute; top: 11px; right: 12px;
  width: 19px; height: 19px; border-radius: 50%; background: var(--accent); color: #fff;
  font-size: 11px; display: flex; align-items: center; justify-content: center;
  animation: pop .35s var(--ease);
}
@keyframes pop { from { transform: scale(0); } 60% { transform: scale(1.18); } }
.opt__t { font: 600 14px/1.3 var(--sans); padding-right: 24px; }
.opt__d { font: 400 12.5px/1.45 var(--sans); color: var(--ink-55); }
.opt__price { font: 600 12px/1 var(--sans); color: var(--accent); letter-spacing: .04em; margin-top: 2px; }
.opt__icon { font-size: 19px; line-height: 1; margin-bottom: 2px; }

/* size slider */
.slider-row { display: flex; align-items: baseline; gap: 12px; }
.slider-row b { font: 400 40px/1 var(--serif); font-variant-numeric: tabular-nums; }
.slider-row span { font: 600 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); }
input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 26px; background: none; cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track { height: 3px; background: var(--line-strong); border-radius: 3px; }
input[type=range]::-moz-range-track { height: 3px; background: var(--line-strong); border-radius: 3px; }
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 21px; height: 21px; margin-top: -9px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 1px 6px oklch(22% 0.02 60 / .3);
  transition: transform .2s var(--ease);
}
input[type=range]::-moz-range-thumb {
  width: 21px; height: 21px; border-radius: 50%; background: var(--accent);
  border: 3px solid var(--bg); box-shadow: 0 1px 6px oklch(22% 0.02 60 / .3);
}
input[type=range]:active::-webkit-slider-thumb { transform: scale(1.15); }
.slider-scale { display: flex; justify-content: space-between; font: 500 11px/1 var(--sans); color: var(--ink-40); margin-top: 2px; }

/* summary rail inside step 2 */
.summary {
  background: var(--surface); border: 1px solid var(--line); border-radius: 2px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.summary h5 { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-40); margin: 0; }
.summary__row { display: flex; justify-content: space-between; gap: 14px; font: 400 14px/1.4 var(--sans); }
.summary__row span { color: var(--ink-55); } .summary__row b { font-weight: 600; text-align: right; }
.summary__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.summary__tags i {
  font-style: normal; padding: 5px 9px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 100px; font: 500 11.5px/1 var(--sans); color: var(--ink-70);
}

/* ---------- concept generator (AI) ---------- */
.concept { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.concept__stage {
  position: relative; aspect-ratio: 3 / 2; background: var(--dark); border-radius: 2px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.concept__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s var(--ease); }
.concept__stage img.is-shown { opacity: 1; }

/* scanning shimmer while generating */
.scanner { position: absolute; inset: 0; overflow: hidden; }
.scanner::before {
  content: ''; position: absolute; inset: -40% -10%;
  background: linear-gradient(115deg, transparent 40%, oklch(70% 0.1 40 / .22) 50%, transparent 60%);
  animation: sweep 2.4s linear infinite;
}
@keyframes sweep { from { transform: translateX(-60%); } to { transform: translateX(60%); } }
.blueprint {
  position: absolute; inset: 0; opacity: .3;
  background-image:
    linear-gradient(oklch(70% 0.05 50 / .3) 1px, transparent 1px),
    linear-gradient(90deg, oklch(70% 0.05 50 / .3) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: drift 22s linear infinite;
}
@keyframes drift { to { background-position: 340px 340px; } }
.concept__status {
  position: relative; z-index: 2; text-align: center; color: var(--dark-ink);
  display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px;
}
.concept__status p { font: 500 14px/1.4 var(--sans); letter-spacing: .04em; min-height: 20px; }
.concept__status small { font: 400 12px/1.4 var(--sans); color: var(--dark-ink-70); }
.orbit { width: 46px; height: 46px; position: relative; }
.orbit i {
  position: absolute; inset: 0; border: 1.5px solid transparent;
  border-top-color: var(--accent-light); border-radius: 50%;
  animation: spin 1.1s linear infinite;
}
.orbit i:nth-child(2) { inset: 8px; border-top-color: transparent; border-bottom-color: oklch(85% 0.04 60); animation-duration: 1.6s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.concept__meta { display: flex; flex-direction: column; gap: 18px; }
.concept__list { display: flex; flex-direction: column; }
.concept__list div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font: 400 14px/1.4 var(--sans); }
.concept__list div span { color: var(--ink-55); } .concept__list div b { font-weight: 600; text-align: right; }

.disclaimer { font: 400 12px/1.5 var(--sans); color: var(--ink-40); }

/* ---------- OFFER ---------- */
.offer-build { padding: 46px var(--gut) 52px; display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.offer-build__ring { position: relative; width: 128px; height: 128px; }
.offer-build__ring svg { transform: rotate(-90deg); }
.offer-build__ring circle { fill: none; stroke-width: 2.5; }
.offer-build__ring .trk { stroke: var(--line); }
.offer-build__ring .bar { stroke: var(--accent); stroke-linecap: round; transition: stroke-dashoffset .7s var(--ease); }
.offer-build__pct {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font: 400 30px/1 var(--serif); font-variant-numeric: tabular-nums;
}
.offer-build__lines { width: 100%; max-width: 430px; display: flex; flex-direction: column; gap: 2px; }
.build-line {
  display: flex; align-items: center; gap: 12px; padding: 10px 2px;
  font: 500 13.5px/1.4 var(--sans); color: var(--ink-40);
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.build-line.is-shown { opacity: 1; transform: none; }
.build-line.is-active { color: var(--ink); }
.build-line.is-done { color: var(--ink-55); }
.build-line__tick {
  width: 18px; height: 18px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--line-strong); position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; transition: all .4s var(--ease);
}
.build-line.is-active .build-line__tick { border-color: var(--accent); border-right-color: transparent; animation: spin .8s linear infinite; }
.build-line.is-done .build-line__tick { background: var(--accent); border-color: var(--accent); animation: none; }
.build-line span { flex: 1; text-align: left; }
.build-line em { font-style: normal; font-variant-numeric: tabular-nums; font-size: 12.5px; color: var(--ink-40); }

/* offer document */
.offer-doc { padding: 0 0 30px; }
.offer-doc__head {
  padding: 30px var(--gut); background: var(--dark); color: var(--dark-ink);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start;
}
.offer-doc__ref { font: 500 12px/1.6 var(--sans); color: var(--dark-ink-70); letter-spacing: .08em; }
.offer-doc__total { text-align: right; }
.offer-doc__total b { display: block; font: 400 clamp(30px, 4vw, 42px)/1 var(--serif); font-variant-numeric: tabular-nums; }
.offer-doc__total span { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-light); }

.offer-table { width: 100%; border-collapse: collapse; }
.offer-table th {
  text-align: left; padding: 13px var(--gut); background: var(--surface);
  font: 600 10.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-40);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1;
}
.offer-table th.n, .offer-table td.n { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.offer-table td { padding: 14px var(--gut); border-bottom: 1px solid var(--line); font: 400 14px/1.45 var(--sans); vertical-align: top; }
.offer-table tbody tr { opacity: 0; transform: translateY(6px); animation: rowIn .5s var(--ease) forwards; }
@keyframes rowIn { to { opacity: 1; transform: none; } }
.offer-table td b { font-weight: 600; display: block; }
.offer-table td small { display: block; color: var(--ink-40); font-size: 12.5px; margin-top: 3px; }
.offer-table tr.is-group td { background: var(--surface); font: 600 10.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); padding: 12px var(--gut); }
.offer-sum { padding: 20px var(--gut) 0; display: flex; flex-direction: column; gap: 9px; }
.offer-sum__row { display: flex; justify-content: space-between; gap: 20px; font: 400 14.5px/1.5 var(--sans); }
.offer-sum__row span { color: var(--ink-55); }
.offer-sum__row b { font-variant-numeric: tabular-nums; font-weight: 600; }
.offer-sum__row--total { border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 14px; font-size: 18px; }
.offer-sum__row--total b { font: 400 26px/1 var(--serif); }

.offer-notes { padding: 26px var(--gut) 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-note { border-top: 1px solid var(--line); padding-top: 14px; }
.offer-note h6 { margin: 0 0 6px; font: 600 10.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-40); }
.offer-note p { font: 400 13.5px/1.55 var(--sans); color: var(--ink-70); }

/* ---------- appointment ---------- */
.cal { display: flex; flex-direction: column; gap: 14px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cal__head b { font: 500 17px/1 var(--serif); font-weight: 500; }
.cal__nav { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-55); transition: all .3s var(--ease); }
.cal__nav:hover:not([disabled]) { border-color: var(--ink); color: var(--ink); }
.cal__nav[disabled] { opacity: .3; pointer-events: none; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { font: 600 10px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-40); text-align: center; padding: 6px 0; }
.cal__day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 2px; background: var(--surface);
  font: 500 14px/1 var(--sans); color: var(--ink); cursor: pointer;
  transition: all .25s var(--ease); font-variant-numeric: tabular-nums;
}
.cal__day:hover:not([disabled]) { border-color: var(--accent); transform: translateY(-1px); }
.cal__day[disabled] { background: none; color: var(--ink-40); opacity: .45; cursor: default; }
.cal__day.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.cal__day.is-empty { background: none; border: 0; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.slot {
  padding: 12px 8px; border: 1px solid var(--line); border-radius: 2px; background: var(--surface);
  font: 500 14px/1 var(--sans); text-align: center; cursor: pointer; transition: all .25s var(--ease);
  font-variant-numeric: tabular-nums;
}
.slot:hover:not([disabled]) { border-color: var(--accent); transform: translateY(-2px); }
.slot.is-on { background: var(--accent); border-color: var(--accent); color: #fff; }
.slot[disabled] { opacity: .35; cursor: default; text-decoration: line-through; }

.mode-toggle { display: flex; gap: 0; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; background: var(--surface); }
.mode-toggle button { flex: 1; padding: 12px 10px; font: 600 12px/1.3 var(--sans); letter-spacing: .06em; color: var(--ink-55); transition: all .3s var(--ease); }
.mode-toggle button.is-on { background: var(--ink); color: #fff; }

/* ---------- success ---------- */
.done { padding: 52px var(--gut) 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.done__mark { width: 66px; height: 66px; border-radius: 50%; background: var(--accent-wash); display: flex; align-items: center; justify-content: center; }
.done__mark svg { width: 30px; height: 30px; }
.done__mark path { stroke: var(--accent); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .7s var(--ease) .18s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.done__ref {
  padding: 11px 18px; background: var(--surface); border: 1px dashed var(--line-strong); border-radius: 2px;
  font: 600 13px/1 var(--sans); letter-spacing: .12em; color: var(--ink-70);
}
.done__next { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 420px; text-align: left; margin-top: 6px; }
.done__next div { display: flex; gap: 11px; align-items: flex-start; font: 400 14px/1.5 var(--sans); color: var(--ink-70); }
.done__next b { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: #fff; font: 600 10px/20px var(--sans); text-align: center; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 95; transform: translate(-50%, 20px);
  padding: 13px 20px; background: var(--ink); color: #fff; border-radius: 3px;
  font: 500 14px/1 var(--sans); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: all .4s var(--ease);
}
.toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* dropzone */
.drop {
  border: 1px dashed var(--line-strong); border-radius: 2px; background: var(--surface);
  padding: 26px 20px; text-align: center; cursor: pointer;
  transition: all .3s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.drop:hover, .drop.is-over { border-color: var(--accent); background: var(--accent-wash); }
.drop__icon { font-size: 22px; }
.drop b { font: 600 14px/1.3 var(--sans); }
.drop small { font: 400 12.5px/1.4 var(--sans); color: var(--ink-40); }
.drop__files { display: flex; flex-direction: column; gap: 6px; width: 100%; margin-top: 4px; }
.drop__file { display: flex; align-items: center; gap: 9px; padding: 8px 11px; background: var(--bg); border: 1px solid var(--line); border-radius: 2px; font: 500 12.5px/1 var(--sans); }
.drop__file span { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drop__file i { font-style: normal; color: var(--ink-40); }

/* map */
.map-card { background: var(--dark); border-radius: 2px; overflow: hidden; position: relative; }
.map-card svg { display: block; width: 100%; height: auto; }
.map-dot { fill: var(--accent-light); }
.map-pulse { fill: none; stroke: var(--accent-light); opacity: 0; transform-origin: center; }
.map-arc { fill: none; stroke: oklch(60% 0.06 50); stroke-width: 1.1; stroke-dasharray: 4 5; opacity: .75; }
.map-label { fill: oklch(88% 0.01 80); font: 600 8.5px var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.map-sub { fill: oklch(66% 0.02 60); font: 500 6.5px var(--sans); letter-spacing: .1em; text-transform: uppercase; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .ftr__in { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 940px) {
  .nav, .hdr__cta { display: none; }
  .burger { display: flex; }
  .grid, .grid--2, .grid--hero { grid-template-columns: 1fr; gap: 36px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pillar-row { grid-template-columns: 1fr; border-left: 0; gap: 26px; }
  .pillar { padding: 0 0 0 20px; border-right: 0; border-left: 1px solid var(--dark-line); }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .step:nth-child(odd) { padding-left: 0; border-left: 0; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 20px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(even) { border-right: 0; padding-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .concept { grid-template-columns: 1fr; }
  .offer-notes { grid-template-columns: 1fr; gap: 16px; }
  .order-first { order: -1; }
}
@media (max-width: 720px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 32px; }
  .cols-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .opt-grid--3, .opt-grid--4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { padding-left: 20px; border-left: 1px solid var(--line); }
  .step:first-child { padding-left: 20px; border-left: 1px solid var(--line); }
  .ftr__in { grid-template-columns: 1fr; gap: 28px; }
  .offer-table th, .offer-table td { padding-left: var(--gut); padding-right: var(--gut); }
  .offer-table th:nth-child(2), .offer-table td:nth-child(2) { display: none; }
  .modal__head, .modal__foot { padding-left: var(--gut); padding-right: var(--gut); }
  .modal__foot { flex-direction: column-reverse; align-items: stretch; }
  .modal__foot .btn { width: 100%; }
  .modal__foot .stepper { justify-content: center; }
}
@media (max-width: 480px) {
  .opt-grid--2, .opt-grid--3, .opt-grid--4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; padding: 18px 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .lightbox__nav { width: 42px; height: 42px; }
}

/* ---------- print (offer) ---------- */
@media print {
  .hdr, .ftr, .modal__head, .modal__foot, .progress, .burger, .no-print { display: none !important; }
  body { background: #fff; }
  .modal { position: static; opacity: 1; visibility: visible; }
  .modal__scrim { display: none; }
  .modal__card { max-height: none; box-shadow: none; max-width: none; }
  .modal__body { overflow: visible; }
  .offer-table tbody tr { opacity: 1; transform: none; animation: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-rule] { transform: scaleX(1) !important; }
  .hero__title span.word, .hero__title.is-ready span.word { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
