  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  <link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap" rel="stylesheet" />
  <style>

    /* ── RESET & BASE ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --sage:    #3D5A47;
      --sage2:   #4F7460;
      --cream:   #F7F3EE;
      --sand:    #E8DDD0;
      --terr:    #C06840;
      --terr2:   #D4805A;
      --dark:    #1C2820;
      --mid:     #6B7A6E;
      --white:   #FFFFFF;
      --text:    #2A3328;

      --ff-display: 'DM Serif Display', serif;
      --ff-body:    'DM Sans', sans-serif;

      --radius-sm: 4px;
      --radius:    12px;
      --radius-lg: 24px;
      --shadow:    0 12px 48px rgba(28,40,32,.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff-body);
      background: var(--cream);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }

    /* ── UTILITIES ───────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--terr);
      color: var(--white);
      font-family: var(--ff-body);
      font-weight: 600;
      font-size: 1rem;
      padding: 16px 34px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background .22s, transform .15s, box-shadow .22s;
      text-decoration: none;
      letter-spacing: .01em;
      box-shadow: 0 4px 20px rgba(192,104,64,.25);
    }
    .btn-primary:hover {
      background: var(--terr2);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(192,104,64,.35);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--sage);
      font-family: var(--ff-body);
      font-weight: 600;
      font-size: 1rem;
      padding: 15px 32px;
      border-radius: 50px;
      border: 2px solid var(--sage);
      cursor: pointer;
      transition: background .22s, color .22s;
      text-decoration: none;
    }
    .btn-outline:hover { background: var(--sage); color: var(--white); }

    .eyebrow {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--terr);
      margin-bottom: 14px;
    }

    .section-label {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--mid);
    }

    /* ── NAV ─────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      padding: 18px 0;
      transition: background .3s, padding .3s, box-shadow .3s;
    }

    .nav.scrolled {
      background: rgba(247,243,238,.95);
      backdrop-filter: blur(12px);
      padding: 12px 0;
      box-shadow: 0 2px 20px rgba(28,40,32,.07);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .nav-logo .name {
      font-family: var(--ff-display);
      font-size: 1.35rem;
      color: var(--dark);
      letter-spacing: -.01em;
    }

    .nav-logo .role {
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: .9rem;
      font-weight: 500;
      color: var(--text);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--terr); }

    .nav-cta { font-size: .9rem !important; padding: 11px 24px !important; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }

    /* ── HERO ────────────────────────────────────────── */
    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 0 80px;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    /* decorative organic shape */
    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -8%;
      width: 55%;
      height: 80%;
      background: var(--sand);
      border-radius: 60% 40% 50% 60% / 60% 50% 40% 55%;
      pointer-events: none;
      z-index: 0;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-copy {}

    .hero-tag-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .hero-tag-row::before {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: var(--terr);
      border-radius: 2px;
    }

    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(2.8rem, 5vw, 4.6rem);
      color: var(--dark);
      line-height: 1.08;
      letter-spacing: -.02em;
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: italic;
      color: var(--sage);
    }

    .hero-sub {
      font-size: 1.08rem;
      color: var(--mid);
      font-weight: 300;
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 48px;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .proof-avatars {
      display: flex;
    }

    .proof-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--cream);
      margin-left: -10px;
      background: var(--sage);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      font-weight: 600;
      color: var(--white);
      flex-shrink: 0;
    }
    .proof-avatar:first-child { margin-left: 0; }
    .proof-avatar:nth-child(2) { background: var(--terr); }
    .proof-avatar:nth-child(3) { background: #8B7355; }
    .proof-avatar:nth-child(4) { background: var(--sage2); }

    .proof-text {
      font-size: .85rem;
      color: var(--mid);
      line-height: 1.4;
    }

    .proof-text strong {
      display: block;
      font-weight: 600;
      color: var(--dark);
      font-size: .9rem;
    }

    .hero-image-wrap {
      position: relative;
    }

    .hero-img-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      aspect-ratio: 4/5;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, var(--sage) 0%, var(--sage2) 50%, var(--dark) 100%);
      position: relative;
    }

    /* Placeholder portrait */
    .portrait-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding-bottom: 32px;
    }

    .portrait-circle {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .portrait-circle svg { width: 80px; height: 80px; fill: rgba(255,255,255,.5); }

    .portrait-name {
      font-family: var(--ff-display);
      font-size: 2rem;
      color: var(--white);
      letter-spacing: -.02em;
    }

    .portrait-role {
      font-size: .78rem;
      color: rgba(255,255,255,.6);
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* floating badge */
    .hero-float-badge {
      position: absolute;
      left: -24px;
      top: 36%;
      background: var(--white);
      border-radius: var(--radius);
      padding: 16px 20px;
      box-shadow: 0 8px 32px rgba(28,40,32,.14);
      min-width: 180px;
      animation: floatY 4s ease-in-out infinite;
    }

    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .float-badge-label {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 6px;
    }

    .float-badge-value {
      font-family: var(--ff-display);
      font-size: 1.8rem;
      color: var(--sage);
      line-height: 1;
    }

    .float-badge-sub {
      font-size: .78rem;
      color: var(--mid);
      margin-top: 2px;
    }

    .hero-float-tag {
      position: absolute;
      right: -16px;
      bottom: 20%;
      background: var(--terr);
      color: var(--white);
      border-radius: var(--radius);
      padding: 12px 18px;
      box-shadow: 0 6px 24px rgba(192,104,64,.3);
      animation: floatY 4s ease-in-out infinite .8s;
    }

    .hero-float-tag p {
      font-size: .8rem;
      font-weight: 600;
      line-height: 1.4;
    }

    /* ── ABOUT STRIP ─────────────────────────────────── */
    .about-strip {
      background: var(--sage);
      padding: 48px 0;
    }

    .about-strip-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-strip h2 {
      font-family: var(--ff-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -.01em;
    }

    .about-strip h2 em { font-style: italic; color: var(--sand); }

    .about-strip p {
      color: rgba(255,255,255,.72);
      font-size: .95rem;
      font-weight: 300;
      line-height: 1.8;
    }

    .about-strip p + p { margin-top: 12px; }

    /* ── NUMERI ──────────────────────────────────────── */
    .numeri {
      background: var(--cream);
      padding: 80px 0;
    }

    .numeri-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--sand);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .numero {
      background: var(--cream);
      padding: 40px 32px;
      text-align: center;
    }

    .numero-val {
      font-family: var(--ff-display);
      font-size: 3.2rem;
      color: var(--sage);
      line-height: 1;
      margin-bottom: 8px;
    }

    .numero-label {
      font-size: .88rem;
      color: var(--mid);
      font-weight: 400;
      line-height: 1.5;
    }

    /* ── PERCORSO / METODO ───────────────────────────── */
    .metodo {
      background: var(--white);
      padding: 100px 0;
    }

    .metodo-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 72px;
    }

    .metodo-header h2 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--dark);
      line-height: 1.1;
      letter-spacing: -.02em;
    }

    .metodo-header p {
      color: var(--mid);
      font-size: .98rem;
      font-weight: 300;
      line-height: 1.8;
    }

    .metodo-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .metodo-step {
      position: relative;
    }

    .step-num {
      font-family: var(--ff-display);
      font-size: 4rem;
      color: var(--sand);
      line-height: 1;
      margin-bottom: 16px;
    }

    .step-line {
      width: 40px;
      height: 3px;
      background: var(--terr);
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .metodo-step h3 {
      font-family: var(--ff-body);
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .metodo-step p {
      font-size: .88rem;
      color: var(--mid);
      font-weight: 300;
      line-height: 1.75;
    }

    /* ── SERVIZI ─────────────────────────────────────── */
    .servizi {
      background: var(--cream);
      padding: 100px 0;
    }

    .servizi-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .servizi-header h2 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--dark);
      letter-spacing: -.02em;
      margin-bottom: 12px;
    }

    .servizi-header p {
      color: var(--mid);
      font-size: 1rem;
      font-weight: 300;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.75;
    }

    .servizi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .servizio-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: transform .25s, box-shadow .25s;
    }

    .servizio-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--sage), var(--terr));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .servizio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .servizio-card:hover::after { transform: scaleX(1); }

    .servizio-card.featured {
      background: var(--sage);
      grid-column: span 1;
    }

    .servizio-card.featured::after { display: none; }

    .servizio-emoji {
      font-size: 2rem;
      margin-bottom: 16px;
      display: block;
    }

    .servizio-card h3 {
      font-family: var(--ff-body);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .servizio-card.featured h3 { color: var(--white); }

    .servizio-card p {
      font-size: .88rem;
      color: var(--mid);
      font-weight: 300;
      line-height: 1.75;
    }

    .servizio-card.featured p { color: rgba(255,255,255,.7); }

    .servizio-tag {
      display: inline-block;
      margin-top: 16px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
      background: rgba(192,104,64,.1);
      color: var(--terr);
    }

    .servizio-card.featured .servizio-tag {
      background: rgba(255,255,255,.15);
      color: var(--white);
    }

    /* ── TRASFORMAZIONI ──────────────────────────────── */
    .trasformazioni {
      background: var(--white);
      padding: 100px 0;
    }

    .trasformazioni-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 24px;
      flex-wrap: wrap;
    }

    .trasformazioni-header h2 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--dark);
      letter-spacing: -.02em;
      line-height: 1.1;
    }

    .trasformazioni-header p {
      color: var(--mid);
      font-size: .9rem;
      font-weight: 300;
      max-width: 300px;
      text-align: right;
      line-height: 1.7;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 28px 24px;
      position: relative;
    }

    .review-card.large {
      grid-column: span 2;
      background: var(--sage);
    }

    .review-quote {
      font-family: var(--ff-display);
      font-size: 3.5rem;
      color: var(--terr);
      line-height: .8;
      margin-bottom: 12px;
      opacity: .5;
    }

    .review-card.large .review-quote { color: rgba(255,255,255,.3); }

    .review-text {
      font-size: .95rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 20px;
      font-style: italic;
    }

    .review-card.large .review-text { color: rgba(255,255,255,.85); }

    .review-result {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(192,104,64,.1);
      color: var(--terr);
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
    }

    .review-card.large .review-result { background: rgba(255,255,255,.15); color: var(--white); }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--sage);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-size: 1rem;
      color: var(--white);
      flex-shrink: 0;
    }

    .review-card.large .review-av { background: rgba(255,255,255,.2); }

    .review-info {}

    .review-name {
      font-weight: 600;
      font-size: .88rem;
      color: var(--dark);
    }

    .review-card.large .review-name { color: var(--white); }

    .review-detail {
      font-size: .78rem;
      color: var(--mid);
    }

    .review-card.large .review-detail { color: rgba(255,255,255,.55); }

    /* ── PRENOTAZIONE ────────────────────────────────── */
    .booking {
      background: var(--cream);
      padding: 100px 0;
    }

    .booking-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .booking-copy h2 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--dark);
      line-height: 1.1;
      letter-spacing: -.02em;
      margin-bottom: 16px;
    }

    .booking-copy h2 em { font-style: italic; color: var(--sage); }

    .booking-copy p {
      color: var(--mid);
      font-size: .98rem;
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .booking-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .booking-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .bf-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--terr);
      margin-top: 7px;
      flex-shrink: 0;
    }

    .booking-feature p {
      font-size: .92rem;
      color: var(--text);
      font-weight: 400;
      margin: 0;
      line-height: 1.6;
    }

    .booking-feature strong { font-weight: 600; color: var(--dark); }

    /* FORM */
    .booking-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      box-shadow: 0 8px 40px rgba(28,40,32,.08);
    }

    .form-title {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .form-subtitle {
      font-size: .85rem;
      color: var(--mid);
      font-weight: 300;
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }

    .field.full { grid-column: span 2; }

    .field label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .field input,
    .field select,
    .field textarea {
      background: var(--cream);
      border: 1.5px solid var(--sand);
      border-radius: var(--radius-sm);
      color: var(--text);
      font-family: var(--ff-body);
      font-size: .95rem;
      font-weight: 400;
      padding: 13px 16px;
      width: 100%;
      outline: none;
      transition: border-color .2s, background .2s;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--sage);
      background: var(--white);
    }

    .field textarea { resize: vertical; min-height: 90px; }

    .field select option { background: var(--white); }

    .obiettivo-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .obiettivo-btn {
      background: var(--cream);
      border: 1.5px solid var(--sand);
      border-radius: var(--radius-sm);
      padding: 10px 12px;
      font-family: var(--ff-body);
      font-size: .85rem;
      color: var(--text);
      cursor: pointer;
      transition: all .2s;
      text-align: center;
    }

    .obiettivo-btn.selected {
      background: var(--sage);
      border-color: var(--sage);
      color: var(--white);
      font-weight: 600;
    }

    .obiettivo-btn:hover:not(.selected) {
      border-color: var(--sage);
      color: var(--sage);
    }

    .form-btn-wrap {
      margin-top: 20px;
    }

    .form-btn-wrap .btn-primary { width: 100%; justify-content: center; }

    .form-privacy {
      text-align: center;
      font-size: .75rem;
      color: var(--mid);
      font-weight: 300;
      margin-top: 12px;
    }

    /* ── FAQ ─────────────────────────────────────────── */
    .faq {
      background: var(--white);
      padding: 100px 0;
    }

    .faq-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .faq-intro h2 {
      font-family: var(--ff-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--dark);
      letter-spacing: -.02em;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .faq-intro p {
      color: var(--mid);
      font-size: .95rem;
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--sand);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 0;
      cursor: pointer;
      font-weight: 500;
      font-size: .95rem;
      color: var(--dark);
      user-select: none;
    }

    .faq-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s, transform .35s;
      color: var(--sage);
      font-size: 1rem;
    }

    .faq-item.open .faq-arrow { background: var(--sage); color: var(--white); transform: rotate(45deg); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }

    .faq-a-inner {
      padding-bottom: 20px;
      font-size: .9rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.8;
    }

    .faq-item.open .faq-a { max-height: 300px; }

    /* ── CTA FINALE ──────────────────────────────────── */
    .cta-final {
      background: var(--dark);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-final::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(61,90,71,.4) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-final-inner { position: relative; z-index: 1; }

    .cta-final .eyebrow { color: var(--sand); }

    .cta-final h2 {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      color: var(--white);
      letter-spacing: -.02em;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .cta-final h2 em { font-style: italic; color: var(--terr2); }

    .cta-final p {
      color: rgba(255,255,255,.55);
      font-size: .98rem;
      font-weight: 300;
      max-width: 460px;
      margin: 0 auto 40px;
      line-height: 1.75;
    }

    .cta-final-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--dark);
      font-family: var(--ff-body);
      font-weight: 600;
      font-size: 1rem;
      padding: 16px 34px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
      text-decoration: none;
    }
    .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

    .btn-ghost-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: rgba(255,255,255,.7);
      font-family: var(--ff-body);
      font-weight: 500;
      font-size: 1rem;
      padding: 15px 32px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,.2);
      cursor: pointer;
      transition: border-color .2s, color .2s;
      text-decoration: none;
    }
    .btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

    .cta-note {
      margin-top: 20px;
      font-size: .78rem;
      color: rgba(255,255,255,.3);
      font-weight: 300;
    }

    /* ── FOOTER ──────────────────────────────────────── */
    .footer {
      background: #111915;
      padding: 56px 0 24px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .footer-brand .name {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: 8px;
    }

    .footer-brand p {
      font-size: .88rem;
      font-weight: 300;
      color: rgba(255,255,255,.45);
      line-height: 1.7;
      max-width: 280px;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,.07);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      color: rgba(255,255,255,.5);
      transition: background .2s, color .2s;
    }

    .social-btn:hover { background: var(--terr); color: var(--white); }

    .footer h4 {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      margin-bottom: 16px;
    }

    .footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer ul li {
      font-size: .88rem;
      font-weight: 300;
      color: rgba(255,255,255,.55);
    }

    .footer-bottom {
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.2); font-weight: 300; }

    /* ── SCROLL ANIMATIONS ───────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-image-wrap { display: none; }
      .about-strip-inner { grid-template-columns: 1fr; gap: 24px; }
      .numeri-inner { grid-template-columns: repeat(2, 1fr); }
      .metodo-header { grid-template-columns: 1fr; }
      .metodo-steps { grid-template-columns: 1fr 1fr; }
      .servizi-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .review-card.large { grid-column: span 1; }
      .booking-inner { grid-template-columns: 1fr; }
      .booking-form { padding: 28px 20px; }
      .faq-inner { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }

    @media (max-width: 600px) {
      .numeri-inner { grid-template-columns: 1fr 1fr; }
      .metodo-steps { grid-template-columns: 1fr; }
      .servizi-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .field.full { grid-column: span 1; }
      .obiettivo-options { grid-template-columns: 1fr 1fr; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .cta-final-actions { flex-direction: column; align-items: center; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .trasformazioni-header p { text-align: left; }
    }

