/* ============================================================
   LAVANDERIA TOMARELLI — Design System
   Sezioni modulari, 2 direzioni tema (A / B) commutabili.
   ============================================================ */

/* ---- Reset --------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   TOKENS — Direzione A (default): "Petrolio & Menta"
   ============================================================ */
:root {
  --bg:        #F6F7F5;
  --bg-alt:    #ECEFEC;
  --bg-deep:   #0F3B3F;   /* sezioni scure */
  --surface:   #FFFFFF;
  --ink:       #0F2E31;
  --ink-soft:  #4F6364;
  --ink-faint: #8497969d;
  --primary:   #0F3B3F;
  --primary-strong: #0A2C2F;
  --accent:    #54C0DC;      /* celeste / acqua — decorativo */
  --accent-ink:#0E7C90;      /* celeste profondo per testo/contrasto */
  --accent-wash: #DBF0F7;
  --on-deep:   #EAF4F1;
  --on-deep-soft: #9FC3BD;
  --line:      rgba(15,59,63,.14);
  --line-soft: rgba(15,59,63,.08);

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  /* tweakable */
  --radius: 12px;
  --radius-lg: 22px;
  --accent-user: var(--accent);
  --accent-ink-user: var(--accent-ink);
  --motion: 1;                 /* moltiplicatore animazioni 0..1.4 */

  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1240px;
  --shadow-sm: 0 1px 2px rgba(10,40,40,.05), 0 6px 18px rgba(10,40,40,.05);
  --shadow-md: 0 2px 6px rgba(10,40,40,.06), 0 18px 50px rgba(10,40,40,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Direzione B: "Bosco & Salvia" -------------------------*/
[data-direction="b"] {
  --bg:        #F6F6F4;
  --bg-alt:    #ECEEE8;
  --bg-deep:   #1F4D46;
  --surface:   #FFFFFF;
  --ink:       #16302B;
  --ink-soft:  #51635D;
  --primary:   #1F4D46;
  --primary-strong: #143832;
  --accent:    #8ED094;
  --accent-ink:#3E8A57;
  --accent-wash: #E4F2E4;
  --on-deep:   #EFF5ED;
  --on-deep-soft: #AECBB0;
  --line:      rgba(31,77,70,.14);
  --line-soft: rgba(31,77,70,.08);
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.12rem; }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-ink-user);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .55; }
.eyebrow.is-center::before { display: none; }

.lead { font-size: clamp(1.08rem, 1.5vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-soft); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: min(var(--maxw), 100% - var(--gutter) * 2); margin-inline: auto; }
.container--narrow { max-width: 820px; }
.section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(56px, 6vw, 88px); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: var(--on-deep); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: #fff; }
.section--deep .lead, .section--deep .muted { color: var(--on-deep-soft); }

.stack-sm > * + * { margin-top: .6rem; }
.stack    > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 1.8rem; }

.sec-head { max-width: 720px; }
.sec-head.is-center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: .7rem; }
.sec-head .lead { margin-top: 1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .92em 1.5em; border-radius: var(--radius);
  background: var(--bg); color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn--accent { background: var(--accent-user); color: var(--primary-strong); }
.btn--ghost  { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--primary); background: var(--surface); }
.btn--light  { background: #fff; color: var(--primary-strong); }
.btn--on-deep-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--on-deep-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.05em 1.8em; font-size: 1.05rem; }
.btn--block { width: 100%; }

.link-arrow { font-family: var(--font-head); font-weight: 600; color: var(--accent-ink-user); display: inline-flex; align-items: center; gap: .45em; }
.link-arrow .arr { transition: transform .25s var(--ease); }
.link-arrow:hover .arr { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 1.5rem; }
.nav__menu { display: flex; align-items: center; gap: 2.2rem; }
.nav__link { font-family: var(--font-head); font-weight: 500; font-size: .98rem; color: var(--ink); position: relative; padding-block: .4em; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--accent-ink-user); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--primary); }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cta-mobile, .nav__menu-eyebrow, .nav__menu-foot { display: none; }
.site-header .logo, .nav__toggle { position: relative; z-index: 2; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle span::before { transform: translateY(-7px); } .nav__toggle span::after { transform: translateY(5px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* ---- Logo --------------------------------------------------*/
.logo { display: inline-flex; align-items: center; gap: .62rem; }
.logo__mark { width: 40px; height: 40px; flex: none; color: var(--primary); }
.logo__mark .accent { color: var(--accent-user); }
.logo__text { font-family: var(--font-head); font-weight: 700; letter-spacing: -.01em; line-height: 1; }
.logo__text b { display: block; font-size: 1.16rem; color: var(--ink); }
.logo__text small { display: block; font-size: .58rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.section--deep .logo__mark, .site-header.menu-open .logo__mark { color: #fff; }
.section--deep .logo__text b, .site-header.menu-open .logo__text b { color: #fff; }
.section--deep .logo__text small, .site-header.menu-open .logo__text small { color: var(--on-deep-soft); }
.site-header.menu-open .logo__mark .accent { color: var(--accent-user); }
.nav__toggle[aria-expanded="true"] span::before,
.nav__toggle[aria-expanded="true"] span::after { background: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 5vw, 70px); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { margin-top: 1.1rem; }
.hero .lead { margin-top: 1.4rem; max-width: 30ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero__trust div { line-height: 1.2; }
.hero__trust b { font-family: var(--font-head); font-size: 1.5rem; display: block; }
.hero__trust span { font-size: .82rem; color: var(--ink-soft); }
.hero__media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; }
.hero__badge { position: absolute; left: 18px; bottom: 18px; background: var(--surface); border-radius: 14px; padding: .85rem 1.05rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; }
.hero__badge .dot { width: 32px; height: 32px; border-radius: 9px; background: var(--accent-wash); color: var(--accent-ink-user); display: grid; place-items: center; }
.hero__badge b { font-family: var(--font-head); font-size: .92rem; display: block; }
.hero__badge span { font-size: .76rem; color: var(--ink-soft); }

/* ============================================================
   IMAGE PLACEHOLDER (foto da inserire)
   ============================================================ */
.ph {
  position: relative; width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, var(--line-soft) 0 14px, transparent 14px 28px),
    var(--bg-alt);
  display: grid; place-items: center; color: var(--ink-soft);
  border: 1px solid var(--line-soft); border-radius: inherit;
  min-height: 180px; overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .75;
  padding: .4em .7em; border: 1px dashed var(--line);
  border-radius: 7px; background: color-mix(in srgb, var(--surface) 70%, transparent);
  text-align: center; max-width: 80%;
}

/* ============================================================
   FEATURE CARDS — "Perché sceglierci"
   ============================================================ */
.grid { display: grid; gap: 1.4rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 1.8rem 1.6rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.feature__ico { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-wash); color: var(--accent-ink-user); display: grid; place-items: center; margin-bottom: 1.2rem; }
.feature h3 { font-size: 1.22rem; }
.feature p { margin-top: .55rem; color: var(--ink-soft); font-size: .98rem; }

.icon { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon--lg { width: 30px; height: 30px; }

/* ============================================================
   NUMERI — counters
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,4vw,3rem); }
.stat { text-align: center; padding: 1rem; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -.03em; color: #fff; }
.stat__num .suff { color: var(--accent-user); }
.stat__label { margin-top: .7rem; color: var(--on-deep-soft); font-size: .98rem; }
.stat + .stat { position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: rgba(255,255,255,.16); }

/* ============================================================
   SERVIZI preview
   ============================================================ */
.svc-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card__media { aspect-ratio: 16/10; }
.svc-card__body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.svc-card__body .eyebrow { margin-bottom: .5rem; }
.svc-card__body p { color: var(--ink-soft); margin: .6rem 0 1.4rem; }
.svc-card__body .link-arrow { margin-top: auto; }

/* ============================================================
   RECENSIONI
   ============================================================ */
.quote {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem;
}
.quote__stars { display: flex; gap: 3px; color: var(--accent-user); }
.quote p { font-size: 1.06rem; line-height: 1.5; }
.quote__by { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-wash); color: var(--accent-ink-user); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote__by b { display: block; font-size: .95rem; } .quote__by span { font-size: .82rem; color: var(--ink-soft); }

/* ============================================================
   CTA + FORM
   ============================================================ */
.cta-form { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.form-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-md); }

.field { position: relative; margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .02em; margin-bottom: .45rem; }
.field .req { color: var(--accent-ink-user); }
.input, .textarea, .select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: .85em 1em; font-size: 1rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-soft); opacity: .6; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--accent-ink-user); background: var(--surface); box-shadow: 0 0 0 4px var(--accent-wash); }
.textarea { resize: vertical; min-height: 120px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234F6364' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.6em; }
.field--error .input, .field--error .textarea, .field--error .select { border-color: #d9534f; }
.field--error .input:focus, .field--error .textarea:focus { box-shadow: 0 0 0 4px rgba(217,83,79,.14); }
.field__err { display: none; color: #c0463f; font-size: .8rem; margin-top: .4rem; }
.field--error .field__err { display: block; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* segmented toggle — tipologia struttura */
.seg { display: flex; flex-wrap: wrap; gap: .5rem; }
.seg label { flex: 1 1 calc(50% - .25rem); min-width: 90px; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span {
  display: flex; align-items: center; justify-content: center; gap: .4em;
  padding: .7em .8em; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 500; font-size: .92rem; transition: all .2s; cursor: pointer; text-align: center;
}
.seg label:hover span { border-color: var(--accent-ink-user); }
.seg input:checked + span { border-color: var(--accent-ink-user); background: var(--accent-wash); color: var(--accent-ink-user); font-weight: 600; }
.seg input:focus-visible + span { outline: 2px solid var(--accent-ink); outline-offset: 2px; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); margin: .4rem 0 1.3rem; }
.consent input { margin-top: .2rem; width: 18px; height: 18px; accent-color: var(--accent-ink-user); flex: none; }
.consent a { color: var(--accent-ink-user); text-decoration: underline; text-underline-offset: 2px; }

/* success state */
.form-success { display: none; text-align: center; padding: 1.5rem 1rem; }
.form-card.is-success .form-body { display: none; }
.form-card.is-success .form-success { display: block; animation: pop .5s var(--ease); }
.form-success__ico { width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--accent-wash); color: var(--accent-ink-user); display: grid; place-items: center; }
.form-success__ico svg { width: 38px; height: 38px; stroke-dasharray: 48; stroke-dashoffset: 48; animation: draw .6s .15s var(--ease) forwards; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.96); } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-deep); color: var(--on-deep); padding-block: clamp(56px, 7vw, 84px) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer p { color: var(--on-deep-soft); font-size: .94rem; max-width: 34ch; margin-top: 1rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.1rem; opacity: .8; }
.footer a.f-link { color: var(--on-deep-soft); font-size: .95rem; display: block; padding: .3em 0; transition: color .2s, transform .2s; }
.footer a.f-link:hover { color: #fff; transform: translateX(3px); }
.footer__contact li { color: var(--on-deep-soft); font-size: .95rem; display: flex; gap: .6rem; align-items: flex-start; padding: .3em 0; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer__social a:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--on-deep-soft); font-size: .85rem; }

/* ============================================================
   PAGE HERO (Servizi / Contatti)
   ============================================================ */
.page-hero { padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(36px, 4vw, 56px); }
.page-hero .lead { margin-top: 1.1rem; max-width: 56ch; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.1rem; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--accent-ink-user); }

/* ---- Service detail rows ---- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.svc-row:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
.svc-row__media { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; }
.svc-row.is-flip .svc-row__media { order: 2; }
.svc-row .num-tag { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--accent-ink-user); letter-spacing: .04em; }
.svc-row h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: .5rem 0 .9rem; }
.svc-row ul.ticks { margin-top: 1.2rem; }
.ticks li { display: flex; gap: .7rem; padding: .42em 0; color: var(--ink-soft); }
.ticks li svg { color: var(--accent-ink-user); flex: none; margin-top: 3px; width: 20px; height: 20px; }

/* ---- FAQ accordion ---- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.4rem 0; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq__q .pm { width: 28px; height: 28px; flex: none; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; inset: 50% 0 auto 0; height: 2px; background: var(--accent-ink-user); transition: transform .3s var(--ease); }
.faq__q .pm::after { transform: rotate(90deg); }
.faq__item.is-open .pm::after { transform: rotate(0); }
.faq__a { overflow: hidden; height: 0; transition: height .35s var(--ease); }
.faq__a-inner { padding: 0 0 1.4rem; color: var(--ink-soft); max-width: 64ch; }

/* ---- Contatti ---- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-block { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line-soft); }
.info-block:first-child { padding-top: 0; }
.info-block__ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--accent-wash); color: var(--accent-ink-user); display: grid; place-items: center; }
.info-block h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .3rem; }
.info-block p, .info-block a { font-size: 1.05rem; color: var(--ink); }
.info-block a:hover { color: var(--accent-ink-user); }
.map { aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.5rem; }
.hours li { display: flex; justify-content: space-between; padding: .5em 0; border-bottom: 1px dashed var(--line-soft); font-size: .98rem; }
.hours li span:last-child { color: var(--ink-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16/11; order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cta-form, .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .svc-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .svc-row.is-flip .svc-row__media { order: -1; }
  .svc-row__media { aspect-ratio: 16/10; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  /* il backdrop-filter rende l'header containing-block per il menu fixed:
     va rimosso su mobile, altrimenti l'overlay non copre il viewport */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__toggle { display: flex; }
  .nav__cta-desktop { display: none; }

  /* --- Menu mobile a tutto schermo --- */
  .nav__menu {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; background: var(--bg-deep);
    padding: clamp(96px, 17vh, 150px) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + 2rem);
    opacity: 0; pointer-events: none; transform: none;
    transition: opacity .32s var(--ease);
    overflow-y: auto; box-shadow: none; border: 0;
  }
  .nav__menu.is-open { opacity: 1; pointer-events: auto; }
  .nav__menu > li { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .nav__menu.is-open > li { opacity: 1; transform: none; }
  .nav__menu.is-open > li:nth-child(1) { transition-delay: .05s; }
  .nav__menu.is-open > li:nth-child(2) { transition-delay: .10s; }
  .nav__menu.is-open > li:nth-child(3) { transition-delay: .15s; }
  .nav__menu.is-open > li:nth-child(4) { transition-delay: .20s; }
  .nav__menu.is-open > li:nth-child(5) { transition-delay: .27s; }
  .nav__menu.is-open > li:nth-child(6) { transition-delay: .34s; }
  .nav__menu-eyebrow { display: block; font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-user); margin-bottom: 1.3rem; }
  .nav__menu .nav__link { display: inline-block; padding: .4rem 0; border: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(2.1rem, 10vw, 3rem); line-height: 1.12; letter-spacing: -.02em; color: #fff; }
  .nav__menu .nav__link::after { display: none; }
  .nav__menu .nav__link[aria-current="page"] { color: var(--accent-user); }
  .nav__cta-mobile { display: block; margin-top: 2rem; }
  .nav__cta-mobile .btn { width: 100%; }
  .nav__menu-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.7rem; border-top: 1px solid rgba(255,255,255,.16); }
  .nav__menu-foot > a { color: var(--on-deep-soft); font-family: var(--font-head); font-size: 1rem; }
  .nav__menu-foot > a:hover { color: #fff; }
  .nav__menu-social { display: flex; gap: .55rem; }
  .nav__menu-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; font-size: .82rem; font-family: var(--font-head); font-weight: 600; transition: background .2s; }
  .nav__menu-social a:hover { background: rgba(255,255,255,.1); }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 2rem; }
  .stat + .stat::before { display: none; }
  .row-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust b { font-size: 1.3rem; }
}
