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

    :root {
      --burgundy: #771016;
      --burgundy-80: rgba(119, 16, 22, 0.8);
      --burgundy-75: rgba(119, 16, 22, 0.75);
      --burgundy-65: rgba(119, 16, 22, 0.65);
      --burgundy-60: rgba(119, 16, 22, 0.6);
      --burgundy-55: rgba(119, 16, 22, 0.55);
      --burgundy-50: rgba(119, 16, 22, 0.5);
      --burgundy-light: #8f2428;
      --beige: #EADFD7;
      --beige-light: #F9F6F2;
      --card-gradient: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);
      --card-shadow: 0 4px 12px rgba(119, 16, 22, 0.08);

      /* Typography System */
      --font-sans: 'Montserrat', sans-serif;
      --font-serif: 'Playfair Display', serif;
      --font-alt: 'Lora', serif;
      --font: var(--font-alt);

      --fs-h1: clamp(36px, 8vw, 84px);
      --fs-h2: clamp(26px, 5vw, 48px);
      --fs-h3: clamp(20px, 3vw, 26px);
      --fs-body-lg: clamp(16px, 2vw, 18px);
      --fs-body: 18px;
      --fs-small: 14px;
      --fs-label: 12px;

      --lh-tight: 1.1;
      --lh-base: 1.6;
      --lh-relaxed: 1.8;
      --max-w: 1101px;
      --content-w: 1037px;
      --side: 32px;
    }

    html {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: var(--font);
      background: var(--beige-light);
      color: var(--burgundy);
      font-size: var(--fs-body);
      max-width: var(--max-w);
      margin: 0 auto;
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-serif);
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 2000;
    }

    .nav a {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--burgundy);
      font-weight: 600;
      font-family: var(--font-sans);
      font-size: 13px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 10px 18px;
      border-radius: 999px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      border: 1px solid rgba(119, 16, 22, 0.1);
    }

    .nav a:hover {
      background: var(--beige-light);
      transform: translateX(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .nav img {
      width: 20px;
      height: 20px;
    }

    /* ── SECTION LABEL ── */
    .label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      margin-bottom: 20px;
    }

    .label span {
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 700;
      font-size: 12px;
      color: var(--burgundy);
    }

    .label-line {
      width: 40px;
      height: 3px;
      background: var(--burgundy);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: 96px var(--side) 80px;
      overflow: hidden;
      min-height: auto;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 256px;
      height: 256px;
      background: rgba(224, 207, 194, 0.1);
      border-radius: 50%;
      filter: blur(64px);
      top: 80px;
      right: 32px;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 320px;
      height: 320px;
      background: rgba(119, 16, 22, 0.05);
      border-radius: 50%;
      filter: blur(64px);
      bottom: 60px;
      left: 40px;
      pointer-events: none;
    }

    .hero-inner {
      display: flex;
      gap: clamp(32px, 5vw, 64px);
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }

    .hero-photo {
      flex: 0 1 486.5px;
      height: auto;
      max-width: 45%;
      min-width: 250px;
      border-radius: 42px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(119, 16, 22, 0.18);
    }

    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-top: 0;
    }

    .hero-text .label {
      text-align: left;
    }

    .hero-name {
      font-size: var(--fs-h1);
      line-height: var(--lh-tight);
      color: var(--burgundy);
      font-weight: 400;
      font-family: var(--font-serif);
    }

    .hero-title {
      font-size: var(--fs-h3);
      line-height: 1.3;
      color: var(--burgundy-light);
      font-weight: 400;
    }

    .hero-body {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .hero-body p {
      font-size: var(--fs-body);
      line-height: var(--lh-base);
      color: var(--burgundy-75);
    }

    /* ── SECTION COMMON ── */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-header h2 {
      font-size: var(--fs-h2);
      line-height: var(--lh-tight);
      font-weight: 400;
      font-family: var(--font-serif);
      color: var(--burgundy);
      margin: 28px 0 0;
    }

    .section-header p {
      font-size: var(--fs-body);
      line-height: var(--lh-base);
      color: var(--burgundy-65);
      max-width: 759px;
      margin: 16px auto 0;
      text-align: center;
    }

    /* ── FORMAZIONE ── */
    .formazione {
      background: linear-gradient(to bottom, #fff, rgba(224, 207, 194, 0.1));
      padding: 80px var(--side) 0;
    }

    .formazione-extra {
      max-width: 760px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .formazione-extra p {
      font-size: var(--fs-body);
      line-height: var(--lh-base);
      color: var(--burgundy-65);
      margin-bottom: 16px;
    }

    .cards-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding-bottom: 80px;
    }

    .card {
      background: var(--card-gradient);
      border-radius: 28px;
      box-shadow: var(--card-shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }

    .card:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .card-img {
      position: relative;
      width: 100%;
      aspect-ratio: 1.4;
      background: transparent;
      padding: 0;
      border-bottom: 1px solid rgba(119, 16, 22, 0.05);
      overflow: hidden;
    }

    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-body {
      padding: 32px;
      flex: 1;
    }

    .card-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 12px;
    }

    .card-icon img {
      width: 100%;
      height: 100%;
    }

    .card h3 {
      font-family: var(--font-serif);
      font-size: 22px;
      line-height: 30px;
      color: var(--burgundy);
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .card p {
      font-size: 14px;
      line-height: 22.75px;
      color: var(--burgundy-65);
    }

    /* ── ESPERIENZA ── */
    .esperienza {
      background: #fff;
      padding: 80px var(--side);
    }

    .collab-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .collab-card {
      border: 2px solid rgba(224, 207, 194, 0.4);
      border-radius: 24px;
      padding: 32px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      transition: all 0.4s ease;
      background: var(--card-gradient);
    }

    .collab-card:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .collab-icon-wrap {
      width: 80px;
      height: 80px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .collab-icon-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .collab-card h3 {
      font-size: 18px;
      line-height: 28px;
      color: var(--burgundy);
      font-weight: 400;
    }

    .collab-card p {
      font-size: 14px;
      line-height: 20px;
      color: var(--burgundy-55);
    }

    .esperienza-note {
      font-size: 16px;
      line-height: 26px;
      color: var(--burgundy-60);
      text-align: center;
      max-width: 746px;
      margin: 40px auto 0;
    }

    /* ── PER TE ── */
    .per-te {
      background: linear-gradient(to bottom, rgba(224, 207, 194, 0.08), #fff);
      padding: 80px var(--side) 80px;
      overflow: hidden;
      position: relative;
    }

    .per-te::before {
      content: '';
      position: absolute;
      width: 288px;
      height: 288px;
      background: rgba(224, 207, 194, 0.1);
      border-radius: 50%;
      filter: blur(64px);
      top: -80px;
      right: 40px;
      pointer-events: none;
    }

    .target-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
    }

    .target-card {
      background: var(--card-gradient);
      border-radius: 28px;
      box-shadow: var(--card-shadow);
      overflow: hidden;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }

    .target-card:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .target-card-img {
      height: 280px;
      overflow: hidden;
      background: #fdfaf7;
    }

    .target-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
      display: block;
    }

    .target-card-body {
      padding: 28px;
    }

    .target-card h3 {
      font-size: 20px;
      line-height: 28px;
      color: var(--burgundy);
      font-weight: 400;
      margin-bottom: 12px;
    }

    .target-card p {
      font-size: 14px;
      line-height: 22.75px;
      color: var(--burgundy-65);
      margin-bottom: 8px;
    }

    .target-card em {
      font-size: 14px;
      line-height: 20px;
      color: var(--burgundy-50);
      font-style: italic;
    }

    /* ── APPROCCIO ── */
    .approccio {
      background: #fff;
      padding: 80px var(--side) 80px;
    }

    .approach-block {
      background: var(--card-gradient);
      border-radius: 32px;
      box-shadow: var(--card-shadow);
      padding: 56px 40px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: stretch;
      margin-top: 48px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      flex-wrap: wrap;
      gap: 32px 0;
    }

    .approach-item {
      flex: 1;
      min-width: 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      padding: 0 16px;
    }

    .approach-item u {
      font-family: 'Lora', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--burgundy);
      text-decoration: underline;
      text-underline-offset: 6px;
      text-decoration-color: rgba(119, 16, 22, 0.4);
      margin-bottom: 12px;
      display: block;
    }

    .approach-item p {
      font-size: 15px;
      font-weight: 500;
      line-height: 24px;
      color: var(--burgundy-75);
      margin: 0;
    }

    .approach-divider {
      width: 1px;
      background: rgba(119, 16, 22, 0.15);
      flex-shrink: 0;
    }

    /* ── MISSIONE ── */
    .missione {
      background: linear-gradient(to bottom, rgba(224, 207, 194, 0.1), #fff);
      padding: 80px 83px;
    }

    .missione-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .missione-header .label {
      margin-bottom: 12px;
    }

    .missione-header h2 {
      font-size: var(--fs-h2);
      line-height: 1.2;
      font-weight: 400;
      color: var(--burgundy);
    }

    .missione-box {
      background: linear-gradient(155deg, rgba(224, 207, 194, 0.44) 3%, rgba(255, 255, 255, 0.66) 43%, rgba(224, 207, 194, 0.44) 85%);
      border-radius: 32px;
      box-shadow: var(--card-shadow);
      padding: 56px 48px 48px;
      text-align: center;
      position: relative;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }

    .missione-box:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .missione-quote,
    .quote-icon-mark {
      font-family: var(--font-serif);
      font-size: 140px;
      line-height: 1;
      color: rgba(119, 16, 22, 0.05);
      display: block;
      margin: -40px auto -60px;
      text-align: center;
      user-select: none;
      pointer-events: none;
    }

    .missione-box p {
      font-size: 18px;
      line-height: 29.25px;
      color: var(--burgundy-75);
      max-width: 833px;
      margin: 0 auto 16px;
    }

    .missione-box em {
      display: block;
      font-style: italic;
      font-size: 18px;
      line-height: 29.25px;
      color: var(--burgundy-60);
      max-width: 813px;
      margin: 8px auto 0;
    }

    /* ── LA SEDUTA ── */
    .seduta {
      background: #fff;
      padding: 80px var(--side);
    }

    .seduta-inner {
      display: flex;
      gap: 48px;
      margin-top: 48px;
      align-items: flex-start;
    }

    .seduta-photo {
      flex: 0 0 488px;
      aspect-ratio: 3 / 4;
      height: auto;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
      margin-top: 0;
    }

    .seduta-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .seduta-steps {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 24px;
      border-radius: 18px;
      min-height: 74px;
      transition: all 0.4s ease;
      background: var(--card-gradient);
      border: 1px solid transparent;
    }

    .step:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateX(5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .step-number {
      font-family: var(--font-sans);
      font-size: 34px;
      font-weight: 400;
      color: var(--burgundy);
      width: 40px;
      height: 40px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .step p {
      font-size: 16px;
      line-height: 26px;
      color: var(--burgundy-75);
      margin: 0;
    }

    .seduta-notes {
      max-width: 757px;
      margin: 40px auto 0;
      text-align: center;
    }

    .seduta-notes p {
      font-size: 16px;
      line-height: 26px;
      color: var(--burgundy-60);
      margin-bottom: 12px;
    }

    /* ── QUOTE ── */
    .quote-section {
      background: linear-gradient(to bottom, rgba(224, 207, 194, 0.08), #fff);
      padding: 80px 83px;
    }

    .quote-box {
      background: linear-gradient(153deg, rgba(119, 16, 22, 0.05) 6%, rgba(224, 207, 194, 0.2) 50%, rgba(119, 16, 22, 0.05) 94%);
      border-radius: 32px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      padding: 56px 56px 48px;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }

    .quote-box:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .quote-box blockquote {
      font-style: italic;
      font-size: 24px;
      line-height: 39px;
      color: var(--burgundy-80);
      text-align: center;
      max-width: 824px;
      margin: 0 auto 16px;
    }

    .quote-attribution {
      font-size: 16px;
      line-height: 24px;
      color: var(--burgundy-50);
      text-align: center;
      margin-bottom: 40px;
    }

    .quote-body {
      max-width: 672px;
      margin: 0 auto;
    }

    .quote-body p {
      font-size: 16px;
      line-height: 26px;
      color: var(--burgundy-65);
      margin-bottom: 16px;
    }

    /* ── STUDIO ── */
    .studio {
      background: #fff;
      padding: 80px 83px;
    }

    .studio-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .studio-header .label {
      margin-bottom: 12px;
    }

    .studio-header h2 {
      font-size: var(--fs-h2);
      line-height: 1.2;
      font-weight: 400;
      color: var(--burgundy);
    }

    .studio-box {
      background: linear-gradient(166deg, rgba(224, 207, 194, 0.44) 3%, rgba(255, 255, 255, 0.66) 43%, rgba(224, 207, 194, 0.44) 85%);
      border-radius: 28px;
      box-shadow: var(--card-shadow);
      padding: 40px 48px;
      text-align: center;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }

    .studio-box:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .studio-pin {
      width: 48px;
      height: 48px;
      display: block;
      margin: 0 auto 24px;
    }

    .studio-box p {
      font-size: 18px;
      line-height: 29.25px;
      color: var(--burgundy-75);
      max-width: 663px;
      margin: 0 auto;
    }

    .studio-box strong {
      font-weight: 700;
      color: var(--burgundy);
    }

    .studio-box a {
      text-decoration: none;
      color: inherit;
    }

    .studio-box a:hover {
      text-decoration: none;
    }

    /* ── CTA ── */
    .cta {
      background: linear-gradient(to bottom, rgba(224, 207, 194, 0.1), #fff);
      padding: 80px var(--side) 80px;
      text-align: center;
    }

    .cta h2 {
      font-size: var(--fs-h2);
      line-height: 1.2;
      font-weight: 400;
      color: var(--burgundy);
      margin-bottom: 24px;
    }

    .cta p {
      font-size: var(--fs-body);
      line-height: 1.6;
      color: var(--burgundy-65);
      max-width: 621px;
      margin: 0 auto 40px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 18px 48px;
      background: linear-gradient(180deg, #a31d25 0%, #771016 50%, #5e0d11 100%);
      color: #fff;
      text-decoration: none;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-family: var(--font-sans);
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
      box-shadow:
          0 20px 40px rgba(119, 16, 22, 0.3),
          0 10px 15px rgba(0, 0, 0, 0.1),
          inset 0 1px 0px rgba(255, 255, 255, 0.4),
          inset 0 0 20px rgba(255, 255, 255, 0.05),
          inset 0 -3px 6px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 1;
      cursor: pointer;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 100%;
      background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 75%);
      pointer-events: none;
      z-index: 2;
    }

    .btn-primary:hover {
      transform: translateY(-5px) scale(1.03);
      box-shadow: 0 25px 50px rgba(119, 16, 22, 0.45);
      background: linear-gradient(180deg, #b8212a 0%, #8b131a 50%, #700f14 100%);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(32px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-text,
    .hero-photo,
    .section-header,
    .formazione-extra,
    .cards-row,
    .collab-grid,
    .target-grid,
    .approach-pills,
    .missione-box,
    .seduta-inner,
    .seduta-notes,
    .quote-box,
    .studio-box,
    .cta h2,
    .cta p,
    .btn-primary {
      animation: fadeUp 0.7s ease both;
    }

    .hero-photo {
      animation-delay: 0.1s;
    }

    .hero-text {
      animation-delay: 0.25s;
    }

    /* ── ACCESSIBILITY ── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      background: var(--burgundy);
      color: #fff;
      padding: 12px 24px;
      border-radius: 0 0 8px 8px;
      font-family: var(--font);
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      z-index: 9999;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 0;
      outline: 3px solid #fff;
      outline-offset: 2px;
    }

    :focus-visible {
      outline: 3px solid var(--burgundy);
      outline-offset: 3px;
      border-radius: 4px;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid var(--burgundy);
      box-shadow: 0 0 0 6px rgba(119, 16, 22, 0.15);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      :root {
        --fs-body: 16px;
      }

      .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 120px 20px 60px;
      }

      .hero-name {
        font-size: var(--fs-h1);
        line-height: 1.1;
        white-space: normal;
      }

      .hero-title {
        font-size: var(--fs-h3);
      }

      .section-header h2 {
        font-size: var(--fs-h2);
        line-height: 1.2;
        white-space: normal;
        margin-top: 15px;
      }

      .section-header p {
        font-size: var(--fs-body);
        line-height: 1.5;
      }

      .missione,
      .collab,
      .approach,
      .seduta,
      .studio,
      .cta,
      .quote-section {
        padding: 60px 20px;
      }

      .cards-row,
      .collab-grid,
      .target-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .card-img {
        height: auto;
      }

      .approach-block {
        padding: 32px 24px;
        flex-direction: column;
        gap: 32px;
      }

      .approach-item {
        padding: 0;
        min-width: 100%;
      }

      .approach-divider {
        display: none;
      }

      .cards-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }

      .cards-row .card {
        flex: 0 0 calc(50% - 10px); /* Larghezza fissa al 50% meno il gap */
        min-width: 0; /* Previene overflow */
      }

      .collab-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }

      .collab-grid > div {
        flex: 0 0 calc(50% - 10px);
      }

      .missione-header h2 {
        font-size: var(--fs-h2);
        line-height: 1.2;
      }

      .missione-box {
        padding: 32px 24px;
      }

      .quote-section {
        padding: 48px 24px;
      }

      .quote-box {
        padding: 32px 24px;
        margin-top: 60px;
      }

      .missione-quote {
        font-size: 80px;
        margin-top: -20px;
      }

      .cta h2 {
        font-size: var(--fs-h2);
        line-height: 1.2;
      }

      .cta p {
        font-size: var(--fs-body);
        line-height: 1.5;
      }

      .btn-primary {
        width: 100%;
        text-align: center;
        padding: 18px 24px;
      }
    }

    @media (max-width: 768px) {

      .cards-row,
      .collab-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .cards-row .card,
      .collab-grid > div {
        flex: 0 0 100%;
        width: 100%;
      }

      .seduta-steps {
        padding-right: 0;
      }

      .seduta-intro p {
        padding-right: 0;
      }

      .hero-inner {
        flex-direction: column;
        gap: 40px;
      }

      .hero-photo {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: auto;
      }

      .seduta-inner {
        flex-direction: column;
        gap: 40px;
      }

      .seduta-photo {
        flex: none;
        width: 100%;
        height: auto;
        margin-top: 0;
      }

      .missione-box {
        padding: 32px 20px;
      }

      .quote-section {
        padding: 40px 20px;
      }

      .quote-box {
        padding: 32px 20px;
        border-radius: 32px;
      }

      .step-number {
        font-size: 28px;
        width: 34px;
      }
    }

/* Reveal Animations */
.reveal {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 1.2s;
    will-change: transform, opacity, visibility;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-top {
    transform: translateY(-40px);
}

.reveal.reveal-zoom {
    transform: scale(0.92);
}

.reveal.in,
.reveal.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

.d1, .reveal-delay-1 { transition-delay: 0.15s; }
.d2, .reveal-delay-2 { transition-delay: 0.3s; }
.d3, .reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }
.reveal-delay-6 { transition-delay: 0.9s; }

/* Mobile Slider Force for Formazione and Esperienza */
@media (max-width: 768px) {
    .cards-row,
    .collab-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding-top: 10px !important;
        padding-bottom: 40px !important;
        padding-left: 7.5% !important; 
        padding-right: 7.5% !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
        scrollbar-width: none !important;
        width: calc(100% + 48px) !important;
        scroll-padding-left: 7.5% !important;
    }
    .cards-row::-webkit-scrollbar,
    .collab-grid::-webkit-scrollbar {
        display: none !important;
    }
    .cards-row .card,
    .collab-grid .collab-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        display: flex !important; /* Keep as flex so internal card layout works */
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}

/* ==========================================================================
   MINI SLIDER ATTESTATI (OSTEOPATIA TESSUTALE)
   ========================================================================== */
.slider-container {
    position: relative !important;
}

.slider-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* Pulsanti di Controllo */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(119, 16, 22, 0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: none;
    padding: 0;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #771016;
}

.slider-btn.prev-btn {
    left: 10px;
}

.slider-btn.next-btn {
    right: 10px;
}

/* Punti Indicatori (Dots) */
.slider-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(119, 16, 22, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #771016;
    transform: scale(1.15);
}

/* ==========================================================================
   CARD ACCORDION DETAILS (Leggi di più)
   ========================================================================== */
.card-intro p {
    font-family: var(--font-alt);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--burgundy-75);
    margin: 0;
}

.card-details-grid {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-details-grid.open {
    grid-template-rows: 1fr;
}

.card-details-content {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, padding 0.35s ease;
    padding-top: 0;
}

.card-details-grid.open .card-details-content {
    opacity: 1;
    padding-top: 16px;
}

.card-details-content p {
    font-family: var(--font-alt);
    font-size: 14px;
    line-height: 1.65;
    color: var(--burgundy-65);
    margin: 0;
}

.btn-read-more {
    background: transparent;
    border: none;
    color: var(--burgundy);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.82em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    margin-top: 18px;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(119, 16, 22, 0.25);
    padding-bottom: 2px;
}

.btn-read-more:hover {
    color: var(--burgundy-light);
    border-bottom-color: var(--burgundy-light);
}

.btn-read-more .chevron-icon {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-read-more.active .chevron-icon {
    transform: rotate(180deg);
}

