    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:          #004a4a;
      --bg-2:        #003e3e;
      --bg-card:     #005c5c;
      --bg-card-h:   #007373;
      --gold:        #C9A84C;
      --gold-2:      #dfc46a;
      --gold-glow:   rgba(201,168,76,0.10);
      --gold-border: rgba(201,168,76,0.22);
      --white:       #f0eee8;
      --w60:         rgba(240,238,232,0.60);
      --w35:         rgba(240,238,232,0.35);
      --w15:         rgba(240,238,232,0.15);
      --w07:         rgba(240,238,232,0.07);
      --border:      rgba(255,255,255,0.07);
      --radius:      14px;
      --radius-lg:   22px;
      --ease:        cubic-bezier(0.22, 1, 0.36, 1);
      --font-h:      'Montserrat', sans-serif;
      --font-b:      'Montserrat', sans-serif;
      --font-serif:  'Lexend', sans-serif; /* nome storico: ora e un sans */
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-b); background: var(--bg);
      color: var(--white); overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: var(--gold); color: var(--bg); }

    /* ── UTILS ── */
    .ico { display: inline-block; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
    .ico-sm { width: 16px; height: 16px; }
    .ico-lg { width: 28px; height: 28px; }
    .btn-primary {
      font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      color: var(--bg); background: var(--gold);
      padding: 14px 32px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 12px;
      transition: background 0.2s, transform 0.2s var(--ease);
    }
    .btn-primary:hover { background: var(--gold-2); transform: scale(1.02); }
    .btn-ghost {
      font-family: var(--font-h); font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
      color: var(--w60); border: 1px solid var(--border);
      padding: 13px 28px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 10px;
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--white); border-color: var(--w35); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
      z-index: 1000; height: 58px;
      width: calc(100% - 80px); max-width: 1240px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 28px; border-radius: 100px;
      background: rgba(0,74,74,0.88);
      backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
      border: 1px solid rgba(255,255,255,0.08);
      transition: border-color 0.4s var(--ease), box-shadow 0.4s;
      box-shadow: 0 4px 32px rgba(0,0,0,0.28);
    }
    nav.scrolled { border-color: var(--gold-border); box-shadow: 0 8px 48px rgba(0,0,0,0.48); }
    .nav-brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
    .nav-brand-name { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--white); }
    .nav-brand-sep { width: 1px; height: 14px; background: var(--w35); display: inline-block; }
    .nav-brand-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
    .nav-links a {
      white-space: nowrap;
      font-size: 0.7rem; font-weight: 500; color: var(--w60);
      text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
      transition: color 0.2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
      background: var(--gold); transition: width 0.3s var(--ease);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--white); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta {
      font-family: var(--font-h); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      color: var(--bg); background: var(--gold);
      padding: 9px 22px; border-radius: 100px;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--gold-2); transform: scale(1.03); }
    .ham { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
    .ham span { display: block; width: 20px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
    .ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity: 0; }
    .ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    /* Mobile overlay (backdrop) */
    .mob-overlay {
      position: fixed; inset: 0; z-index: 998;
      background: rgba(6,12,24,0.65); backdrop-filter: blur(6px);
      opacity: 0; pointer-events: none;
      transition: opacity 0.35s var(--ease);
    }
    .mob-overlay.open { opacity: 1; pointer-events: all; }
    /* Mobile drawer */
    .mob-menu {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(320px, 82vw); z-index: 999;
      background: rgba(0,74,74,0.98); backdrop-filter: blur(28px);
      border-left: 1px solid var(--gold-border);
      display: flex; flex-direction: column;
      padding: 80px 40px 44px; gap: 0;
      transform: translateX(100%); pointer-events: none;
      transition: transform 0.42s var(--ease);
    }
    .mob-menu.open { transform: translateX(0); pointer-events: all; }
    .mob-menu a {
      font-family: var(--font-h); font-size: 1.55rem; font-weight: 700;
      color: var(--w60); text-decoration: none; letter-spacing: -0.02em;
      padding: 14px 0; border-bottom: 1px solid var(--border);
      transition: color 0.2s, padding-left 0.25s var(--ease); display: block;
    }
    .mob-menu a:hover, .mob-menu a.active { color: var(--white); padding-left: 8px; }
    .mob-menu a:first-of-type { border-top: 1px solid var(--border); }
    .mob-menu .mob-cta {
      font-family: var(--font-b); font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      background: var(--gold); color: var(--bg);
      padding: 13px 32px; border-radius: 100px;
      text-align: center; display: block; margin-top: 32px; border: none;
    }
    .mob-close {
      position: absolute; top: 18px; right: 18px;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--w07); border: 1px solid var(--border);
      color: var(--w60); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; transition: background 0.2s;
    }
    .mob-close:hover { background: var(--w15); color: var(--white); }

    /* ── HERO SPLIT ── */
    .cs-hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      padding-top: 78px;
      position: relative; overflow: hidden;
    }
    /* Left: text */
    .cs-hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 64px 80px 80px;
      position: relative; z-index: 2;
    }
    .cs-eyebrow {
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 10px; margin-bottom: 32px;
    }
    .cs-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .cs-hero-h1 {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 700; letter-spacing: -0.01em; line-height: 0.97;
      margin-bottom: 36px;
    }
    .cs-hero-h1 em { font-style: italic; color: var(--gold); }
    .cs-hero-lead {
      font-size: 1rem; line-height: 1.82; color: var(--w60);
      font-weight: 300; max-width: 460px; margin-bottom: 52px;
    }
    .cs-hero-lead strong { color: var(--white); font-weight: 500; }
    .cs-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Right: photo */
    .cs-hero-right {
      position: relative; overflow: hidden;
    }
    .cs-hero-photo {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 15%;
      display: block;
      filter: grayscale(12%) contrast(1.06) brightness(0.88);
    }
    .cs-hero-right::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(105deg, var(--bg) 0%, rgba(0,74,74,0.72) 40%, rgba(0,74,74,0.40) 100%);
    }
    .cs-hero-right::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; z-index: 1;
      background: linear-gradient(0deg, var(--bg) 0%, rgba(0,74,74,0.55) 50%, transparent 100%);
    }
    .cs-hero-line {
      position: absolute; top: 15%; bottom: 15%; right: 0; width: 2px; z-index: 2;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
    }


    /* ── SEZIONE PROFILO ── */
    .profilo {
      padding: 120px 72px;
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 80px; align-items: start;
      max-width: 1300px; margin: 0 auto;
    }
    .profilo-left { position: sticky; top: 100px; }
    .section-label {
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
    }
    .section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .profilo-h2 {
      font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700; letter-spacing: -0.01em; line-height: 1.08;
      margin-bottom: 0;
    }
    .profilo-h2 em { font-style: italic; color: var(--gold); }
    .profilo-right { display: flex; flex-direction: column; gap: 28px; }
    .profilo-p {
      font-size: 0.92rem; line-height: 1.92; color: var(--w60); font-weight: 300;
      padding-bottom: 28px; border-bottom: 1px solid var(--border);
    }
    .profilo-p:last-child { border-bottom: none; padding-bottom: 0; }
    .profilo-p strong { color: var(--white); font-weight: 500; }
    .profilo-p em { color: var(--gold); font-style: normal; }

    /* ── APPROCCIO ── */
    .approccio {
      background: var(--bg-2);
      padding: 100px 72px;
      border-top: 1px solid var(--border);
    }
    .approccio-inner { max-width: 1100px; margin: 0 auto; }
    .approccio-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 52px;
    }
    .approccio-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      display: flex; flex-direction: column; gap: 14px;
      transition: border-color 0.3s, transform 0.3s var(--ease);
    }
    .approccio-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
    .approccio-card-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--gold-glow); border: 1px solid var(--gold-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    .approccio-card-title {
      font-family: var(--font-h); font-size: 1.05rem; font-weight: 700;
      color: var(--white); letter-spacing: -0.01em;
    }
    .approccio-card p { font-size: 0.82rem; line-height: 1.8; color: var(--w60); font-weight: 300; }

    /* ── TIMELINE DOPPIA (formazione + docenze) affiancate ── */
    .tl-duo-section {
      padding: 100px 72px;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .tl-duo-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .tl-col {
      /* singola colonna timeline */
    }
    .tl-col + .tl-col {
      padding-left: 64px;
      border-left: 1px solid var(--border);
    }
    .tl-section-head {
      margin-bottom: 52px;
    }
    .tl-section-h2 {
      font-family: var(--font-serif); font-size: clamp(1.6rem, 2.2vw, 2.2rem);
      font-weight: 700; letter-spacing: -0.01em; line-height: 1.08;
      margin-top: 16px;
    }
    .tl-section-h2 em { font-style: italic; color: var(--gold); }

    /* Big vertical timeline */
    .big-timeline { position: relative; }
    .big-tl-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 32px;
      position: relative;
      padding-bottom: 56px;
    }
    .big-tl-item:last-child { padding-bottom: 0; }
    /* Dashed connector line */
    .big-tl-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 27px; top: 56px; bottom: 0;
      border-left: 2px dashed rgba(201,168,76,0.28);
    }
    /* Numbered circle — filled */
    .big-tl-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--bg-card-h);
      border: 1.5px solid var(--gold-border);
      box-shadow: 0 0 0 4px rgba(201,168,76,0.06);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-h); font-size: 0.92rem; font-weight: 700;
      color: var(--white); flex-shrink: 0;
      position: relative; z-index: 1;
      transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .big-tl-item:hover .big-tl-num {
      background: var(--bg-card);
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(201,168,76,0.14);
    }
    /* Content */
    .big-tl-content { padding-top: 14px; }
    /* Tag + title row */
    .big-tl-header {
      display: flex; flex-wrap: wrap; align-items: baseline;
      gap: 10px; margin-bottom: 12px;
    }
    .big-tl-tag {
      font-size: 0.56rem; font-weight: 700; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--gold);
      flex-shrink: 0;
    }
    .big-tl-title {
      font-family: var(--font-h); font-size: 1.08rem; font-weight: 700;
      color: var(--white); line-height: 1.3;
      letter-spacing: -0.01em;
    }
    .big-tl-sub {
      font-size: 0.82rem; color: var(--w60); font-weight: 300; line-height: 1.72;
    }
    .big-tl-badge {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 12px;
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
      background: var(--gold-glow); border: 1px solid var(--gold-border); color: var(--gold);
    }

    /* ── LINGUE ── */
    .lingue {
      padding: 80px 72px;
    }
    .lingue-inner { max-width: 1100px; margin: 0 auto; }
    .lingue-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; margin-top: 40px;
    }
    .lingua-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 20px;
      text-align: center;
      transition: border-color 0.3s, transform 0.3s var(--ease);
    }
    .lingua-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
    .lingua-code {
      font-family: var(--font-h);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--gold);
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
    }
    .lingua-name { font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .lingua-level { font-size: 0.65rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
    .lingua-note { font-size: 0.68rem; color: var(--w35); font-weight: 300; margin-top: 4px; }

    /* ── NOTA PERSONALE ── */
    .nota {
      background: var(--bg-2);
      padding: 80px 72px;
      border-top: 1px solid var(--border);
    }
    .nota-inner {
      max-width: 800px; margin: 0 auto; text-align: center;
    }
    .nota-quote {
      font-family: var(--font-h); font-size: clamp(1.2rem, 2vw, 1.7rem);
      font-weight: 300; font-style: italic; color: var(--w60);
      line-height: 1.6; margin-bottom: 32px;
    }
    .nota-quote em { color: var(--gold); font-weight: 500; }
    .nota-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px; }
    .nota-tag {
      font-size: 0.7rem; color: var(--w60); border: 1px solid var(--border);
      padding: 7px 16px; border-radius: 100px; font-weight: 300;
      transition: border-color 0.2s, color 0.2s;
    }
    .nota-tag:hover { border-color: var(--gold-border); color: var(--gold); }

    /* ── CTA FINALE ── */
    .cta-section {
      padding: 100px 72px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-glow {
      position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 400px; border-radius: 50%;
      background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-h2 {
      font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .cta-h2 em { font-style: italic; color: var(--gold); }
    .cta-sub {
      font-size: 0.88rem; color: var(--w60); font-weight: 300;
      line-height: 1.72; max-width: 480px; margin: 0 auto 48px;
      position: relative; z-index: 1;
    }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

    /* ── FOOTER ── */
    .mini-footer {
      text-align: center; padding: 32px 40px;
      border-top: 1px solid var(--border); background: #003030;
    }
    .mini-footer p { font-size: 0.74rem; color: var(--w15); font-weight: 300; }
    .mini-footer a { color: var(--gold); text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      nav { width: calc(100% - 48px); top: 16px; }
      .cs-hero { grid-template-columns: 1fr; padding-top: 74px; }
      .cs-hero-right { min-height: 55vh; order: -1; }
      .cs-hero-left { padding: 60px 40px; }
      .profilo { grid-template-columns: 1fr; padding: 80px 40px; gap: 40px; }
      .profilo-left { position: static; }
      .approccio { padding: 80px 40px; }
      .approccio-grid { grid-template-columns: 1fr 1fr; }
      .tl-duo-section { padding: 80px 40px; }
      .tl-duo-cols { grid-template-columns: 1fr; gap: 64px; }
      .tl-col + .tl-col { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 64px; }
      .lingue { padding: 60px 40px; }
      .nota { padding: 60px 40px; }
      .cta-section { padding: 80px 40px; }
    }
    @media (max-width: 768px) {
      .ham { display: flex; }
      nav { width: calc(100% - 28px); padding: 0 14px; top: 10px; height: 52px; }
      .nav-links, .nav-actions { display: none; }
      .cs-hero-left { padding: 40px 20px 50px; }
      .cs-hero-right::before { background: linear-gradient(0deg, var(--bg) 0%, rgba(0,74,74,0.5) 50%, transparent 100%); }
      .profilo { padding: 60px 20px; }
      .approccio { padding: 60px 20px; }
      .approccio-grid { grid-template-columns: 1fr; }
      .tl-duo-section { padding: 60px 20px; }
      .big-tl-item { grid-template-columns: 46px 1fr; gap: 18px; padding-bottom: 44px; }
      .big-tl-num { width: 46px; height: 46px; font-size: 0.82rem; }
      .big-tl-item:not(:last-child)::after { left: 22px; top: 46px; }
      .big-tl-header { flex-direction: column; gap: 4px; }
      .lingue { padding: 48px 20px; }
      .lingue-grid { grid-template-columns: repeat(2,1fr); }
      .nota { padding: 48px 20px; }
      .cta-section { padding: 60px 20px; }
    }
  
    /* ── NAV LOGO ── */
    .nav-logo { height: 36px; width: auto; display: block; opacity: 0.95; transition: opacity 0.2s; }
    .nav-brand:hover .nav-logo { opacity: 1; }
    @media (max-width: 768px) { .nav-logo { height: 28px; } }
    @media (max-width: 1100px) {
      .nav-links, .nav-cta, .nav-actions { display: none; }
      .ham { display: flex; }
      .nav-brand-sub, .nav-brand-sep { display: none; }
    }
    


    /* ── FOOTER COMPLETO (condiviso con la home) ── */
    footer { background: #003030; padding: 80px 72px 0; }
    .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
    .footer-brand-name { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
    .footer-brand-sub { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
    .footer-about { font-size: 0.8rem; color: var(--w35); line-height: 1.88; font-weight: 300; }
    .footer-col-h { font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; color: var(--white); margin-bottom: 22px; letter-spacing: 0.04em; text-transform: uppercase; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 0.8rem; color: var(--w35); text-decoration: none; font-weight: 300; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
    .footer-links a:hover { color: var(--gold); padding-left: 5px; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--w35); font-size: 0.8rem; font-weight: 300; }
    .footer-contact-item a { color: var(--w35); text-decoration: none; transition: color 0.2s; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom-text { font-size: 0.74rem; color: var(--w15); font-weight: 300; }
    @media (max-width: 1100px) {
      footer { padding: 60px 40px 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      footer { padding: 50px 20px 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }

    /* ── RESPONSIVE HARDENING: mai scroll orizzontale (iOS ignora overflow-x su body) ── */
    html { overflow-x: hidden; overflow-x: clip; }
