  :root {
    --bg: #E6E6E6;
    --surface: #D9D9D9;
    --card: #FFFFFF;
    --text: #000000;
    --text-soft: #5A5461;
    --accent: #6B5B82;
    --border-soft: rgba(0,0,0,0.10);
    --border: rgba(0,0,0,0.20);
    --border-strong: rgba(0,0,0,0.45);
    --mandala-bg: #FFFFFF;
    --mandala-border: rgba(0,0,0,0.12);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Noto Serif", serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  .wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
  @media (min-width: 768px) { .wrap { padding: 0 2.5rem; } }

  h1, h2, h3 { text-wrap: balance; margin: 0; }
  a { color: inherit; text-decoration: none; }

  /* ---------- Top nav ---------- */
  .nav {
    position: sticky; top: 0; z-index: 20;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 1.1rem; padding-bottom: 1.1rem; }
  .wordmark { font-family: "Hanuman", serif; font-weight: 300; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.18em; }
  .nav-links { display: none; gap: 2rem; font-size: 1.05rem; color: var(--text-soft); }
  @media (min-width: 860px) { .nav-links { display: flex; } }
  .nav-links a { border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color .2s, color .2s; }
  .nav-links a:hover, .nav-links a:focus-visible { border-color: currentColor; color: var(--text); }
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--text); color: var(--bg);
    padding: 0.75rem 1.5rem; font-size: 0.9rem; letter-spacing: 0.04em;
    border: 1px solid var(--text); border-radius: 999px; cursor: pointer;
    text-decoration: none; font-family: inherit; font-weight: 400;
    transition: transform .15s ease, opacity .15s ease;
  }
  .btn:hover { opacity: 0.82; }
  .btn:active { transform: scale(0.97); }
  .btn:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--accent); outline-offset: 3px;
  }
  .btn-ghost {
    background: transparent; color: var(--text); border-color: var(--border-strong);
  }

  /* ---------- Hero ---------- */
  .hero { border-bottom: 1px solid var(--border-soft); overflow: hidden; }
  .hero .wrap {
    display: grid; gap: 3.5rem; align-items: center;
    padding-top: 4rem; padding-bottom: 4rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px) { .hero .wrap { grid-template-columns: 1fr 1fr; padding-top: 5.5rem; padding-bottom: 5.5rem; } }
  .hero h1 {
    font-family: "Hanuman", serif;
    font-weight: 300; font-size: clamp(2.4rem, 5.4vw, 4.1rem);
    line-height: 1.12;
  }
  .hero h1 em { font-style: normal; color: #9B89C8; }
  .hero p.sub {
    margin-top: 1.6rem; max-width: 34rem; color: var(--text-soft);
    font-size: 1.15rem; line-height: 1.65;
  }
  .hero .ctaRow { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
  .mandala-frame {
    margin: 0 auto; width: 100%; max-width: 520px;
  }
  .mandala-frame img {
    width: 100%; height: auto; display: block;
    transform-origin: 50% 50%;
    animation: breathe 9s ease-in-out infinite;
  }
  @keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
  }

  /* ---------- Section shell ---------- */
  section.block { border-bottom: 1px solid var(--border-soft); padding: 4rem 0; }
  section.block:last-of-type { border-bottom: none; }
  @media (min-width: 768px) { section.block { padding: 5.5rem 0; } }
  .block h2 { font-weight: 300; font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: 0.01em; }

  /* ---------- Benefici ---------- */
  .grid3 { display: grid; gap: 1px; margin-top: 2.5rem; background: var(--border-soft); border: 1px solid var(--border-soft); }
  @media (min-width: 768px) { .grid3 { grid-template-columns: repeat(3, 1fr); } }
  .grid3 > div { background: var(--card); padding: 2.2rem; }
  .grid3 h3 { font-weight: 400; font-size: 1.3rem; }
  .grid3 p { margin-top: 0.7rem; color: var(--text-soft); line-height: 1.6; font-size: 0.98rem; }

  /* ---------- Perche ---------- */
  .why { display: grid; gap: 2.5rem; margin-top: 2.5rem; align-items: start; }
  @media (min-width: 860px) { .why { grid-template-columns: 1.15fr 0.85fr; } }
  .why-card { background: var(--card); border: 1px solid var(--border); padding: 2.4rem; }
  .why-card p { color: var(--text-soft); line-height: 1.75; font-size: 1.02rem; }
  .why-card p + p { margin-top: 1rem; }
  .link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.4rem; font-size: 0.95rem; border-bottom: 1px solid var(--border); padding-bottom: 2px; }
  .teacher-photo { display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: center; }
  .teacher-photo .frame { width: 100%; max-width: 300px; }
  .teacher-photo .frame img { width: 100%; height: auto; display: block; }

  /* ---------- Corsi ---------- */
  .courses { display: grid; gap: 1.4rem; margin-top: 2.5rem; }
  @media (min-width: 768px) { .courses { grid-template-columns: 1fr 1fr; } }
  .course { padding: 2.4rem 2.2rem 2.2rem; background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--accent); }
  .course h3 { font-weight: 400; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
  .course p { margin-top: 0.8rem; color: var(--text-soft); line-height: 1.6; }
  .course .tag { display: inline-block; margin-top: 1.2rem; font-size: 0.8rem; letter-spacing: 0.12em; color: var(--text-soft); text-transform: uppercase; }

  .schedule { margin-top: 3rem; }
  .schedule-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
  .schedule-head h3 { font-weight: 400; font-size: 1.25rem; }
  .schedule-legend { display: flex; gap: 1.5rem; font-size: 0.85rem; color: var(--text-soft); }
  .legend-item { display: inline-flex; align-items: center; gap: 0.5rem; }
  .dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--accent); display: inline-block; }
  .dot-filled { background: var(--accent); }
  .schedule-list { border-top: 1px solid var(--border-soft); }
  .schedule-row { display: flex; flex-direction: column; gap: 0.4rem; padding: 1rem 0; border-bottom: 1px solid var(--border-soft); }
  .schedule-top { display: flex; align-items: baseline; gap: 0.9rem; }
  .schedule-list .day { font-size: 1.05rem; white-space: nowrap; }
  .schedule-list .time { color: var(--text-soft); font-variant-numeric: tabular-nums; white-space: nowrap; }
  .schedule-list .loc { color: var(--text); font-size: 0.95rem; transition: color .2s; }
  .schedule-list .loc:hover, .schedule-list .loc:focus-visible { color: var(--accent); }
  .schedule-list .loc small { color: var(--text-soft); font-size: 0.85rem; }
  .schedule-list .loc-plain { color: var(--text-soft); font-size: 0.95rem; }
  .style-tag { align-self: flex-start; font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.4rem 0.9rem; border: 1px solid var(--accent); white-space: nowrap; }
  @media (min-width: 768px) {
    .schedule-list { display: grid; grid-template-columns: auto auto 1fr auto; column-gap: 1.2rem; }
    .schedule-row {
      display: grid; grid-column: 1 / -1; grid-template-columns: subgrid;
      align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--border-soft);
    }
    .schedule-top { display: contents; }
    .style-tag { justify-self: end; align-self: center; }
  }
  .tag-filled { background: var(--accent); color: var(--card); }
  .tag-outline { background: transparent; color: var(--accent); }

  /* ---------- Prezzi ---------- */
  .pricing { display: grid; gap: 1.6rem; margin-top: 2.5rem; }
  @media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); align-items: end; } }
  .price-card {
    background: var(--card); border: 1px solid var(--border);
    padding: 2.2rem 2rem; display: flex; flex-direction: column; height: 100%;
  }
  .price-card h3 { font-weight: 400; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.03em; }
  .price-card .tagline { margin-top: 0.4rem; font-size: 0.92rem; color: var(--text-soft); min-height: 2.6em; }
  .price-card .price { margin-top: 1.3rem; display: flex; align-items: baseline; gap: 0.4rem; }
  .price-card .price .amount { font-size: 2.5rem; font-weight: 300; font-variant-numeric: tabular-nums; }
  .price-card .price .unit { color: var(--text-soft); font-size: 0.95rem; }
  .price-card .per-lesson { margin-top: 0.4rem; font-size: 0.85rem; color: var(--text-soft); font-variant-numeric: tabular-nums; }
  .price-card .student-price { margin-top: 0.3rem; font-size: 0.85rem; color: var(--text); font-variant-numeric: tabular-nums; }
  .pricing-note { margin-top: 0.6rem; font-size: 0.85rem; color: var(--text-soft); }
  .pricing-note:first-of-type { margin-top: 2rem; }
  .promo-banner { margin-top: 2rem; padding-bottom: 1.2rem; border-bottom: 2px solid var(--accent); font-size: 0.98rem; }
  .promo-banner strong { font-weight: 400; }

  /* ---------- FAQ ---------- */
  .faq-list { margin-top: 2.5rem; border-top: 1px solid var(--border); }
  details.faq { border-bottom: 1px solid var(--border); }
  details.faq summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 0; font-size: 1.08rem; gap: 1.5rem;
  }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary .plus { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; transition: transform .2s ease; font-weight: 300; }
  details.faq[open] summary .plus { transform: rotate(45deg); }
  details.faq .a { padding-bottom: 1.6rem; margin-top: -0.6rem; color: var(--text-soft); line-height: 1.7; }

  /* ---------- Contatti ---------- */
  .contact-links { display: grid; gap: 1rem; margin-top: 2.5rem; }
  @media (min-width: 600px) { .contact-links { grid-template-columns: 1fr 1fr; } }
  .contact-link {
    display: flex; align-items: center; gap: 1.1rem;
    background: var(--card); border: 1px solid var(--border);
    padding: 1.5rem 1.6rem; text-decoration: none; color: var(--text);
    transition: border-color .2s, transform .15s;
  }
  .contact-link:hover, .contact-link:focus-visible { border-color: var(--accent); transform: translateY(-2px); }
  .contact-link .icon {
    width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: var(--mandala-bg); border: 1px solid var(--mandala-border); color: var(--accent);
  }
  .contact-link .icon svg { width: 24px; height: 24px; }
  .contact-link strong { display: block; font-weight: 400; font-size: 1.08rem; }
  .contact-link small { display: block; margin-top: 0.2rem; color: var(--text-soft); font-size: 0.88rem; }

  .locations { margin-top: 3.5rem; }
  .locations h3 { font-weight: 400; font-size: 1.25rem; margin-bottom: 1.5rem; }
  .location-grid { display: grid; gap: 1.4rem; align-items: start; }
  @media (min-width: 768px) { .location-grid { grid-template-columns: repeat(3, 1fr); } }
  .location-card { background: var(--card); border: 1px solid var(--border); }
  .location-photo { aspect-ratio: 3/4; background: var(--mandala-bg); border-bottom: 1px solid var(--mandala-border); overflow: hidden; }
  .location-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .location-body { padding: 1.5rem 1.6rem 1.7rem; }
  .location-body h4 { font-weight: 400; font-size: 1.1rem; }
  .location-body address { font-style: normal; margin-top: 0.5rem; font-size: 0.92rem; line-height: 1.5; }
  .location-body address a { color: var(--text-soft); text-decoration: none; transition: color .2s; }
  .location-body address a:hover, .location-body address a:focus-visible { color: var(--accent); }
  .location-body .photo-note { margin-top: 0.9rem; font-size: 0.78rem; color: var(--text-soft); }

  /* ---------- Footer ---------- */
  footer { padding: 3.5rem 0 3rem; }
  .footer-top { display: flex; flex-direction: column; gap: 2.2rem; }
  @media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
  .foot-nav { display: flex; flex-wrap: wrap; gap: 1.6rem; color: var(--text-soft); font-size: 0.92rem; }
  .socials { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
  .socials a {
    width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--card); border: 1px solid var(--border); color: var(--accent);
    transition: border-color .2s, transform .15s;
  }
  .socials a:hover, .socials a:focus-visible { border-color: var(--accent); transform: translateY(-2px); }
  .socials svg { width: 20px; height: 20px; }
  .foot-meta { margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 0.5rem; color: var(--text-soft); font-size: 0.85rem; }
  @media (min-width: 768px) { .foot-meta { flex-direction: row; justify-content: space-between; } }
