/* =========================================================
   OLKO.obviously — one-pager
   Monochrome. Geometric. Motion-forward.
   ========================================================= */

:root{
  --bg:      #000;
  --fg:      #ffffff;
  --muted:   #8a8a8a;
  --muted-2: #cfcfcf;
  --line:    rgba(255,255,255,.12);
  --line-2:  rgba(255,255,255,.06);

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

  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }

/* Lenis smooth-scroll plumbing */
html.lenis, html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-smooth [data-lenis-prevent]{ overscroll-behavior:contain; }
.lenis.lenis-stopped{ overflow:hidden; }

body{
  background:var(--bg);
  color:var(--fg);
  font-family:var(--font-body);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.muted{ color:var(--muted); }

::selection{ background:var(--fg); color:var(--bg); }

/* a11y */
.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;
}
:focus-visible{ outline:2px solid var(--fg); outline-offset:3px; border-radius:2px; }
.skip{
  position:fixed; top:-100%; left:1rem; z-index:200;
  background:var(--fg); color:var(--bg);
  padding:.6rem 1rem; border-radius:0 0 8px 8px;
  font-size:.85rem; font-weight:600;
  transition:top .2s ease;
}
.skip:focus-visible{ top:0; }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position:fixed; top:0; left:0; width:100%; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem;
  padding:1.15rem var(--gutter);
  transition:padding .3s ease, background .3s ease, border-color .3s ease;
  border-bottom:1px solid transparent;
}
.nav--scrolled{
  padding-top:.8rem; padding-bottom:.8rem;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-2);
}
.nav__logo img{ height:19px; width:auto; transition:opacity .2s ease; }
.nav__logo:hover img{ opacity:.75; }

.nav__links{ display:flex; gap:2rem; font-size:.82rem; letter-spacing:.01em; }
.nav__links a{
  color:rgba(255,255,255,.62);
  position:relative; padding:.2rem 0;
  transition:color .2s ease;
}
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0;
  background:var(--fg); transition:width .28s ease;
}
.nav__links a:hover{ color:var(--fg); }
.nav__links a:hover::after{ width:100%; }

.nav__lang{ display:flex; align-items:center; gap:.1rem; font-size:.78rem; color:rgba(255,255,255,.35); }
.nav__lang button{
  background:none; border:0; cursor:pointer; font:inherit;
  color:rgba(255,255,255,.5); letter-spacing:.06em;
  min-width:44px; min-height:44px;                /* a11y tap target */
  display:inline-flex; align-items:center; justify-content:center;
  margin:-.4rem 0;                                 /* keep the bar visually slim */
  transition:color .2s ease;
}
.nav__lang button:hover{ color:var(--fg); }
.nav__lang button.is-active{ color:var(--fg); font-weight:600; }

.nav__right{ display:flex; align-items:center; gap:1.3rem; }
.nav__cta{
  display:inline-flex; align-items:center;
  font-size:.8rem; font-weight:600; letter-spacing:.01em;
  padding:.55rem 1.1rem; border-radius:100px;
  color:var(--fg);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  transition:background .25s ease, border-color .25s ease;
}
.nav__cta:hover{ background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.42); transform:translateY(-1px); }
.nav__cta{ transition:background .25s ease, border-color .25s ease, transform .25s ease; }

/* =========================================================
   HERO — geometric entrance (floating glass shapes)
   ========================================================= */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  padding:6rem var(--gutter) 4rem;
}
.hero__shapes{ position:absolute; inset:0; overflow:hidden; }
.hshape{
  position:absolute;
  opacity:0;
  animation:
    hshape-move 2.4s cubic-bezier(.23,.86,.39,.96) var(--d) both,
    hshape-fade 1.2s ease var(--d) both;
}
@keyframes hshape-move{
  from{ transform:translateY(-150px) rotate(calc(var(--r) - 15deg)); }
  to{   transform:translateY(0)      rotate(var(--r)); }
}
@keyframes hshape-fade{ from{ opacity:0; } to{ opacity:1; } }
.hshape__float{
  width:var(--w); height:var(--h);
  animation:hshape-float 12s ease-in-out infinite;
}
@keyframes hshape-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(15px); } }
.hshape__pill{
  position:absolute; inset:0; border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,var(--a,.1)), transparent);
  border:2px solid rgba(255,255,255,.15);
  box-shadow:0 8px 32px rgba(255,255,255,.1);
  backdrop-filter:blur(2px); -webkit-backdrop-filter:blur(2px);
}
.hshape__pill::after{
  content:""; position:absolute; inset:0; border-radius:999px;
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.2), transparent 70%);
}
.hshape--1{ --w:600px; --h:140px; --r:12deg;  --d:.3s; --a:.14; left:-8%;  top:18%; }
.hshape--2{ --w:500px; --h:120px; --r:-15deg; --d:.5s; --a:.13; right:-4%; top:72%; }
.hshape--3{ --w:300px; --h:80px;  --r:-8deg;  --d:.4s; --a:.12; left:8%;   bottom:6%; }
.hshape--4{ --w:200px; --h:60px;  --r:20deg;  --d:.6s; --a:.12; right:18%; top:12%; }
.hshape--5{ --w:150px; --h:40px;  --r:-25deg; --d:.7s; --a:.10; left:22%;  top:6%; }

.hero__content{
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.hero__lockup{
  width:min(52vw, 300px); height:auto;
  -webkit-user-select:none; user-select:none;
  animation:hero-up 1s cubic-bezier(.25,.4,.25,1) .45s both;
}
.hero__title{
  margin-top:2.6rem;
  font-family:var(--font-display);
  font-weight:600; letter-spacing:-.02em; line-height:1.06;
  font-size:clamp(2rem, 4.8vw, 4rem);
  max-width:18ch;
  animation:hero-up 1s cubic-bezier(.25,.4,.25,1) .6s both;
}
.hero__sub{
  margin-top:1.5rem;
  font-size:clamp(.98rem, 1.5vw, 1.15rem); line-height:1.6;
  color:var(--muted-2); max-width:54ch;
  animation:hero-up 1s cubic-bezier(.25,.4,.25,1) .75s both;
}
.hero__tag{
  margin-top:2rem;
  font-size:.75rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--muted);
  animation:hero-up 1s cubic-bezier(.25,.4,.25,1) .9s both;
}
.hero__cta{
  margin-top:2.4rem;
  display:flex; align-items:center; justify-content:center;
  gap:1.8rem; flex-wrap:wrap;
  animation:hero-up 1s cubic-bezier(.25,.4,.25,1) 1.05s both;
}
.hero__avail{
  margin-top:1.8rem;
  font-size:.8rem; color:var(--muted);
  animation:hero-up 1s cubic-bezier(.25,.4,.25,1) 1.2s both;
}
@keyframes hero-up{
  from{ opacity:0; transform:translateY(30px); }
  to{   opacity:1; transform:none; }
}
.hero__link{
  font-size:.85rem; color:var(--muted-2);
  border-bottom:1px solid rgba(255,255,255,.25);
  padding-bottom:.15rem;
  transition:color .2s ease, border-color .2s ease;
}
.hero__link:hover{ color:var(--fg); border-color:var(--fg); }
.hero__vignette{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(to top, var(--bg) 0%, transparent 28%, transparent 78%, rgba(0,0,0,.8) 100%);
}

/* =========================================================
   STATEMENT (word-by-word scroll scrub via GSAP)
   ========================================================= */
.statement{
  min-height:60vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:2.2rem;
  text-align:center; padding:5rem var(--gutter);
}
.statement .statement__para{
  font-family:var(--font-body); font-weight:400;
  font-size:clamp(1rem, 1.7vw, 1.2rem); line-height:1.7;
  letter-spacing:0;
  color:var(--muted); max-width:56ch;
}
.statement p{
  font-family:var(--font-display);
  font-weight:500; letter-spacing:-.02em; line-height:1.15;
  font-size:clamp(1.8rem, 5.5vw, 4rem);
  max-width:20ch;
}
.statement__muted{ color:var(--muted-2); }
.statement b{ color:var(--fg); font-weight:700; }
.statement .w{ display:inline-block; will-change:color; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section{
  padding:8rem var(--gutter) 6rem;
  border-top:1px solid var(--line-2);
}
.section__inner{ width:100%; max-width:var(--maxw); margin:0 auto; }
.section__title{
  font-family:var(--font-display);
  font-weight:600; letter-spacing:-.02em; line-height:1.02;
  font-size:clamp(2.4rem, 7vw, 5.5rem);
}
.section__lead{ margin-top:1.5rem; font-size:clamp(1rem,2vw,1.25rem); max-width:46ch; }

/* =========================================================
   SERVICES — editorial rows
   ========================================================= */
.svc{ list-style:none; margin-top:4.5rem; border-top:1px solid var(--line); }
.svc__row{
  display:grid; grid-template-columns:1fr 1.2fr; gap:2rem; align-items:baseline;
  padding:2.4rem 0;
  border-bottom:1px solid var(--line);
}
.svc__title{
  font-family:var(--font-display); font-weight:600;
  letter-spacing:-.015em; line-height:1.1;
  font-size:clamp(1.35rem, 2.6vw, 2rem);
  transition:transform .35s cubic-bezier(.22,1,.36,1);
}
.svc__desc{ font-size:.97rem; color:var(--muted); max-width:52ch; line-height:1.65; transition:color .3s ease; }
@media (hover:hover) and (pointer:fine){
  .svc__row:hover .svc__title{ transform:translateX(12px); }
  .svc__row:hover .svc__desc{ color:var(--muted-2); }
}

/* generic section helpers */
.section__body{
  margin-top:2.2rem; max-width:56ch;
  color:var(--muted-2); line-height:1.7; font-size:1.02rem;
  display:grid; gap:1.1rem;
}
.section__cta{ margin-top:2.8rem; }

/* =========================================================
   WORK intro
   ========================================================= */
.section--work{ padding-bottom:4rem; border-top:1px solid var(--line-2); }

/* =========================================================
   ZOOM PARALLAX  (port of the framer-motion ZoomParallax)
   --zp: 0..1 scroll progress (linear), --zs: target scale per tile
   ========================================================= */
.zp{ position:relative; height:300vh; --zp:0; }
.zp__sticky{
  position:sticky; top:0;
  height:100vh; overflow:hidden;
}
.zp__tile{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  transform:scale(calc(1 + (var(--zs) - 1) * var(--zp)));
  will-change:transform;
}
/* satellites bow out before the un-pin so no stray edges scroll through */
.zp__tile:not(:first-child){
  opacity:calc(1 - clamp(0, (var(--zp) - .8) / .16, 1));
}
/* tiny caption so the gallery is labelled while it plays */
.zp__cap{
  position:absolute; left:var(--gutter); bottom:1.8rem; z-index:5;
  font-size:.72rem; letter-spacing:.26em; text-transform:uppercase;
  color:#fff; mix-blend-mode:difference;
  opacity:calc(clamp(0, var(--zp) * 6, 1) - clamp(0, (var(--zp) - .86) / .1, 1));
  pointer-events:none;
}
.zp__media{
  position:relative;
  width:25vw; height:25vh;
}
.zp__media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
/* per-tile placements — 1:1 with the reference component */
.zp__media--1{ top:-30vh;   left:5vw;     width:35vw; height:30vh; }
.zp__media--2{ top:-10vh;   left:-25vw;   width:20vw; height:45vh; }
.zp__media--3{               left:27.5vw; width:25vw; height:25vh; }
.zp__media--4{ top:27.5vh;  left:5vw;     width:20vw; height:25vh; }
.zp__media--5{ top:27.5vh;  left:-22.5vw; width:30vw; height:25vh; }
.zp__media--6{ top:22.5vh;  left:25vw;    width:15vw; height:15vh; }

/* =========================================================
   CASE STUDY
   ========================================================= */
.case{ padding:6rem var(--gutter); border-top:1px solid var(--line-2); }
.case__title{
  font-family:var(--font-display);
  font-size:clamp(1.8rem, 4vw, 3rem); font-weight:600; letter-spacing:-.02em;
}
.case__meta{ margin-top:.8rem; font-size:.95rem; letter-spacing:.02em; max-width:50ch; }

.cs{ margin-top:3rem; }
.cs__intro{
  padding:2.4rem 0; border-top:1px solid var(--line);
  font-size:clamp(1.05rem, 1.9vw, 1.3rem); line-height:1.65;
  color:var(--muted-2); max-width:56ch;
}
.cs__row{
  display:grid; grid-template-columns:.5fr 1fr; gap:1rem 2rem;
  padding:2.2rem 0; border-top:1px solid var(--line-2);
}
.cs__label{
  font-family:var(--font-display); font-weight:600;
  font-size:.8rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted);
}
.cs__body{ color:var(--muted-2); line-height:1.7; max-width:56ch; }
.cs__list{ list-style:none; display:grid; gap:.55rem; }
.cs__list li{
  position:relative; padding-left:1.5rem;
  color:var(--muted-2); line-height:1.6;
  transition:color .3s ease, padding-left .3s cubic-bezier(.22,1,.36,1);
}
.cs__list li::before{
  content:""; position:absolute; left:0; top:.72em;
  width:.9rem; height:1px; background:var(--muted);
  transition:width .3s cubic-bezier(.22,1,.36,1), background .3s ease;
}
@media (hover:hover) and (pointer:fine){
  .cs__list li:hover{ color:var(--fg); padding-left:1.9rem; }
  .cs__list li:hover::before{ width:1.3rem; background:var(--fg); }
}
.cs__cta{ padding-top:2.6rem; border-top:1px solid var(--line-2); }

/* =========================================================
   WHY OLKO
   ========================================================= */
.why__grid{
  margin-top:3.5rem;
  display:grid; grid-template-columns:1.1fr 1fr; gap:3rem; align-items:start;
}
.why__grid .section__body{ margin-top:0; }
.why__points{ list-style:none; border-top:1px solid var(--line); }
.why__points li{
  padding:.95rem 0; border-bottom:1px solid var(--line-2);
  color:var(--muted-2); font-size:.97rem;
  transition:padding-left .3s cubic-bezier(.22,1,.36,1), color .3s ease;
}
@media (hover:hover) and (pointer:fine){
  .why__points li:hover{ padding-left:.7rem; color:var(--fg); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__pull{
  margin-top:3.5rem;
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(1.35rem, 2.8vw, 2.1rem); line-height:1.35;
  letter-spacing:-.01em;
  max-width:28ch; color:var(--muted-2);
}
.about__pull b{ color:var(--fg); font-weight:700; }

/* =========================================================
   FAQ — native accordions
   ========================================================= */
.faq{ margin-top:4rem; border-top:1px solid var(--line); }
.faq__item{ border-bottom:1px solid var(--line); }
.faq__q{
  cursor:pointer; list-style:none;
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
  padding:1.55rem 0;
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(1.02rem, 1.9vw, 1.3rem); line-height:1.3;
}
.faq__q::-webkit-details-marker{ display:none; }
.faq__q::after{
  content:"+"; flex-shrink:0;
  font-family:var(--font-body); font-weight:400; font-size:1.5rem; line-height:1;
  color:var(--muted);
  transition:transform .3s ease, color .2s ease;
}
.faq__item[open] .faq__q::after{ transform:rotate(45deg); color:var(--fg); }
.faq__q:hover::after{ color:var(--fg); }
@media (hover:hover) and (pointer:fine){
  .faq__q{ transition:color .2s ease; color:var(--muted-2); }
  .faq__q:hover, .faq__item[open] .faq__q{ color:var(--fg); }
}
.faq__a{ padding:0 2.5rem 1.7rem 0; color:var(--muted); line-height:1.7; max-width:60ch; }
.faq__item[open] .faq__a{ animation:faq-in .4s cubic-bezier(.22,1,.36,1) both; }
@keyframes faq-in{
  from{ opacity:0; transform:translateY(-6px); }
  to{   opacity:1; transform:none; }
}

/* =========================================================
   PROCESS — three editorial rows
   ========================================================= */
.proc{ list-style:none; margin-top:4rem; border-top:1px solid var(--line); }
.proc__step{
  display:grid; grid-template-columns:3.5rem 1.1fr 1fr; gap:2rem; align-items:baseline;
  padding:2.2rem 0;
  border-bottom:1px solid var(--line);
}
.proc__num{
  font-family:var(--font-display);
  font-size:.85rem; letter-spacing:.12em; color:var(--muted);
  transition:color .3s ease;
}
.proc__title{
  font-family:var(--font-display);
  font-weight:600; letter-spacing:-.01em; line-height:1.1;
  font-size:clamp(1.2rem, 2.2vw, 1.6rem);
  transition:transform .35s cubic-bezier(.22,1,.36,1);
}
.proc__desc{ font-size:.95rem; color:var(--muted); max-width:44ch; transition:color .3s ease; }
@media (hover:hover) and (pointer:fine){
  .proc__step:hover .proc__num{ color:var(--fg); }
  .proc__step:hover .proc__title{ transform:translateX(10px); }
  .proc__step:hover .proc__desc{ color:var(--muted-2); }
}

/* =========================================================
   BUTTONS — animated glass
   ========================================================= */
.btn{
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--font-body); font-weight:600; font-size:.92rem;
  padding:1.05rem 1.9rem; border-radius:100px;
  cursor:pointer; border:0;
  will-change:transform;
  transition:background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn--glass{
  color:var(--fg);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(14px) saturate(1.2);
  -webkit-backdrop-filter:blur(14px) saturate(1.2);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 12px 34px rgba(0,0,0,.4);
}
.btn--glass:hover{
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.42);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.3), 0 14px 40px rgba(0,0,0,.5);
}
.btn--glass:active{ transform:scale(.97); }
.btn[disabled]{ opacity:.5; cursor:default; }

/* specular sheen — one quiet sweep on hover, never on a loop */
.btn__sheen{
  position:absolute; top:-60%; bottom:-60%; left:0; width:38%;
  background:linear-gradient(105deg, transparent, rgba(255,255,255,.4), transparent);
  transform:translateX(-260%) skewX(-18deg);
  filter:blur(5px);
  pointer-events:none;
}
.btn:hover .btn__sheen,
.btn:focus-visible .btn__sheen{
  transform:translateX(420%) skewX(-18deg);
  transition:transform .9s cubic-bezier(.6,.1,.3,1);
}
/* click ripple (JS-positioned) */
.btn__ripple{
  position:absolute; border-radius:50%;
  background:rgba(255,255,255,.3);
  transform:scale(0); opacity:.55;
  animation:ripple .65s ease-out forwards;
  pointer-events:none;
}
@keyframes ripple{ to{ transform:scale(1); opacity:0; } }

/* =========================================================
   CONTACT FORM — floating labels, animated focus line
   ========================================================= */
.section--contact{ padding-bottom:8rem; }
.form{ margin-top:4rem; max-width:720px; }

/* chip groups — optional, single select per group */
.form__label{
  font-size:.68rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--muted); margin-bottom:1rem;
}
.form__chips{ display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:2.6rem; }
.chip{
  font-family:var(--font-body); font-size:.8rem; font-weight:500;
  color:var(--muted-2);
  background:none; border:1px solid var(--line); border-radius:100px;
  padding:.6rem 1.1rem; cursor:pointer;
  transition:color .2s ease, border-color .2s ease, background .2s ease,
             transform .25s cubic-bezier(.22,1,.36,1);
}
.chip:hover{ color:var(--fg); border-color:rgba(255,255,255,.35); transform:translateY(-2px); }
.chip:active{ transform:scale(.96); }
.chip.is-on{ color:var(--bg); background:var(--fg); border-color:var(--fg); font-weight:600; }
.form__row{ display:grid; grid-template-columns:1fr 1fr; gap:2.4rem; }
.form__field{ position:relative; margin-bottom:2.6rem; }

.form__field input,
.form__field textarea{
  width:100%;
  background:transparent; border:0; border-bottom:1px solid var(--line);
  color:var(--fg);
  font-family:var(--font-body); font-size:1rem;
  padding:1.05rem 2rem .75rem 0;
  border-radius:0;
  resize:vertical;
}
.form__field input:focus,
.form__field textarea:focus{ outline:none; }

/* floating label */
.form__field label{
  position:absolute; left:0; top:1.05rem;
  font-size:.98rem; color:var(--muted);
  pointer-events:none;
  transition:top .3s cubic-bezier(.22,1,.36,1), font-size .3s ease,
             letter-spacing .3s ease, color .3s ease, transform .3s ease;
}
.form__field input:focus + label,
.form__field textarea:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field textarea:not(:placeholder-shown) + label{
  top:-.65rem;
  font-size:.64rem; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.85);
}

/* animated focus underline */
.form__field::after{
  content:""; position:absolute; left:0; bottom:0;
  width:100%; height:1px; background:var(--fg);
  transform:scaleX(0); transform-origin:left;
  transition:transform .5s cubic-bezier(.22,1,.36,1);
}
.form__field:focus-within::after{ transform:scaleX(1); }

/* live validity tick */
.form__check{
  position:absolute; right:0; top:1.05rem;
  font-size:.85rem; color:var(--muted-2);
  opacity:0; transform:scale(.5) rotate(-30deg);
  transition:opacity .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
  pointer-events:none;
}
.form__field.is-valid .form__check{ opacity:1; transform:scale(1) rotate(0deg); }

.form__hp{ display:none; }
.form__foot{ display:flex; align-items:center; gap:1.6rem; flex-wrap:wrap; margin-top:.5rem; }
.form__status{ font-size:.9rem; color:var(--muted-2); min-height:1.4em; }
.form__status a{ text-decoration:underline; text-underline-offset:3px; }
.form__status.is-ok{ color:#e8e8e8; }
.contact__alt{ margin-top:3rem; font-size:.9rem; }
.contact__alt a{
  color:var(--muted-2); text-decoration:underline; text-underline-offset:3px;
  transition:color .2s ease;
}
.contact__alt a:hover{ color:var(--fg); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  padding:5rem var(--gutter) 3.5rem;
  border-top:1px solid var(--line);
  display:flex; flex-direction:column; align-items:center; gap:1.4rem;
  text-align:center;
}
.footer__mark{ height:22px; width:auto; opacity:.9; }
.footer__tag{ font-size:.9rem; color:var(--muted); max-width:44ch; }
.footer__row{ display:flex; align-items:center; gap:1rem; font-size:.9rem; color:var(--muted-2); }
.footer__row a{ transition:color .2s ease; }
.footer__row a:hover{ color:var(--fg); }
.footer__copy{ font-size:.75rem; color:var(--muted); letter-spacing:.02em; }

/* =========================================================
   SCROLL REVEALS (IntersectionObserver adds .is-in)
   quiet fade with a subtle rise
   ========================================================= */
[data-reveal]{
  opacity:0; transform:translateY(16px);
  transition:opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--rd, 0s);
}
[data-reveal].is-in{ opacity:1; transform:none; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
body.is-reduced .hshape,
body.is-reduced .hshape__float,
body.is-reduced .hero__content > *{ animation:none; opacity:1; transform:none; }
body.is-reduced [data-reveal]{ opacity:1; transform:none; transition:none; }
body.is-reduced .faq__item[open] .faq__a{ animation:none; }
body.is-reduced .zp{ height:auto; }
body.is-reduced .zp__sticky{ position:static; height:auto; }
body.is-reduced .zp__tile{ position:static; transform:none !important; display:none; }
body.is-reduced .zp__tile:first-child{ display:flex; padding:3rem var(--gutter); }
body.is-reduced .zp__media{ position:static; width:min(90vw, 900px); height:auto; }
body.is-reduced .zp__media img{ position:static; height:auto; }
body.is-reduced .zp__cap{ display:none; }
@media (prefers-reduced-motion: reduce){
  .hshape, .hshape__float,
  .hero__content > *{ animation:none; opacity:1; transform:none; }
  .btn__sheen{ display:none; }
  .faq__item[open] .faq__a{ animation:none; }
}

/* =========================================================
   RESPONSIVE — designed for phone, not shrunk
   ========================================================= */
@media (max-width:900px){
  .svc__row{ grid-template-columns:1fr; gap:.8rem; padding:2.1rem 0; }
  .why__grid{ grid-template-columns:1fr; gap:2.2rem; }
  .cs__row{ grid-template-columns:1fr; gap:.8rem; }
  .proc__step{ grid-template-columns:3rem 1fr; gap:.9rem 1.4rem; padding:2rem 0; }
  .proc__desc{ grid-column:2; }
}
@media (max-width:640px){
  .nav{ gap:1rem; }
  .nav__links{ display:none; }             /* logo + lang + CTA on small screens */
  .nav__right{ margin-left:auto; gap:.9rem; }

  /* hero re-tuned for portrait: three calmer shapes, no backdrop blur (GPU budget) */
  .hshape--1{ --w:340px; --h:90px; left:-18%; top:14%; }
  .hshape--2{ --w:300px; --h:76px; right:-16%; top:76%; }
  .hshape--3{ --w:190px; --h:52px; left:2%; bottom:9%; }
  .hshape--4, .hshape--5{ display:none; }
  .hshape__pill{ backdrop-filter:none; -webkit-backdrop-filter:none; }

  .section{ padding:5rem var(--gutter) 4rem; }
  .form__row{ grid-template-columns:1fr; gap:0; }

  /* parallax tuned for portrait screens: shorter ride, gentler end-zoom.
     Centre tile ends at 110vw × 62.5vh (44vw·2.5 / 25vh·2.5) — a cinematic
     letterboxed frame showing half the shot instead of a nose-deep crop. */
  .zp{ height:240vh; }
  .zp__tile:first-child{ --zs:2.5 !important; }   /* beats the inline --zs:4 */
  .zp__media{ width:44vw; height:25vh; }
  .zp__media--1{ top:-26vh;  left:6vw;    width:44vw; height:22vh; }
  .zp__media--2{ top:-8vh;   left:-30vw;  width:28vw; height:34vh; }
  .zp__media--3{             left:36vw;   width:30vw; height:20vh; }
  .zp__media--4{ top:24vh;   left:8vw;    width:28vw; height:20vh; }
  .zp__media--5{ top:24vh;   left:-28vw;  width:34vw; height:18vh; }
  .zp__media--6{ top:20vh;   left:32vw;   width:20vw; height:12vh; }
}
