/* ============================================================
   SEO Latvija — prototips
   Melnbalts pamats ar Latvijas karoga krāsu akcentiem.
   ============================================================ */

:root {
  --ink: #000;
  --paper: #fff;
  --lv-red: #9e3039;
  --hair: rgba(0, 0, 0, 0.12);
  --hair-strong: rgba(0, 0, 0, 0.28);
  --dim: rgba(0, 0, 0, 0.55);
  --pad: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

img, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--lv-red); color: var(--paper); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 400;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Latvijas karoga krāsu atslēgvārdi ---------- */
.keyword {
  font-style: normal;
  font-weight: inherit;
  transition: color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.keyword--red {
  color: var(--lv-red);
}
.keyword--white {
  display: inline;
  color: inherit;
  background: transparent;
  padding: 0 0.02em;
  box-shadow: inset 0 -0.11em 0 var(--lv-red);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card:hover .keyword--red,
.step:hover .keyword--red,
.price:hover .keyword--red,
.split__col--out .keyword--red,
.service-band .keyword--red,
.contact-note .keyword--red,
a.contact-row:hover .keyword--red {
  color: var(--paper);
  box-shadow: inset 0 -0.1em 0 var(--lv-red);
}

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; inset: 0 auto auto 0;
  height: 2px; width: 0%;
  background: var(--lv-red);
  z-index: 200;
  will-change: width;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 150;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 20px var(--pad);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform 0.55s var(--ease), border-color 0.4s linear;
}
.nav--hidden { transform: translateY(-102%); }
.nav--edge { border-bottom-color: var(--hair); }

.nav__brand {
  display: inline-flex; align-items: center;
  line-height: 0;
}
.nav__logo {
  display: block;
  width: 108px;
  height: auto;
}
.nav__brand:hover .nav__logo {
  transform: translate(-1px, -1px);
}

.nav__links { display: flex; gap: clamp(14px, 2vw, 28px); }
.nav__links a {
  font-size: 13px; letter-spacing: 0.01em; color: var(--dim);
  position: relative; padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--lv-red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 24px);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.lang-switch a {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 4px;
  color: var(--dim);
  transition: color 0.3s var(--ease);
}
.lang-switch a + a::before {
  content: "/";
  position: absolute;
  left: -6px;
  color: var(--hair-strong);
}
.lang-switch a:hover,
.lang-switch a[aria-current="page"] {
  color: var(--lv-red);
}
.nav__menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 11px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  place-content: center;
  gap: 4px;
}
.nav__menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav--menu-open .nav__menu-toggle span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav--menu-open .nav__menu-toggle span:nth-child(2) { opacity: 0; }
.nav--menu-open .nav__menu-toggle span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

@media (max-width: 1000px) {
  .nav {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 14px;
    padding-bottom: 10px;
  }
  .nav__brand { order: 1; }
  .nav__actions { order: 2; margin-left: auto; }
  .nav__links {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: clamp(12px, 4vw, 30px);
    padding-top: 8px;
    border-top: 1px solid var(--hair);
  }
  .nav__links a { font-size: 12px; }
  .hero { padding-top: 158px; }
  .hero__meta { top: 126px; }
}

@media (max-width: 620px) {
  .nav { column-gap: 10px; }
  .nav__logo { width: 84px; }
  .nav__actions { gap: 4px; }
  .lang-switch { gap: 0; }
  .nav__menu-toggle { display: grid; }
  .nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 6px;
    padding-bottom: 4px;
  }
  .nav--menu-open .nav__links { display: flex; }
  .nav__links a {
    width: 100%;
    padding: 11px 2px;
    font-size: 13px;
  }
  .nav__links a::after { bottom: 7px; width: 28px; }
  .hero { padding-top: 118px; }
}

/* ---------- buttons ---------- */
.btn {
  --h: 54px;
  position: relative; z-index: 0;
  display: inline-flex; align-items: center; gap: 12px;
  height: var(--h); padding: 0 26px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--lv-red);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn:hover { color: var(--paper); border-color: var(--lv-red); }
.btn:hover::before { transform: translateY(0); }
.btn__arrow { transition: transform 0.45s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(6px); }
.btn--sm { --h: 42px; padding: 0 18px; font-size: 13px; }
.btn--lg { --h: 66px; padding: 0 34px; font-size: 16px; }
@media (max-width: 620px) { .btn--sm { display: none; } }

.link {
  position: relative; font-size: 14px; color: var(--dim);
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(1); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.link:hover { color: var(--lv-red); }
.link:hover::after { transform: scaleX(0); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 132px var(--pad) 60px;
  overflow: hidden;
}
/* brīvā telpa, kurā dzīvo 3D josla */
.hero__stage { flex: 1 1 auto; min-height: clamp(180px, 30vh, 320px); }
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  cursor: pointer;
}
.hero__canvas--static { cursor: default; }
.hero__meta {
  position: absolute; top: 96px; left: var(--pad); right: var(--pad);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim); z-index: 2; pointer-events: none;
}
.hero__clock b { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
@media (max-width: 620px) { .hero__clock { display: none; } }

.hero__body {
  position: relative; z-index: 2;
  max-width: 1100px;
}
/* smalka balta migla tikai virsraksta augšmalā */
.hero__body::before {
  content: ""; position: absolute;
  inset: -70px -80px 0 -80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 62%);
  z-index: -1; pointer-events: none;
}

.hero__title {
  font-size: clamp(44px, 9.2vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero__title .line { display: block; }
.hero__title--typewriter .line { min-height: 0.88em; }
.hero__typed { display: inline; }
.hero__accent {
  color: var(--lv-red);
  -webkit-text-stroke: 0 transparent;
}
.hero__caret {
  display: inline-block;
  width: 0.035em;
  height: 0.76em;
  margin-left: 0.06em;
  vertical-align: -0.06em;
  background: var(--lv-red);
  opacity: 0;
}
.hero__caret.is-active {
  opacity: 1;
  animation: hero-caret 0.82s steps(1, end) infinite;
}
@keyframes hero-caret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}
.hero__title .line--out {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  padding-left: 0.06em;
}
@media (max-width: 620px) {
  .hero__title--typewriter { font-size: clamp(34px, 9.6vw, 74px); }
}
.hero__lede {
  margin-top: 28px; max-width: 46ch;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--dim); line-height: 1.55;
}
.hero__cta {
  margin-top: 40px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 54px; background: var(--hair); overflow: hidden; z-index: 2;
}
.hero__scroll span {
  position: absolute; inset: 0; background: var(--ink);
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden; padding: 18px 0;
}
.ticker__track {
  display: flex; align-items: center; gap: 26px;
  white-space: nowrap; width: max-content;
  animation: slide 34s linear infinite;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track i { color: var(--lv-red); opacity: 1; font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.sec { padding: clamp(90px, 13vw, 190px) var(--pad); position: relative; }
.sec--tight { padding-top: clamp(40px, 6vw, 80px); }
.sec__head {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 20px; margin-bottom: clamp(36px, 6vw, 72px);
  border-bottom: 1px solid var(--hair);
}
.sec__num {
  color: var(--lv-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.sec__label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim);
}

.statement {
  font-size: clamp(30px, 5.4vw, 76px);
  line-height: 1.02; letter-spacing: -0.04em; font-weight: 700;
  max-width: 18ch;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.statement--sm { font-size: clamp(26px, 3.8vw, 52px); max-width: 22ch; }
.statement--split > span { display: block; }

/* ---------- grids / cards ---------- */
.grid { display: grid; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  padding: clamp(24px, 3vw, 44px);
  min-height: 260px;
  display: flex; flex-direction: column;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.card__num {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lv-red); margin-bottom: auto;
  transition: color 0.5s var(--ease);
}
.card h3 {
  font-size: clamp(19px, 2vw, 26px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.12; margin: 40px 0 12px;
}
.card p { font-size: 14.5px; color: var(--dim); transition: color 0.5s var(--ease); }
.card:hover { background: var(--ink); color: var(--paper); }
.card:hover p { color: rgba(255, 255, 255, 0.62); }
.card:hover .card__num { color: var(--paper); }

/* ---------- steps ---------- */
.steps { border-top: 1px solid var(--hair); }
.step {
  position: relative;
  display: grid; grid-template-columns: 90px 1fr 40px;
  align-items: start; gap: 20px;
  padding: clamp(24px, 3.4vw, 44px) 8px;
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  transition: color 0.5s var(--ease), padding-left 0.5s var(--ease);
}
.step::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink); transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
.step:hover { color: var(--paper); padding-left: 26px; }
.step:hover::before { transform: translateY(0); }
.step__n {
  color: var(--lv-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 6px;
  transition: color 0.5s var(--ease);
}
.step__body h3 {
  font-size: clamp(22px, 3.4vw, 42px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.05;
}
.step__body p {
  margin-top: 10px; font-size: 14.5px; color: var(--dim); max-width: 58ch;
  transition: color 0.5s var(--ease);
}
.step:hover .step__body p { color: rgba(255, 255, 255, 0.66); }
.step:hover .step__n { color: var(--paper); }
.step__mark {
  font-size: 20px; justify-self: end; padding-top: 6px;
  opacity: 0; transform: translateX(-14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.step:hover .step__mark { opacity: 1; transform: translateX(0); }
.steps--services .step { grid-template-columns: 90px minmax(0, 1fr); }
.section-link {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 700px) {
  .step { grid-template-columns: 46px 1fr; }
  .steps--services .step { grid-template-columns: 46px minmax(0, 1fr); }
  .step__mark { display: none; }
}

/* ---------- split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: stretch; gap: 0;
  border: 1px solid var(--hair);
}
.split__col { padding: clamp(26px, 3.4vw, 52px); }
.split__col--out { background: var(--ink); color: var(--paper); }
.split__tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.55; margin-bottom: 26px;
}
.split__quote {
  font-size: clamp(20px, 2.4vw, 32px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.16; margin-bottom: 34px;
}
.split__list li {
  padding: 13px 0; border-top: 1px solid var(--hair);
  font-size: 14.5px; display: flex; justify-content: space-between; gap: 12px;
}
.split__col--out .split__list li { border-top-color: rgba(255, 255, 255, 0.18); }
.split__list em { font-style: normal; opacity: 0.55; }
.split__mid {
  display: grid; place-items: center;
  border-left: 1px solid var(--hair); border-right: 1px solid var(--hair);
  font-size: 22px;
}
.split__mid span { display: block; animation: nudge 2.6s var(--ease) infinite; }
@keyframes nudge {
  0%, 100% { transform: translateX(-6px); opacity: 0.35; }
  50% { transform: translateX(6px); opacity: 1; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__mid { border: none; border-top: 1px solid var(--hair); padding: 16px 0; }
  .split__mid span { animation: none; transform: rotate(90deg); }
}

/* ---------- prices ---------- */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
@media (max-width: 1000px) { .prices { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prices { grid-template-columns: 1fr; } }

.price {
  background: var(--paper);
  padding: clamp(22px, 2.6vw, 36px);
  min-height: 320px;
  display: flex; flex-direction: column;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.price__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim); transition: color 0.5s var(--ease);
}
.price__idx { color: var(--lv-red); transition: color 0.5s var(--ease); }
.price__badge { border: 1px solid var(--hair); border-radius: 999px; padding: 4px 10px; transition: border-color 0.5s var(--ease); }
.price__fig {
  display: flex; align-items: baseline; gap: 4px;
  margin: auto 0 0; padding-top: 44px;
  font-weight: 800; letter-spacing: -0.05em;
}
.price__from { font-size: 15px; font-weight: 500; opacity: 0.5; margin-right: 4px; letter-spacing: 0; }
.price__num { font-size: clamp(44px, 5vw, 68px); font-variant-numeric: tabular-nums; }
.price__cur { font-size: clamp(22px, 2.4vw, 30px); }
.price__per { font-size: 13px; font-weight: 500; opacity: 0.5; letter-spacing: 0; margin-left: 4px; }
.price__name {
  margin-top: 16px; font-size: 17px; font-weight: 700; letter-spacing: -0.025em;
}
.price__desc { margin-top: 8px; font-size: 13.5px; color: var(--dim); transition: color 0.5s var(--ease); }
.price__stripe {
  margin-top: 24px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--hair);
  color: var(--lv-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.price__stripe:empty { display: none; }
.price__stripe span:last-child { font-size: 17px; transition: transform 0.35s var(--ease); }
.price__stripe:hover span:last-child { transform: translate(3px, -3px); }
.price:hover { background: var(--ink); color: var(--paper); }
.price:hover .price__desc, .price:hover .price__top { color: rgba(255, 255, 255, 0.62); }
.price:hover .price__idx { color: var(--paper); }
.price:hover .price__badge { border-color: rgba(255, 255, 255, 0.35); }
.price:hover .price__stripe {
  color: var(--paper);
  border-top-color: rgba(255, 255, 255, 0.24);
}
.prices__foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.prices__note { font-size: 12px; color: var(--dim); }

/* ---------- invert section ---------- */
.sec--invert { background: var(--ink); color: var(--paper); }
.sec__head--inv { border-bottom-color: rgba(255, 255, 255, 0.2); }
.sec__head--inv .sec__num { color: var(--paper); }
.sec__head--inv .sec__label { color: rgba(255, 255, 255, 0.55); }
.statement--inv { color: var(--paper); }
.sec--invert .grid { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.2); }
.deny {
  background: var(--ink); color: var(--paper);
  padding: clamp(24px, 3vw, 40px);
  display: flex; gap: 18px; align-items: flex-start;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.deny span { font-size: 15px; opacity: 0.5; line-height: 1.5; }
.deny p { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.45; max-width: 40ch; }
.deny:hover { background: var(--paper); color: var(--ink); }

/* ---------- about section ---------- */
.sec--about { overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
}
.about__copy { min-width: 0; }
.about__eyebrow {
  margin-bottom: clamp(22px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about__title {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(38px, 5.2vw, 78px);
}
.about__lede {
  max-width: 48ch;
  margin-top: clamp(28px, 4vw, 48px);
  padding-left: 22px;
  border-left: 4px solid var(--lv-red);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.5;
}
.about__points {
  display: grid;
  gap: 18px;
  margin-top: clamp(32px, 4vw, 54px);
  padding: 0;
  list-style: none;
}
.about__points li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--paper);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.about__points li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--lv-red);
}
.about__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1586 / 1402;
  margin: 0;
  overflow: hidden;
  background: #000;
}
.about__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about__title { max-width: 15ch; }
  .about__visual { max-width: 760px; }
}

@media (max-width: 620px) {
  .about__grid { gap: 38px; }
  .about__eyebrow { margin-bottom: 24px; }
  .about__lede { padding-left: 16px; border-left-width: 3px; }
  .about__points { gap: 14px; }
  .about__points li { font-size: 10px; letter-spacing: 0.1em; }
}

/* ---------- cta ---------- */
.sec--end { padding-bottom: clamp(70px, 9vw, 130px); }
.cta__title {
  font-size: clamp(42px, 9vw, 130px);
  line-height: 0.9; letter-spacing: -0.05em; font-weight: 800;
  text-transform: uppercase;
}
.cta__title > span { display: block; }
.cta__title-out {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lv-red);
}
.cta__lede { margin-top: 26px; max-width: 44ch; font-size: clamp(15px, 1.6vw, 18px); color: var(--dim); }
.cta__row {
  margin-top: 46px; display: flex; align-items: center;
  gap: 36px; flex-wrap: wrap;
}
.cta__alt { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.cta__alt a { color: var(--dim); transition: color 0.3s var(--ease); }
.cta__alt a:hover { color: var(--ink); }

/* ---------- complete contact directory ---------- */
.contact-grid {
  margin-top: clamp(52px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.contact-item {
  position: relative;
  min-height: 150px;
  padding: clamp(22px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--hair);
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.contact-item:nth-child(odd) { border-right: 1px solid var(--hair); }
.contact-item:last-child { border-bottom: 0; }
.contact-item--wide {
  grid-column: 1 / -1;
  border-right: 0 !important;
}
.contact-item__label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.45s var(--ease);
}
.contact-item strong {
  padding-right: 40px;
  font-size: clamp(20px, 2.6vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}
.contact-item__hours {
  font-size: clamp(16px, 1.7vw, 22px) !important;
  line-height: 1.4 !important;
  letter-spacing: -0.02em !important;
}
.contact-item__arrow {
  position: absolute;
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 38px);
  font-size: 24px;
  transition: transform 0.4s var(--ease);
}
a.contact-item:hover { background: var(--ink); color: var(--paper); }
a.contact-item:hover .contact-item__label { color: rgba(255, 255, 255, 0.62); }
a.contact-item:hover .contact-item__arrow { transform: translateX(6px); }

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--hair);
  padding: 26px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim);
}
.foot__logo { display: block; width: 108px; height: auto; }
.foot b { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }

/* ============================================================
   Iekšlapas — Cenas un Kontakti
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  padding: clamp(170px, 15vw, 230px) var(--pad) clamp(72px, 8vw, 120px);
}
.breadcrumbs {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.breadcrumbs a:hover { color: var(--lv-red); }
.breadcrumbs span[aria-current="page"] { color: var(--dim); }
.page-hero .sec__head {
  margin-bottom: clamp(38px, 5vw, 68px);
}
.page-title {
  max-width: 13ch;
  font-size: clamp(48px, 8.2vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-transform: uppercase;
}
.page-title > span { display: block; }
.page-title__out {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lv-red);
}
.page-lede {
  margin-top: clamp(28px, 4vw, 48px);
  max-width: 45ch;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--dim);
}
.page-hero__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.page-content {
  padding: 0 var(--pad) clamp(90px, 11vw, 160px);
}

/* ---------- price page list ---------- */
.price-list { border-top: 1px solid var(--hair-strong); }
.price-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
  padding: clamp(28px, 3.4vw, 50px) 0;
  border-bottom: 1px solid var(--hair-strong);
}
.price-row__index {
  color: var(--lv-red);
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}
.price-row__body h3 {
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.price-row__body p {
  max-width: 58ch;
  margin-top: 8px;
  color: var(--dim);
  font-size: 14.5px;
  line-height: 1.5;
}
.price-row__purchase {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.price-row__figure {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 7px;
  white-space: nowrap;
  text-align: right;
}
.price-row__figure strong {
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}
.price-row__figure span,
.price-row__figure small {
  color: var(--dim);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}
.stripe-link {
  min-width: 210px;
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--lv-red);
  color: var(--lv-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.35s var(--ease), padding 0.35s var(--ease);
}
.stripe-link span:last-child {
  font-size: 18px;
  transition: transform 0.35s var(--ease);
}
.stripe-link:hover {
  padding-left: 8px;
  color: var(--ink);
}
.stripe-link:hover span:last-child { transform: translate(3px, -3px); }
.stripe-link--contact {
  border-top-color: var(--hair-strong);
  color: var(--ink);
}
.stripe-link--contact:hover span:last-child { transform: translateX(4px); }
.price-list__foot {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.price-list__foot p { color: var(--dim); font-size: 13px; }

.service-band,
.contact-note {
  padding: clamp(76px, 9vw, 132px) var(--pad);
  background: var(--ink);
  color: var(--paper);
}
.service-band .statement { margin-bottom: clamp(46px, 6vw, 80px); }
.service-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.service-band__grid article {
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}
.service-band__grid article:first-child { border-left: 0; }
.service-band__grid article > span,
.contact-note__grid article > span {
  display: block;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.service-band__grid h3,
.contact-note__grid h3 {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.service-band__grid li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
}

.page-contact {
  padding: clamp(86px, 11vw, 160px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: clamp(46px, 8vw, 130px);
}
.page-contact__label {
  display: block;
  margin-bottom: 30px;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.page-contact h2 {
  max-width: 10ch;
  font-size: clamp(48px, 7.6vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.page-contact p {
  max-width: 44ch;
  margin-top: 28px;
  color: var(--dim);
  font-size: clamp(15px, 1.5vw, 18px);
}
.page-contact__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--dim);
  font-size: 14px;
}
.page-contact__actions .btn { margin-bottom: 20px; color: var(--ink); }
.page-contact__actions .btn:hover { color: var(--paper); }

/* ---------- contact page list ---------- */
.page--contacts .page-title { max-width: 15ch; font-size: clamp(46px, 7.7vw, 110px); }
.contact-list { border-top: 1px solid var(--hair-strong); }
.contact-row {
  display: grid;
  grid-template-columns: 100px 180px minmax(0, 1fr) 32px;
  align-items: center;
  gap: clamp(18px, 2.7vw, 46px);
  min-height: 112px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair-strong);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), padding 0.4s var(--ease);
}
a.contact-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: var(--ink);
  color: var(--paper);
}
.contact-row__index {
  color: var(--lv-red);
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}
.contact-row__label {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.4s var(--ease);
}
.contact-row strong {
  min-width: 0;
  justify-self: end;
  font-size: clamp(20px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-align: right;
  overflow-wrap: anywhere;
}
.contact-row__value { display: inline-flex; align-items: center; gap: 12px; }
.whatsapp-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  --whatsapp-icon-main: var(--ink);
  --whatsapp-icon-contrast: var(--paper);
}
.whatsapp-icon__disc,
.whatsapp-icon__tail { fill: var(--whatsapp-icon-main); }
.whatsapp-icon__phone { fill: var(--whatsapp-icon-contrast); }
.contact-row--static strong { font-size: clamp(16px, 1.7vw, 22px); letter-spacing: -0.02em; }
.contact-row__arrow { justify-self: end; font-size: 24px; transition: transform 0.4s var(--ease); }
a.contact-row:hover .contact-row__label { color: rgba(255, 255, 255, 0.62); }
a.contact-row:hover .contact-row__index { color: var(--paper); }
a.contact-row:hover .whatsapp-icon {
  --whatsapp-icon-main: var(--paper);
  --whatsapp-icon-contrast: var(--ink);
}
a.contact-row:hover .contact-row__arrow { transform: translateX(5px); }
.contact-list__cta { margin-top: 28px; }

.contact-note__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.contact-note__grid article {
  padding: clamp(26px, 3.4vw, 46px);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}
.contact-note__grid article:first-child { border-left: 0; }
.contact-note__grid p {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
}

/* ---------- services page ---------- */
.page--services .page-title { max-width: 15ch; }
.page-hero--services .page-lede { max-width: 60ch; }
.page-content--services { padding-top: 0; }

.service-process {
  padding: clamp(86px, 11vw, 160px) var(--pad);
}
.service-process .statement { margin-bottom: clamp(46px, 6vw, 80px); }
.service-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.service-process__grid article {
  min-width: 0;
  padding: clamp(26px, 3.4vw, 46px);
  border-left: 1px solid var(--hair-strong);
}
.service-process__grid article:first-child { border-left: 0; }
.service-process__grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--lv-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.service-process__grid h3 {
  margin-bottom: 15px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.service-process__grid p {
  max-width: 34ch;
  color: var(--dim);
  font-size: 14.5px;
}

.faq-section {
  padding: clamp(76px, 9vw, 132px) var(--pad);
  background: var(--ink);
  color: var(--paper);
}
.faq-section .statement { margin-bottom: clamp(46px, 6vw, 80px); }
.faq-list { border-top: 1px solid rgba(255, 255, 255, 0.28); }
.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.faq-list summary {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span {
  color: var(--lv-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.faq-list summary strong {
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.faq-list summary i {
  justify-self: end;
  color: var(--lv-red);
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  transition: transform 0.35s var(--ease);
}
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p {
  max-width: 72ch;
  margin: 0 50px 28px 80px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- results page ---------- */
.page--results .page-title { max-width: 15ch; }
.page-hero--results .page-lede { max-width: 52ch; }
.page-content--results { padding-top: 0; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--hair-strong);
  border-left: 1px solid var(--hair-strong);
}
.result-video {
  min-width: 0;
  padding: clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.result-video__frame {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.result-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--ink);
}
.result-video__meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.result-video__meta span:first-child { color: var(--lv-red); }
.result-video h3 {
  margin-top: 28px;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.result-video p {
  max-width: 46ch;
  margin-top: 10px;
  color: var(--dim);
  font-size: 14px;
}
.results-note {
  padding: clamp(76px, 9vw, 132px) var(--pad);
  background: var(--ink);
  color: var(--paper);
}
.results-note__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: clamp(46px, 8vw, 120px);
}
.results-note__grid .statement { margin-bottom: 0; }
.results-note__grid ol {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.results-note__grid li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.results-note__grid li span {
  color: var(--lv-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.results-note__grid li p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

:focus-visible {
  outline: 2px solid var(--lv-red);
  outline-offset: 4px;
}
.service-band :focus-visible,
.contact-note :focus-visible,
.results-note :focus-visible,
.faq-section :focus-visible {
  outline-color: var(--paper);
}

@media (max-width: 1000px) {
  .price-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }
  .price-row__purchase {
    grid-column: 2;
    align-items: flex-start;
    margin-top: 8px;
    min-width: 0;
  }
  .price-row__figure {
    justify-content: flex-start;
    text-align: left;
  }
  .service-band__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-band__grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }
  .service-band__grid article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }
  .contact-row {
    grid-template-columns: 72px 130px minmax(0, 1fr) 28px;
  }
  .results-note__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding-top: 160px;
    padding-bottom: 68px;
  }
  .page-title,
  .page--contacts .page-title {
    font-size: clamp(40px, 11.2vw, 66px);
    line-height: 0.91;
  }
  .page-lede { font-size: 16px; }

  .price-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 28px 0;
  }
  .price-row__index { font-size: 36px; }
  .price-row__body h3 { font-size: 19px; }
  .price-row__body p { font-size: 14px; }
  .price-row__figure strong { font-size: 42px; }
  .price-list__foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-band__grid { grid-template-columns: 1fr; }
  .service-band__grid article,
  .service-band__grid article:nth-child(3),
  .service-band__grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }
  .service-band__grid article:first-child { border-top: 0; }
  .service-band__grid article > span,
  .contact-note__grid article > span { margin-bottom: 24px; }

  .page-contact {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .page-contact__actions { align-items: flex-start; }

  .contact-row {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    min-height: 0;
    padding: 22px 0;
  }
  .contact-row__index {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 2px;
    font-size: 30px;
  }
  .contact-row__label {
    grid-column: 2;
    grid-row: 1;
    font-size: 10px;
  }
  .contact-row strong {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    font-size: 20px;
    text-align: left;
  }
  .contact-row--static strong { font-size: 15px; line-height: 1.45; }
  .contact-row__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }
  a.contact-row:hover {
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .contact-note__grid { grid-template-columns: 1fr; }
  .contact-note__grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }
  .contact-note__grid article:first-child { border-top: 0; }

  .service-process__grid { grid-template-columns: 1fr; }
  .service-process__grid article {
    border-left: 0;
    border-top: 1px solid var(--hair-strong);
  }
  .service-process__grid article:first-child { border-top: 0; }
  .service-process__grid article > span { margin-bottom: 24px; }
  .faq-list summary {
    grid-template-columns: 44px minmax(0, 1fr) 26px;
    gap: 12px;
    padding: 22px 0;
  }
  .faq-list details > p { margin: 0 18px 24px 56px; }

  .results-grid { grid-template-columns: 1fr; }
  .result-video h3 { font-size: 22px; }
}

@media (max-width: 620px) {
  .sec--end { padding-bottom: 70px; }
  .cta__row { margin-top: 34px; }
  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .contact-item,
  .contact-item:nth-child(odd),
  .contact-item--wide {
    grid-column: auto;
    min-height: 124px;
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .contact-item:last-child { border-bottom: 0; }
  .contact-item strong { font-size: 23px; }
  .contact-item__hours { font-size: 15px !important; }
  .foot {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .foot__logo { width: 92px; }
}

@media (max-width: 430px) {
  .nav__links { gap: 0; }
  .nav__links a { font-size: 13px; }
  .page-title,
  .page--contacts .page-title { font-size: 10.6vw; }
  .btn {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn--lg { font-size: 14px; }
  .contact-item strong { padding-right: 34px; }
  .foot { gap: 10px; }
}

/* ---------- reveal ---------- */
.js [data-reveal] { will-change: transform, opacity; }
.rv-line { display: inline-block; overflow: hidden; vertical-align: top; }
.js .rv-unit {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease);
}
.js .rv-in .rv-unit { transform: translateY(0); }

.js [data-reveal="fade"] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js [data-reveal="fade"].rv-in { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .js .rv-unit { transform: none; }
  .js [data-reveal="fade"] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
