:root {
    color-scheme: light;
    --lino: #eee5dd;
    --espresso: #3b302c;
    --tabacco: #4f4037;
    --salvia: #bdd1c5;
    --ardesia: #9bb0b9;
    --ambra: #eecc8c;
    --pesca: #e8b298;
    --rosa: #d3a29e;
    --salvia-dark: #7a9e8e;
    --lino-dark: #e2d6cc;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #eee5dd !important;
    color: #3b302c !important;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 4rem;
    background: var(--lino);
    border-bottom: 0.5px solid rgba(59,48,44,0.12);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(59,48,44,0.07); }

  .nav-logo {
    display: flex; flex-direction: column; gap: 1px; text-decoration: none;
  }
  .nav-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--espresso);
  }
  .nav-logo-sub {
    font-size: 0.62rem; letter-spacing: 0.14em; color: var(--tabacco);
    text-transform: uppercase; font-weight: 400;
  }

  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--tabacco); text-decoration: none; font-weight: 400;
    transition: color 0.2s; cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--espresso); }
  .nav-links a.active { font-weight: 500; }

  .nav-cta {
    background: var(--espresso) !important;
    color: var(--lino) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--tabacco) !important; color: var(--lino) !important; }

  /* ---- PAGES ---- */
  .page { display: none; padding-top: 80px; min-height: 100vh; }
  .page.active { display: block; animation: fadeUp 0.5s ease both; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ---- HOME ---- */
  .hero {
    min-height: calc(100vh - 80px);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 10rem 4rem;
    gap: 2rem;
    position: relative;
  }
  .hero::before-OLD {
    content: 'ROA';
    position: absolute; right: 3rem; bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14rem; font-weight: 300; letter-spacing: -0.05em;
    color: rgba(189,209,197,0.22); pointer-events: none;
    line-height: 1;
  }

  .hero-label {
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--salvia-dark); font-weight: 500; margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--tabacco);
  margin: .25rem 0 1.25rem;
  letter-spacing: 0.01em;
}
.hero-label::before {
    content: ''; display: block; width: 28px; height: 0.5px; background: var(--salvia-dark);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400; line-height: 1.1;
    color: var(--espresso); margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em { font-style: italic; color: var(--tabacco); }

  .hero-desc {
    font-size: 1rem; line-height: 1.75; color: var(--tabacco);
    max-width: 440px; margin-bottom: 2.5rem; font-weight: 300;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; }

  .btn-primary {
    background: var(--espresso); color: var(--lino);
    padding: 0.85rem 2rem; font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--tabacco); }

  .btn-ghost {
    color: var(--tabacco); font-size: 0.78rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: color 0.2s; font-weight: 400;
    border: none; background: none; font-family: 'DM Sans', sans-serif;
  }
  .btn-ghost:hover { color: var(--espresso); }
  .btn-ghost::after { content: '→'; transition: transform 0.2s; }
  .btn-ghost:hover::after { transform: translateX(4px); }

  .hero-right {
    display: flex; flex-direction: column; gap: 1rem;
    position: relative; z-index: 1;
  }

  .hero-card {
    background: white; border-radius: 4px;
    padding: 2rem 2.5rem;
    border: 0.5px solid rgba(59,48,44,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .hero-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(59,48,44,0.08); cursor: pointer; }
  .hero-card:nth-child(2) { margin-left: 2.5rem; margin-right: -2.5rem; }
  .hero-card:nth-child(3) { margin-left: 1.25rem; margin-right: -1.25rem; }

  .card-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.85rem; font-size: 0.9rem;
  }
  .card-icon.salvia { background: var(--salvia); }
  .card-icon.ambra { background: var(--ambra); }
  .card-icon.ardesia { background: var(--ardesia); }

  .hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--espresso);
  }
  .hero-card p { font-size: 0.93rem; color: var(--tabacco); line-height: 1.65; font-weight: 300; }

  /* stats row */
  .stats-row {
    background: var(--espresso); color: var(--lino);
    padding: 3rem 4rem;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .stat { text-align: center; }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--salvia);
    line-height: 1; margin-bottom: 0.5rem;
  }
  .stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(238,229,221,0.65); }

  /* how section */
  .how-section {
    padding: 6rem 4rem;
  }
  .section-header { margin-bottom: 3.5rem; }
  .section-tag {
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--salvia-dark); font-weight: 500; margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .section-tag::before { content: ''; display: block; width: 20px; height: 0.5px; background: var(--salvia-dark); }
  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 400;
    color: var(--espresso); line-height: 1.2;
  }

  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .step { padding: 2rem; border-top: 1.5px solid var(--salvia); }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300; color: rgba(122,158,142,0.85);
    line-height: 1; margin-bottom: 1rem;
  }
  .step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--espresso);
  }
  .step p { font-size: 0.85rem; color: var(--tabacco); line-height: 1.75; font-weight: 300; }

  /* cta banner */
  .cta-banner {
    background: var(--salvia); padding: 4rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
  }
  .cta-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 400; color: var(--espresso); max-width: 500px;
    line-height: 1.3;
  }
  .btn-dark {
    background: var(--espresso); color: var(--lino);
    padding: 0.9rem 2.2rem; font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap; transition: background 0.2s; text-decoration: none;
  }
  .btn-dark:hover { background: var(--tabacco); }

  /* ---- SERVIZI ---- */
  .page-hero {
    padding: 5rem 4rem 3rem;
    border-bottom: 0.5px solid rgba(59,48,44,0.1);
  }
  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 400;
    color: var(--espresso); line-height: 1.1; margin-bottom: 1rem;
  }
  .page-hero p { font-size: 1rem; color: var(--tabacco); max-width: 560px; line-height: 1.75; font-weight: 300; }

  .services-grid {
    padding: 4rem; display: grid;
    grid-template-columns: repeat(2, 1fr); gap: 1.5px;
    background: rgba(59,48,44,0.1);
  }
  .service-item {
    background: var(--lino); padding: 2.5rem;
    transition: background 0.3s;
    cursor: default;
  }
  .service-item:hover { background: white; }
  .service-accent {
    width: 40px; height: 3px; border-radius: 2px; margin-bottom: 1.5rem;
  }
  .service-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 500; margin-bottom: 0.85rem; color: var(--espresso);
  }
  .service-item p { font-size: 0.85rem; color: var(--tabacco); line-height: 1.8; font-weight: 300; margin-bottom: 1.25rem; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .tag {
    font-size: 0.7rem; padding: 0.25rem 0.7rem; border-radius: 1px;
    letter-spacing: 0.06em; font-weight: 400;
  }
  .tag-salvia { background: rgba(189,209,197,0.3); color: var(--tabacco); }
  .tag-ardesia { background: rgba(155,176,185,0.3); color: var(--tabacco); }
  .tag-pesca { background: rgba(232,178,152,0.3); color: var(--tabacco); }
  .tag-ambra { background: rgba(238,204,140,0.35); color: var(--tabacco); }

  .pricing-note {
    padding: 3rem 4rem;
    background: white;
    border-top: 0.5px solid rgba(59,48,44,0.1);
    display: flex; align-items: flex-start; gap: 3rem;
  }
  .pricing-note h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: var(--espresso);
    white-space: nowrap;
  }
  .pricing-note p { font-size: 0.88rem; color: var(--tabacco); line-height: 1.8; font-weight: 300; }

  /* ---- CHI SONO ---- */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
  }
  .about-left {
    background: var(--espresso);
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
    min-height: calc(100vh - 80px);
  }
  .about-left::after {
    content: '';
    position: absolute; bottom: -4rem; right: -4rem;
    width: 18rem; height: 18rem; border-radius: 50%;
    border: 0.5px solid rgba(189,209,197,0.2);
  }
  .about-left::before {
    content: '';
    position: absolute; top: 3rem; left: 3rem;
    width: 8rem; height: 8rem; border-radius: 50%;
    border: 0.5px solid rgba(189,209,197,0.15);
  }

  .about-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem; font-weight: 300; color: var(--lino);
    line-height: 1.1; margin-bottom: 0.5rem; position: relative; z-index: 1;
  }
  .about-title {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--salvia); margin-bottom: 2.5rem; position: relative; z-index: 1;
  }
  .about-bio {
    font-size: 0.92rem; color: rgba(238,229,221,0.78); line-height: 1.85;
    font-weight: 300; margin-bottom: 2.5rem; position: relative; z-index: 1;
  }
  .about-values { display: flex; flex-direction: column; gap: 0.75rem; position: relative; z-index: 1; }
  .value-item {
    display: flex; align-items: center; gap: 0.85rem;
    font-size: 0.82rem; color: rgba(238,229,221,0.7);
  }
  .value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--salvia); flex-shrink: 0; }

  .about-right { padding: 5rem 4rem; display: flex; flex-direction: column; gap: 2.5rem; }
  .about-right h1,
  .about-right h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400; color: var(--espresso); line-height: 1.3;
  }
  .about-right p { font-size: 0.88rem; color: var(--tabacco); line-height: 1.85; font-weight: 300; }

  .skills-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .skill-pill {
    background: white; border: 0.5px solid rgba(59,48,44,0.12);
    padding: 0.75rem 1rem; border-radius: 2px;
    font-size: 0.8rem; color: var(--tabacco); font-weight: 400;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .skill-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--salvia); flex-shrink: 0; }

  .manifesto {
    background: var(--salvia); padding: 2rem;
    border-radius: 2px;
  }
  .manifesto p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-style: italic; font-weight: 400;
    color: var(--espresso); line-height: 1.5;
  }

  /* ---- CONTATTI ---- */
  .contact-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
  }
  .contact-left { padding: 5rem 4rem; }
  .contact-left h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 400; color: var(--espresso);
    line-height: 1.15; margin-bottom: 1.25rem;
  }
  .contact-left p { font-size: 0.9rem; color: var(--tabacco); line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem; }

  .contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
  .contact-row {
    display: flex; flex-direction: column; gap: 0.2rem;
    padding-bottom: 1.25rem;
    border-bottom: 0.5px solid rgba(59,48,44,0.1);
  }
  .contact-row:last-child { border: none; }
  .contact-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--salvia-dark); font-weight: 500; }
  .contact-value { font-size: 0.92rem; color: var(--espresso); font-weight: 400; }

  .contact-right {
    background: white; padding: 5rem 4rem;
    border-left: 0.5px solid rgba(59,48,44,0.1);
  }
  .contact-right h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400; color: var(--espresso); margin-bottom: 2rem;
  }

  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--tabacco); margin-bottom: 0.5rem; font-weight: 500;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.85rem 1rem;
    border: 0.5px solid rgba(59,48,44,0.2);
    background: var(--lino); color: var(--espresso);
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    border-radius: 2px; outline: none; transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--salvia-dark);
  }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ---- FOOTER ---- */
  footer {
    background: var(--espresso); color: var(--lino);
    padding: 2.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 0.5px solid rgba(238,229,221,0.1);
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 400; color: var(--lino);
  }
  .footer-meta {
    font-size: 0.72rem; color: rgba(238,229,221,0.45);
    letter-spacing: 0.06em; text-align: right; line-height: 1.8;
  }

  /* MOBILE */
  @media (max-width: 768px) {

    /* NAV */
    nav { padding: 1rem 1.25rem; }
    .nav-logo-main { font-size: 0.95rem; }
    .nav-logo img { height: 38px !important; width: 38px !important; }
    .nav-links { gap: 0.75rem; }
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-cta { padding: 0.45rem 1rem !important; font-size: 0.68rem !important; }

    /* HOME HERO */
    .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; min-height: auto; }
    .hero::before { display: none; }
    .hero-right { display: none; }
    .hero h1 { font-size: 2.4rem; }
    .hero-desc { font-size: 0.9rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

    /* STATS */
    .stats-row { grid-template-columns: repeat(2,1fr); padding: 2rem 1.5rem; gap: 1.5rem; }
    .stat-number { font-size: 2.2rem; }

    /* HOW SECTION */
    .how-section { padding: 3rem 1.5rem; }
    .steps { grid-template-columns: 1fr; gap: 1.5rem; }

    /* CTA BANNER */
    .cta-banner { flex-direction: column; padding: 2.5rem 1.5rem; text-align: center; }
    .cta-banner h2 { font-size: 1.7rem; }

    /* SERVIZI */
    .page-hero { padding: 3rem 1.5rem 2rem; }
    .page-hero h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; padding: 0; gap: 1px; }
    .service-item { padding: 1.75rem 1.5rem; }
    .pricing-note { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; }

    /* BLOCCO 3 CONTATTI (servizi) */
    .contatti-3col { grid-template-columns: 1fr !important; }

    /* PONTEGGI */
    .ponteggi-section { margin: 0; }
    .ponteggi-img-wrap { height: auto !important; min-height: 0; }
    .ponteggi-img-wrap img { position: relative; height: 200px; }
    .ponteggi-overlay { display: none; }
    .ponteggi-content {
      position: relative !important;
      inset: auto !important;
      grid-template-columns: 1fr !important;
      padding: 2.5rem 1.5rem !important;
      gap: 2rem !important;
      background: var(--espresso);
    }
    .ponteggi-left h2 { font-size: 1.8rem; color: var(--lino) !important; }
    .ponteggi-left p { color: rgba(238,229,221,0.75) !important; }
    .ponteggi-right { display: flex; flex-direction: column; gap: 0; }
    .pont-item { list-style: none !important; }
    .pont-item::before { display: none !important; }
    .pont-item-text h4 { color: var(--lino) !important; }
    .pont-item-text p { color: rgba(238,229,221,0.6) !important; }
    .pont-dot { background: var(--salvia) !important; flex-shrink: 0; }

    /* CHI SONO */
    .about-grid { grid-template-columns: 1fr; }
    .about-left { min-height: 85vh; padding: 0 !important; }
    .about-left > div[style*="padding"] { padding: 3rem 1.5rem 2rem !important; }
    .about-name { font-size: 2.2rem !important; }
    .about-title { font-size: 0.7rem; }
    .about-bio { font-size: 0.9rem; }
    .about-right { padding: 2.5rem 1.5rem; gap: 2rem; }
    .about-right h1, .about-right h2 { font-size: 1.6rem; }
    .skills-list { grid-template-columns: 1fr; }
    .manifesto p { font-size: 1.25rem !important; }

    /* CONTATTI */
    .contact-wrap { grid-template-columns: 1fr; }
    .contact-left { padding: 3rem 1.5rem; }
    .contact-right { padding: 2rem 1.5rem; }
    .contact-right h2 { font-size: 1.4rem; }
    .form-row { grid-template-columns: 1fr; }

    /* NEWSLETTER */
    div[style*="padding:5rem 4rem"] { padding: 3rem 1.5rem !important; }

    /* FOOTER */
    footer { flex-direction: column; gap: 0.75rem; padding: 1.75rem 1.5rem; text-align: center; }
    .footer-left { flex-direction: column; gap: 0.35rem; align-items: center; }
    .footer-right { justify-content: center; }

    /* MODAL */
    .modal { padding: 2rem 1.5rem; margin: 1rem; }
    .modal-call-options { gap: 0.6rem; }

    /* WHATSAPP FLOAT */
    .whatsapp-float { bottom: 1rem !important; right: 1rem !important; }
  }

  /* TABLET (768px - 1024px) */
  @media (max-width: 1024px) and (min-width: 769px) {
    .hero { padding: 4rem 3rem; gap: 1.5rem; }
    .stats-row { padding: 2.5rem 3rem; }
    .how-section { padding: 4rem 3rem; }
    .services-grid { padding: 3rem; }
    .about-right { padding: 3.5rem 3rem; }
    .contact-left, .contact-right { padding: 3.5rem 3rem; }
    .ponteggi-content { padding: 2.5rem 3rem !important; }
  }

  .card-link {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--salvia-dark);
    margin-top: 0.75rem;
    font-weight: 500;
    transition: gap 0.2s;
  }
  .hero-card:hover .card-link { letter-spacing: 0.15em; }

  /* Più colore — accenti colored nelle sezioni */
  .step:nth-child(1) { border-top-color: var(--salvia); }
  .step:nth-child(2) { border-top-color: var(--ambra); }
  .step:nth-child(3) { border-top-color: var(--ardesia); }

  .stat-number { color: var(--salvia) !important; }

  .stats-row {
    background: var(--espresso);
  }

  /* ROA watermark elegante come monogramma */
  .hero::before {
    content: '';
    position: absolute;
    right: 2.5rem;
    bottom: 1rem;
    width: 320px;
    height: 320px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cstyle%3Epath%7Bfill:%23bdd1c5;opacity:0.18%7D circle%7Bfill:none;stroke:%23bdd1c5;stroke-width:2;opacity:0.18%7D%3C/style%3E%3Ccircle cx='145' cy='165' r='90'/%3E%3Ctext x='30' y='240' font-family='Georgia,serif' font-size='240' font-weight='700' fill='%23bdd1c5' opacity='0.13'%3ER%3C/text%3E%3Ctext x='120' y='250' font-family='Georgia,serif' font-size='200' font-weight='400' fill='%23bdd1c5' opacity='0.10'%3EA%3C/text%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }


  /* MODAL */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(59,48,44,0.55);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }

  .modal {
    background: var(--lino);
    border-radius: 2px;
    max-width: 520px; width: 100%;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 64px rgba(59,48,44,0.18);
  }
  .modal-overlay.open .modal { transform: translateY(0); }

  .modal-accent {
    width: 36px; height: 3px; border-radius: 2px; margin-bottom: 1.25rem;
  }
  .modal-close {
    position: absolute; top: 1.25rem; right: 1.5rem;
    font-size: 1.2rem; color: var(--tabacco); cursor: pointer;
    background: none; border: none; line-height: 1;
    transition: color 0.2s; font-family: inherit;
  }
  .modal-close:hover { color: var(--espresso); }

  .modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 500;
    color: var(--espresso); margin-bottom: 1rem; line-height: 1.2;
  }
  .modal-body {
    font-size: 0.88rem; color: var(--tabacco);
    line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem;
  }
  .modal-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.75rem;
  }
  .modal-tag {
    font-size: 0.7rem; padding: 0.25rem 0.75rem;
    border-radius: 1px; color: var(--tabacco);
    letter-spacing: 0.05em;
  }
  .modal-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 0.5px solid rgba(59,48,44,0.1);
    gap: 1rem;
  }
  .modal-note {
    font-size: 0.72rem; color: rgba(79,64,55,0.5);
    font-weight: 300; line-height: 1.5;
  }


  /* SEZIONE PONTEGGI */
  .ponteggi-section {
    position: relative;
    overflow: hidden;
    margin: 4rem 0 0;
  }
  .ponteggi-img-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
  }
  .ponteggi-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.42);
    transition: transform 8s ease;
  }
  .ponteggi-img-wrap:hover img { transform: scale(1.03); }
  .ponteggi-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      rgba(59,48,44,0.75) 0%,
      rgba(59,48,44,0.2) 60%,
      transparent 100%
    );
  }
  .ponteggi-content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 3.5rem 4rem;
    gap: 4rem;
  }
  .ponteggi-left {
    position: relative; z-index: 1;
  }
  .ponteggi-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--salvia);
    font-weight: 500;
    margin-bottom: 0.85rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .ponteggi-eyebrow::before {
    content: ''; width: 18px; height: 0.5px;
    background: var(--salvia);
  }
  .ponteggi-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: #eee5dd;
    line-height: 1.15;
    margin-bottom: 1.1rem;
  }
  .ponteggi-left h2 em {
    font-style: italic;
    color: var(--salvia);
  }
  .ponteggi-left p {
    font-size: 0.88rem;
    color: rgba(238,229,221,0.7);
    line-height: 1.85;
    font-weight: 300;
    max-width: 400px;
  }
  .ponteggi-right {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 0;
  }
  .pont-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 0;
    border-bottom: 0.5px solid rgba(238,229,221,0.1);
    transition: background 0.2s;
  }
  .pont-item:first-child { padding-top: 0; }
  .pont-item:last-child { border-bottom: none; }
  .pont-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--salvia); flex-shrink: 0;
    margin-top: 0.45rem;
  }
  .pont-item-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500;
    color: #eee5dd; margin-bottom: 0.2rem;
  }
  .pont-item-text p {
    font-size: 0.8rem;
    color: rgba(238,229,221,0.58);
    line-height: 1.65; font-weight: 300;
  }
  .ponteggi-cta {
    margin-top: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--salvia);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 0.5px solid var(--salvia);
    transition: gap 0.25s, color 0.2s;
    cursor: pointer;
  }
  .ponteggi-cta:hover { gap: 0.85rem; color: #eee5dd; border-color: #eee5dd; }


  .modal-call-options {
    display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0;
  }
  .call-option {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    border: 0.5px solid rgba(59,48,44,0.15);
    border-radius: 2px;
    text-decoration: none;
    color: var(--espresso);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: pointer;
    background: none;
    width: 100%;
    font-family: inherit;
    text-align: left;
  }
  .call-option:hover { background: var(--salvia); border-color: var(--salvia); transform: translateX(4px); }
  .call-option-icon { font-size: 1.25rem; flex-shrink: 0; }
  .call-option-text h4 { font-size: 0.88rem; font-weight: 500; color: var(--espresso); margin-bottom: 0.15rem; }
  .call-option-text p { font-size: 0.75rem; color: var(--tabacco); font-weight: 300; }
  .call-divider { text-align: center; font-size: 0.7rem; color: rgba(79,64,55,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin: 0.25rem 0; }
  .modal-call-note { font-size: 0.72rem; color: rgba(79,64,55,0.45); line-height: 1.65; text-align: center; margin-top: 1rem; }


  .newsletter-section {
    background: var(--salvia);
    padding: 4rem 10rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
  }
  .newsletter-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.25;
    margin-bottom: 0.85rem;
  }
  .newsletter-left p {
    font-size: 0.88rem;
    color: var(--tabacco);
    line-height: 1.8;
    font-weight: 300;
  }
  .newsletter-left .nl-note {
    font-size: 0.72rem;
    color: rgba(79,64,55,0.55);
    margin-top: 0.75rem;
    line-height: 1.65;
  }
  .newsletter-left .nl-note a {
    color: var(--tabacco);
    text-decoration: underline;
  }
  .newsletter-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 4rem;
  }
  .newsletter-right p {
    font-size: 0.88rem;
    color: var(--tabacco);
    line-height: 1.75;
    font-weight: 300;
  }
  .btn-newsletter {
    display: inline-block;
    background: var(--espresso);
    color: var(--lino);
    padding: 0.9rem 2.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
  }
  .btn-newsletter:hover { background: var(--tabacco); transform: translateY(-2px); }


  


  /* FOOTER */
  footer {
    background: var(--espresso);
    padding: 1.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-end;
    text-align: right;
  }
  .footer-left span,
  .footer-right span,
  .footer-right a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(238,229,221,0.45);
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-decoration: none;
  }
  .footer-right a:hover { color: rgba(238,229,221,0.75); cursor: pointer; }


  /* HAMBURGER MENU MOBILE */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--espresso);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--lino);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
  }
  .mobile-menu.open { display: flex; animation: fadeUp 0.3s ease both; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--espresso);
    text-decoration: none;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--salvia-dark); }
  .mobile-menu-divider { width: 40px; height: 0.5px; background: rgba(59,48,44,0.15); }

  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none !important; }
  }
