:root{
  --navy:#38352F;
  --navy-2:#38352F;
  --navy-3:#38352F;
  --navy-text:#B7B2A6;
  --gold:#F0BE28;
  --gold-deep:#C99A12;
  --paper:#DEDFDC;
  --paper-2:#E9EAE7;
  --ink:#12181F;
  --ink-soft:#4B535C;
  --white:#FFFFFF;
  --line-dark:rgba(255,255,255,0.12);
  --line-light:rgba(0,0,0,0.14);
  --radius:6px;
  --maxw:1200px;
  --ff-display:'Oswald', sans-serif;
  --ff-body:'Inter', sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} }

body{
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font:inherit; cursor:pointer; background:none; border:none; color:inherit;}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

.eyebrow{
  font-family:var(--ff-display);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.eyebrow.on-dark{color:var(--gold);}

h1,h2,h3{
  font-family:var(--ff-display);
  font-weight:700;
  letter-spacing:0.01em;
  line-height:1.06;
  text-transform:uppercase;
}

.icon{width:22px; height:22px; stroke:currentColor; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round;}

/* ---------- HEADER ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(56,53,47,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-dark);
}
.header-row{ display:flex; align-items:center; justify-content:space-between; height:78px; gap:24px; }
.logo{ display:flex; align-items:center; }
.logo img{ height:52px; width:auto; display:block; transition:filter .2s ease, transform .2s ease; }
.logo:hover img{ filter:drop-shadow(0 0 10px rgba(240,190,40,0.55)); }

nav.primary{ display:flex; align-items:center; gap:34px; }
nav.primary a{
  font-family:var(--ff-display); font-size:14px; font-weight:500; letter-spacing:0.04em;
  text-transform:uppercase; color:var(--navy-text); transition:color .15s ease;
}
nav.primary a:hover{ color:var(--white); }

/* ---------- PACCHETTI DROPDOWN (desktop) ---------- */
.nav-item{ position:relative; }
.nav-item a.has-dropdown{ display:flex; align-items:center; gap:6px; }
.nav-item a.has-dropdown::after{
  content:''; width:7px; height:7px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
  transform:rotate(45deg); margin-top:-3px; transition:transform .2s ease;
}
.nav-item:hover a.has-dropdown::after{ transform:rotate(225deg); margin-top:3px; }

.nav-dropdown{
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(6px);
  width:300px; background:var(--navy-2); border:1px solid var(--line-dark); border-radius:var(--radius);
  padding:18px 20px; margin-top:14px;
  box-shadow:0 20px 44px rgba(0,0,0,0.38);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:40;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown{
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
}

.pkg-row{ display:flex; justify-content:space-between; align-items:flex-start; gap:14px; padding:11px 0; border-bottom:1px solid var(--line-dark); }
.pkg-row:first-child{ padding-top:0; }
.pkg-row:last-of-type{ border-bottom:none; }
.pkg-name{ font-family:var(--ff-display); font-size:13px; letter-spacing:0.03em; text-transform:uppercase; color:var(--white); }
.pkg-desc{ font-family:var(--ff-body); text-transform:none; font-size:11.5px; color:var(--navy-text); margin-top:3px; line-height:1.4; }
.pkg-price{ font-family:var(--ff-display); font-size:13px; color:var(--gold); white-space:nowrap; }
.nav-dropdown-note{ font-family:var(--ff-body); text-transform:none; font-size:10.5px; color:var(--navy-text); opacity:0.8; margin-top:12px; font-style:italic; }
.nav-dropdown-cta{
  display:block; margin-top:14px; font-family:var(--ff-display); font-size:12px; letter-spacing:0.04em;
  text-transform:uppercase; color:var(--gold); text-align:center; padding-top:12px; border-top:1px solid var(--line-dark);
}
.nav-dropdown-cta:hover{ color:var(--white); }

/* ---------- PACCHETTI (mobile accordion) ---------- */
.mobile-pkg-toggle{
  width:100%; display:flex; justify-content:space-between; align-items:center;
  font-family:var(--ff-display); font-size:28px; font-weight:600; text-transform:uppercase;
  color:var(--white); padding:14px 0; border-bottom:1px solid var(--line-dark); text-align:left;
}
.mobile-pkg-chevron{ width:12px; height:12px; border-right:2px solid var(--gold); border-bottom:2px solid var(--gold); transform:rotate(45deg); transition:transform .2s ease; }
.mobile-pkg.open .mobile-pkg-chevron{ transform:rotate(225deg); }
.mobile-pkg-panel{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.mobile-pkg.open .mobile-pkg-panel{ max-height:400px; padding:14px 0 4px; }
.mobile-pkg .pkg-name{ font-size:15px; }
.mobile-pkg .pkg-desc{ font-size:12.5px; }
.mobile-pkg .pkg-price{ font-size:14px; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.phone-group{ display:flex; align-items:center; gap:10px; }
.phone-link{
  display:flex; align-items:center; gap:7px;
  font-family:var(--ff-display); font-size:15px; font-weight:600; letter-spacing:0.03em;
  color:var(--gold); white-space:nowrap; transition:color .15s ease;
}
.phone-link .icon{ width:17px; height:17px; }
.phone-link:hover{ color:var(--white); }

.whatsapp-link{
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line-dark); color:var(--white);
  transition:border-color .15s ease, color .15s ease;
}
.whatsapp-link:hover{ border-color:#25D366; color:#25D366; }
.whatsapp-link .icon{ width:19px; height:19px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--ff-display); font-weight:600; font-size:13.5px; letter-spacing:0.05em; text-transform:uppercase;
  padding:13px 24px; border-radius:var(--radius);
  border:1px solid transparent; white-space:nowrap;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary{ background:var(--gold); color:var(--navy); }
.btn-primary:hover{ background:var(--gold-deep); transform:translateY(-1px); }
.btn-outline{ border-color:var(--line-dark); color:var(--white); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }
.btn-sm{ padding:11px 20px; font-size:12.5px; }

.menu-toggle{ display:none; width:34px; height:34px; align-items:center; justify-content:center; position:relative; }
@media (max-width:900px){
  nav.primary, .phone-group, .header-actions .btn-primary{ display:none; }
  .menu-toggle{ display:flex; }
}

.mobile-nav{
  position:fixed; top:-100%; left:0; right:0; height:100vh; height:100dvh; z-index:60; background:var(--navy);
  display:flex; flex-direction:column; padding:28px 28px 40px; overflow-y:auto;
  transition:top .35s cubic-bezier(.6,0,.2,1);
}
.mobile-nav.open{ top:0; }
body.menu-open{ overflow:hidden; }
.mobile-nav-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:48px; }
.mobile-nav-top img{ height:44px; width:auto; max-width:none; flex:0 0 auto; object-fit:contain; }
.mobile-nav a{
  font-family:var(--ff-display); font-size:28px; font-weight:600; text-transform:uppercase;
  color:var(--white); padding:14px 0; border-bottom:1px solid var(--line-dark);
}
.mobile-nav .contact-block{ margin-top:auto; font-family:var(--ff-body); font-size:13.5px; color:var(--navy-text); line-height:1.9; }
.mobile-contact-actions{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.mobile-contact-actions .phone-link{ font-size:16px; }
.close-btn{ width:34px; height:34px; color:var(--white); position:relative; }
.close-btn span{ position:absolute; top:50%; left:50%; width:22px; height:1.5px; background:currentColor; }
.close-btn span:first-child{ transform:translate(-50%,-50%) rotate(45deg); }
.close-btn span:last-child{ transform:translate(-50%,-50%) rotate(-45deg); }
.burger{ width:22px; height:14px; position:relative; color:var(--white); }
.burger span{ position:absolute; left:0; width:100%; height:1.6px; background:currentColor; }
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:50%; transform:translateY(-50%); }
.burger span:nth-child(3){ bottom:0; }

/* ---------- HERO ---------- */
.hero{ background:var(--navy); color:var(--white); padding:64px 0 0; }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center; }
.hero h1{ font-size:clamp(32px,4.6vw,52px); margin:16px 0 4px; color:var(--white); }
.hero h1 .accent{ color:var(--gold); display:block; }
.hero p.lead{ font-family:var(--ff-body); font-size:16px; color:var(--navy-text); max-width:42ch; margin:20px 0 34px; text-transform:none; }

.hero-values{ display:flex; gap:0; margin-bottom:28px; }
.hero-value{ flex:1; padding-right:20px; }
.hero-value:not(:last-child){ border-right:1px solid var(--line-dark); margin-right:20px; }
.hero-value .icon{ color:var(--gold); margin-bottom:12px; }
.hero-value .label{ font-family:var(--ff-display); font-size:13px; font-weight:600; letter-spacing:0.06em; color:var(--gold); text-transform:uppercase; margin-bottom:6px; }
.hero-value p{ font-size:12.5px; color:var(--navy-text); line-height:1.5; }

.hero-pkg-card{
  background:var(--navy-2); border:1px solid var(--gold-deep); border-radius:var(--radius);
  padding:32px 30px;
}
.hero-pkg-card h3{ color:var(--white); font-size:22px; margin:8px 0 22px; text-transform:uppercase; }
.hero-pkg-card .pkg-row{ padding:13px 0; }
.hero-pkg-card .pkg-name{ font-size:14.5px; }
.hero-pkg-card .pkg-desc{ font-size:12.5px; }
.hero-pkg-card .pkg-price{ font-size:14.5px; }
.quote-card{
  position:absolute; right:20px; bottom:20px; left:20px;
  background:rgba(56,53,47,0.82); backdrop-filter:blur(6px);
  border:1px solid var(--line-dark); border-radius:var(--radius);
  padding:18px 20px;
}
.quote-card .mark{ color:var(--gold); font-family:var(--ff-display); font-size:26px; line-height:1; margin-bottom:6px; }
.quote-card p{ font-family:var(--ff-body); font-size:14.5px; text-transform:none; color:var(--white); line-height:1.4; }

@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .hero-values{ flex-direction:column; gap:18px; }
  .hero-value{ border-right:none !important; margin-right:0 !important; padding-right:0; }
}

.bion-bar{
  background:var(--navy); border-top:1px solid var(--line-dark); padding:22px 0; margin-top:44px;
}
.bion-bar p{
  text-align:center; font-family:var(--ff-display); font-weight:600; letter-spacing:0.04em;
  text-transform:uppercase; font-size:clamp(13px,1.6vw,16px); color:var(--white);
}
.bion-bar p span{ color:var(--gold); }

/* ---------- MOTTO BANNER ---------- */
.motto-banner{
  position:relative; background-image:url("../images/motto-banner.jpg");
  background-size:cover; background-position:center;
  padding:110px 24px;
}
.motto-banner::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 80% at 50% 50%, rgba(56,53,47,0.72), rgba(56,53,47,0.58) 60%, rgba(56,53,47,0.5));
}
.motto-inner{ position:relative; max-width:920px; margin:0 auto; text-align:center; }
.motto-mark{ font-family:var(--ff-display); color:var(--gold); font-size:52px; line-height:1; margin-bottom:10px; }
.motto-inner p{
  font-family:var(--ff-display); font-weight:600; text-transform:uppercase;
  color:var(--white); letter-spacing:0.01em; line-height:1.32;
  font-size:clamp(22px, 3.4vw, 40px);
}
.motto-rule{ width:64px; height:2px; background:var(--gold); margin:26px auto 0; }
@media (max-width:640px){ .motto-banner{ padding:76px 20px; } .motto-mark{ font-size:40px; } }

/* ---------- CHI SIAMO ---------- */
.chi-siamo{ background:var(--paper-2); padding:84px 0; border-bottom:1px solid var(--line-light); }
.chi-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:start; }
.chi-intro h2{ font-size:clamp(26px,3.2vw,38px); color:var(--ink); margin:14px 0 32px; max-width:15ch; }
.chi-facts{ display:flex; flex-direction:column; border-top:1px solid var(--line-light); }
.chi-facts li{ display:flex; align-items:baseline; justify-content:space-between; gap:18px; padding:14px 0; border-bottom:1px solid var(--line-light); }
.chi-fact-num{ font-family:var(--ff-display); font-weight:700; font-size:20px; text-transform:uppercase; color:var(--ink); letter-spacing:0.01em; white-space:nowrap; }
.chi-fact-lbl{ font-family:var(--ff-body); font-size:12.5px; color:var(--ink-soft); text-align:right; }
.chi-text{ display:flex; flex-direction:column; gap:18px; padding-top:8px; }
.chi-text p{ font-family:var(--ff-body); font-size:16px; line-height:1.7; color:var(--ink-soft); text-transform:none; max-width:60ch; }
.chi-text p:first-child{ font-size:18px; color:var(--ink); }
.chi-text .chi-closing{
  font-family:var(--ff-display); font-weight:600; font-size:19px; text-transform:uppercase; color:var(--ink);
  letter-spacing:0.01em; line-height:1.3; padding-left:18px; border-left:3px solid var(--gold); margin-top:8px;
}
@media (max-width:900px){ .chi-siamo{ padding:64px 0; } .chi-grid{ grid-template-columns:1fr; gap:36px; } .chi-intro h2{ max-width:none; } }

/* ---------- METODO (light band) ---------- */
.metodo{ background:var(--paper); padding:72px 0; }
.metodo-head{ text-align:center; margin-bottom:44px; }
.metodo-head h2{ font-size:clamp(24px,3vw,32px); color:var(--ink); }
.metodo-head p{ font-family:var(--ff-body); text-transform:none; color:var(--ink-soft); margin-top:12px; font-size:15px; }

.metodo-row{ display:flex; align-items:flex-start; justify-content:center; gap:0; flex-wrap:wrap; }
.metodo-step{ width:150px; text-align:center; padding:0 6px; }
.metodo-step .num{ font-family:var(--ff-display); font-size:13px; font-weight:700; color:var(--gold-deep); margin-bottom:10px; }
.metodo-step .icon-circle{
  width:64px; height:64px; border-radius:50%; border:1.5px solid var(--ink);
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px;
  background:var(--paper-2);
}
.metodo-step .icon-circle .icon{ color:var(--ink); width:26px; height:26px; }
.metodo-step h3{ font-size:13.5px; letter-spacing:0.02em; margin-bottom:8px; color:var(--ink); }
.metodo-step p{ font-family:var(--ff-body); text-transform:none; font-size:12.5px; color:var(--ink-soft); line-height:1.45; }
.metodo-arrow{ color:var(--gold-deep); width:26px; align-self:center; margin-top:32px; opacity:0.8; }
.metodo-arrow svg{ width:100%; height:16px; }

.metodo-foot{ text-align:center; margin-top:44px; font-family:var(--ff-body); text-transform:none; color:var(--ink-soft); font-size:14.5px; }

@media (max-width:900px){ .metodo-arrow{ display:none; } .metodo-step{ width:30%; margin-bottom:28px; } }
@media (max-width:560px){ .metodo-step{ width:100%; max-width:280px; } }

/* ---------- SERVIZI (navy) ---------- */
.servizi{ background:var(--navy); color:var(--white); padding:80px 0; }
.servizi-head{ margin-bottom:48px; max-width:640px; }
.servizi-head h2{ font-size:clamp(24px,3vw,32px); color:var(--white); }
.servizi-head p{ font-family:var(--ff-body); text-transform:none; color:var(--navy-text); margin-top:12px; font-size:15px; }

.servizi-grid{ display:grid; grid-template-columns:1.05fr 0.85fr 1fr; gap:32px; align-items:start; }
@media (max-width:1000px){ .servizi-grid{ grid-template-columns:1fr; } }

.servizi-col{ display:flex; flex-direction:column; gap:34px; }
.servizi-cat .cat-head{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.servizi-cat .cat-head .icon{ color:var(--gold); width:26px; height:26px; }
.servizi-cat h3{ font-size:16.5px; letter-spacing:0.03em; color:var(--white); }
.servizi-cat ul{ display:flex; flex-direction:column; gap:8px; padding-left:2px; }
.servizi-cat li{ font-family:var(--ff-body); font-size:14px; color:var(--navy-text); padding-left:16px; position:relative; }
.servizi-cat li::before{ content:'—'; position:absolute; left:0; color:var(--gold-deep); }

.cta-card{
  background:var(--navy-2); border:1px solid var(--gold-deep); border-radius:var(--radius);
  padding:32px 26px; text-align:center;
}
.cta-card .icon-circle{
  width:58px; height:58px; border-radius:50%; border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
}
.cta-card .icon-circle .icon{ color:var(--gold); }
.cta-card h3{ font-size:17px; color:var(--gold); margin-bottom:14px; line-height:1.25; }
.cta-card p{ font-family:var(--ff-body); text-transform:none; font-size:13.5px; color:var(--navy-text); margin-bottom:22px; line-height:1.5; }

.perche-col h3{ font-size:16.5px; color:var(--white); margin-bottom:18px; letter-spacing:0.03em; }
.perche-check{ display:flex; flex-direction:column; gap:14px; }
.perche-check li{ display:flex; gap:12px; align-items:flex-start; font-family:var(--ff-body); font-size:14px; color:var(--navy-text); }
.perche-check .icon{ color:var(--gold); width:19px; height:19px; flex-shrink:0; margin-top:2px; }

/* ---------- GALLERY ---------- */
/* ---------- CAROUSEL ---------- */
.carousel-section{ background:var(--navy); padding:80px 0 68px; }
.carousel-head{ margin-bottom:36px; }
.carousel-head h2{ font-size:clamp(22px,2.8vw,30px); color:var(--white); }
.carousel-head p{ font-family:var(--ff-body); text-transform:none; color:var(--navy-text); margin-top:10px; font-size:14.5px; }

.carousel{ position:relative; max-width:900px; margin:0 auto; padding:0 58px; outline:none; }
.car-viewport{ overflow:hidden; border-radius:var(--radius); }
.car-track{ display:flex; transition:transform .5s cubic-bezier(.65,0,.24,1); }
.car-slide{ min-width:100%; position:relative; aspect-ratio:16/10; background:var(--navy-2); overflow:hidden; }
.car-slide img{ width:100%; height:100%; object-fit:contain; display:block; position:relative; }
/* sfondo sfocato della stessa foto: le foto verticali riempiono il riquadro senza tagli */
.car-slide .car-bg{ position:absolute; inset:0; object-fit:cover; filter:blur(28px) brightness(.55) saturate(.8); transform:scale(1.15); }
@media (max-width:640px){ .car-slide{ aspect-ratio:4/5; } }
.car-caption{
  position:absolute; left:0; right:0; bottom:0; padding:26px 26px 18px;
  background:linear-gradient(0deg, rgba(56,53,47,0.88), rgba(56,53,47,0.35) 65%, transparent);
}
.car-caption .num{ font-family:var(--ff-display); font-size:11px; letter-spacing:0.1em; color:var(--gold); text-transform:uppercase; margin-bottom:4px; }
.car-caption .ttl{ font-family:var(--ff-display); font-size:17px; letter-spacing:0.02em; text-transform:uppercase; color:var(--white); }

.car-btn{
  position:absolute; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:50%;
  background:rgba(56,53,47,0.65); border:1px solid var(--line-dark); color:var(--white);
  display:flex; align-items:center; justify-content:center; z-index:5; cursor:pointer;
  transition:border-color .15s ease, color .15s ease, background .15s ease;
}
.car-btn:hover{ border-color:var(--gold); color:var(--gold); }
.car-btn.prev{ left:0; }
.car-btn.next{ right:0; }
.car-btn svg{ width:18px; height:18px; }

.car-dots{ display:flex; justify-content:center; gap:10px; margin-top:24px; }
.car-dot{ width:8px; height:8px; padding:0; border-radius:50%; background:var(--line-dark); cursor:pointer; appearance:none; transition:background .2s ease, transform .2s ease; }
.car-dot.active{ background:var(--gold); transform:scale(1.25); }

@media (max-width:640px){
  .carousel{ padding:0 44px; }
  .car-btn{ width:36px; height:36px; }
  .car-caption{ padding:20px 18px 14px; }
}

/* ---------- PROBLEMI ---------- */
.problemi{ display:grid; grid-template-columns:1.15fr 0.85fr; }
.problemi-left{ background:var(--paper); padding:64px 44px; }
.problemi-left h2{ font-size:clamp(20px,2.4vw,26px); color:var(--ink); margin-bottom:30px; }
.problemi-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-bottom:26px; }
.problema{ text-align:center; }
.problema .icon-circle{
  width:56px; height:56px; border-radius:50%; border:1.5px solid var(--ink);
  display:flex; align-items:center; justify-content:center; margin:0 auto 10px;
}
.problema .icon-circle .icon{ color:var(--ink); width:24px; height:24px; }
.problema p{ font-family:var(--ff-display); font-size:12px; font-weight:600; letter-spacing:0.02em; text-transform:uppercase; color:var(--ink); line-height:1.3; }
.problemi-left > p.note{ font-family:var(--ff-body); text-transform:none; color:var(--ink-soft); font-size:14px; }

.problemi-right{ background:var(--navy-2); color:var(--white); padding:64px 44px; display:flex; flex-direction:column; justify-content:center; }
.problemi-right h2{ font-size:clamp(20px,2.4vw,26px); color:var(--gold); margin-bottom:18px; }
.problemi-right p.lead2{ font-family:var(--ff-body); text-transform:none; color:var(--navy-text); font-size:14.5px; margin-bottom:24px; }
.contact-line{ display:flex; align-items:center; gap:12px; margin-bottom:14px; font-family:var(--ff-display); font-size:16px; letter-spacing:0.02em; }
.contact-line .icon{ color:var(--gold); width:20px; height:20px; }
.contact-line-link{ display:flex; align-items:center; gap:12px; color:inherit; }
.problemi-right .btn{ margin-top:14px; align-self:flex-start; }

@media (max-width:900px){
  .problemi{ grid-template-columns:1fr; }
  .problemi-left, .problemi-right{ padding:52px 24px; }
  .problemi-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- FAQ ---------- */
.faq{ background:var(--paper); padding:88px 0; }
.faq-head{ max-width:620px; margin-bottom:40px; }
.faq-head h2{ font-size:clamp(22px,2.8vw,30px); color:var(--ink); }
.faq-list{ border-top:1px solid var(--line-light); }
.faq-item{ border-bottom:1px solid var(--line-light); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:24px 0; font-family:var(--ff-display); font-size:15.5px; font-weight:600; text-align:left;
  text-transform:none; letter-spacing:0.01em; color:var(--ink);
}
.faq-q .toggle{ position:relative; width:16px; height:16px; flex-shrink:0; margin-left:20px; }
.faq-q .toggle::before, .faq-q .toggle::after{ content:''; position:absolute; background:var(--ink); top:50%; left:50%; transform:translate(-50%,-50%); }
.faq-q .toggle::before{ width:14px; height:1.6px; }
.faq-q .toggle::after{ width:1.6px; height:14px; transition:transform .25s ease; }
.faq-item.open .toggle::after{ transform:translate(-50%,-50%) rotate(90deg); scale:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item.open .faq-a{ max-height:220px; }
.faq-a p{ padding-bottom:24px; color:var(--ink-soft); font-size:14.5px; max-width:60ch; font-family:var(--ff-body); }

/* ---------- CONTACT ---------- */
.contact-section{ background:var(--navy); color:var(--white); }
.contact-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; }
.contact-info{ padding:80px 48px 80px 0; }
.contact-info h2{ font-size:clamp(22px,2.8vw,28px); margin:14px 0 28px; color:var(--white); }
.info-rows{ display:flex; flex-direction:column; gap:22px; margin-bottom:36px; }
.info-row{ display:flex; gap:16px; }
.info-row .icon{ width:19px; height:19px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.info-row .label{ font-family:var(--ff-display); font-size:11px; color:var(--navy-text); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:4px; }
.info-row .val{ font-family:var(--ff-body); font-size:14.5px; }
.info-row-phone{ display:flex; align-items:center; gap:10px; }

.map-link{ transition:color .15s ease; }
.map-link:hover{ color:var(--gold); }
.map-link:hover .map-cta{ text-decoration:underline; }
.map-cta{ display:block; margin-top:6px; font-family:var(--ff-display); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); }
.contact-block .map-link:hover{ color:var(--white); }
.social-row{ display:flex; gap:14px; }
.social-row a{
  width:38px; height:38px; border:1px solid var(--line-dark); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition:border-color .15s ease, color .15s ease;
}
.social-row a:hover{ border-color:var(--gold); color:var(--gold); }
.social-row .icon{ width:16px; height:16px; }

.contact-form{ background:var(--paper); padding:80px 48px; color:var(--ink); }
.contact-form h2{ color:var(--ink); font-size:22px; margin:14px 0 28px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-family:var(--ff-display); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-soft); }
.field input, .field textarea{
  font-family:var(--ff-body); font-size:14.5px; padding:13px 14px;
  border:1px solid var(--line-light); background:var(--white); border-radius:4px;
  color:var(--ink); transition:border-color .15s ease;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--gold-deep); }
.field.full{ grid-column:1 / -1; }
textarea{ resize:vertical; min-height:110px; }
.form-foot{ display:flex; align-items:center; gap:18px; margin-top:8px; flex-wrap:wrap; }
.form-success{ font-size:13.5px; color:var(--gold-deep); display:none; font-family:var(--ff-body); }
.form-success.show{ display:inline; }
.form-error{ font-size:13.5px; color:#c0392b; display:none; font-family:var(--ff-body); }
.form-error.show{ display:inline; }
.hp-field{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
#quoteForm button[disabled]{ opacity:.6; cursor:progress; }

@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; }
  .contact-info{ padding:64px 0 48px; }
  .contact-form{ padding:48px 0 64px; }
  .form-row{ grid-template-columns:1fr; }
}

/* ---------- FOOTER BAR ---------- */
footer{ background:var(--paper-2); color:var(--ink); padding:20px 0; }
.footer-row{ display:flex; align-items:center; justify-content:center; gap:28px; flex-wrap:wrap; text-align:center; }
.footer-item{ display:flex; align-items:center; gap:8px; font-family:var(--ff-display); font-size:12px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; color:var(--ink); }
.footer-item .icon{ width:15px; height:15px; color:var(--gold-deep); }
.footer-item.brand{ color:var(--ink); }

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- ACCESSIBILITÀ ---------- */
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }
.field input:focus-visible, .field textarea:focus-visible{ outline:2px solid var(--gold); outline-offset:2px; }
:target, [id]{ scroll-margin-top:96px; }
.skip-link{ position:absolute; left:-9999px; top:0; z-index:200; background:var(--gold); color:var(--navy);
  padding:10px 16px; font-family:var(--ff-display); font-weight:600; font-size:13px; text-transform:uppercase; }
.skip-link:focus{ left:8px; top:8px; }

/* ---------- CONSENSO PRIVACY NEL FORM ---------- */
.form-consent{ display:flex; align-items:flex-start; gap:10px; margin:6px 0 4px; font-family:var(--ff-body);
  font-size:12.5px; color:var(--navy-text); text-transform:none; line-height:1.5; }
.form-consent input{ margin-top:2px; width:16px; height:16px; flex-shrink:0; accent-color:var(--gold); }
.form-consent a{ color:var(--gold); text-decoration:underline; text-underline-offset:2px; }

/* ---------- FOOTER: riga legale ---------- */
footer a.footer-item{ text-decoration:none; transition:color .15s ease; }
footer a.footer-item:hover{ color:var(--gold-deep); }
.footer-legal{ margin-top:14px; text-align:center; font-family:var(--ff-body); font-size:11.5px;
  color:var(--ink); opacity:.65; text-transform:none; }

/* ---------- PAGINE LEGALI (privacy.html) ---------- */
.legal{ background:var(--paper); color:var(--ink); padding:56px 0 72px; }
.legal-wrap{ max-width:760px; }
.legal h1{ color:var(--ink); margin:6px 0 10px; }
.legal-lead{ font-family:var(--ff-body); text-transform:none; color:#555; font-size:15px; line-height:1.6; margin-bottom:32px; }
.legal h2{ font-size:18px; margin:30px 0 8px; color:var(--ink); }
.legal p, .legal li{ font-family:var(--ff-body); text-transform:none; font-size:14.5px; line-height:1.7; color:#3a3a37; }
.legal ul{ margin:8px 0 8px 20px; display:flex; flex-direction:column; gap:6px; }
.legal a{ color:var(--gold-deep); text-decoration:underline; text-underline-offset:2px; }
.legal-updated{ margin-top:32px; font-style:italic; opacity:.7; font-size:13px; }
