:root {
    --navy: #0d1f3c;
    --navy-mid: #1a3358;
    --gold: #c9a84c;
    --gold-light: #e8c97e;
    --cream: #f9f5ee;
    --cream-dark: #f0e9d8;
    --text: #1a1a2e;
    --text-light: #5a5a7a;
    --white: #ffffff;
    --accent: #2a6496;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(13, 31, 60, 0.97);
    backdrop-filter: blur(12px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .hero-content {
    padding: 8rem 4rem 6rem 6rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.9s ease both;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.25s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-visual {
    padding: 8rem 4rem 6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.9s 0.2s ease both;
  }

  .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    transition: border-color 0.2s;
  }

  .stat-card:hover { border-color: rgba(201,168,76,0.5); }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }

  .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    font-weight: 300;
  }

  .stat-label strong {
    display: block;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
  }

  /* SECTIONS */
  section {
    padding: 6rem 0;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
  }

  .section-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 580px;
    font-weight: 300;
  }

  /* CHI SONO */
  #chi {
    background: var(--white);
  }

  /* Griglia a 3 colonne: bio | foto | timeline */
  .chi-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
  }

  /* Pilastri in riga orizzontale sotto le 3 colonne */
  .chi-pillars-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
  }

  .chi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .chi-left { }

  .chi-right { padding-top: 1rem; }

  .timeline {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.8rem;
    position: relative;
  }

  .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.6rem;
    top: 2.5rem;
    bottom: 0;
    width: 1px;
    background: var(--cream-dark);
  }

  .timeline-dot {
    width: 3.2rem;
    height: 3.2rem;
    min-width: 3.2rem;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
  }

  .timeline-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }

  .timeline-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
  }

  .chi-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .pillar {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .pillar-icon {
    width: 2.8rem;
    height: 2.8rem;
    min-width: 2.8rem;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .pillar-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }

  .pillar-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
  }

  /* SERVIZI */
  #cosa {
    background: var(--cream);
  }

  .servizi-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem;
  }

  .servizi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: var(--cream-dark);
    border: 1px solid var(--cream-dark);
  }

  .servizio-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
    transition: background 0.25s;
    cursor: default;
  }

  .servizio-card:hover {
    background: var(--navy);
  }

  .servizio-card:hover .servizio-title,
  .servizio-card:hover .servizio-desc { color: var(--white); }

  .servizio-card:hover .servizio-num { color: var(--gold); }

  .servizio-card:hover .servizio-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

  .servizio-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream-dark);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: color 0.25s;
  }

  .servizio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    transition: color 0.25s;
  }

  .servizio-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1.2rem;
    transition: color 0.25s;
  }

  .servizio-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--text-light);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    transition: all 0.25s;
  }

  /* HIGHLIGHT TEST INGRESSO */
  .test-highlight {
    background: var(--navy);
    padding: 3rem;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
  }

  .test-highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
  }

  .test-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .test-highlight p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-weight: 300;
  }

  .test-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
  }

  .badge {
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
  }

  .test-price {
    text-align: center;
    white-space: nowrap;
  }

  .test-price .price-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
  }

  .test-price .price-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
  }

  /* TESTIMONIANZE */
  #testimonianze1 {
    background: var(--navy);
  }

  #testimonianze1 .section-title { color: var(--white); }
  #testimonianze1 .section-desc { color: rgba(255,255,255,0.5); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.05);
    margin-top: 3rem;
  }

  .testi-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
  }

  .testi-card:hover { background: rgba(255,255,255,0.06); }

  .testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1rem;
    opacity: 0.6;
  }

  .testi-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testi-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
  }

  .testi-author span {
    font-size: 0.78rem;
    color: var(--gold);
    opacity: 0.7;
  }

  /* MODALITÀ */
  .modalita {
    background: var(--cream-dark);
    padding: 3rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .mod-item {
    display: flex;
    gap: 1.2rem;
  }

  .mod-icon {
    font-size: 1.5rem;
    width: 3rem;
    min-width: 3rem;
  }

  .mod-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }

  .mod-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
  }

  /* CONTATTO */
  #contatto1 {
    background: var(--cream);
  }

    .contatto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contatto-left .section-desc {
    margin-bottom: 2rem;
  }

  .contatto-card {
    background: var(--navy);
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }

  .contatto-card::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 10rem;
    height: 10rem;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  }

  .contatto-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .contatto-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
  }

  .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s;
  }

  .wa-btn:hover {
    background: #20b55a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  }

  .contatto-orari {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .contatto-orari p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0;
  }

  .contatto-foto-wrap {
    margin-bottom: 1.5rem;
    border-radius: 2px;
    overflow: hidden;
  }

  .contatto-foto {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    filter: grayscale(10%);
    transition: filter 0.3s;
  }

  .contatto-foto:hover { filter: grayscale(0%); }



  /* FAQ testo puro */
  .faq-plain-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .faq-plain {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
  }

  .faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .faq-a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
  }

  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid var(--cream-dark);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    transition: background 0.2s;
    gap: 1rem;
  }

  .faq-question:hover { background: var(--cream); }
  .faq-question.open { background: var(--navy); color: var(--white); }
  .faq-question.open .faq-icon { transform: rotate(45deg); color: var(--gold); }

  .faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.25s;
    flex-shrink: 0;
    line-height: 1;
  }

  .faq-answer {
    display: none;
    padding: 1.2rem 1.5rem;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
  }

  .faq-answer p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
  }

  .faq-answer.open { display: block; }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.15);
  }

  footer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
  }

  footer span {
    color: var(--gold);
    opacity: 0.5;
  }

  /* HERO PHOTO */
  .hero-photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .hero-photo {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
    transform: scaleX(-1); /* guarda verso sinistra su desktop */
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .stat-card-mini {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 1rem;
    text-align: center;
    transition: border-color 0.2s;
  }

  .stat-card-mini:hover { border-color: rgba(201,168,76,0.5); }

  .stat-number-mini {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label-mini {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    font-weight: 300;
  }

  /* CHI SONO PHOTO */
  .chi-photo-wrap {
    margin-bottom: 2rem;
    border-radius: 2px;
    overflow: hidden;
    max-width: 320px;
  }

  .chi-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    filter: grayscale(15%);
    transition: filter 0.3s;
  }

  .chi-photo:hover { filter: grayscale(0%); }

  /* ANIMATIONS */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Di default tutto visibile (fallback no-JS) */
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* Animazioni attive solo se JS ha caricato correttamente */
  .js-ready .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .js-ready .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 200;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,31,60,0.98);
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--gold); }

  .mobile-menu .mobile-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
  }

  /* RESPONSIVE — TABLET */
  @media (max-width: 1024px) {
    .hero-content { padding: 8rem 3rem 4rem; }
    .hero-visual { padding: 8rem 2rem 4rem 1rem; }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* RESPONSIVE — MOBILE */
  @media (max-width: 900px) {
    /* NAV */
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* HERO */
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .hero-content {
      padding: 7rem 1.5rem 2rem;
      order: 1;
    }
    .hero-visual {
      padding: 0 1.5rem 3rem;
      order: 2;
    }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-photo { max-width: 260px; margin: 0 auto; transform: scaleX(1); /* orientamento originale su mobile */ }
    .hero-stats-row { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .stat-number-mini { font-size: 1.1rem; }
    .stat-label-mini { font-size: 0.65rem; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; justify-content: center; padding: 1rem 1.5rem; font-size: 0.95rem; }

    /* SEZIONI */
    section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
    .section-title { font-size: 1.6rem; }

    /* CHI SONO — mobile: tutto in colonna */
    .chi-top { grid-template-columns: 1fr; gap: 2rem; }
    .chi-pillars-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .chi-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .chi-photo-wrap { max-width: 220px; margin: 0 auto; }
    .chi-photo { border-radius: 2px; }

    /* SERVIZI */
    .servizi-header { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
    .servizi-grid { grid-template-columns: 1fr; }
    .servizio-card { padding: 1.8rem; }
    .test-highlight { padding: 2rem 1.5rem; }
    .test-badges { gap: 0.4rem; }
    .badge { font-size: 0.68rem; }
    .modalita { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }

    /* TESTIMONIANZE */
    .testi-grid { grid-template-columns: 1fr; }
    .testi-card { padding: 1.5rem; }

    /* CONTATTO */
      .contatto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
    .contatto-card { padding: 2rem 1.5rem; }
      .contatto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
    .wa-btn { width: 100%; justify-content: center; }
  }

  /* RESPONSIVE — SMALL MOBILE */
  @media (max-width: 400px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-stats-row { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
    .stat-number-mini { font-size: 1rem; }
    nav { padding: 0.85rem 1rem; }
    .nav-logo { font-size: 1.2rem; }
  }

  /* COOKIE BANNER */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  }

  .cookie-banner.visible {
    transform: translateY(0);
  }

  .cookie-text {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-weight: 300;
    flex: 1;
    min-width: 260px;
  }

  .cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .cookie-text a:hover { color: var(--gold-light); }

  .cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  .cookie-btn-accept {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .cookie-btn-accept:hover { background: var(--gold-light); }

  .cookie-btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .cookie-btn-reject:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
  }

  @media (max-width: 600px) {
    .cookie-banner {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 1.25rem;
    }
    .cookie-actions {
      width: 100%;
    }
    .cookie-btn-accept,
    .cookie-btn-reject {
      flex: 1;
      text-align: center;
    }
  }