/* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Source Sans 3', sans-serif;
      background-color: #f5f0e6;
      color: #24211d;
      -webkit-font-smoothing: antialiased;
      background-image:
        radial-gradient(circle at 1px 1px, rgba(36,33,29,0.09) 1px, transparent 0),
        linear-gradient(90deg, rgba(36,33,29,0.035), transparent 22%);
      background-size: 22px 22px, 100% 100%;
    }
    ::selection { background: #b45b35; color: white; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }
    input, textarea, select { font-family: inherit; }
    :focus-visible { outline: 3px solid #b45b35; outline-offset: 3px; }

    /* ===== CONTAINER ===== */
    .container {
      width: 100%;
      max-width: 1320px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    @media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
    @media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

    /* ===== TYPOGRAPHY HELPERS ===== */
    .font-display { font-family: 'Oswald', sans-serif; }
    .section-kicker {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: #b45b35;
    }

    /* ===== BLUEPRINT GRID ===== */
    .blueprint-grid {
      background-image:
        linear-gradient(rgba(245,240,230,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,240,230,0.18) 1px, transparent 1px),
        linear-gradient(rgba(209,118,69,0.18) 2px, transparent 2px),
        linear-gradient(90deg, rgba(209,118,69,0.18) 2px, transparent 2px);
      background-size: 44px 44px, 44px 44px, 176px 176px, 176px 176px;
    }

    /* ===== CONTACT STRIP ===== */
    .contact-strip {
      display: flex;
      align-items: center;
      gap: 1rem;
      border: 2px solid rgba(255,248,235,0.4);
      background: rgba(255,248,235,0.08);
      padding: 1rem;
      font-weight: 600;
      color: #fff8eb;
      transition: transform 0.2s, border-color 0.2s, background 0.2s;
    }
    .contact-strip:hover { transform: translateY(-2px); border-color: #d17645; background: rgba(209,118,69,0.18); }

    /* ===== FIELD LABEL & INPUT ===== */
    .field-label {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #24211d;
    }
    .field-input {
      display: block;
      margin-top: 0.5rem;
      width: 100%;
      border-radius: 0;
      border: 2px solid #24211d;
      background: #f5f0e6;
      padding: 0.75rem 1rem;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: #24211d;
      outline: none;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .field-input::placeholder { color: #7c7164; }
    .field-input:focus { background: white; box-shadow: 0 0 0 2px #b45b35; }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      left: 0; right: 0; top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(36,33,29,0.15);
      background: rgba(245,240,230,0.88);
      backdrop-filter: blur(12px);
    }
    .header-inner {
      display: flex;
      height: 5rem;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .logo-box {
      display: grid;
      place-items: center;
      width: 3rem;
      height: 3rem;
      border: 2px solid #24211d;
      background: #24211d;
      padding: 0.25rem;
      box-shadow: 5px 5px 0 #b45b35;
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .logo-link:hover .logo-box { transform: translateY(-2px); }
    .logo-box svg { width: 100%; height: 100%; }
    .logo-name {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      color: #24211d;
      line-height: 1;
    }
    .logo-sub {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: #6b6257;
    }
    .desktop-nav {
      display: none;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #514b43;
    }
    @media (min-width: 1024px) { .desktop-nav { display: flex; } }
    .desktop-nav a { transition: color 0.2s; }
    .desktop-nav a:hover { color: #b45b35; }
    .btn-sopralluogo {
      display: none;
      flex-shrink: 0;
      border-radius: 0;
      border: 2px solid #24211d;
      background: #b45b35;
      padding: 0.6rem 1.25rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: white;
      box-shadow: 5px 5px 0 #24211d;
      transition: transform 0.2s, background 0.2s;
      cursor: pointer;
    }
    @media (min-width: 1024px) { .btn-sopralluogo { display: inline-flex; } }
    .btn-sopralluogo:hover { transform: translateY(-2px); background: #9b4729; }
    .btn-hamburger {
      display: flex;
      width: 2.75rem;
      height: 2.75rem;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(36,33,29,0.4);
      background: transparent;
      transition: border-color 0.2s;
    }
    @media (min-width: 1024px) { .btn-hamburger { display: none; } }
    .btn-hamburger:hover { border-color: #24211d; }
    .mobile-menu {
      display: none;
      border-top: 1px solid rgba(36,33,29,0.12);
      background: #f5f0e6;
      padding: 0.75rem 1rem 1.25rem;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; }
    .mobile-menu a {
      display: block;
      padding: 0.625rem 0;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #514b43;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: #b45b35; }
    .mobile-menu .btn-mobile-cta {
      margin-top: 0.75rem;
      width: 100%;
      border-radius: 0;
      border: 2px solid #24211d;
      background: #b45b35;
      padding: 0.75rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: white;
      box-shadow: 4px 4px 0 #24211d;
      transition: background 0.2s;
      cursor: pointer;
      display: block;
      text-align: center;
    }
    .mobile-menu .btn-mobile-cta:hover { background: #9b4729; }

    /* ===== HERO ===== */
    .hero-section {
      position: relative;
      min-height: calc(100vh - 5rem);
      border-bottom: 2px solid #24211d;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: #171717;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.7;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(20,19,17,0.94) 0%, rgba(20,19,17,0.76) 34%, rgba(20,19,17,0.20) 68%, rgba(20,19,17,0.08) 100%);
    }
    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      opacity: 0.3;
    }
    .hero-content {
      position: relative;
      display: flex;
      min-height: calc(100vh - 5rem);
      align-items: center;
      padding: 4rem 0;
    }
    .hero-inner { max-width: 48rem; color: #fff8eb; }
    .hero-badge {
      display: inline-flex;
      margin-bottom: 2rem;
      border: 1px solid rgba(255,248,235,0.35);
      background: rgba(255,248,235,0.10);
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: #f2c28f;
      backdrop-filter: blur(4px);
    }
    .hero-h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(3rem, 8vw, 8.5rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.82;
      letter-spacing: -0.06em;
      color: #fff8eb;
    }
    .hero-h1 .accent { display: block; margin-top: 0.75rem; color: #d17645; }
    .hero-p {
      margin-top: 2rem;
      max-width: 40rem;
      font-size: 1.25rem;
      line-height: 2;
      color: #f6ead7;
    }
    @media (min-width: 768px) { .hero-p { font-size: 1.5rem; line-height: 2.25; } }
    .hero-btns { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 0;
      border: 2px solid #f5f0e6;
      background: #f5f0e6;
      padding: 1rem 1.75rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #24211d;
      box-shadow: 7px 7px 0 #b45b35;
      transition: transform 0.2s, background 0.2s;
      cursor: pointer;
    }
    .btn-hero-primary:hover { transform: translateY(-4px); background: white; }
    .btn-hero-outline {
      display: inline-flex;
      align-items: center;
      border-radius: 0;
      border: 2px solid rgba(245,240,230,0.7);
      background: transparent;
      padding: 1rem 1.75rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #f5f0e6;
      transition: background 0.2s, color 0.2s;
    }
    .btn-hero-outline:hover { background: #f5f0e6; color: #24211d; }

    /* ===== PER CHI È PENSATO ===== */
    .perchi-section {
      border-bottom: 2px solid #24211d;
      background: #24211d;
      padding: 4rem 0;
      color: #fff8eb;
    }
    .perchi-grid {
      display: grid;
      gap: 2.5rem;
      align-items: center;
    }
    @media (min-width: 1024px) { .perchi-grid { grid-template-columns: 1fr 1.4fr; } }
    .perchi-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.04em;
    }
    .perchi-quote {
      margin-top: 1.25rem;
      border-left: 4px solid #d17645;
      padding-left: 1rem;
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 2;
      color: #e6d8c3;
    }
    .perchi-list { display: grid; gap: 1rem; }
    @media (min-width: 640px) { .perchi-list { grid-template-columns: 1fr 1fr; } }
    .perchi-item {
      display: flex;
      gap: 1rem;
      border: 2px solid #3a3630;
      background: #2e2a25;
      padding: 1.25rem;
    }
    .perchi-item svg { flex-shrink: 0; margin-top: 0.125rem; color: #d17645; }
    .perchi-item span { font-size: 1rem; line-height: 1.75; color: #e6d8c3; }

    /* ===== CHI SIAMO ===== */
    .servizio-section {
      position: relative;
      border-bottom: 2px solid #24211d;
      background: #fffaf0;
      padding: 6rem 0;
    }
    .servizio-grid {
      display: grid;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) { .servizio-grid { grid-template-columns: 0.9fr 1.1fr; } }
    .servizio-sticky { position: sticky; top: 7rem; }
    .servizio-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.8rem, 6vw, 6.5rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.05em;
    }
    .servizio-p { margin-top: 1.75rem; max-width: 36rem; font-size: 1.125rem; line-height: 2; color: #514b43; }
    .servizio-img-wrap {
      margin-top: 2rem;
      overflow: hidden;
      border: 2px solid #24211d;
      box-shadow: 8px 8px 0 #b45b35;
    }
    .servizio-img-wrap img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
    .team-grid { display: grid; gap: 1.25rem; }
    .team-card {
      display: grid;
      gap: 1.25rem;
      border: 2px solid #24211d;
      background: #f5f0e6;
      padding: 1.75rem;
      box-shadow: 7px 7px 0 #d9c9ae;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    @media (min-width: 768px) { .team-card { grid-template-columns: 5rem 1fr; } }
    .team-card:hover { transform: translateY(-4px); box-shadow: 9px 9px 0 #b45b35; }
    .team-icon {
      display: flex;
      width: 5rem;
      height: 5rem;
      align-items: center;
      justify-content: center;
      background: #24211d;
      color: #f5f0e6;
      flex-shrink: 0;
    }
    .team-icon svg { width: 2.25rem; height: 2.25rem; }
    .team-role {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: #b45b35;
    }
    .team-name {
      margin-top: 0.5rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.03em;
    }
    .team-text { margin-top: 0.75rem; font-size: 1.125rem; line-height: 2; color: #514b43; }
    .differenza-box {
      border: 2px solid #24211d;
      background: #24211d;
      padding: 2rem;
      color: #fff8eb;
      box-shadow: 8px 8px 0 #b45b35;
    }
    .differenza-kicker { font-family: 'Oswald', sans-serif; font-size: 0.875rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.22em; color: #f2c28f; }
    .differenza-h3 { margin-top: 0.75rem; font-family: 'Oswald', sans-serif; font-size: 2.25rem; font-weight: 900; text-transform: uppercase; line-height: 1; }
    .differenza-p { margin-top: 1.25rem; font-size: 1.125rem; line-height: 2; color: #e6d8c3; }

    /* ===== METODO ===== */
    .metodo-section {
      position: relative;
      border-bottom: 2px solid #24211d;
      background: #24211d;
      padding: 6rem 0;
      color: #fff8eb;
      overflow: hidden;
    }
    .metodo-bg-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.18;
    }
    .metodo-overlay {
      position: absolute;
      inset: 0;
      background: rgba(36,33,29,0.82);
    }
    .metodo-inner { position: relative; }
    .metodo-header {
      display: grid;
      gap: 2.5rem;
      align-items: flex-end;
    }
    @media (min-width: 1024px) { .metodo-header { grid-template-columns: 0.82fr 1.18fr; } }
    .metodo-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.8rem, 6vw, 6rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.05em;
    }
    .metodo-desc { max-width: 48rem; font-size: 1.25rem; line-height: 2.25; color: #e6d8c3; }
    .steps-grid {
      margin-top: 3.5rem;
      display: grid;
      gap: 1.25rem;
    }
    @media (min-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .steps-grid { grid-template-columns: 1fr 1fr 1fr; } }
    .step-card {
      position: relative;
      border: 2px solid rgba(255,248,235,0.45);
      background: rgba(23,23,23,0.72);
      padding: 1.5rem;
      backdrop-filter: blur(4px);
      transition: transform 0.2s, border-color 0.2s;
    }
    .step-card:hover { transform: translateY(-4px); border-color: #d17645; }
    .step-num {
      font-family: 'Oswald', sans-serif;
      font-size: 4.5rem;
      font-weight: 900;
      line-height: 1;
      color: #d17645;
    }
    .step-title {
      margin-top: 1.75rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
    }
    .step-text { margin-top: 1rem; line-height: 1.75; color: #e6d8c3; }

    /* ===== 3 CERTEZZE ===== */
    .certezze-section {
      border-bottom: 2px solid #24211d;
      background: #f5f0e6;
      padding: 6rem 0;
    }
    .certezze-header {
      margin-bottom: 3rem;
      display: grid;
      gap: 2rem;
      align-items: flex-end;
    }
    @media (min-width: 1024px) { .certezze-header { grid-template-columns: 1fr 1fr; } }
    .certezze-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.7rem, 5.6vw, 5.8rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.05em;
    }
    .certezze-desc { font-size: 1.125rem; line-height: 2; color: #514b43; }
    .certezze-grid {
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 768px) { .certezze-grid { grid-template-columns: 1fr 1fr 1fr; } }
    .certezza-card {
      border: 2px solid #24211d;
      padding: 2rem;
    }
    .certezza-card.light { background: #fffaf0; box-shadow: 7px 7px 0 #d9c9ae; }
    .certezza-card.dark { background: #24211d; color: #fff8eb; box-shadow: 7px 7px 0 #b45b35; }
    .certezza-card h3 {
      margin-top: 1.25rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      text-transform: uppercase;
    }
    .certezza-card.light p { margin-top: 1rem; line-height: 1.75; color: #514b43; }
    .certezza-card.dark p { margin-top: 1rem; line-height: 1.75; color: #e6d8c3; }
    .problemi-box {
      margin-top: 3rem;
      border: 2px solid #24211d;
      background: #24211d;
      padding: 2rem;
      color: #fff8eb;
      box-shadow: 8px 8px 0 #b45b35;
    }
    .problemi-kicker { font-family: 'Oswald', sans-serif; font-size: 0.875rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.22em; color: #f2c28f; }
    .problemi-h3 { margin-top: 0.75rem; font-family: 'Oswald', sans-serif; font-size: 1.875rem; font-weight: 900; text-transform: uppercase; }
    .problemi-grid {
      margin-top: 1.5rem;
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 640px) { .problemi-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .problemi-grid { grid-template-columns: 1fr 1fr 1fr; } }
    .problema-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border: 1px solid #3a3630;
      background: #2e2a25;
      padding: 0.75rem 1rem;
    }
    .problema-item span { font-size: 0.875rem; font-weight: 600; color: #e6d8c3; }
    .metriche-box {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border: 2px solid #24211d;
      background: #fffaf0;
      text-align: center;
      box-shadow: 6px 6px 0 #d9c9ae;
    }
    .metrica { padding: 1.5rem; }
    .metrica:not(:last-child) { border-right: 2px solid #24211d; }
    .metrica-num { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 900; color: #24211d; }
    .metrica-label { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; color: #24211d; }

    /* ===== GALLERIA ===== */
    .galleria-section {
      background: #f5f0e6;
      padding: 6rem 0;
      border-bottom: 4px solid #24211d;
    }
    .galleria-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.4rem, 5vw, 5rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.9;
      letter-spacing: -0.04em;
    }
    .galleria-intro { margin-top: 1.5rem; max-width: 40rem; font-size: 1.125rem; line-height: 2; color: #514b43; }
    .progetto-block { margin-top: 3rem; }
    .progetto-block:first-of-type { margin-top: 4rem; }
    .progetto-title {
      margin-bottom: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #b45b35;
    }
    .foto-grid { display: grid; gap: 1rem; }
    .foto-grid.cols-2 { grid-template-columns: 1fr 1fr; }
    .foto-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
    @media (max-width: 767px) {
      .foto-grid.cols-2, .foto-grid.cols-3 { grid-template-columns: 1fr; }
    }
    @media (min-width: 768px) and (max-width: 1023px) {
      .foto-grid.cols-3 { grid-template-columns: 1fr 1fr; }
    }
    .foto-wrap {
      position: relative;
      overflow: hidden;
      border: 2px solid #24211d;
      background: black;
    }
    .foto-wrap img {
      width: 100%;
      height: 18rem;
      object-fit: contain;
      display: block;
      transition: transform 0.5s;
    }
    @media (min-width: 768px) {
      .foto-wrap.tall img { height: 24rem; }
    }
    .foto-wrap:hover img { transform: scale(1.05); }
    .foto-badge {
      position: absolute;
      top: 0; left: 0;
      padding: 0.5rem 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }
    .foto-badge.prima { background: #24211d; color: #fff8eb; }
    .foto-badge.dopo { background: #b45b35; color: white; }
    .foto-grid-mt { margin-top: 1rem; }

    /* ===== RECENSIONI ===== */
    .recensioni-section {
      border-bottom: 2px solid #24211d;
      background: #24211d;
      padding: 6rem 0;
      color: #fff8eb;
    }
    .recensioni-header {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    @media (min-width: 768px) { .recensioni-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
    .recensioni-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.6rem, 5vw, 5rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.05em;
    }
    .recensioni-h2 .accent { color: #d17645; }
    .btn-google {
      display: inline-flex;
      flex-shrink: 0;
      align-items: center;
      gap: 0.5rem;
      border: 2px solid #f5f0e6;
      padding: 0.75rem 1.25rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #f5f0e6;
      transition: background 0.2s, color 0.2s;
    }
    .btn-google:hover { background: #f5f0e6; color: #24211d; }
    .rating-bar {
      margin-top: 2.5rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      border: 2px solid #3a3630;
      background: #2e2a25;
      padding: 1.5rem;
    }
    .rating-num {
      text-align: center;
      flex-shrink: 0;
    }
    .rating-big {
      font-family: 'Oswald', sans-serif;
      font-size: 3.75rem;
      font-weight: 900;
      line-height: 1;
      color: #d17645;
    }
    .stars-row { display: flex; gap: 2px; margin-top: 0.5rem; }
    .star { width: 1.25rem; height: 1.25rem; fill: #f2c28f; }
    .star-sm { width: 1rem; height: 1rem; fill: #f2c28f; }
    .rating-count { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: #a09080; }
    .rating-divider { display: none; width: 1px; height: 4rem; background: #3a3630; flex-shrink: 0; }
    @media (min-width: 640px) { .rating-divider { display: block; } }
    .rating-text { font-size: 1rem; line-height: 1.75; color: #c8b89a; }
    @media (min-width: 640px) { .rating-text { font-size: 1.125rem; } }
    .recensioni-grid {
      margin-top: 2.5rem;
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 768px) { .recensioni-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1280px) { .recensioni-grid { grid-template-columns: 1fr 1fr 1fr; } }
    .review-card {
      display: flex;
      flex-direction: column;
      border: 2px solid #3a3630;
      background: #2e2a25;
      padding: 1.5rem;
      transition: border-color 0.2s;
    }
    .review-card:hover { border-color: #b45b35; }
    .review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
    .review-name { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: #fff8eb; }
    .review-date { margin-top: 0.125rem; font-size: 0.75rem; font-weight: 600; color: #7a6e62; }
    .review-short {
      margin-top: 1rem;
      border-left: 2px solid #b45b35;
      padding-left: 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      font-style: italic;
      line-height: 1.5;
      color: #f2c28f;
    }
    .review-text { margin-top: 1rem; flex: 1; font-size: 0.875rem; line-height: 1.75; color: #a09080; }

    /* ===== ZONE ===== */
    .zone-section {
      border-top: 4px solid #24211d;
      border-bottom: 4px solid #24211d;
      background: #fffaf0;
      padding: 6rem 0;
    }
    .zone-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.6rem, 5vw, 5.2rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.05em;
      color: #24211d;
    }
    .zone-p { margin-top: 1.5rem; font-size: 1.125rem; line-height: 2; color: #514b43; }
    .zone-grid {
      margin-top: 3.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }
    @media (min-width: 640px) { .zone-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
    .zona-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 2px solid #24211d;
      background: #f5f0e6;
      padding: 1rem 1.25rem;
      box-shadow: 4px 4px 0 #d9c9ae;
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .zona-card:hover { transform: translateY(-2px); background: #24211d; box-shadow: 6px 6px 0 #b45b35; }
    .zona-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      color: #24211d;
      transition: color 0.2s;
    }
    .zona-card:hover .zona-name { color: #fff8eb; }
    .zona-icon { color: #b45b35; flex-shrink: 0; transition: color 0.2s; }
    .zona-card:hover .zona-icon { color: #f2c28f; }

    /* ===== FAQ ===== */
    .faq-section { background: #fffaf0; padding: 6rem 0; }
    .faq-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.4rem, 5vw, 5rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.9;
      letter-spacing: -0.04em;
      color: #24211d;
    }
    .faq-p { margin-top: 1.25rem; font-size: 1.125rem; line-height: 2; color: #5a4a3a; }
    .faq-list {
      margin-top: 3.5rem;
      border-top: 2px solid #24211d;
      border-bottom: 2px solid #24211d;
    }
    .faq-item { border-bottom: 2px solid #e8ddd0; }
    .faq-item:last-child { border-bottom: none; }
    .faq-btn {
      display: flex;
      width: 100%;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.5rem 0;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      transition: color 0.2s;
    }
    .faq-btn:hover { color: #b45b35; }
    .faq-q {
      font-family: 'Oswald', sans-serif;
      font-size: 1.125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      color: #24211d;
    }
    @media (min-width: 768px) { .faq-q { font-size: 1.25rem; } }
    .faq-icon {
      display: flex;
      width: 1.75rem;
      height: 1.75rem;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      border: 2px solid #24211d;
      background: #24211d;
      color: #fff8eb;
      margin-top: 0.25rem;
      transition: transform 0.2s;
    }
    .faq-icon.open { transform: rotate(45deg); }
    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease, padding-bottom 0.3s;
    }
    .faq-answer.open { max-height: 800px; padding-bottom: 1.5rem; }
    .faq-answer p {
      border-left: 4px solid #b45b35;
      padding-left: 1.25rem;
      font-size: 1rem;
      line-height: 2;
      color: #5a4a3a;
    }
    @media (min-width: 768px) { .faq-answer p { font-size: 1.125rem; } }

    /* ===== CONTATTI ===== */
    .contatti-section { background: #24211d; padding: 6rem 0; color: #fff8eb; }
    .contatti-grid { display: grid; gap: 3rem; }
    @media (min-width: 1024px) { .contatti-grid { grid-template-columns: 0.85fr 1.15fr; } }
    .contatti-h2 {
      margin-top: 1rem;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.8rem, 6vw, 6.2rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.05em;
    }
    .contatti-p { margin-top: 1.75rem; font-size: 1.25rem; line-height: 2.25; color: #e6d8c3; }
    .contatti-links { margin-top: 2.5rem; display: grid; gap: 1rem; }
    .form-box {
      border: 2px solid #fff8eb;
      background: #fffaf0;
      padding: 1.5rem;
      color: #24211d;
      box-shadow: 10px 10px 0 #b45b35;
    }
    @media (min-width: 768px) { .form-box { padding: 2rem; } }
    .form-grid { display: grid; gap: 1.25rem; }
    @media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
    .privacy-row {
      margin-top: 1.25rem;
      display: flex;
      gap: 0.75rem;
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1.5;
      color: #514b43;
    }
    .privacy-row input { margin-top: 0.25rem; width: 1.25rem; height: 1.25rem; accent-color: #b45b35; flex-shrink: 0; }
    .btn-submit {
      margin-top: 2rem;
      width: 100%;
      border-radius: 0;
      border: 2px solid #24211d;
      background: #b45b35;
      padding: 1.75rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: white;
      box-shadow: 6px 6px 0 #24211d;
      transition: transform 0.2s, background 0.2s;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .btn-submit:hover { transform: translateY(-4px); background: #9b4729; }
    .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    /* ===== TOAST ===== */
    .toast-container {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      pointer-events: none;
    }
    .toast {
      padding: 0.875rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      border: 2px solid;
      box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
      pointer-events: auto;
      animation: toastIn 0.2s ease;
    }
    .toast.success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
    .toast.error { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }
    @keyframes toastIn { from { opacity: 0; transform: translateX(1rem); } to { opacity: 1; transform: translateX(0); } }

    /* ===== WHATSAPP WIDGET ===== */
    .wa-widget {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 50;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .wa-tooltip {
      pointer-events: none;
      border-radius: 0;
      border: 2px solid #24211d;
      background: #fff8eb;
      padding: 0.5rem 0.75rem;
      font-size: 0.875rem;
      font-weight: 700;
      color: #24211d;
      box-shadow: 3px 3px 0 #24211d;
      opacity: 0;
      transform: translateX(0.5rem);
      transition: opacity 0.2s, transform 0.2s;
      white-space: nowrap;
    }
    .wa-widget:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
    .wa-btn {
      position: relative;
      display: flex;
      width: 3.5rem;
      height: 3.5rem;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.2s;
    }
    .wa-btn:hover { transform: scale(1.1); }
    .wa-pulse {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25d366;
      opacity: 0.3;
      animation: waPulse 2s infinite;
    }
    @keyframes waPulse {
      0% { transform: scale(1); opacity: 0.3; }
      70% { transform: scale(1.5); opacity: 0; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* ===== FOOTER ===== */
    footer {
      border-top: 2px solid #514b43;
      background: #171717;
      padding: 2rem 0;
      color: #e6d8c3;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      font-size: 0.875rem;
    }
    @media (min-width: 768px) { .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
    .footer-inner p:first-child { font-weight: 600; }
