/* ============================================================
   Design Project Roma — designprojectroma.it
   Clone statico fedele del sito originale (ex GoHighLevel)
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark-1: #141210;       /* sezioni scure profonde */
  --dark-2: #201d1a;       /* sezioni scure */
  --dark-3: #1a1714;       /* works body */
  --cream: #f9f5ec;        /* sezioni chiare */
  --nav-bg: #fdf9ef;       /* barra di navigazione */
  --copper: #c4703a;       /* accento rame */
  --copper-2: #c17a3a;     /* bordi / faq */
  --ink: #3c2e21;          /* titoli su chiaro */
  --body-brown: #3e352e;   /* testo su chiaro */
  --body-gray: #2a2622;
  --cream-text: #f2ece4;
  --muted-warm: #cfc7bc;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  background: var(--cream);
  color: var(--body-gray);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 24px; }

/* Kicker — etichetta di sezione (stile originale GHL) */
.kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

.h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 500;
}
.h2 em { font-style: italic; color: var(--copper); }

/* Varianti di testo desktop/mobile (come i blocchi desktop-only/mobile-only dell'originale) */
.lbl-mobile { display: none; }

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px 32px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-copper { background: var(--copper); color: #fff; border-color: #fff; }
.btn-copper:hover { background: #a95d2d; }
.btn-outline { background: transparent; color: #f5f5f5; border: 2px solid var(--copper-2); }
.btn-outline:hover { background: rgba(196,112,58,.15); }

/* ============ NAVIGAZIONE ============ */
.site-header {
  background: var(--nav-bg);
  padding: 10px 0;
}
.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { width: 279px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  transition: color .2s;
}
.nav-links a:hover { color: var(--copper); }
.nav-cta { white-space: nowrap; border-radius: 3px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--copper);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('../img/hero-ristrutturazioni-roma.jpg') center/cover no-repeat;
  isolation: isolate;
  padding: 90px 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,12,10,.72) 0%, rgba(15,12,10,.45) 55%, rgba(15,12,10,.25) 100%);
  z-index: -1;
}
.hero-inner { width: 100%; }
.hero-kicker {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
  color: #f6f6ff;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
  max-width: 620px;
  margin-bottom: 26px;
}
.hero-sub {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #faf7f0;
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn { min-width: 260px; padding: 20px 32px; }
.hero-stats {
  margin-top: 90px;
  padding: 34px 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
}
.hero-stat { text-align: center; padding: 0 12px; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.25); }
.hero-stat b {
  display: block;
  font-family: 'Playfair Display SC', 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.hero-stat span {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5f5f5;
}

/* ============ PROBLEMA ============ */
.problema { background: var(--cream); padding: 96px 0; }
.problema-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 72px;
}
.problema-top .h2 { color: var(--ink); }
.problema-top p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-gray);
  padding-top: 14px;
}
.problema-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.problema-card { padding: 0 34px; }
.problema-card + .problema-card { border-left: 1px solid var(--copper-2); }
.problema-card img { width: 40px; height: 40px; margin-bottom: 20px; }
.problema-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px;
}
.problema-card p {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-brown);
}

/* ============ SOLUZIONE ============ */
.soluzione {
  position: relative;
  background: var(--dark-2) url('../img/soluzione-interni-roma.jpg') center/cover no-repeat;
  isolation: isolate;
  padding: 110px 0 120px;
}
.soluzione::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,17,14,.55);
  z-index: -1;
}
.soluzione .h2 { color: var(--cream); max-width: 900px; margin-bottom: 10px; }
.soluzione-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: rgba(249,245,236,.85);
  margin-bottom: 46px;
}
.soluzione-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  background: rgba(15,12,10,.55);
  padding: 40px 34px 26px;
  border-radius: 4px;
}
.soluzione-card {
  border-left: 1px solid rgba(249,245,236,.35);
  border-top: 1px solid rgba(249,245,236,.35);
  padding: 20px 0 10px 20px;
  display: flex;
  flex-direction: column;
}
.soluzione-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
}
.soluzione-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(249,245,236,.88);
  margin-bottom: 34px;
}
.soluzione-card b {
  margin-top: auto;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  color: #b39274;
}

/* ============ CHI SIAMO ============ */
.chi-siamo { background: var(--cream); padding: 100px 0; }
.chi-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.chi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  font-style: italic;
  color: var(--dark-2);
  margin-bottom: 30px;
}
.chi-firma {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-brown);
}
.chi-testo p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* ============ SERVIZI ============ */
.servizi { background: var(--dark-1); padding: 96px 0; }
.servizi .h2 { color: #fff; }
.servizi-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(249,245,236,.8);
  max-width: 680px;
  margin: 16px 0 54px;
}
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.servizio {
  position: relative;
  min-height: 435px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 28px;
}
.servizio > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.servizio:hover > img { transform: scale(1.04); }
.servizio::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(15,12,10,.88) 0%, rgba(15,12,10,.35) 45%, rgba(15,12,10,.08) 75%);
}
.servizio h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.servizio p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(249,245,236,.92);
}

/* ============ PROGETTI / WORKS (codice originale del sito) ============ */
.works {
  padding: 60px;
  background: #201d1a;
  position: relative;
}
.works::before {
  content: '';
  position: absolute;
  top: 0; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,112,58,0.25), transparent);
}
.works-head { padding: 34px 60px 10px; background: #201d1a; }
.works-head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1170px;
  margin: 0 auto;
}
.works-head .h2 { color: var(--cream-text); }
.works-head-grid > p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #9a8a78;
  text-align: right;
}
.works-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.work-featured {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: #231f1b;
  cursor: pointer;
}
.work-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.8);
}
.work-featured:hover img {
  transform: scale(1.04);
  filter: brightness(0.9);
}
.work-side {
  position: relative;
  overflow: hidden;
  min-height: 336px;
  background: #231f1b;
  cursor: pointer;
}
.work-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.75);
}
.work-side:hover img {
  transform: scale(1.05);
  filter: brightness(0.88);
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,18,16,0.92) 0%,
    rgba(20,18,16,0.3) 40%,
    transparent 70%
  );
  z-index: 2;
  transition: background 0.4s;
}
.work-featured:hover .work-overlay,
.work-side:hover .work-overlay {
  background: linear-gradient(
    to top,
    rgba(20,18,16,0.85) 0%,
    rgba(20,18,16,0.2) 50%,
    transparent 70%
  );
}
.work-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 3;
}
.work-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c4703a;
  font-weight: 500;
  margin-bottom: 8px;
  background: rgba(196,112,58,0.1);
  border: 1px solid rgba(196,112,58,0.2);
  padding: 4px 10px;
  font-family: 'Outfit', sans-serif;
}
.work-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #f2ece4;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.2;
}
.work-featured .work-name { font-size: 28px; }
.work-meta {
  font-size: 12px;
  color: #9a8a78;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
}
.work-meta-dot {
  width: 3px;
  height: 3px;
  background: #c4703a;
  border-radius: 50%;
}
.work-count {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: rgba(196,112,58,0.6);
  font-weight: 600;
  z-index: 3;
  letter-spacing: 1px;
}

/* Carosello progetti — versione mobile (come l'originale) */
.works-carousel { display: none; background: #201d1a; padding: 0 20px 10px; }
.wc-main { position: relative; border-radius: 4px; overflow: hidden; }
.wc-main img { width: 100%; aspect-ratio: 710/620; object-fit: cover; }
.wc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(196,112,58,.5);
  background: rgba(20,18,16,.55);
  color: #f2ece4;
  font-size: 20px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.wc-prev { left: 16px; }
.wc-next { right: 16px; }
.wc-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.wc-thumb {
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
}
.wc-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.wc-thumb.active { border-color: var(--copper-2); }
.wc-dots { display: flex; justify-content: center; gap: 8px; margin: 18px 0 8px; }
.wc-dot { width: 8px; height: 8px; border-radius: 4px; background: #4a3a2e; border: none; padding: 0; cursor: pointer; transition: width .25s, background .25s; }
.wc-dot.active { width: 26px; background: var(--copper-2); }

.works-cta { background: #201d1a; text-align: center; padding: 30px 24px 96px; }
.works-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  color: #f2ece4;
  margin-bottom: 30px;
}
.works-cta h3 em { font-style: italic; color: var(--copper); }
.works-cta .btn { letter-spacing: 2px; border-color: transparent; border-radius: 3px; }

/* ============ COME FUNZIONA ============ */
.processo { background: var(--cream); padding: 100px 0; }
.processo .h2 { color: var(--dark-2); font-weight: 700; max-width: 620px; margin-bottom: 64px; font-family: 'Playfair Display', serif; }
.processo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 76px;
}
.step { border-bottom: 1px solid var(--copper-2); padding-bottom: 30px; }
.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 10px;
}
.step p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body-brown);
}

/* ============ FORM / CONTATTI ============ */
.contatti { background: var(--dark-2); padding: 110px 0; }
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.contatti-testo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 26px;
}
.contatti-testo h2 em { font-style: italic; color: var(--copper); }
.contatti-testo p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(249,245,236,.85);
  max-width: 420px;
}
.form-card {
  background: #0d0b09;
  border: 1px solid rgba(196,112,58,.55);
  border-radius: 14px;
  box-shadow: 0 0 34px rgba(196,112,58,.28);
  padding: 38px 36px 30px;
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 6px;
}
.form-note {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(245,245,245,.75);
  margin-bottom: 26px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #b7ab9d;
  margin-bottom: 8px;
}
.form-field input,
.form-field select {
  width: 100%;
  background: #16130f;
  border: 1px solid #2e241a;
  border-radius: 6px;
  color: #f5f0e8;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s;
}
.form-field input::placeholder { color: #6f6355; }
.form-field input:focus,
.form-field select:focus { border-color: var(--copper); }
.form-field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b7ab9d' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit-wrap { text-align: center; margin-top: 8px; }
.form-submit {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--copper-2);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 17px 36px;
  cursor: pointer;
  transition: background .25s;
}
.form-submit:hover { background: #a95d2d; }
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0 14px;
}
.form-consent input { margin-top: 3px; accent-color: var(--copper); width: 16px; height: 16px; flex: none; }
.form-consent span {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: #8d8171;
}
.form-privacy {
  display: block;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #7f97ff;
  text-decoration: underline;
}
.form-feedback {
  display: none;
  margin-top: 16px;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.form-feedback.ok { display: block; background: rgba(78,140,84,.18); border: 1px solid #4e8c54; color: #b9e0bd; }
.form-feedback.err { display: block; background: rgba(160,60,50,.18); border: 1px solid #a03c32; color: #eec2bd; }
.form-feedback a.wa-btn {
  display: inline-block;
  margin-top: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 18px;
}

/* ============ FAQ ============ */
.faq { background: var(--cream); padding: 100px 0; }
.faq-head { text-align: center; margin-bottom: 44px; }
.faq-head .kicker { letter-spacing: 3px; }
.faq-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}
.faq-head p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--body-gray);
}
.faq-list { max-width: 960px; margin: 0 auto; }
.faq-item { margin-bottom: 14px; }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 1px solid var(--copper-2);
  border-radius: 10px;
  padding: 18px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '›';
  font-size: 26px;
  color: var(--body-brown);
  transform: rotate(90deg);
  transition: transform .25s;
  flex: none;
}
.faq-item[open] summary { border-radius: 10px 10px 0 0; }
.faq-item[open] summary::after { transform: rotate(-90deg); }
.faq-item .faq-a {
  background: var(--copper-2);
  border-radius: 0 0 10px 10px;
  padding: 15px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #f5f5f5;
}

/* ============ CTA FINALE ============ */
.cta-finale { background: var(--dark-1); text-align: center; padding: 110px 24px; }
.cta-finale h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}
.cta-finale h2 em { font-style: italic; color: var(--copper); }
.cta-finale > p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(249,245,236,.85);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-actions { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-actions .btn { min-width: 250px; padding: 19px 32px; }
.cta-note {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8d8171;
}

/* ============ FOOTER ============ */
.site-footer { background: #000; color: var(--muted-warm); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-brand h4,
.footer-legal h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}
.footer-brand p, .footer-legal a {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted-warm);
  margin-bottom: 12px;
  display: block;
}
.footer-legal a:hover { color: var(--copper); }
.footer-bottom {
  border-top: 1px solid #221e1a;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #8a8178;
}

/* ============ WHATSAPP FAB ============ */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  z-index: 900;
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }

/* ============ PAGINE LEGALI ============ */
.legal-page { background: var(--cream); padding: 70px 0 90px; }
.legal-page .container { max-width: 860px; }
.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.legal-updated {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--copper);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin: 42px 0 14px;
}
.legal-page h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin: 30px 0 10px;
}
.legal-page p, .legal-page li {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-gray);
  margin-bottom: 14px;
}
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page a { color: var(--copper); text-decoration: underline; }
.legal-page strong { color: var(--ink); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .h2, .chi-quote, .contatti-testo h2, .cta-finale h2 { font-size: 40px; }
  .hero h1 { font-size: 44px; }
  .nav-links { gap: 26px; }
  .nav-logo img { width: 220px; }
  .problema-top, .chi-grid, .contatti-grid { grid-template-columns: 1fr; gap: 40px; }
  .servizi-grid { grid-template-columns: 1fr; }
  .servizio { min-height: 380px; }
  .works-head-grid { grid-template-columns: 1fr; gap: 16px; }
  .works-head-grid > p { text-align: left; }
}

@media (max-width: 860px) {
  .lbl-desktop { display: none; }
  .lbl-mobile { display: inline; }
  /* 16px evita l'auto-zoom di iOS sui campi del form */
  .form-field input, .form-field select { font-size: 16px; }

  .site-header { padding: 6px 0; }
  .nav-wrap { flex-wrap: wrap; position: relative; justify-content: center; }
  .nav-logo { margin: 0 auto; }
  .nav-logo img { width: min(74vw, 540px); }
  .nav-toggle { display: block; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--nav-bg);
    padding: 10px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 13px 0; }
  .nav-cta-li { display: none; }

  .hero { min-height: 86vh; padding-top: 60px; }
  .hero-kicker { font-size: 14px; }
  .hero h1 { font-size: 34px; line-height: 1.35; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .hero-stats { margin-top: 64px; }
  .hero-stat b { font-size: 22px; }
  .hero-stat span { font-size: 12px; letter-spacing: 1px; }

  .problema { padding: 70px 0; }
  .problema-cards { grid-template-columns: 1fr; gap: 40px; }
  .problema-card { padding: 0; }
  .problema-card + .problema-card { border-left: none; border-top: 1px solid var(--copper-2); padding-top: 36px; }

  .soluzione { padding: 80px 0; }
  .soluzione-cards { grid-template-columns: 1fr; padding: 28px 22px 18px; }

  .chi-siamo, .processo, .faq { padding: 70px 0; }
  .chi-quote { font-size: 36px; }

  .servizi { padding: 70px 0; }

  /* Progetti: nascondi griglia, mostra carosello (come l'originale) */
  .works, .works::before { display: none; }
  .works-carousel { display: block; }
  .works-head { padding: 60px 20px 10px; }

  .processo-grid { grid-template-columns: 1fr; gap: 34px; }

  .contatti { padding: 80px 0; }
  .contatti-testo h2 { font-size: 42px; }
  .form-card { padding: 28px 20px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .faq-head h2 { font-size: 36px; }
  .faq-item summary { font-size: 17px; padding: 16px 18px; }

  .cta-finale { padding: 80px 20px; }
  .cta-finale h2 { font-size: 40px; }
  .cta-actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .legal-page h1 { font-size: 32px; }
}
