/* =========================================================================
   TANO EVOLUZIONE — Autofficina · Bosch Car Service
   Premium dark automotive theme. Palette derived from the brand logo
   (metallic gold + black + steel). Vanilla CSS, mobile-first.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces (near-black -> raised) */
  --bg:           #0b0b0d;
  --bg-2:         #0e0e11;
  --surface-1:    #141417;
  --surface-2:    #1b1b20;
  --surface-3:    #24242b;
  --line:         rgba(255,255,255,.08);
  --line-2:       rgba(255,255,255,.14);

  /* Brand gold (metallic) */
  --gold-1:       #f7e7a6;
  --gold:         #e8c766;
  --gold-2:       #c9a03f;
  --gold-3:       #8c6b22;
  --gold-ink:     #1a1407;
  --grad-gold:    linear-gradient(135deg,#f9ecb4 0%,#e8c766 36%,#c9a03f 70%,#9b7626 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(247,231,166,.16), rgba(201,160,63,.06));
  --gold-glow:    0 0 0 1px rgba(232,199,102,.5), 0 10px 40px -12px rgba(232,199,102,.45);

  /* Steel (from TANO lettering) */
  --steel:        #9db2c7;
  --steel-2:      #6c8093;

  /* Text */
  --text:         #f3f1ec;
  --muted:        #b7b4ac;
  --dim:          #8a877f;

  /* Feedback */
  --ok:           #5fbf97;
  --err:          #ef6f63;

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-wide: "Syncopate", "Space Grotesk", sans-serif;

  /* Radii */
  --r-xs: 8px; --r-sm: 12px; --r: 16px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;

  /* Spacing rhythm */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(0,0,0,.4);
  --sh-2: 0 8px 24px -8px rgba(0,0,0,.6);
  --sh-3: 0 24px 60px -20px rgba(0,0,0,.75);

  --container: 1200px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button,input,textarea,select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:where(h1,h2,h3,h4) { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }

::selection { background: var(--gold); color: var(--gold-ink); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: #000; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }

/* Focus visibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Scrollbar (subtle) */
* { scrollbar-color: var(--surface-3) transparent; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(64px, 10vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.center { text-align: center; }
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Eyebrow / kicker */
.eyebrow {
  font-family: var(--font-wide);
  font-size: clamp(.62rem,1.4vw,.72rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .7em;
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after {
  content:""; width:26px; height:1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section-lead { color: var(--muted); max-width: 62ch; margin-top: var(--s-4); font-size: 1.075rem; }
.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .2s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--gold {
  background: var(--grad-gold); color: var(--gold-ink);
  box-shadow: 0 8px 26px -10px rgba(232,199,102,.6);
}
.btn--gold:hover { box-shadow: var(--gold-glow); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255,255,255,.03); color: var(--text);
  border-color: var(--line-2); backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-1); transform: translateY(-2px); }

.btn--wa { background: #25d366; color: #07331a; }
.btn--wa:hover { background: #2be575; transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(37,211,102,.6); }

.btn--block { width: 100%; }
.btn--lg { --pad-y: 17px; --pad-x: 32px; font-size: 1.02rem; }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: var(--s-5); width: 100%; }
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--font-head); font-size: 1.06rem; letter-spacing: .02em; }
.brand-name span { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-family: var(--font-wide); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: clamp(2px,1.4vw,10px); margin-left: auto; }
.nav-links a {
  position: relative; padding: 8px 12px; font-size: .92rem; font-weight: 500;
  color: var(--muted); border-radius: var(--r-xs); transition: color .2s;
}
.nav-links a::after {
  content:""; position:absolute; left:12px; right:12px; bottom:4px; height:2px;
  background: var(--grad-gold); border-radius:2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }

/* language toggle */
.lang {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  padding: 4px; background: rgba(255,255,255,.02);
}
.lang button {
  border: none; background: transparent; cursor: pointer; color: var(--muted);
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  padding: 5px 11px; border-radius: var(--r-pill); transition: .2s; letter-spacing: .04em;
}
.lang button[aria-pressed="true"] { background: var(--grad-gold); color: var(--gold-ink); }

/* burger */
.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03); border-radius: 12px; cursor: pointer;
  position: relative;
}
.burger span, .burger::before, .burger::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; transform: translate(-50%,-50%);
  transition: .3s var(--ease);
}
.burger::before { transform: translate(-50%,-7px); }
.burger::after  { transform: translate(-50%,5px); }
.burger span { width: 20px; }
body.menu-open .burger span { opacity: 0; }
body.menu-open .burger::before { transform: translate(-50%,-50%) rotate(45deg); }
body.menu-open .burger::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-video, .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-poster { z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 80% 10%, transparent 40%, rgba(11,11,13,.4) 75%),
    linear-gradient(180deg, rgba(11,11,13,.72) 0%, rgba(11,11,13,.5) 35%, rgba(11,11,13,.82) 100%),
    linear-gradient(90deg, rgba(11,11,13,.92) 0%, rgba(11,11,13,.4) 55%, transparent 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(40px,8vh,90px); width: 100%; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.1rem); max-width: 16ch; margin-top: var(--s-4);
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero p.lead { color: #e7e4dd; max-width: 54ch; margin-top: var(--s-5); font-size: clamp(1.02rem,2vw,1.18rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: clamp(14px,2.4vw,30px);
  margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--line);
  max-width: 760px;
}
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--muted); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-item b { color: var(--text); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }

/* ===========================================================
   STORIA
   =========================================================== */
.storia-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: center;
}
.storia-media { position: relative; }
.storia-media .frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-3); border: 1px solid var(--line);
}
.storia-media .frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.storia-media .frame::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,.55));
}
.badge-eltano {
  position: absolute; left: -14px; bottom: 28px; z-index: 2;
  background: var(--grad-gold); color: var(--gold-ink);
  font-family: var(--font-wide); font-weight: 700; letter-spacing: .14em;
  padding: 12px 20px; border-radius: var(--r-sm); box-shadow: var(--sh-2); font-size: .8rem;
  text-transform: uppercase;
}
.storia-media .since {
  position: absolute; right: 18px; top: 18px; z-index: 2; text-align: right;
  background: rgba(11,11,13,.6); backdrop-filter: blur(8px); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: var(--r-sm);
}
.storia-media .since b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); line-height: 1; }
.storia-media .since span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.storia-body p { color: var(--muted); margin-top: var(--s-4); }
.storia-body p:first-of-type { margin-top: var(--s-5); }
.pullquote {
  font-family: var(--font-head); font-size: clamp(1.3rem,2.6vw,1.7rem); line-height: 1.3;
  color: var(--text); margin: var(--s-5) 0; padding-left: var(--s-5);
  border-left: 3px solid var(--gold); font-weight: 500;
}
.pullquote em { font-style: normal; color: var(--gold); }
.signature { margin-top: var(--s-5); display: flex; align-items: center; gap: var(--s-4); }
.signature .nm { font-family: var(--font-head); font-size: 1.05rem; color: var(--text); }
.signature .rl { font-size: .82rem; color: var(--dim); }

/* ===========================================================
   AUTOFFICINA
   =========================================================== */
.officina-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.officina-body p { color: var(--muted); margin-top: var(--s-4); }
.officina-body .lead-strong { color: var(--text); font-size: 1.16rem; line-height: 1.6; font-family: var(--font-head); font-weight: 500; }

.bosch-tag {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: var(--s-5);
  background: var(--grad-gold-soft); border: 1px solid rgba(232,199,102,.3);
  padding: 12px 18px; border-radius: var(--r-pill);
}
.bosch-tag .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.bosch-tag b { font-family: var(--font-head); letter-spacing: .04em; }
.bosch-tag span { color: var(--muted); font-size: .9rem; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s-6); }
.pill {
  display: inline-flex; align-items: center; gap: .5rem; padding: 9px 16px;
  border: 1px solid var(--line-2); border-radius: var(--r-pill); font-size: .88rem; color: var(--muted);
  background: rgba(255,255,255,.02); transition: .25s var(--ease);
}
.pill svg { width: 16px; height: 16px; color: var(--gold); }
.pill:hover { border-color: var(--gold); color: var(--text); transform: translateY(-2px); }

.officina-media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.officina-media figure { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-2); }
.officina-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform .6s var(--ease); }
.officina-media figure:hover img { transform: scale(1.05); }
.officina-media figure:first-child { grid-row: span 2; }
.officina-media figure:first-child img { aspect-ratio: 3/5; }

/* tools film band */
.film-band { position: relative; overflow: hidden; border-block: 1px solid var(--line); }
.film-band video, .film-band img.fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); z-index: 0; }
.film-band::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(11,11,13,.94), rgba(11,11,13,.6) 60%, rgba(11,11,13,.85)); z-index:1; }
.film-band .container { position: relative; z-index: 2; padding-block: clamp(56px,8vw,92px); }
.film-quote { font-family: var(--font-head); font-size: clamp(1.5rem,3.4vw,2.5rem); max-width: 22ch; line-height: 1.2; }
.film-quote em { font-style: normal; }

/* ===========================================================
   SERVIZI
   =========================================================== */
.svc-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-4); margin-top: var(--s-7);
}
.svc-card {
  position: relative; padding: var(--s-6) var(--s-5) var(--s-5);
  background: linear-gradient(180deg, var(--surface-1), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.svc-card::before {
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1px;
  background: var(--grad-gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.svc-card:hover::before { opacity: 1; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-gold-soft); border: 1px solid rgba(232,199,102,.25); margin-bottom: var(--s-5);
  transition: .3s var(--ease);
}
.svc-ico svg { width: 30px; height: 30px; color: var(--gold); stroke-width: 1.7; }
.svc-card:hover .svc-ico { background: var(--grad-gold); transform: translateY(-2px) rotate(-3deg); }
.svc-card:hover .svc-ico svg { color: var(--gold-ink); }
.svc-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .94rem; line-height: 1.55; }
.svc-num { position: absolute; right: 18px; top: 16px; font-family: var(--font-wide); font-size: .7rem; color: var(--dim); letter-spacing: .1em; }

/* ===========================================================
   MISSION
   =========================================================== */
.mission { background:
    radial-gradient(80% 120% at 50% -10%, rgba(232,199,102,.10), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.mission-inner { max-width: 860px; margin-inline: auto; text-align: center; }
.mission h2 { font-size: clamp(1.8rem,4vw,2.8rem); }
.mission .body { color: var(--muted); margin-top: var(--s-5); font-size: 1.12rem; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); margin-top: var(--s-8); }
.pillar { padding: var(--s-6) var(--s-4); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface-1); }
.pillar .pico { width: 48px; height:48px; margin: 0 auto var(--s-4); display:grid; place-items:center; border-radius:50%; background: var(--grad-gold-soft); border:1px solid rgba(232,199,102,.25); }
.pillar .pico svg { width: 24px; height: 24px; color: var(--gold); }
.pillar h3 { font-size: 1.15rem; }
.pillar p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* ===========================================================
   RECENSIONI
   =========================================================== */
.rev-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--s-5); }
.rev-score {
  display: flex; align-items: center; gap: var(--s-4);
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-4) var(--s-5);
}
.rev-score .big { font-family: var(--font-head); font-size: 3rem; line-height: 1; color: var(--gold); }
.rev-score .stars-lg { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; }
.rev-score small { color: var(--muted); display: block; font-size: .82rem; margin-top: 4px; }
.g-logo { width: 22px; height: 22px; }

.rev-grid { columns: 3; column-gap: var(--s-4); margin-top: var(--s-7); }
.rev-card {
  break-inside: avoid; margin-bottom: var(--s-4); padding: var(--s-5);
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .3s, transform .3s var(--ease);
}
.rev-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.rev-top { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-3); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--font-head); font-weight: 700; color: var(--gold-ink);
  background: var(--grad-gold); font-size: 1.05rem;
}
.rev-meta { line-height: 1.2; min-width: 0; }
.rev-meta .nm { font-weight: 600; font-family: var(--font-head); font-size: .98rem; }
.rev-meta .src { font-size: .76rem; color: var(--dim); display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.rev-stars { color: var(--gold); letter-spacing: 1px; font-size: .9rem; }
.rev-card p { color: var(--muted); font-size: .94rem; line-height: 1.6; }
.rev-time { display: block; font-size: .74rem; color: var(--dim); margin-top: var(--s-3); }

/* ===========================================================
   CONTATTI
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.loc-cards { display: grid; gap: var(--s-4); }
.loc-card { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.loc-map { position: relative; display: block; aspect-ratio: 16/8; overflow: hidden; background: var(--surface-2); }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.18) contrast(1.04); }
.loc-info { padding: var(--s-5); }
.loc-info .tag { font-family: var(--font-wide); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.loc-info h3 { font-size: 1.18rem; margin: 6px 0; display: flex; align-items: center; gap: 8px; }
.loc-info .addr { color: var(--muted); font-size: .95rem; display: flex; gap: 8px; }
.loc-info .addr svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.dir-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s-4); font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--gold); padding: 9px 16px; border: 1px solid rgba(232,199,102,.35); border-radius: var(--r-pill); transition: .25s var(--ease); }
.dir-btn svg { width: 16px; height: 16px; }
.dir-btn:hover { background: var(--grad-gold); color: var(--gold-ink); border-color: transparent; transform: translateY(-2px); }

/* opening hours */
.hours-card { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-5); }
.hours-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: var(--s-3); }
.hours-head h3 { font-size: 1.12rem; }
.open-badge { font-family: var(--font-head); font-weight: 600; font-size: .76rem; padding: 5px 12px; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 7px; }
.nav-open-badge { font-size: .72rem; padding: 4px 10px; }
.open-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.open-badge.is-open { color: var(--ok); background: rgba(95,191,151,.12); }
.open-badge.is-closed { color: var(--err); background: rgba(239,111,99,.12); }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--muted); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { color: var(--text); }
.hours-list li .closed { color: var(--dim); }
.hours-list li.today span:first-child { color: var(--gold); font-weight: 700; }
.hours-list li.today span:last-child { color: var(--gold-1); }

/* socials */
.socials { display: flex; align-items: center; gap: 12px; margin-top: var(--s-5); }
.socials-label { font-size: .82rem; color: var(--dim); margin-right: 2px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 12px; display: grid; place-items: center; color: var(--muted); transition: .25s var(--ease); }
.socials a svg { width: 20px; height: 20px; }
.socials a:hover { color: var(--gold-ink); background: var(--grad-gold); border-color: transparent; transform: translateY(-2px); }

/* contact panel / form */
.contact-panel { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px,3.5vw,40px); }
.contact-quick { display: grid; gap: 10px; margin-bottom: var(--s-5); }
.qrow { display: flex; align-items: center; gap: var(--s-4); padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r); transition: .25s var(--ease); }
.qrow:hover { border-color: var(--gold); transform: translateX(3px); }
.qrow .qi { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-gold-soft); border: 1px solid rgba(232,199,102,.25); display: grid; place-items: center; flex-shrink: 0; }
.qrow .qi svg { width: 20px; height: 20px; color: var(--gold); }
.qrow .ql { font-size: .74rem; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; }
.qrow .qv { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }

.form-divider { display: flex; align-items: center; gap: 14px; color: var(--dim); font-size: .8rem; margin: var(--s-5) 0; }
.form-divider::before, .form-divider::after { content:""; height:1px; flex:1; background: var(--line); }

.field { margin-bottom: var(--s-4); }
.field label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.field label .req { color: var(--gold); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,199,102,.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-note { font-size: .78rem; color: var(--dim); margin-top: var(--s-3); text-align: center; }
.form-status { font-size: .9rem; margin-top: var(--s-3); text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--ok); } .form-status.err { color: var(--err); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: var(--s-8) var(--s-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); }
.footer .brand img { height: 56px; }
.footer-about p { color: var(--muted); font-size: .92rem; margin-top: var(--s-4); max-width: 34ch; }
.footer h4 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-4); }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer ul span { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: var(--s-7); padding-top: var(--s-5); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3); color: var(--dim); font-size: .82rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================================================
   STICKY WHATSAPP / FABs
   =========================================================== */
.fab-wrap { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px; border-radius: var(--r-pill);
  box-shadow: var(--sh-3); cursor: pointer; font-weight: 700; font-family: var(--font-head);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.fab svg { width: 26px; height: 26px; }
.fab .fab-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .35s var(--ease), margin .35s; font-size: .92rem; }
.fab:hover { transform: translateY(-3px) scale(1.03); }
.fab:hover .fab-label { max-width: 180px; }
.fab--wa { background: #25d366; color: #06351b; }
.fab--wa { animation: fabpulse 2.6s ease-out infinite; }
@keyframes fabpulse { 0%{ box-shadow: var(--sh-3), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: var(--sh-3), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: var(--sh-3), 0 0 0 0 rgba(37,211,102,0);} }
.fab--call { background: var(--surface-3); color: var(--text); border: 1px solid var(--line-2); display: none; }

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(8,8,10,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; padding: calc(var(--nav-h) + 24px) 28px 40px;
  transform: translateY(-100%); transition: transform .45s var(--ease); visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.6rem; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-menu a:active { color: var(--gold); }
.mobile-menu .mm-actions { margin-top: auto; display: grid; gap: 12px; }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].is-visible { transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-stagger].is-visible > * { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(1){ transition-delay:.05s }
[data-stagger].is-visible > *:nth-child(2){ transition-delay:.12s }
[data-stagger].is-visible > *:nth-child(3){ transition-delay:.19s }
[data-stagger].is-visible > *:nth-child(4){ transition-delay:.26s }
[data-stagger].is-visible > *:nth-child(5){ transition-delay:.33s }
[data-stagger].is-visible > *:nth-child(6){ transition-delay:.40s }
[data-stagger].is-visible > *:nth-child(7){ transition-delay:.47s }
[data-stagger].is-visible > *:nth-child(8){ transition-delay:.54s }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px){
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .rev-grid { columns: 2; }
}
@media (max-width: 900px){
  .nav-links { display: none; }
  .burger { display: block; }
  .lang { display: none; }            /* lang available inside mobile menu */
  .nav-open-badge { display: none; }
  .storia-grid, .officina-grid, .contact-grid { grid-template-columns: 1fr; }
  .officina-media { max-width: 460px; }
  .storia-media { max-width: 460px; margin-inline: auto; }
  .pillars { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  body { font-size: 1rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .rev-grid { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab--call { display: inline-flex; }
  .hero-trust { gap: 12px 18px; }
  .rev-head { flex-direction: column; align-items: stretch; }
  .brand-name { display: none; }
}

/* ===========================================================
   COOKIE BANNER
   =========================================================== */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 20px; display: flex; align-items: center; gap: 16px; max-width: 600px; width: calc(100% - 32px); box-shadow: 0 8px 32px rgba(0,0,0,.5); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.5; }
.cookie-banner a { color: var(--gold); }
.footer-privacy-link { color: var(--muted); font-size: .83rem; text-decoration: none; margin-left: 8px; }
.footer-privacy-link:hover { color: var(--gold); }

/* ===========================================================
   REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .fab--wa { animation: none; }
}
