/* =========================================================
   SGOMBERO ROMA GROUP — Design System "Distinta di Carico"
   Ispirato a manifesti di magazzino, cartellini merce, timbri.
   Display: Oswald | Stamp: Big Shoulders Stencil | Testo: Inter | Dati: monospace
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Big+Shoulders+Stencil:wght@700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* --- colore --- */
  --ink:        #14161A;
  --ink-2:      #1D2027;
  --ink-3:      #262A33;
  --paper:      #F1E7CC;
  --paper-2:    #E7D9B4;
  --paper-line: #C9BA92;
  --orange:     #FF6A00;
  --orange-dark:#DD5800;
  --orange-tint:#3A2B18;
  --muted:      #8C8676;
  --muted-2:    #6B6656;
  --white:      #FBF9F4;
  --text:       #1B1710;
  --text-muted: #5C5642;
  --text-inv:   #F1E7CC;
  --text-inv-muted: #9A9484;
  --line:       #D8CBA4;
  --line-dark:  rgba(241,231,204,.16);
  --success:    #5C7A3D;

  /* --- tipografia --- */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-stamp: 'Big Shoulders Stencil', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* --- spaziatura (ritmo 8px) --- */
  --sp-1: .5rem; --sp-2: 1rem; --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 3rem; --sp-6: 4rem; --sp-7: 6rem; --sp-8: 8rem;

  --radius-sm: 2px;
  --radius-md: 3px;
  --shadow-hard: 6px 6px 0 rgba(0,0,0,.4);
  --shadow-hard-sm: 4px 4px 0 rgba(0,0,0,.4);
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 160ms var(--ease);
  --t-med: 280ms var(--ease);
  --header-h: 78px;
}

/* =========================================================
   RESET
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
svg{ display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
input,textarea,select{ font:inherit; color:inherit; }
h1,h2,h3,h4{ font-weight:700; line-height:1.1; }
.icon{ width:1em; height:1em; flex-shrink:0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important; scroll-behavior:auto !important;
  }
}

/* =========================================================
   LAYOUT / UTILITY
   ========================================================= */
.container{ width:100%; max-width:1280px; margin-inline:auto; padding-inline:clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow{ max-width:820px; }
section{ position:relative; }
section[id]{ scroll-margin-top: calc(var(--header-h) + 14px); }
.section-pad{ padding-block: clamp(4rem, 8vw, 7rem); }
.section-pad-sm{ padding-block: clamp(3rem, 6vw, 5rem); }
.section-dark{ background:var(--ink); color:var(--text-inv); }
.section-paper2{ background:var(--paper-2); }

.hatch{ position:relative; }
.hatch::before{
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.05;
  background-image:repeating-linear-gradient(45deg, #fff 0 1px, transparent 1px 14px);
}
.section-dark.hatch::before{ opacity:.05; }
:not(.section-dark).hatch::before{ opacity:.4; background-image:repeating-linear-gradient(45deg, var(--paper-line) 0 1px, transparent 1px 14px); }

.eyebrow{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--font-mono); font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--orange); border:1px solid var(--orange); padding:.3rem .65rem; border-radius:2px;
  margin-bottom:var(--sp-2);
}

.section-head{ max-width:640px; margin-bottom:var(--sp-6); }
.section-head.center{ margin-inline:auto; text-align:center; }

h1,.h1, h2,.h2, h3,.h3{
  font-family:var(--font-display); font-weight:700; letter-spacing:.005em; text-transform:uppercase;
}
.h1{ font-size:clamp(2.4rem, 5.6vw, 4.4rem); line-height:.98; }
.h2{ font-size:clamp(1.9rem, 3.8vw, 2.9rem); line-height:1.04; }
.h3{ font-size:clamp(1.3rem, 2.2vw, 1.6rem); line-height:1.15; }

.lede{ font-size:clamp(1.02rem, 1.5vw, 1.15rem); color:var(--text-muted); }
.section-dark .lede{ color:var(--text-inv-muted); }
.text-muted{ color:var(--text-muted); }
.section-dark .text-muted{ color:var(--text-inv-muted); }

.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; padding:0; margin:-1px; }
.skip-link{
  position:absolute; left:1rem; top:-60px; background:var(--orange); color:var(--ink); padding:.75rem 1.25rem;
  z-index:1000; transition:top var(--t-fast); font-weight:700;
}
.skip-link:focus{ top:1rem; }

/* =========================================================
   BOTTONI (con tacca tagliata)
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  padding: .95rem 1.6rem; font-weight:700; font-size:.9rem; letter-spacing:.02em;
  cursor:pointer; white-space:nowrap; text-transform:uppercase;
  transition:transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  clip-path:polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  touch-action:manipulation;
}
.btn .icon{ width:17px; height:17px; }
.btn:active{ transform:translateY(1px) scale(.99); }

.btn--primary{ background:var(--orange); color:var(--ink); }
.btn--primary:hover{ background:var(--white); transform:translateY(-2px); }

.btn--dark{ background:var(--ink); color:var(--paper); }
.btn--dark:hover{ background:var(--ink-2); transform:translateY(-2px); }

.btn--ghost{ background:transparent; color:var(--text); border:1.5px solid var(--ink); clip-path:none; }
.btn--ghost:hover{ background:var(--ink); color:var(--paper); }
.section-dark .btn--ghost, .hero .btn--ghost{ border-color:var(--orange); color:var(--paper); }
.section-dark .btn--ghost:hover, .hero .btn--ghost:hover{ background:var(--orange); color:var(--ink); }

.btn--white{ background:var(--paper); color:var(--ink); }
.btn--white:hover{ background:var(--white); transform:translateY(-2px); }

.btn--sm{ padding:.7rem 1.3rem; font-size:.78rem; }
.btn--block{ width:100%; clip-path:polygon(0 0, calc(100% - 14px) 0, 100% 100%, 14px 100%); }

.link-arrow{
  display:inline-flex; align-items:center; gap:.5em; font-weight:700; font-size:.85rem;
  color:var(--text); border-bottom:2px solid var(--orange); padding-bottom:.15rem;
}
.link-arrow .icon{ width:15px; height:15px; transition:transform var(--t-fast); color:var(--orange); }
.link-arrow:hover .icon{ transform:translateX(5px); }
.section-dark .link-arrow{ color:var(--paper); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:fixed; inset-block-start:0; inset-inline:0; z-index:900;
  height:var(--header-h); display:flex; align-items:center;
  background:var(--paper); border-bottom:2px solid transparent;
  transition:border-color var(--t-med), box-shadow var(--t-med), height var(--t-med);
}
.site-header.is-scrolled{ border-bottom-color:var(--ink); box-shadow:0 4px 0 rgba(20,22,26,.06); height:64px; }
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:var(--sp-3); }

.brand{ display:flex; align-items:center; gap:.6rem; z-index:2; min-width:0; }
.brand img{ height:36px; width:36px; flex-shrink:0; transition:height var(--t-med), width var(--t-med); }
.is-scrolled .brand img{ height:30px; width:30px; }
.brand-word{ display:flex; flex-direction:column; line-height:1.05; white-space:nowrap; }
.brand-word strong{ font-family:var(--font-display); font-size:1.1rem; letter-spacing:.01em; color:var(--ink); text-transform:uppercase; white-space:nowrap; }
.brand-word span{ font-family:var(--font-mono); font-size:.58rem; letter-spacing:.14em; text-transform:uppercase; color:var(--orange-dark); font-weight:700; white-space:nowrap; }

.nav-desktop{ display:none; min-width:0; }
.nav-desktop ul{ display:flex; align-items:center; gap:1.3rem; flex-wrap:nowrap; }
.nav-desktop a{
  font-family:var(--font-mono); font-weight:700; font-size:.72rem; letter-spacing:.03em; text-transform:uppercase;
  color:var(--text); position:relative; padding-block:.4rem; white-space:nowrap; display:inline-block;
}
.nav-desktop a::before{ content:'/ '; color:var(--orange); }
.nav-desktop a::after{ content:''; position:absolute; left:1em; bottom:0; height:2px; width:0; background:var(--orange); transition:width var(--t-fast); }
.nav-desktop a:hover::after, .nav-desktop a.active::after{ width:calc(100% - 1em); }
.nav-desktop li{ position:relative; }

.nav-dropdown > a{ display:inline-flex; align-items:center; gap:.3rem; }
.nav-dropdown .caret{ width:11px; height:11px; color:var(--orange); transition:transform var(--t-fast); }
.nav-dropdown:hover .caret, .nav-dropdown:focus-within .caret{ transform:rotate(180deg); }
.dropdown-menu{
  position:absolute; top:calc(100% + 14px); left:1em; min-width:250px;
  background:var(--paper); border:2px solid var(--ink); box-shadow:var(--shadow-hard-sm);
  padding:.5rem; opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast); z-index:60;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown-menu li{ border-bottom:1px dashed var(--line); }
.dropdown-menu li:last-child{ border-bottom:none; }
.dropdown-menu a{
  display:flex; align-items:center; gap:.6rem; padding:.7rem .6rem; font-family:var(--font-body);
  font-weight:600; font-size:.86rem; text-transform:none; letter-spacing:normal; color:var(--text);
}
.dropdown-menu a::before, .dropdown-menu a::after{ content:none; }
.dropdown-menu a:hover{ color:var(--orange-dark); }
.dropdown-menu a .icon{ width:16px; height:16px; color:var(--orange); flex-shrink:0; }

/* dropdown mobile (details/summary) */
.mob-services summary{
  font-family:var(--font-display); font-size:2.1rem; letter-spacing:.01em; text-transform:uppercase;
  cursor:pointer; list-style:none; display:flex; align-items:center; gap:.6rem;
}
.mob-services summary::-webkit-details-marker{ display:none; }
.mob-services summary .icon{ width:20px; height:20px; color:var(--orange); transition:transform var(--t-fast); }
.mob-services[open] summary .icon{ transform:rotate(180deg); }
.mob-services ul{ display:flex; flex-direction:column; gap:.7rem; padding:.9rem 0 .3rem 1.6rem; }
.mob-services ul a{ font-family:var(--font-mono); font-size:.95rem; text-transform:uppercase; letter-spacing:.02em; color:var(--muted); }
.mob-services ul a:hover{ color:var(--paper); }

.header-cta{ display:none; align-items:center; gap:.9rem; flex-shrink:0; }
.header-tel{ display:none; align-items:center; gap:.5rem; font-weight:700; font-size:.82rem; font-family:var(--font-mono); white-space:nowrap; }
.header-tel .icon{ width:16px; height:16px; color:var(--orange); flex-shrink:0; }
@media (min-width:1220px){ .header-tel{ display:flex; } }

.nav-toggle{
  display:flex; align-items:center; justify-content:center; width:44px; height:44px;
  background:var(--ink); color:var(--paper); z-index:2;
}
.nav-toggle .icon{ width:19px; height:19px; }
.nav-toggle .icon-close{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-menu{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-close{ display:block; }

.nav-mobile{
  position:fixed; inset:0; background:var(--ink); color:var(--paper);
  display:flex; flex-direction:column; justify-content:flex-start;
  padding: calc(var(--header-h) + var(--sp-4)) var(--sp-4) var(--sp-4);
  transform:translateY(-100%); transition:transform .45s var(--ease), visibility 0s linear .45s; z-index:850;
  overflow-y:auto; overscroll-behavior:contain; visibility:hidden;
}
.nav-mobile.is-open{ transform:translateY(0); visibility:visible; transition:transform .45s var(--ease), visibility 0s linear; }

html.nav-locked, html.nav-locked body{ overflow:hidden; overscroll-behavior:none; }
.nav-mobile ul{ display:flex; flex-direction:column; gap:var(--sp-2); margin-bottom:var(--sp-5); }
.nav-mobile a{ font-family:var(--font-display); font-size:2.1rem; letter-spacing:.01em; text-transform:uppercase; }
.nav-mobile .btn{ align-self:flex-start; }
.nav-mobile-foot{ margin-top:auto; padding-top:var(--sp-5); border-top:1px dashed var(--line-dark); display:flex; flex-direction:column; gap:.75rem; font-family:var(--font-mono); font-size:.85rem; }

@media (min-width: 980px){
  .nav-desktop{ display:block; }
  .header-cta{ display:flex; }
  .nav-toggle{ display:none; }
  .nav-mobile{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; background:var(--ink); color:var(--text-inv);
  padding-top:calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: clamp(4rem, 8vw, 6rem); overflow:hidden;
}
.hero-grid{ position:relative; z-index:1; display:grid; gap:var(--sp-6); align-items:center; }
.hero-copy{ max-width:600px; }

.dir-tag{
  display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-mono); font-size:.7rem;
  letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:var(--sp-3);
}
.dir-tag strong{ color:var(--orange); border:1px solid var(--orange); padding:.25rem .55rem; border-radius:2px; }

.hero h1{ margin-bottom:var(--sp-3); }
.hero h1 em{ font-style:normal; color:var(--orange); }
.hero-sub{ font-size:clamp(1.02rem,1.6vw,1.2rem); color:var(--text-inv-muted); max-width:52ch; margin-bottom:var(--sp-4); }
.hero-actions{ display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:var(--sp-5); }

.hero-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--sp-3); max-width:480px; border-top:1px dashed var(--line-dark); padding-top:var(--sp-3); }
.hero-stat strong{ display:block; font-family:var(--font-display); font-size:clamp(1.6rem,2.8vw,2.1rem); color:var(--paper); }
.hero-stat span{ font-family:var(--font-mono); font-size:.68rem; color:var(--muted); text-transform:uppercase; letter-spacing:.02em; }

.hero-visual{ position:relative; }
.hero-pin{
  position:relative; background:var(--paper); padding:14px 14px 46px; box-shadow:var(--shadow-hard);
  transform:rotate(1.4deg);
}
.hero-pin::before{
  content:''; position:absolute; top:-9px; left:28px; width:16px; height:16px; border-radius:50%;
  background:var(--ink); border:2px solid var(--orange);
}
.hero-pin-frame{ overflow:hidden; aspect-ratio:4/3.1; filter:sepia(.12) saturate(.92) contrast(1.04); }
.hero-pin-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-pin-cap{
  position:absolute; left:14px; right:14px; bottom:14px; display:flex; justify-content:space-between; align-items:baseline;
  font-family:var(--font-mono); font-size:.65rem; color:var(--muted-2); letter-spacing:.03em;
}
.hero-stamp{
  position:absolute; right:-18px; bottom:-22px; width:104px; height:104px; border-radius:50%;
  border:2.5px solid var(--orange); display:flex; align-items:center; justify-content:center; text-align:center;
  background:var(--ink); color:var(--orange); font-family:var(--font-mono); font-size:.6rem; font-weight:700;
  letter-spacing:.04em; line-height:1.35; transform:rotate(-9deg); z-index:2;
}

@media (min-width: 900px){ .hero-grid{ grid-template-columns:1.08fr .92fr; } }

/* =========================================================
   MARQUEE (ticker manifest)
   ========================================================= */
.marquee{ background:var(--paper-2); border-block:2px solid var(--ink); overflow:hidden; white-space:nowrap; padding-block:.85rem; }
.marquee-track{ display:inline-flex; align-items:center; animation:marquee 30s linear infinite; }
.marquee-track span{
  display:inline-flex; align-items:center; gap:.6rem; font-family:var(--font-mono); font-weight:700; font-size:.78rem;
  letter-spacing:.05em; text-transform:uppercase; padding-inline:1.4rem; color:var(--text);
}
.marquee-track span::after{ content:'×'; color:var(--orange); margin-left:1.4rem; font-weight:700; }
.marquee-track span .icon{ width:14px; height:14px; color:var(--orange); }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* =========================================================
   SERVIZI — cartellini
   ========================================================= */
.services-bento{ display:grid; gap:var(--sp-5); }

.tag-feat{
  display:grid; gap:0; background:var(--paper); border:2px solid var(--ink);
  box-shadow:var(--shadow-hard); position:relative;
}
.tag-feat::before{
  content:''; position:absolute; top:-10px; left:26px; width:18px; height:18px; border-radius:50%;
  background:var(--ink); border:2px solid var(--orange); z-index:2;
}
.tag-feat-media{ position:relative; min-height:260px; filter:sepia(.12) saturate(.92) contrast(1.03); }
.tag-feat-media img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.tag-feat-tag{
  position:absolute; top:1.1rem; left:1.1rem; z-index:1; background:var(--orange); color:var(--ink);
  font-family:var(--font-mono); font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:.4rem .8rem;
}
.tag-feat-body{ padding:var(--sp-4); border-top:2px dashed var(--ink); }
.tag-feat-meta{ display:flex; justify-content:space-between; font-family:var(--font-mono); font-size:.68rem; color:var(--muted-2); letter-spacing:.04em; margin-bottom:.9rem; }
.tag-feat h3{ margin-bottom:.7rem; }
.tag-feat p{ color:var(--text-muted); margin-bottom:var(--sp-3); max-width:52ch; }

.tags-row{ display:grid; gap:var(--sp-3); grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); }
.tag-card{
  background:var(--paper); border:2px solid var(--ink); padding:1.3rem 1.4rem 1.5rem;
  box-shadow:var(--shadow-hard-sm); position:relative;
  transition:transform var(--t-med), box-shadow var(--t-med);
}
.tag-card:nth-child(1){ transform:rotate(-.8deg); }
.tag-card:nth-child(2){ transform:rotate(.5deg); }
.tag-card:nth-child(3){ transform:rotate(-.3deg); }
.tag-card:hover{ transform:translateY(-5px) rotate(0deg); box-shadow:7px 9px 0 rgba(0,0,0,.4); }
.tag-card::before{
  content:''; position:absolute; top:-9px; left:22px; width:15px; height:15px; border-radius:50%;
  background:var(--ink); border:2px solid var(--ink); box-shadow:0 0 0 3px var(--paper);
}
.tag-meta{
  display:flex; justify-content:space-between; align-items:center; font-family:var(--font-mono);
  font-size:.64rem; color:var(--muted-2); letter-spacing:.03em; border-bottom:1.5px dashed var(--ink);
  padding-bottom:.7rem; margin-bottom:.9rem; text-transform:uppercase;
}
.tag-card .icon-stamp{ width:32px; height:32px; color:var(--orange); margin-bottom:.9rem; }
.tag-card h3{ font-size:1.2rem; margin-bottom:.55rem; }
.tag-card p{ color:var(--text-muted); font-size:.9rem; margin-bottom:1.1rem; }
.tag-foot{
  display:flex; justify-content:space-between; align-items:center; border-top:1.5px dashed var(--ink);
  padding-top:.7rem; font-family:var(--font-mono); font-size:.63rem; color:var(--muted-2); text-transform:uppercase;
}

@media (min-width: 860px){
  .tag-feat{ grid-template-columns:1.1fr 1fr; }
  .tag-feat-media{ min-height:100%; }
  .tag-feat-body{ border-top:none; border-left:2px dashed var(--ink); }
}

/* =========================================================
   PROCESSO — scontrini numerati
   ========================================================= */
.process-list{ display:grid; gap:var(--sp-4); }
.process-item{ position:relative; display:grid; grid-template-columns:auto 1fr; gap:var(--sp-3); padding-block:var(--sp-3); border-top:1px dashed var(--line-dark); }
.process-item:first-child{ border-top:none; }
.process-num{ font-family:var(--font-stamp); font-weight:700; font-size:clamp(2.6rem,5vw,3.8rem); color:var(--orange-dark); line-height:.85; }
.process-item h3{ margin-bottom:.4rem; font-size:1.1rem; }
.process-item p{ color:var(--text-muted); max-width:56ch; }
.process-code{ font-family:var(--font-mono); font-size:.64rem; color:var(--muted-2); text-transform:uppercase; letter-spacing:.05em; display:block; margin-bottom:.35rem; }
.section-dark .process-num{ color:var(--orange); }
.section-dark .process-item p{ color:var(--text-inv-muted); }
.section-dark .process-code{ color:var(--muted); }

@media (min-width: 780px){
  .process-list{ grid-template-columns:repeat(4,1fr); gap:var(--sp-3); }
  .process-item{ grid-template-columns:1fr; border-top:none; border-left:1px dashed var(--line-dark); padding-inline:var(--sp-3); padding-block:0; }
  .process-item:first-child{ border-left:none; padding-left:0; }
}

/* =========================================================
   PERCHE' NOI
   ========================================================= */
.why-grid{ display:grid; gap:var(--sp-5); align-items:center; }
.why-media{ position:relative; }
.why-media .hero-pin{ transform:rotate(-1deg); }
.why-media .hero-pin-frame{ aspect-ratio:4/5; }
.why-list{ display:grid; gap:.9rem; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); }
.why-point{
  display:flex; gap:.85rem; align-items:flex-start; border:1.5px solid var(--ink); background:var(--paper);
  padding:1rem 1.1rem;
}
.why-point .code{ font-family:var(--font-mono); font-size:.65rem; color:var(--orange-dark); font-weight:700; flex-shrink:0; padding-top:.15rem; }
.why-point h4{ font-size:.98rem; margin-bottom:.25rem; font-weight:700; }
.why-point p{ color:var(--text-muted); font-size:.86rem; }

.fact-strip{ display:flex; flex-wrap:wrap; gap:1.6rem; }
.fact-strip-item{ flex:1 1 160px; border-top:2px solid var(--orange); padding-top:.7rem; }
.fact-strip-item strong{ display:block; font-family:var(--font-display); font-size:1.05rem; text-transform:uppercase; letter-spacing:.01em; margin-bottom:.25rem; }
.fact-strip-item span{ font-size:.82rem; color:var(--text-muted); }

/* confronto fai-da-te vs noi */
.compare-table{ display:flex; flex-direction:column; gap:2px; background:var(--line-dark); border:2px solid var(--orange); }
.compare-row{ display:grid; grid-template-columns:1fr; gap:.35rem; background:var(--ink); padding:1rem 1.2rem; }
.compare-row--head{ display:none; }
.compare-label{ font-family:var(--font-mono); font-size:.68rem; text-transform:uppercase; letter-spacing:.05em; color:var(--orange); font-weight:700; }
.compare-row > span:not(.compare-label){ font-size:.92rem; color:var(--text-inv-muted); }
.compare-row > span:nth-child(2)::before{ content:'Fai da te — '; font-weight:700; color:var(--muted); }
.compare-row .is-win{ color:var(--paper); font-weight:600; }
.compare-row .is-win::before{ content:'Sgombero Roma — '; font-weight:700; color:var(--orange); }
@media (min-width: 760px){
  .compare-row{ grid-template-columns:190px 1fr 1fr; align-items:center; gap:1.6rem; }
  .compare-row--head{
    display:grid; background:var(--ink-2); font-family:var(--font-mono); font-size:.72rem;
    text-transform:uppercase; letter-spacing:.05em; color:var(--text-inv-muted);
  }
  .compare-row--head span:nth-child(2), .compare-row--head span:nth-child(3){ color:var(--paper); }
  .compare-row > span:nth-child(2)::before, .compare-row .is-win::before{ content:none; }
}

@media (min-width: 900px){ .why-grid{ grid-template-columns:.85fr 1.15fr; } }

/* =========================================================
   ZONE — etichette bagaglio
   ========================================================= */
.zone-cloud{ display:flex; flex-wrap:wrap; gap:.6rem; }
.zone-pill{
  display:inline-flex; align-items:center; gap:.5rem; padding:.55rem 1rem;
  border:1px dashed var(--muted); font-family:var(--font-mono); font-size:.78rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.02em; transition:background var(--t-fast), border-color var(--t-fast);
}
.zone-pill .icon{ width:13px; height:13px; color:var(--orange); }
.zone-pill:hover{ background:var(--orange); border-color:var(--orange); border-style:solid; color:var(--ink); }
.zone-pill:hover .icon{ color:var(--ink); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ display:flex; flex-direction:column; gap:.7rem; }
.faq-item{ background:var(--paper); border:1.5px solid var(--ink); overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; gap:1rem; padding:1.15rem 1.4rem; text-align:left; font-weight:700; font-size:.98rem; }
.faq-q .qcode{ font-family:var(--font-mono); font-size:.72rem; color:var(--orange-dark); flex-shrink:0; }
.faq-q .qtext{ flex-grow:1; }
.faq-q .icon{ width:18px; height:18px; color:var(--orange); flex-shrink:0; transition:transform var(--t-med); }
.faq-item.is-open .faq-q .icon{ transform:rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height var(--t-med); }
.faq-a-inner{ padding:0 1.4rem 1.3rem 3.4rem; color:var(--text-muted); max-width:65ch; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{ position:relative; overflow:hidden; background:var(--ink); color:var(--paper); border-block:2px solid var(--orange); }
.cta-banner-bg{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:.32; filter:sepia(.2) saturate(.7) contrast(1.05); }
.cta-banner::after{ content:''; position:absolute; inset:0; background:linear-gradient(120deg, rgba(20,22,26,.96) 25%, rgba(20,22,26,.7) 100%); }
.cta-banner-content{ position:relative; z-index:1; text-align:center; max-width:680px; margin-inline:auto; }
.cta-banner .h2{ margin-bottom:var(--sp-2); }
.cta-banner-actions{ display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; margin-top:var(--sp-4); }

/* =========================================================
   CONTATTO / FORM
   ========================================================= */
.contact-grid{ display:grid; gap:var(--sp-5); }
.contact-card{ background:var(--paper); border:2px solid var(--ink); padding:var(--sp-4); box-shadow:var(--shadow-hard); }
.field{ margin-bottom:var(--sp-3); }
.field label{ display:block; font-family:var(--font-mono); font-size:.72rem; font-weight:700; margin-bottom:.4rem; text-transform:uppercase; letter-spacing:.03em; }
.field .req{ color:var(--orange-dark); }
.field input, .field select, .field textarea{
  width:100%; padding:.85rem 1rem; border:1.5px solid var(--ink); background:var(--white);
  border-radius:0; transition:border-color var(--t-fast), background var(--t-fast); font-family:var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--orange); }
.field-row{ display:grid; gap:var(--sp-3); grid-template-columns:1fr 1fr; }
.field-hint{ font-size:.78rem; color:var(--text-muted); margin-top:.35rem; }
.form-note{ font-size:.8rem; color:var(--text-muted); margin-top:var(--sp-2); }
.form-error{
  display:none; align-items:center; gap:.8rem; background:#F3E1DC; color:#8A3220; border:1.5px solid #B34424;
  padding:1rem 1.2rem; margin-top:var(--sp-3); font-weight:600; font-size:.9rem;
}
.form-error.is-visible{ display:flex; }
.form-error .icon{ width:19px; height:19px; flex-shrink:0; }

/* pagina grazie */
.confirm-stamp{
  width:172px; height:172px; border-radius:50%; border:3px solid var(--orange); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; text-align:center;
  background:var(--ink); color:var(--orange); font-family:var(--font-mono); font-size:.78rem; font-weight:700;
  letter-spacing:.04em; line-height:1.4; transform:rotate(-6deg); box-shadow:var(--shadow-hard);
}
.confirm-stamp .icon{ width:32px; height:32px; margin-bottom:.4rem; }
.confirm-hero{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:var(--sp-4); padding-block:var(--sp-4); }
@media (min-width:760px){ .confirm-hero{ flex-direction:row; text-align:left; gap:var(--sp-6); } }

.hp-field{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }

.contact-side{ display:flex; flex-direction:column; gap:var(--sp-3); }
.contact-chip{ display:flex; align-items:center; gap:1rem; background:var(--ink); color:var(--paper); padding:1.1rem 1.3rem; border:2px solid var(--ink); transition:transform var(--t-fast), border-color var(--t-fast); }
.contact-chip:hover{ transform:translateY(-3px); border-color:var(--orange); }
.contact-chip .icon-wrap{ width:44px; height:44px; flex-shrink:0; background:var(--orange); color:var(--ink); display:flex; align-items:center; justify-content:center; }
.contact-chip .icon-wrap .icon{ width:21px; height:21px; }
.contact-chip strong{ display:block; font-size:.94rem; }
.contact-chip span{ font-size:.78rem; color:var(--text-inv-muted); font-family:var(--font-mono); }

@media (min-width: 940px){ .contact-grid{ grid-template-columns:1.3fr .9fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--ink); color:var(--text-inv-muted); padding-top:var(--sp-7); border-top:4px solid var(--orange); }
.footer-grid{ display:grid; gap:var(--sp-5); padding-bottom:var(--sp-6); border-bottom:1px dashed var(--line-dark); }
.footer-brand p{ max-width:32ch; margin-block:1rem 1.4rem; font-size:.9rem; }
.footer-brand .brand-word strong, .footer-brand .brand-word span{ color:var(--paper); }
.footer-social{ display:flex; gap:.6rem; }
.footer-social a{ width:38px; height:38px; border:1.5px solid var(--line-dark); display:flex; align-items:center; justify-content:center; transition:background var(--t-fast), border-color var(--t-fast); }
.footer-social a:hover{ background:var(--orange); border-color:var(--orange); color:var(--ink); }
.footer-social .icon{ width:16px; height:16px; }

.footer-col h4{ color:var(--paper); font-family:var(--font-mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:var(--sp-3); font-weight:700; }
.footer-col ul{ display:flex; flex-direction:column; gap:.7rem; }
.footer-col a{ font-size:.9rem; transition:color var(--t-fast); }
.footer-col a:hover{ color:var(--paper); }

.footer-bottom{ display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; padding-block:var(--sp-3); font-size:.76rem; font-family:var(--font-mono); }

@media (min-width: 700px){ .footer-grid{ grid-template-columns:1.4fr repeat(3,1fr); } }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb{ display:flex; align-items:center; flex-wrap:wrap; gap:.5rem; font-family:var(--font-mono); font-size:.76rem; color:var(--muted); margin-bottom:var(--sp-3); text-transform:uppercase; }
.breadcrumb a{ color:var(--muted); transition:color var(--t-fast); }
.breadcrumb a:hover{ color:var(--paper); }
.breadcrumb .sep{ opacity:.5; }
.breadcrumb .current{ color:var(--orange); font-weight:700; }

/* =========================================================
   SCENARI (pagina interna)
   ========================================================= */
.scenario-grid{ display:grid; gap:var(--sp-3); grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); }
.scenario-card{ background:var(--paper); border:1.5px solid var(--ink); padding:var(--sp-3) var(--sp-3) var(--sp-4); }
.scenario-card .icon-stamp{ width:28px; height:28px; color:var(--orange); margin-bottom:1rem; }
.scenario-card h3{ font-size:1.02rem; margin-bottom:.4rem; }
.scenario-card p{ font-size:.88rem; color:var(--text-muted); }

/* checklist */
.checklist{ display:grid; gap:.7rem; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.checklist li{ display:flex; gap:.7rem; align-items:flex-start; font-size:.94rem; border-bottom:1px dashed var(--line); padding-bottom:.6rem; }
.checklist .icon{ width:16px; height:16px; flex-shrink:0; margin-top:.2rem; color:var(--orange); }

/* fattori prezzo */
.factor-grid{ display:grid; gap:var(--sp-3); grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); }
.factor-card{ border:1px dashed var(--line); padding:var(--sp-3); text-align:center; }
.factor-card .icon-stamp{ width:30px; height:30px; margin-inline:auto; margin-bottom:.9rem; color:var(--orange); }
.factor-card h4{ font-size:.92rem; margin-bottom:.35rem; text-transform:uppercase; font-family:var(--font-mono); letter-spacing:.02em; }
.factor-card p{ font-size:.82rem; color:var(--text-muted); }
.section-dark .factor-card{ border-color:var(--line-dark); }
.section-dark .factor-card p{ color:var(--text-inv-muted); }

/* galleria */
.gallery-grid{ display:grid; gap:var(--sp-3); grid-template-columns:repeat(6,1fr); }
.gallery-grid figure{ position:relative; border:2px solid var(--ink); overflow:hidden; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; filter:sepia(.12) saturate(.92) contrast(1.03); }
.gallery-grid figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:.9rem 1.1rem; font-family:var(--font-mono);
  font-size:.68rem; font-weight:700; color:var(--paper); text-transform:uppercase; letter-spacing:.03em;
  background:linear-gradient(0deg, rgba(20,22,26,.85), transparent);
}
.gallery-grid .g1{ grid-column:span 6; aspect-ratio:16/9; }
.gallery-grid .g2{ grid-column:span 3; aspect-ratio:1/1; }
.gallery-grid .g3{ grid-column:span 3; aspect-ratio:1/1; }
@media (min-width: 760px){
  .gallery-grid .g1{ grid-column:span 4; aspect-ratio:4/3.4; }
  .gallery-grid .g2{ grid-column:span 2; aspect-ratio:auto; }
  .gallery-grid .g3{ grid-column:span 2; aspect-ratio:auto; }
}

/* servizi correlati */
.related-row{ display:grid; gap:var(--sp-3); grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); }
.related-card{ display:flex; align-items:center; gap:1rem; border:1.5px solid var(--ink); padding:1.1rem 1.3rem; transition:background var(--t-fast), transform var(--t-fast); }
.related-card:hover{ background:var(--ink); color:var(--paper); transform:translateY(-3px); }
.related-card .icon-wrap{ width:40px; height:40px; flex-shrink:0; background:var(--orange); color:var(--ink); display:flex; align-items:center; justify-content:center; }
.related-card .icon-wrap .icon{ width:19px; height:19px; }
.related-card strong{ display:block; font-size:.92rem; }
.related-card span{ font-size:.76rem; color:var(--text-muted); font-family:var(--font-mono); }
.related-card:hover span{ color:var(--text-inv-muted); }

/* =========================================================
   LISTINO PREZZI (price-ticket)
   ========================================================= */
.price-grid{ display:grid; gap:var(--sp-4); grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); align-items:start; }
.price-ticket{ background:var(--paper); color:var(--text); border:2px solid var(--ink); box-shadow:var(--shadow-hard); padding:var(--sp-4) var(--sp-4) var(--sp-3); }
.price-ticket-head{
  display:flex; justify-content:space-between; align-items:baseline; font-family:var(--font-mono);
  font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted-2) !important;
  border-bottom:2px dashed var(--ink); padding-bottom:.9rem; margin-bottom:.4rem;
}
.price-list li{ display:flex; align-items:center; gap:.6rem; padding-block:.85rem; border-bottom:1px dashed var(--line); }
.price-list li:last-child{ border-bottom:none; }
.price-item{ font-weight:700; font-size:1.02rem; white-space:nowrap; color:var(--text) !important; }
.price-dots{ flex:1; border-bottom:2px dotted var(--muted-2); margin-bottom:5px; min-width:1rem; }
.price-value{
  font-family:var(--font-stamp); font-weight:700; font-size:1.5rem; letter-spacing:.02em;
  color:var(--paper) !important; background:var(--ink); padding:.2em .55em; white-space:nowrap;
}
.price-note{ font-size:.84rem; color:var(--text-muted) !important; margin-top:1rem; padding-top:1rem; border-top:1px dashed var(--line); }

/* prezzi + immagine affiancata */
.price-showcase{ display:grid; gap:var(--sp-5); align-items:center; }
.price-showcase .hero-pin{ max-width:440px; }
@media (min-width: 860px){
  .price-showcase{ grid-template-columns:1.05fr .95fr; }
  .price-showcase .hero-pin{ max-width:none; justify-self:end; width:100%; }
}

/* prima / dopo (lavori) */
.job-pair{ background:var(--paper); border:2px solid var(--ink); box-shadow:var(--shadow-hard); margin-bottom:var(--sp-4); }
.job-pair-head{
  display:flex; justify-content:space-between; align-items:center; padding:1rem 1.3rem;
  border-bottom:2px dashed var(--ink); font-family:var(--font-mono); font-size:.72rem;
  text-transform:uppercase; letter-spacing:.05em; color:var(--muted-2) !important;
}
.job-pair-photos{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; }
.job-photo{ position:relative; aspect-ratio:4/3.2; overflow:hidden; background:var(--paper-2); }
.job-photo img{ width:100%; height:100%; object-fit:cover; filter:sepia(.12) saturate(.92) contrast(1.03); }
.job-photo-label{
  position:absolute; top:.7rem; left:.7rem; background:var(--ink); color:var(--paper) !important;
  font-family:var(--font-mono); font-size:.66rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; padding:.3rem .7rem;
}
.job-photo--after .job-photo-label{ background:var(--orange); color:var(--ink) !important; }
.job-pair-arrow{
  display:flex; align-items:center; justify-content:center; width:44px; height:44px;
  background:var(--ink); color:var(--orange); border-radius:50%; margin-inline:-22px;
  z-index:2; box-shadow:var(--shadow-hard-sm); flex-shrink:0;
}
.job-pair-arrow .icon{ width:20px; height:20px; }
.job-pair-caption{ padding:1rem 1.3rem; font-size:.92rem; color:var(--text-muted) !important; }
@media (max-width: 640px){
  .job-pair-photos{ grid-template-columns:1fr; }
  .job-pair-arrow{ margin-inline:auto; margin-block:-22px; transform:rotate(90deg); }
}

/* galleria lavori (foto già prima/dopo) */
.work-gallery{ display:grid; gap:var(--sp-3); grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.work-photo{
  background:var(--paper); border:2px solid var(--ink); box-shadow:var(--shadow-hard-sm); overflow:hidden;
  cursor:pointer; transition:transform var(--t-med), box-shadow var(--t-med);
}
.work-photo:hover{ transform:translateY(-4px); box-shadow:var(--shadow-hard); }
.work-photo:focus-visible{ outline:2px solid var(--orange); outline-offset:2px; }
.work-photo-media{ position:relative; overflow:hidden; }
.work-photo-media img{ width:100%; display:block; filter:sepia(.08) saturate(.95) contrast(1.02); transition:transform .35s ease; }
.work-photo:hover .work-photo-media img{ transform:scale(1.05); }
.work-photo-zoom{
  position:absolute; top:50%; left:50%; width:46px; height:46px; border-radius:50%;
  background:var(--orange); color:var(--ink); display:flex; align-items:center; justify-content:center;
  transform:translate(-50%,-50%) scale(.75); opacity:0; transition:opacity .2s ease, transform .2s ease;
  pointer-events:none; box-shadow:var(--shadow-hard-sm);
}
.work-photo:hover .work-photo-zoom{ opacity:1; transform:translate(-50%,-50%) scale(1); }
.work-photo-zoom .icon{ width:20px; height:20px; }
.work-photo figcaption{
  padding:.9rem 1.1rem; font-family:var(--font-mono); font-size:.74rem; text-transform:uppercase;
  letter-spacing:.04em; color:var(--muted-2) !important; border-top:2px dashed var(--ink);
}

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000; background:rgba(20,22,26,.96);
  display:flex; align-items:center; justify-content:center; padding:clamp(1rem,5vw,3rem);
  opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox-figure{ max-width:min(920px,92vw); }
.lightbox-img{ display:block; max-width:100%; max-height:78vh; margin-inline:auto; border:2px solid var(--paper); box-shadow:0 20px 60px rgba(0,0,0,.5); background:var(--ink); }
.lightbox-caption{ margin-top:1.1rem; text-align:center; font-family:var(--font-mono); color:var(--paper); font-size:.8rem; text-transform:uppercase; letter-spacing:.05em; }
.lightbox-counter{
  position:absolute; bottom:1.4rem; left:50%; transform:translateX(-50%);
  font-family:var(--font-mono); color:var(--muted); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
}
.lightbox-btn{
  position:absolute; display:flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:50%; background:var(--paper); color:var(--ink);
  border:2px solid var(--ink); box-shadow:var(--shadow-hard-sm); transition:background var(--t-fast), transform var(--t-fast);
}
.lightbox-btn:hover{ background:var(--orange); transform:translateY(-2px); }
.lightbox-btn .icon{ width:20px; height:20px; }
.lightbox-close{ top:1.4rem; right:1.4rem; }
.lightbox-prev{ left:1.4rem; top:50%; transform:translateY(-50%); }
.lightbox-prev .icon{ transform:rotate(180deg); }
.lightbox-next{ right:1.4rem; top:50%; transform:translateY(-50%); }
@media (max-width: 640px){
  .lightbox-btn{ width:40px; height:40px; }
  .lightbox-close{ top:.7rem; right:.7rem; }
  .lightbox-prev{ left:.5rem; }
  .lightbox-next{ right:.5rem; }
}

/* nastro materiali */
.material-cloud{ display:flex; flex-wrap:wrap; gap:.55rem; }
.material-pill{
  display:inline-flex; align-items:center; font-family:var(--font-mono); font-size:.78rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.02em; padding:.5rem .9rem; border:1px solid var(--ink);
  background:var(--paper);
}

/* =========================================================
   BACK TO TOP / WHATSAPP FLOAT
   ========================================================= */
.back-to-top{
  position:fixed; right:1.4rem; bottom:1.4rem; z-index:400; width:48px; height:48px;
  background:var(--ink); color:var(--orange); border:2px solid var(--orange); box-shadow:var(--shadow-hard-sm);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(12px); transition:opacity var(--t-med), transform var(--t-med), visibility var(--t-med), bottom var(--t-med);
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top .icon{ width:19px; height:19px; transform:rotate(-90deg); }

.wa-float{
  position:fixed; left:1.4rem; bottom:1.4rem; z-index:400; width:56px; height:56px;
  background:#25D366; color:var(--ink); border:2px solid var(--ink); box-shadow:var(--shadow-hard-sm);
  display:flex; align-items:center; justify-content:center; transition:transform var(--t-fast);
}
.wa-float:hover{ transform:translateY(-3px); }
.wa-float .icon{ width:25px; height:25px; }

/* =========================================================
   BARRA CONTATTI MOBILE
   ========================================================= */
.mobile-contact-bar{ display:none; }

@media (max-width: 979px){
  :root{ --mobile-bar-h: 62px; }
  body{ padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom)); }
  .wa-float{ display:none; }
  .back-to-top{ bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom) + .9rem); }

  .mobile-contact-bar{
    display:grid; grid-template-columns:repeat(3,1fr);
    position:fixed; left:0; right:0; bottom:0; z-index:500;
    background:var(--ink); border-top:2px solid var(--orange);
    padding-bottom:env(safe-area-inset-bottom);
  }
  .mobile-contact-bar a{
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.3rem;
    padding:.65rem .4rem; color:var(--text-inv-muted); border-left:1px dashed var(--line-dark);
    font-family:var(--font-mono); font-size:.62rem; letter-spacing:.03em; text-transform:uppercase; text-align:center;
    transition:background var(--t-fast), color var(--t-fast);
  }
  .mobile-contact-bar a:first-child{ border-left:none; }
  .mobile-contact-bar a .icon{ width:19px; height:19px; }
  .mobile-contact-bar a:active{ background:var(--ink-2); }
  .mobile-contact-bar a.is-accent{ color:var(--paper); background:var(--orange-tint); }
  .mobile-contact-bar a.is-accent .icon{ color:var(--orange); }
}

/* =========================================================
   REVEAL / PARALLAX
   ========================================================= */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-group.is-visible .reveal-child{ opacity:1; transform:translateY(0); }
.reveal-child{ opacity:0; transform:translateY(22px); transition:opacity .55s var(--ease), transform .55s var(--ease); }
.reveal-group.is-visible .reveal-child:nth-child(1){ transition-delay:.05s; }
.reveal-group.is-visible .reveal-child:nth-child(2){ transition-delay:.12s; }
.reveal-group.is-visible .reveal-child:nth-child(3){ transition-delay:.19s; }
.reveal-group.is-visible .reveal-child:nth-child(4){ transition-delay:.26s; }
.reveal-group.is-visible .reveal-child:nth-child(5){ transition-delay:.33s; }
.reveal-group.is-visible .reveal-child:nth-child(6){ transition-delay:.40s; }
[data-parallax]{ will-change:transform; }
@media (prefers-reduced-motion: reduce){ .reveal, .reveal-child{ opacity:1 !important; transform:none !important; } }

/* =========================================================
   RESPONSIVE FINE-TUNING
   ========================================================= */
@media (max-width: 599px){
  .hero-stats{ grid-template-columns:repeat(3,1fr); gap:.8rem; }
  .hero-stamp{ position:static; margin-top:1rem; transform:rotate(-4deg); }
  .field-row{ grid-template-columns:1fr; }
}
