/* ============================================================
   HESED — Translation & Localization
   Brand: Ameixa #695C78 · Coral #E4797F · Poppins / Nunito Sans
   ============================================================ */

:root {
  /* Plum / Ameixa scale */
  --plum:      #695C78;
  --plum-d:    #534960;
  --plum-dd:   #3E3749;
  --plum-l:    #9D95A7;
  --plum-ll:   #C3BDC9;
  --mist:      #E8E6EA;

  /* Coral scale */
  --coral:     #E4797F;
  --coral-d:   #B05F65;
  --coral-l:   #EDA7AB;
  --coral-ll:  #F4C9CB;
  --coral-lll: #FAEAEB;

  /* Neutrals */
  --ink:       #3E3749;
  --muted:     #8A8290;
  --paper:     #FBF7F4;
  --white:     #ffffff;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 2px 10px rgba(62,55,73,.06);
  --shadow:    0 18px 50px -22px rgba(62,55,73,.30);
  --shadow-lg: 0 40px 90px -40px rgba(62,55,73,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--plum); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }
h2 { font-size: clamp(1.8rem, 1.2rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); }
em { font-style: italic; }
/* Hebrew renders better in a serif face (Frank Ruhl Libre, designed for Hebrew) */
.hebrew { font-family: "Frank Ruhl Libre", "Times New Roman", Georgia, serif; font-weight: 700; font-size: 1.08em; }

::selection { background: var(--coral-ll); color: var(--plum-dd); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--plum); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Shared ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-d);
  margin-bottom: 1rem;
}
.lead { font-size: clamp(1.1rem, 1.02rem + .4vw, 1.3rem); color: var(--plum-d); }

.section-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }
.section-head--center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .9rem 1.6rem; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 12px 28px -12px rgba(228,121,127,.8); }
.btn--primary:hover { background: var(--coral-d); transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(176,95,101,.85); }
.btn--ghost { background: transparent; color: var(--plum); box-shadow: inset 0 0 0 1.5px var(--plum-ll); }
.btn--ghost:hover { background: var(--plum); color: #fff; transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px var(--plum); }
.btn--block { width: 100%; padding: 1.05rem; }
.btn:focus-visible { outline: 3px solid var(--coral-d); outline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: .9rem 0;
}
.nav.is-scrolled {
  background: rgba(251,247,244,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(105,92,120,.10);
  padding: .55rem 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__logo { height: 34px; width: auto; }
.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--plum-d);
  position: relative; padding: .25rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--coral); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--plum); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.lang-toggle { display: flex; align-items: center; gap: .35rem; font-family: var(--font-head); font-weight: 600; font-size: .85rem; }
.lang-toggle__btn { color: var(--muted); padding: .2rem .15rem; transition: color .25s; letter-spacing: .04em; }
.lang-toggle__btn.is-active { color: var(--coral-d); }
.lang-toggle__btn:hover { color: var(--plum); }
.lang-toggle__sep { color: var(--plum-ll); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; margin-left: auto; }
.nav__burger span { width: 26px; height: 2.5px; background: var(--plum); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem var(--gutter) 4rem;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 25%, rgba(244,201,203,.55) 0%, rgba(251,247,244,0) 55%),
    radial-gradient(90% 80% at 8% 90%, rgba(232,230,234,.85) 0%, rgba(251,247,244,0) 60%),
    var(--paper);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, rgba(251,247,244,.92) 0%, rgba(251,247,244,.55) 38%, rgba(251,247,244,0) 62%);
}
.hero__content { position: relative; z-index: 3; max-width: 640px; }
.hero__eyebrow { color: var(--coral-d); font-family: var(--font-head); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .82rem; margin-bottom: 1.4rem; }
.hero__title {
  font-size: clamp(2.5rem, 1.6rem + 4.4vw, 4.6rem);
  font-weight: 700; line-height: 1.04; color: var(--plum);
  letter-spacing: -.025em; margin-bottom: 1.4rem;
}
.hero__lead { font-size: clamp(1.1rem, 1.02rem + .5vw, 1.32rem); color: var(--plum-d); max-width: 33em; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__proof { font-size: .95rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.hero__proof strong { color: var(--coral-d); font-weight: 700; }

/* kinetic word at the centre of the ring */
.hero__word {
  position: absolute; z-index: 3; right: clamp(2rem, 18vw, 14rem); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  text-align: center; pointer-events: none;
}
.hero__word-label { font-family: var(--font-head); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--plum-l); }
.hero__word-rotor {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.9rem);
  color: var(--coral-d); min-height: 1.2em; line-height: 1.2;
}
.hero__word-rotor.is-hebrew { font-family: "Frank Ruhl Libre", "Times New Roman", Georgia, serif; font-weight: 700; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--plum-l);
}
.hero__scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--coral), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: var(--coral-d); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -40%; } 100% { top: 100%; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--plum); color: #fff; }
.trust__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(2.2rem, 5vw, 3.4rem) var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
}
.trust__item { display: flex; flex-direction: column; gap: .5rem; }
.trust__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem); color: var(--coral-l); line-height: 1; }
.trust__unit { font-size: .55em; vertical-align: super; }
.trust__label { font-size: .98rem; color: rgba(255,255,255,.82); max-width: 26ch; }

/* "Trusted by" client logos — unified monochrome white on the plum band */
.trust__clients {
  max-width: var(--maxw); margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
  padding: clamp(1.4rem, 3vw, 2rem) var(--gutter);
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; gap: clamp(1.2rem, 4vw, 2.6rem); flex-wrap: wrap;
}
.trust__clients-label {
  font-family: var(--font-head); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.6); white-space: nowrap;
}
.trust__logos { display: flex; align-items: center; gap: clamp(1.6rem, 5vw, 3.2rem); flex-wrap: wrap; list-style: none; }
.client-logo { filter: brightness(0) invert(1); opacity: .82; transition: opacity .3s var(--ease); }
.client-logo:hover { opacity: 1; }
.client-logo--logos { height: 26px; }
.client-logo--mm { height: 40px; }

/* ============================================================
   THE MEANING
   ============================================================ */
.meaning { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }
.meaning__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.meaning__symbol { position: relative; }
.meaning__symbol img { width: min(100%, 380px); margin: 0 auto; filter: drop-shadow(0 30px 50px rgba(228,121,127,.25)); }
.meaning__symbol::before {
  content: ""; position: absolute; inset: -8% ; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,201,203,.5), transparent 65%);
  z-index: -1;
}
.meaning__text p { margin-bottom: 1.1rem; max-width: 46ch; }
.meaning__text p:first-of-type { margin-bottom: 1.3rem; }
.meaning__attrs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.meaning__attrs li {
  font-family: var(--font-head); font-weight: 500; font-size: .85rem;
  padding: .45rem 1rem; border-radius: 100px; color: var(--plum-d);
  background: var(--coral-lll); box-shadow: inset 0 0 0 1px var(--coral-ll);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(4.5rem, 10vw, 8rem) var(--gutter); background: linear-gradient(180deg, var(--paper), #fff); }
.services .section-head { text-align: center; }

/* asterisk footnote marker (hero eyebrow) */
.ast { color: var(--coral-d); text-decoration: none; font-weight: 700; font-size: .8em; vertical-align: super; margin-left: 1px; transition: opacity .2s; }
.ast:hover { opacity: .7; }
.define__ast { color: var(--coral-d); }

/* "what is localization?" callout */
.define {
  max-width: var(--maxw); margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.6rem);
  background: var(--coral-lll); border: 1px solid var(--coral-ll);
  border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.7rem) clamp(1.3rem, 3vw, 2rem);
  scroll-margin-top: 90px;
}
.define__mark { flex-shrink: 0; }
.define__mark img { width: 56px; height: 56px; }
.define__body h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.define__body p { color: var(--plum-d); font-size: .98rem; margin: 0; }
@media (max-width: 600px) {
  .define { flex-direction: column; align-items: flex-start; }
}
.services__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.card {
  background: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  border: 1px solid var(--mist);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--coral), var(--coral-l));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__index { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--coral-l); letter-spacing: .1em; }
.card h3 { margin: .6rem 0 .7rem; }
.card p { color: var(--plum-d); font-size: .98rem; }

/* ============================================================
   APPROACH
   ============================================================ */
.approach { padding: clamp(4.5rem, 10vw, 8rem) var(--gutter); background: #fff; }
.approach__steps {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 1rem; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  color: var(--coral-d); background: var(--coral-lll);
  box-shadow: inset 0 0 0 1.5px var(--coral-ll); margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--plum-d); font-size: .98rem; max-width: 28ch; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 1rem; left: calc(54px + 1rem); right: -1.25rem; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--coral-ll) 0 6px, transparent 6px 12px);
  transform: translateY(26px);
}

/* ============================================================
   WHY HESED
   ============================================================ */
.why {
  padding: clamp(4.5rem, 10vw, 8rem) var(--gutter);
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(105,92,120,.06), transparent 60%),
    linear-gradient(180deg, #fff, var(--paper));
}
.why__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.why__head { position: sticky; top: 100px; }
.why__head .lead { margin: 1.2rem 0 2rem; }
.why__list { display: grid; gap: 1.2rem; }
.why__list li {
  background: #fff; border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--coral);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why__list li:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.why__list h3 { margin-bottom: .5rem; }
.why__list p { color: var(--plum-d); font-size: .98rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { padding: clamp(4rem, 9vw, 7rem) var(--gutter); background: var(--plum); color: #fff; position: relative; }
.placeholder-note {
  max-width: var(--maxw); margin: 0 auto 1.5rem; font-size: .78rem; letter-spacing: .04em;
  color: var(--coral-l); opacity: .8; font-style: italic;
}
.quotes__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.quote {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem);
  backdrop-filter: blur(4px);
}
.quote blockquote { font-family: var(--font-head); font-weight: 500; font-size: 1.08rem; line-height: 1.5; color: #fff; margin-bottom: 1.2rem; }
.quote figcaption { font-size: .85rem; color: var(--coral-l); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(4.5rem, 10vw, 8rem) var(--gutter); }
.contact__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__intro { position: sticky; top: 100px; }
.contact__intro .lead { margin: 1.2rem 0 1.6rem; }
.contact__alt { font-size: .98rem; color: var(--muted); }
.contact__alt a { color: var(--coral-d); font-weight: 600; border-bottom: 1px solid var(--coral-ll); }
.contact__alt a:hover { border-color: var(--coral-d); }

.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: #fff; padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--mist);
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .88rem; color: var(--plum-d); }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border-radius: var(--radius-sm); background: var(--paper);
  border: 1.5px solid var(--mist); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); background: #fff;
  box-shadow: 0 0 0 4px var(--coral-lll);
}
.field textarea { resize: vertical; min-height: 110px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn[disabled] { opacity: .6; cursor: progress; pointer-events: none; }
.contact__form .btn--block { grid-column: 1 / -1; margin-top: .3rem; }
.form-status { grid-column: 1 / -1; font-size: .92rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--coral-d); font-weight: 600; }
.form-status.is-err { color: #b3261e; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--plum-dd); color: rgba(255,255,255,.78); padding: clamp(3rem, 7vw, 5rem) var(--gutter) 1.5rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: clamp(2rem, 5vw, 4rem); }
.footer__logo { height: 40px; width: auto; margin-bottom: 1.2rem; }
.footer__tag { max-width: 34ch; font-size: .98rem; line-height: 1.6; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; font-weight: 600; }
.footer__col p { font-size: .95rem; margin-bottom: .4rem; }
.footer__col a { transition: color .25s; }
.footer__col a:hover { color: var(--coral-l); }
.footer__bar {
  max-width: var(--maxw); margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__actions { margin-left: auto; }
  .nav__cta { display: none; }

  /* mobile menu */
  .nav.is-open { background: var(--paper); }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 1.1rem;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 1.4rem var(--gutter) 2rem; background: var(--paper);
    box-shadow: var(--shadow); margin: 0;
  }
  .nav.is-open .nav__links a { font-size: 1.1rem; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .meaning__inner,
  .why__inner,
  .contact__inner { grid-template-columns: 1fr; }
  .meaning__symbol { max-width: 300px; margin: 0 auto; order: -1; }
  .why__head, .contact__intro { position: static; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero { text-align: left; padding-top: 6.5rem; }
  .hero__word { display: none; }
  .hero__scroll { display: none; }
  .hero__veil { background: linear-gradient(180deg, rgba(251,247,244,.5) 0%, rgba(251,247,244,.82) 70%, var(--paper) 100%); }
  .trust__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .trust__item { flex-direction: row; align-items: baseline; gap: 1rem; }
  .trust__num { font-size: 2.6rem; flex-shrink: 0; min-width: 2.6ch; }
  .step:not(:last-child)::after { display: none; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bar { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .hero__actions .btn { width: 100%; }
}

/* ============================================================
   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; }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll-line::after { display: none; }
}
