/* =====================================================================
   ESTAMPAH — styles
   Preto de verdade, vermelho da pincelada, branco. Uma família de texto
   (Montserrat) + a letra à mão da marca (Permanent Marker).
   Movimento: uma sequência de carga no hero; o resto responde ao toque.
   ===================================================================== */

:root{
  color-scheme:dark;

  --bg:        #000000;
  --surface:   #0c0c0c;
  --surface-2: #161616;
  --line:      rgba(255,255,255,.1);
  --line-2:    rgba(255,255,255,.22);

  --text:      #f5f5f5;
  --muted:     #a19b9b;

  --red:       #e51a20;
  --red-2:     #ff2f37;
  --danger:    #ff5a5f;

  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --marker:  "Permanent Marker", "Marker Felt", "Comic Sans MS", cursive;

  --wrap:     1160px;
  --header-h: 64px;
  --ease:     cubic-bezier(.2,.7,.2,1);
  --sat:      env(safe-area-inset-top, 0px);
  --sab:      env(safe-area-inset-bottom, 0px);

  --brush: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 26' preserveAspectRatio='none'%3E%3Cpath fill='%23e51a20' d='M4 15C60 7 180 2 296 9l-3 9C190 12 80 16 8 23z'/%3E%3Cpath fill='%23e51a20' opacity='.75' d='M30 23C100 20 190 17 270 19l-1 3C190 21 100 24 32 26z'/%3E%3C/svg%3E");
}

*,*::before,*::after{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + var(--sat) + 12px);
  -webkit-text-size-adjust:100%;
}
html.is-locked, html.is-locked body{ overflow:hidden; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--display);
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -webkit-tap-highlight-color:rgba(229,26,32,.2);
}

img{ max-width:100%; display:block; }
ul,ol{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; touch-action:manipulation; }
p{ margin:0; }
svg{ display:block; }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:20px; }

:focus-visible{ outline:2px solid #fff; outline-offset:3px; }

.skip{
  position:absolute; left:-9999px; top:calc(8px + var(--sat)); z-index:200;
  background:#fff; color:#000; padding:10px 16px; border-radius:8px; font-weight:600;
}
.skip:focus{ left:8px; }

/* ---------- Tipografia ---------- */
h1,h2{
  margin:0; font-weight:900; font-style:italic; text-transform:uppercase;
  letter-spacing:-.01em; line-height:1.05; text-wrap:balance;
}
h1 em,h2 em{ font-style:inherit; color:var(--red); }
h2{ font-size:clamp(1.75rem, 6vw, 2.6rem); }
h3{ margin:0; font-size:1.05rem; font-weight:700; line-height:1.3; }
.lead{ font-size:1.05rem; color:var(--muted); max-width:46ch; }

.tagline{ font-weight:700; font-size:.78rem; letter-spacing:.34em; text-transform:uppercase; }

.note{
  display:inline-block;
  font-family:var(--marker); font-size:1.05rem; line-height:1.15; color:#fff;
  padding-bottom:.42em;
  background:var(--brush) no-repeat 0 100% / 62% .3em;
  transform:rotate(-2deg); transform-origin:left bottom;
}

/* ---------- Botões ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  min-height:48px; padding:0 1.3em;
  border-radius:12px; border:1.5px solid transparent;
  font-size:.8rem; font-weight:700; line-height:1; letter-spacing:.08em; text-transform:uppercase;
  cursor:pointer; white-space:nowrap;
  transition:transform .15s var(--ease), background .2s ease, border-color .2s ease;
}
.btn:active{ transform:scale(.97); }
.btn__icon{ width:1.35em; height:1.35em; flex:none; }
.btn__chev{ width:1.1em; height:1.1em; flex:none; margin-right:-.3em; }

.btn--red{ background:var(--red); color:#fff; }
.btn--ghost{ background:transparent; color:var(--text); border-color:var(--line-2); }
.btn--sm{ min-height:38px; padding:0 1em; font-size:.72rem; }
.btn--lg{ min-height:56px; padding:0 1.6em; font-size:.86rem; }
.btn--block{ width:100%; }
.btn.is-busy{ pointer-events:none; opacity:.85; }
@media (hover:hover){
  .btn--red:hover{ background:var(--red-2); }
  .btn--ghost:hover{ border-color:#fff; }
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  padding-top:var(--sat);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease;
}
.site-header::before{                         /* blur num pseudo: no header ele prenderia o menu fixed */
  content:""; position:absolute; inset:0; z-index:-1;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  transition:background .3s ease;
}
.site-header.is-scrolled{ --header-h:56px; border-bottom-color:var(--line); }
.site-header.is-scrolled::before{ background:rgba(0,0,0,.9); }
.header__inner{
  height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  transition:height .3s var(--ease);
}

.logo{ display:inline-flex; align-items:center; }
.logo img{ height:40px; width:auto; transition:height .3s var(--ease); }
.site-header.is-scrolled .logo img{ height:34px; }

.header__actions{ display:flex; align-items:center; gap:10px; }

.burger{
  width:44px; height:44px; padding:0;
  display:grid; place-items:center;
  background:transparent; border:1.5px solid var(--line-2); border-radius:12px; cursor:pointer;
}
.burger span{
  grid-area:1/1; width:20px; height:2px; background:var(--text); border-radius:2px;
  transition:transform .3s var(--ease);
}
.burger span:first-child{ transform:translateY(-4px); }
.burger span:last-child{  transform:translateY(4px); }
.burger[aria-expanded="true"] span:first-child{ transform:rotate(45deg); }
.burger[aria-expanded="true"] span:last-child{  transform:rotate(-45deg); }

/* menu mobile */
.nav{
  position:fixed; left:0; right:0;
  top:calc(var(--sat) + var(--header-h)); bottom:0;
  display:flex; flex-direction:column;
  padding:12px 20px calc(40px + var(--sab));
  background:rgba(0,0,0,.98);
  overflow:auto; overscroll-behavior:contain;
  visibility:hidden; opacity:0; transform:translateY(-10px);
  transition:opacity .25s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  z-index:99;
}
.nav.is-open{ visibility:visible; opacity:1; transform:none; transition:opacity .25s var(--ease), transform .3s var(--ease); }
.nav a{
  display:flex; align-items:center; min-height:60px;
  font-weight:900; font-style:italic; text-transform:uppercase;
  font-size:1.3rem; color:var(--text);
  border-bottom:1px solid var(--line);
}
.nav a:last-of-type{ border-bottom:0; }
.nav__wa{ color:var(--red-2) !important; }

/* =====================================================================
   HERO — o pôster da marca: foto, logo, tagline, chamada
   ===================================================================== */
.hero{
  position:relative; overflow:hidden; isolation:isolate;
  margin-top:calc(-1 * (var(--header-h) + var(--sat)));
  padding-top:calc(var(--header-h) + var(--sat));
}
.hero__bg{ position:absolute; inset:0; z-index:-2; width:100%; height:100%; object-fit:cover; object-position:55% 45%; }
.hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.72) 45%, rgba(0,0,0,.93) 80%, var(--bg) 100%),
    radial-gradient(70% 45% at 50% 42%, rgba(0,0,0,.6), transparent 70%);
}
.hero__inner{
  position:relative;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding-top:24px; padding-bottom:40px;
}
.hero__note{ align-self:flex-start; margin-bottom:8px; }
.hero__logo{ width:min(64%, 260px); height:auto; margin-top:8px; filter:drop-shadow(0 12px 30px rgba(0,0,0,.6)); }
.hero .tagline{ margin:6px 0 24px; }
.hero h1{ font-size:clamp(2rem, 8.5vw, 4.4rem); margin-bottom:28px; }
.hero__cta{ display:flex; flex-direction:column; gap:10px; width:100%; max-width:420px; }

/* =====================================================================
   FAIXA DE PRODUTOS — roda sozinha (3 cópias, anda 1/3 e recomeça sem emenda)
   ===================================================================== */
.strip{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--surface); overflow:hidden;
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.strip__track{ display:flex; width:max-content; animation:strip 28s linear infinite; }
.strip:hover .strip__track{ animation-play-state:paused; }
.strip__list{ display:flex; flex:none; padding:16px 0; }
.strip__list li{
  position:relative; flex:none;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  padding:0 22px;
  font-weight:700; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase;
}
.strip__list li::before{ content:""; position:absolute; left:0; top:14%; height:72%; width:2px; background:var(--red); }
.strip__list svg{ width:30px; height:30px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
@keyframes strip{ to{ transform:translateX(-33.3333%); } }

/* =====================================================================
   SEÇÕES
   ===================================================================== */
.section{ padding-block:48px; }
.section--alt{ background:var(--surface); }
.section__head{ margin-bottom:24px; }
.section__head--row{ display:flex; flex-direction:column; gap:20px; }

/* ---------- Serviços: linhas curtas, cada uma abre o formulário com o produto ---------- */
.services{ border-top:1px solid var(--line); }
.services li{ border-bottom:1px solid var(--line); }
.service{
  display:grid; grid-template-columns:30px 1fr 20px; gap:14px; align-items:center;
  min-height:64px; padding:12px 0; color:inherit;
}
.service__icon{ width:30px; height:30px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.service__body{ display:grid; gap:2px; }
.service__body strong{ font-weight:700; font-size:1rem; }
.service__body span{ color:var(--muted); font-size:.88rem; }
.service__chev{ width:20px; height:20px; color:var(--muted); }
@media (hover:hover){ .service:hover .service__chev{ color:#fff; } }

/* ---------- Para quem: dois pôsteres lado a lado ---------- */
.for{ padding-block:0 48px; }
.for__grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.for__card{
  position:relative; display:block; overflow:hidden;
  aspect-ratio:3/4; border-radius:6px; background:var(--surface-2);
}
.for__card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.for__card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.94) 100%);
}
.for__body{ position:absolute; inset:auto 0 0 0; z-index:1; display:grid; gap:4px; padding:14px; }
.for__body .note{ font-size:.82rem; margin-bottom:4px; background-size:70% .28em; }
.for__body strong{ font-weight:900; font-style:italic; text-transform:uppercase; font-size:1.05rem; line-height:1.1; letter-spacing:-.01em; }
.for__desc{ display:none; color:var(--muted); font-size:.9rem; }
.for__card:active{ transform:scale(.985); }

/* ---------- Portfólio ---------- */
.filters{
  display:flex; gap:8px;
  overflow-x:auto; flex-wrap:nowrap;
  scroll-snap-type:x proximity; scroll-padding-inline:20px; scrollbar-width:none;
  margin:0 -20px; padding:4px 20px 8px;
  mask-image:linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 32px), transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 32px), transparent);
}
.filters::-webkit-scrollbar{ display:none; }
.filter{
  flex:none; scroll-snap-align:start;
  min-height:42px; padding:0 16px;
  border-radius:12px; border:1.5px solid var(--line-2);
  background:transparent; color:var(--muted);
  font-size:.86rem; font-weight:500; cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .15s var(--ease);
}
.filter:active{ transform:scale(.96); }
.filter.is-active{ background:#fff; border-color:#fff; color:#000; font-weight:600; }
@media (hover:hover){ .filter:not(.is-active):hover{ border-color:#fff; color:#fff; } }

.grid{
  display:grid; grid-template-columns:repeat(3, 1fr); grid-auto-rows:1fr; grid-auto-flow:dense;
  gap:6px; view-transition-name:grid;
}
.work{
  position:relative; margin:0; aspect-ratio:1;
  border-radius:4px; overflow:hidden; background:var(--surface-2);
}
.work.is-hidden{ display:none; }
.work:nth-child(10){ display:none; }              /* no celular o mosaico fecha em 3×3; a versão branca do copo fica no lightbox */
.work:nth-child(1){ view-transition-name:w1 }  .work:nth-child(2){ view-transition-name:w2 }
.work:nth-child(3){ view-transition-name:w3 }  .work:nth-child(4){ view-transition-name:w4 }
.work:nth-child(5){ view-transition-name:w5 }  .work:nth-child(6){ view-transition-name:w6 }
.work:nth-child(7){ view-transition-name:w7 }  .work:nth-child(8){ view-transition-name:w8 }
.work:nth-child(9){ view-transition-name:w9 }  .work:nth-child(10){ view-transition-name:w10 }

.work img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.work figcaption{
  position:absolute; inset:auto 0 0 0; padding:56px 12px 12px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.92) 100%);
  display:none; flex-direction:column; gap:2px;
  text-shadow:0 1px 3px rgba(0,0,0,.8); pointer-events:none;
}
.work figcaption span{ color:var(--muted); font-size:.72rem; }
.work figcaption strong{ font-size:.85rem; font-weight:600; color:#fff; line-height:1.3; }
.work__open{ position:absolute; inset:0; width:100%; height:100%; background:transparent; border:0; border-radius:inherit; cursor:zoom-in; padding:0; }
.work__open:focus-visible{ outline-offset:-3px; }
.work:has(.work__open:active){ transform:scale(.98); }
.work.pop{ animation:pop .45s var(--ease) both; animation-delay:var(--d, 0ms); }
@keyframes pop{ from{ opacity:0; transform:scale(.96); } to{ opacity:1; transform:none; } }
.grid__empty{ margin-top:16px; color:var(--muted); text-align:center; }

/* ---------- Processo: três passos ---------- */
.steps{ position:relative; display:grid; gap:16px; }
.steps::before{ content:""; position:absolute; left:17px; top:20px; bottom:20px; width:2px; background:var(--line-2); }
.step{ position:relative; display:grid; grid-template-columns:36px 1fr; gap:14px; align-items:center; }
.step__num{
  display:grid; place-items:center; width:36px; height:36px; border-radius:50%;
  background:var(--bg); border:2px solid #fff; color:#fff;
  font-weight:900; font-style:italic; font-size:.9rem;
}
.step h3{ margin-bottom:2px; font-size:1rem; }
.step p{ color:var(--muted); font-size:.9rem; }

/* ---------- Orçamento ---------- */
.quote{ display:grid; gap:32px; }
.quote__info .lead{ margin:14px 0 0; }
.quote__photo{ display:none; }

.quote__form{                                  /* o único bloco em caixa: é o objeto que se opera */
  background:var(--bg); border:1px solid var(--line-2); border-radius:12px;
  padding:24px 20px; display:grid; gap:16px;
  scroll-margin-top:calc(var(--header-h) + var(--sat) + 16px);
}
.quote__form.is-flash{ animation:flash 1.3s var(--ease); }
@keyframes flash{
  0%  { box-shadow:0 0 0 0 rgba(229,26,32,.7); border-color:var(--red); }
  100%{ box-shadow:0 0 0 18px rgba(229,26,32,0); }
}
.field{ display:grid; gap:7px; }
.field label{ font-size:.9rem; font-weight:600; }
.field select,.field textarea{
  width:100%; background:var(--surface-2); color:var(--text);
  border:1px solid var(--line-2); border-radius:8px;
  padding:13px 14px; font-family:var(--display); font-size:16px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field select{
  appearance:none; -webkit-appearance:none; padding-right:40px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a19b9b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; background-size:18px;
}
.field textarea{ resize:none; min-height:120px; line-height:1.5; overflow:hidden; }
.field select:focus,.field textarea:focus{ outline:none; border-color:#fff; }
.field.is-invalid select{ border-color:var(--danger); }
.field__error{ color:var(--danger); font-size:.85rem; }
.field__error[hidden]{ display:none; }
.quote__note{ font-size:.82rem; color:var(--muted); text-align:center; }

.trust{ display:flex; flex-wrap:wrap; justify-content:center; gap:20px 0; padding-top:8px; }
.trust li{
  position:relative; flex:1 1 40%;
  display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center;
  padding:0 12px;
  font-weight:700; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase;
}
.trust li:nth-child(even)::before{ content:""; position:absolute; left:0; top:10%; height:80%; width:2px; background:var(--red); }
.trust svg{ width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }

/* =====================================================================
   RODAPÉ
   ===================================================================== */
.site-footer{ border-top:1px solid var(--line); padding-block:36px calc(100px + var(--sab)); }
.footer__inner{ display:grid; gap:24px; }
.footer__brand .logo img{ height:44px; width:auto; }
.footer__brand .tagline{ font-size:.66rem; margin-top:12px; color:var(--muted); }
.footer__links{ display:flex; flex-wrap:wrap; gap:10px; }
.footer__links a{
  display:inline-flex; align-items:center; gap:8px;
  min-height:44px; padding:0 16px;
  border:1.5px solid var(--line-2); border-radius:12px;
  font-size:.9rem; font-weight:500;
  transition:border-color .2s ease;
}
.footer__links svg{ width:18px; height:18px; }
@media (hover:hover){ .footer__links a:hover{ border-color:#fff; } }
.footer__legal{ color:var(--muted); font-size:.8rem; }

/* =====================================================================
   BOTÃO FLUTUANTE
   ===================================================================== */
.fab{
  position:fixed; z-index:90; right:14px; bottom:calc(14px + var(--sab));
  display:inline-flex; align-items:center; gap:8px;
  min-height:54px; padding:0 18px 0 14px;
  background:var(--red); color:#fff; border-radius:12px;
  font-weight:700; font-size:.8rem; letter-spacing:.06em; text-transform:uppercase;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
  opacity:0; transform:translateY(24px); pointer-events:none;
  transition:opacity .3s var(--ease), transform .4s var(--ease);
}
.fab.is-visible{ opacity:1; transform:none; pointer-events:auto; }
.fab svg{ width:24px; height:24px; }
.fab:active{ transform:scale(.96); }

/* =====================================================================
   TOAST
   ===================================================================== */
.toast{
  position:fixed; z-index:95; left:14px; right:14px; bottom:calc(82px + var(--sab));
  display:flex; flex-wrap:wrap; align-items:center; gap:4px 12px;
  padding:12px 16px; border-radius:12px;
  background:#1a1a1a; color:var(--text); border:1px solid var(--line-2);
  box-shadow:0 12px 32px rgba(0,0,0,.5);
  font-size:.9rem; line-height:1.4;
  opacity:0; transform:translateY(12px); pointer-events:none;
  transition:opacity .25s var(--ease), transform .3s var(--ease);
}
.toast.is-visible{ opacity:1; transform:none; pointer-events:auto; }
.toast a{ color:#fff; font-weight:600; border-bottom:2px solid var(--red); }
.toast:empty{ display:none; }

/* =====================================================================
   LIGHTBOX (<dialog>)
   ===================================================================== */
.lb{
  position:fixed; inset:0; margin:0; padding:0; border:0;
  width:100%; height:100%; max-width:none; max-height:none;
  background:var(--bg); color:var(--text);
  overflow:auto; overscroll-behavior:contain;
  opacity:0; transform:translateY(12px) scale(.985);
  transition:opacity .25s var(--ease), transform .3s var(--ease), display .3s allow-discrete, overlay .3s allow-discrete;
}
.lb[open]{ opacity:1; transform:none; }
@starting-style{ .lb[open]{ opacity:0; transform:translateY(12px) scale(.985); } }
.lb::backdrop{ background:rgba(0,0,0,.8); opacity:0; transition:opacity .3s ease, display .3s allow-discrete, overlay .3s allow-discrete; }
.lb[open]::backdrop{ opacity:1; }
@starting-style{ .lb[open]::backdrop{ opacity:0; } }

.lb__inner{ min-height:100%; display:grid; grid-template-rows:auto 1fr auto auto; }
.lb__top{ display:flex; align-items:center; justify-content:space-between; padding:calc(10px + var(--sat)) 12px 8px 20px; }
.lb__count{ font-size:.85rem; color:var(--muted); font-variant-numeric:tabular-nums; }
.lb__close,.lb__nav{
  flex:none; width:44px; height:44px; padding:0; display:grid; place-items:center;
  border-radius:12px; border:1.5px solid var(--line-2); background:transparent;
  cursor:pointer; transition:border-color .2s ease, transform .15s var(--ease);
}
.lb__close svg,.lb__nav svg{ width:20px; height:20px; }
.lb__close:active,.lb__nav:active{ transform:scale(.94); }
@media (hover:hover){ .lb__close:hover,.lb__nav:hover{ border-color:#fff; } }
.lb__fig{ margin:0; display:grid; place-items:center; padding:0 12px; touch-action:pan-y; user-select:none; -webkit-user-select:none; }
.lb__fig img{ max-width:100%; max-height:62dvh; width:auto; height:auto; object-fit:contain; border-radius:6px; -webkit-user-drag:none; }
.lb__fig img.is-swap{ animation:lbSwap .32s var(--ease); }
@keyframes lbSwap{ from{ opacity:.25; transform:translateX(calc(var(--dir, 1) * 16px)); } to{ opacity:1; transform:none; } }
.lb__cap{ display:grid; gap:2px; padding:16px 20px 0; }
.lb__cap span{ color:var(--muted); font-size:.85rem; }
.lb__cap strong{ font-size:1.1rem; font-weight:700; }
.lb__bar{ display:flex; align-items:center; gap:10px; padding:18px 12px calc(20px + var(--sab)); }
.lb__bar .btn{ flex:1; }

/* =====================================================================
   MOTION — só a sequência de carga do hero; o resto responde ao toque
   ===================================================================== */
@media (prefers-reduced-motion: no-preference){
  html.js .hero__inner > *{ opacity:0; animation:rise .8s var(--ease) forwards; }
  html.js .hero__inner > :nth-child(1){ animation-delay:.7s }
  html.js .hero__inner > :nth-child(2){ animation:logoIn 1s var(--ease) .1s forwards }
  html.js .hero__inner > :nth-child(3){ animation-delay:.45s }
  html.js .hero__inner > :nth-child(4){ animation-delay:.55s }
  html.js .hero__inner > :nth-child(5){ animation-delay:.65s }
  html.js .hero__inner > :nth-child(6){ animation-delay:.75s }
  html.js .hero__inner > :nth-child(7){ animation-delay:.85s }
  html.js .hero__bg{ animation:bgIn 1.6s var(--ease) both; }
}
@keyframes rise{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }
@keyframes logoIn{ from{ opacity:0; transform:scale(.92) rotate(-3deg); } to{ opacity:1; transform:none; } }
@keyframes bgIn{ from{ transform:scale(1.08); } to{ transform:scale(1); } }

::view-transition-group(*){ animation-duration:.45s; animation-timing-function:var(--ease); }
::view-transition-old(root),::view-transition-new(root){ animation:none; mix-blend-mode:normal; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation:none !important; transition:none !important; }
  .strip{ overflow-x:auto; mask-image:none; -webkit-mask-image:none; }
}

/* =====================================================================
   BREAKPOINTS
   ===================================================================== */
@media (min-width:600px){
  .hero__cta{ flex-direction:row; justify-content:center; max-width:none; }
  .hero__cta .btn{ flex:0 0 auto; }
  .services{ display:grid; grid-template-columns:1fr 1fr; column-gap:48px; }
  .for__card{ aspect-ratio:16/10; }
  .for__body{ padding:24px; }
  .for__body strong{ font-size:1.5rem; }
  .for__body .note{ font-size:1.1rem; background-size:62% .3em; }
  .for__desc{ display:block; }
  .grid{ gap:12px; }
  .work{ aspect-ratio:4/5; border-radius:6px; }
  .work figcaption{ display:flex; }
  .work:nth-child(10){ display:block; }
  .filters{ flex-wrap:wrap; overflow:visible; margin:0; padding:0; mask-image:none; -webkit-mask-image:none; }
  .trust li{ flex:1 1 20%; }
  .trust li:nth-child(n+2)::before{ content:""; position:absolute; left:0; top:10%; height:80%; width:2px; background:var(--red); }
  .footer__inner{ grid-template-columns:1fr auto; align-items:center; }
  .footer__legal{ grid-column:1 / -1; }

  .lb{ inset:0; margin:auto; width:min(940px, 92vw); height:auto; max-height:92vh; border-radius:12px; border:1px solid var(--line-2); }
  .lb__inner{ min-height:0; }
  .lb__top{ padding:14px 14px 6px 22px; }
  .lb__fig img{ max-height:64vh; }
  .lb__bar{ padding:18px 22px 22px; }
  .lb__bar .btn{ flex:0 0 auto; margin-inline:auto; min-width:240px; }
}

@media (min-width:900px){
  :root{ --header-h:72px; }
  .site-header.is-scrolled{ --header-h:60px; }
  body{ font-size:17px; }
  .section{ padding-block:80px; }
  .for{ padding-bottom:80px; }
  .section__head{ margin-bottom:32px; }
  .section__head--row{ flex-direction:row; align-items:flex-end; justify-content:space-between; }
  .logo img{ height:44px; }
  .site-header.is-scrolled .logo img{ height:38px; }

  .burger{ display:none; }
  .nav{
    position:static; display:flex; flex-direction:row; align-items:center; gap:30px;
    padding:0; background:transparent; overflow:visible;
    visibility:visible; opacity:1; transform:none; transition:none;
  }
  .nav a{
    position:relative; min-height:0; padding:4px 0; border:0;
    font-weight:500; font-style:normal; text-transform:none; font-size:.95rem;
    color:var(--muted); transition:color .2s ease;
  }
  .nav a::after{
    content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px;
    background:#fff; transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease);
  }
  .nav a:hover,.nav a.is-active{ color:var(--text); }
  .nav a:hover::after,.nav a.is-active::after{ transform:scaleX(1); }
  .nav__wa{ display:none !important; }

  .hero__bg{ object-position:50% 40%; }
  .hero::before{
    background:
      linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.92) 85%, var(--bg) 100%),
      radial-gradient(45% 55% at 50% 40%, rgba(0,0,0,.6), transparent 70%);
  }
  .hero__inner{ padding-top:40px; padding-bottom:80px; max-width:860px; }
  .hero__note{ position:absolute; left:20px; top:40px; font-size:1.2rem; }
  .hero__logo{ width:min(46%, 400px); margin-top:24px; }
  .hero .tagline{ font-size:.9rem; margin:10px 0 34px; }
  .hero h1{ font-size:clamp(3.4rem, 6.4vw, 5.4rem); }

  .strip__list{ padding:22px 0; }
  .strip__list li{ padding:0 34px; font-size:.66rem; }
  .strip__list svg{ width:34px; height:34px; }
  .strip__track{ animation-duration:40s; }

  .service{ min-height:72px; }
  .for__body{ padding:28px; }

  .grid{ grid-template-columns:repeat(4, 1fr); gap:14px; }
  .work--wide{ grid-column:span 2; aspect-ratio:auto; }
  .work--tall{ grid-row:span 2; aspect-ratio:auto; }
  .work figcaption{ padding:64px 16px 14px; }
  .work figcaption strong{ font-size:.92rem; }

  .steps{ grid-template-columns:repeat(3, 1fr); gap:32px; }
  .steps::before{ left:18px; right:18px; top:18px; bottom:auto; width:auto; height:2px; }
  .step{ grid-template-columns:1fr; gap:14px; align-content:start; align-items:start; }

  .quote{ grid-template-columns:1fr 1.1fr; gap:64px; align-items:start; }
  .quote__form{ padding:32px; }
  .quote__photo{ display:block; position:relative; margin:32px 0 0; aspect-ratio:4/3; border-radius:6px; overflow:hidden; }
  .quote__photo img{ width:100%; height:100%; object-fit:cover; object-position:50% 25%; }
  .quote__photo figcaption{ position:absolute; left:20px; bottom:16px; padding-top:40px; background:linear-gradient(transparent, rgba(0,0,0,.7)); }
  .quote__photo .note{ font-size:1.15rem; }
  .trust{ grid-column:1 / -1; flex-wrap:nowrap; padding-top:0; }
  .trust li{ font-size:.66rem; }

  .site-footer{ padding-bottom:36px; }
  .fab{ display:none; }
  .toast{ left:auto; right:24px; bottom:24px; width:min(380px, calc(100vw - 48px)); }
}
