  <style>
    /* =========================================================
       RESET & BASE
    ========================================================= */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --ivory:       #F5F0E8;
      --navy:        #0A1628;
      --teal:        #0A7C73;
      --teal-light:  #14B8A6;
      --gold:        #B89040;
      --gold-light:  #D4A853;
      --sand:        #C9BBA8;
      --white:       #FDFCFB;
      --text:        #1A2336;
      --gray:        #5A6478;
      --gray-light:  #8A95A3;
      --border:      rgba(0,0,0,0.07);
      --ocean:       #0EA5E9;
      --ocean-dark:  #0284C7;
      --coral:       #F97316;
      --radius-sm:   12px;
      --radius-md:   20px;
      --radius-lg:   28px;

      --shadow-sm:   0 2px 12px rgba(10,22,40,0.06);
      --shadow-md:   0 8px 32px rgba(10,22,40,0.10);
      --shadow-lg:   0 24px 64px rgba(10,22,40,0.15);
    }

    /* Progress bar */
    #progress-bar {
      position: fixed; top: 0; left: 0; height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
      z-index: 9999; transition: width .1s linear; pointer-events: none;
    }

    html { scroll-behavior: smooth; background: var(--navy); overscroll-behavior-y: none; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--ivory);
      color: var(--text);
      font-size: 16.5px;
      line-height: 1.65;
      overflow-x: hidden;
      overscroll-behavior-y: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Subtle grain texture on ivory body */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    img {
      display: block;
      max-width: 100%;
      image-rendering: auto;
    }
    a { text-decoration: none; color: inherit; }

    /* =========================================================
       ACCESSIBILITY
    ========================================================= */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--teal);
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      z-index: 9999;
      transition: top .2s;
    }
    .skip-link:focus { top: 16px; outline: 2px solid white; }

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

    /* =========================================================
       NAVIGATION
    ========================================================= */
    .nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 200;
      padding: 20px 7%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      /* Frosted glass sempre attivo */
      background: rgba(247,243,237,0.82);
      backdrop-filter: blur(28px) saturate(1.4);
      -webkit-backdrop-filter: blur(28px) saturate(1.4);
      border-bottom: 1px solid rgba(184,144,64,0.13);
      box-shadow: 0 2px 24px rgba(10,22,40,0.05);
      transition: background .35s, box-shadow .35s, padding .35s, border-color .35s;
    }
    .nav.scrolled {
      background: rgba(245,240,232,0.97);
      backdrop-filter: blur(28px) saturate(1.5);
      -webkit-backdrop-filter: blur(28px) saturate(1.5);
      box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(10,22,40,0.07);
      border-bottom-color: rgba(184,144,64,0.18);
      padding: 14px 7%;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .nav-logo-name {
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 21px;
      color: var(--navy);
      letter-spacing: -.02em;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      margin: 0 auto;
    }
    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      opacity: .72;
      transition: color .2s, opacity .2s;
    }
    .nav-links a:hover { color: var(--teal); opacity: 1; }

    .nav-right { display: flex; align-items: center; gap: 16px; }

    .nav-cta {
      background: var(--navy);
      color: #fff !important;
      padding: 12px 26px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .01em;
      transition: background .2s, transform .2s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--teal); transform: translateY(-1px); }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s;
    }

    /* Mobile overlay */
    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 210;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-family: 'Fraunces', serif;
      font-size: 34px;
      font-weight: 800;
      color: rgba(255,255,255,.85);
      transition: color .2s;
    }
    .nav-mobile a:hover { color: var(--teal-light); }
    .nav-mobile-close {
      position: absolute;
      top: 20px;
      right: 7%;
      background: none;
      border: none;
      color: white;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      padding: 8px;
    }

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

    /* =========================================================
       HERO — Editorial luxury split
    ========================================================= */
    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 58fr 42fr;
      align-items: stretch;
      position: relative;
      overflow: hidden;
    }

    /* Gold vertical accent line */
    .hero::after {
      content: '';
      position: absolute;
      top: 12%;
      bottom: 12%;
      left: 58%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
      opacity: 0.35;
      pointer-events: none;
      z-index: 3;
    }

    /* Hero left — pure CSS luxury */
    .hero-left {
      background: var(--ivory);
      background-image:
        radial-gradient(ellipse at 88% 8%,  rgba(10,124,115,0.13) 0%, transparent 52%),
        radial-gradient(ellipse at 5%  95%, rgba(184,144,64,0.14) 0%, transparent 48%);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 7% 80px;
      z-index: 2;
    }
    /* Decorative arc — top-right corner */
    .hero-left::before {
      content: '';
      position: absolute;
      top: -90px; right: -90px;
      width: 380px; height: 380px;
      border: 1.5px solid rgba(10,124,115,0.09);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-left > * { position: relative; z-index: 1; }

    .hero-right {
      position: relative;
      z-index: 2;
      overflow: hidden;
      background:
        linear-gradient(150deg, rgba(15,32,64,.84) 0%, rgba(10,22,40,.88) 55%, rgba(6,14,29,.93) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=60&w=1100&auto=format&fit=crop') center/cover no-repeat;
      border-radius: 32px 0 0 32px;
    }

    /* Dot grid pattern */
    .hero-deco-dots {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
    }

    /* Animated gold + teal glow from center */
    .hero-right::before {
      content: '';
      position: absolute;
      top: 38%; left: 50%;
      transform: translate(-50%, -50%);
      width: 520px; height: 520px;
      background: radial-gradient(ellipse,
        rgba(184,144,64,0.30) 0%,
        rgba(10,124,115,0.08) 45%,
        transparent 70%);
      pointer-events: none;
      z-index: 2;
      animation: glowPulse 7s ease-in-out infinite alternate;
    }

    @keyframes glowPulse {
      0%   { opacity: 0.65; transform: translate(-50%, -50%) scale(0.90); }
      100% { opacity: 1.00; transform: translate(-50%, -50%) scale(1.10); }
    }

    /* Bottom dark gradient */
    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        rgba(6,14,29,.95) 0%,
        rgba(10,22,40,.32) 42%,
        transparent 66%);
      border-radius: 32px 0 0 32px;
      z-index: 3;
      pointer-events: none;
    }

    /* Logo stage — rings + logo container */
    .hero-logo-stage {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      width: 220px;
      height: 220px;
    }

    /* Concentric animated rings */
    .hero-ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-ring.hr1 {
      width: 272px; height: 272px;
      border: 1.5px solid rgba(184,144,64,0.55);
      animation: ringPulse 3.6s ease-in-out infinite;
    }
    .hero-ring.hr2 {
      width: 338px; height: 338px;
      border: 1px solid rgba(184,144,64,0.25);
      animation: ringPulse 3.6s ease-in-out infinite 0.9s;
    }
    .hero-ring.hr3 {
      width: 412px; height: 412px;
      border: 1px solid rgba(184,144,64,0.10);
      animation: ringPulse 3.6s ease-in-out infinite 1.8s;
    }

    @keyframes ringPulse {
      0%, 100% { opacity: 1;   transform: translate(-50%, -50%) scale(1);     }
      50%       { opacity: 0.4; transform: translate(-50%, -50%) scale(1.030); }
    }

    /* Brand logo */
    .hero-brand-logo {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 220px; height: 220px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      box-shadow:
        0 0 0 4px  rgba(184,144,64,0.65),
        0 0 0 10px rgba(184,144,64,0.13),
        0 28px 80px rgba(0,0,0,0.72);
      animation: logoFloat 5s ease-in-out infinite;
    }

    @keyframes logoFloat {
      0%, 100% { transform: translate(-50%, -50%) translateY(0px);   }
      50%       { transform: translate(-50%, -50%) translateY(-10px); }
    }

    /* Floating "Partner verificato" badge — sotto la nav bar */
    .hero-verified {
      position: absolute;
      top: 96px; right: 32px;
      z-index: 6;
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(184,144,64,0.12);
      border: 1px solid rgba(184,144,64,0.42);
      color: var(--gold-light);
      padding: 9px 18px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      white-space: nowrap;
      overflow: hidden;
    }
    .hero-verified svg { flex-shrink: 0; }

    .photo-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(255,255,255,0.35);
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
      display: block;
      margin-bottom: 14px;
    }
    .photo-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 36px 36px 40px;
      z-index: 5;
      color: white;
    }
    .photo-name {
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 26px;
      letter-spacing: -.02em;
      margin-bottom: 5px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }
    .photo-role { font-size: 14.5px; opacity: .82; }
    .photo-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 14px;
      background: rgba(255,255,255,.13);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.2);
      color: white;
      padding: 7px 16px;
      border-radius: 100px;
      font-size: 13px;
    }

    /* Badge */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(10,124,115,.08);
      border: 1px solid rgba(10,124,115,.2);
      color: var(--teal);
      padding: 9px 20px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }
    .badge .dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--teal);
      animation: blink 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes blink {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.35; transform:scale(.75); }
    }

    /* Headline */
    .hero-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(48px, 6.2vw, 84px);
      line-height: 0.98;
      letter-spacing: -0.035em;
      color: var(--navy);
      margin-bottom: 30px;
      text-wrap: balance;
    }
    .hero-title .line-italic {
      display: block;
      font-style: italic;
      color: var(--teal);
    }

    .hero-sub {
      font-size: 17.5px;
      color: var(--gray);
      line-height: 1.75;
      max-width: 500px;
      margin-bottom: 42px;
    }
    .hero-sub strong { color: var(--text); font-weight: 600; }

    /* CTAs */
    .hero-ctas {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 54px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: #fff !important;
      padding: 18px 36px;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 600;
      touch-action: manipulation;
      letter-spacing: .01em;
      box-shadow: 0 8px 24px rgba(10,22,40,.2);
      transition: background .25s, transform .25s, box-shadow .25s;
    }
    .btn-primary:hover {
      background: var(--teal);
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(10,124,115,.3);
    }
    .btn-primary svg { flex-shrink: 0; }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--navy);
      font-weight: 600;
      font-size: 15px;
      padding: 18px 4px;
      transition: color .2s;
    }
    .btn-ghost:hover { color: var(--teal); }
    .btn-ghost .play-ring {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow .25s;
      flex-shrink: 0;
    }
    .btn-ghost:hover .play-ring { box-shadow: var(--shadow-lg); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: white !important;
      padding: 18px 36px;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 600;
      border: 2px solid rgba(255,255,255,0.35);
      transition: border-color .25s, background .25s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); }

    /* Trust stats row */
    .trust-row {
      display: flex;
      gap: 0;
      padding-top: 38px;
      border-top: 1px solid var(--border);
    }
    .trust-item {
      flex: 1;
      padding-right: 28px;
    }
    .trust-item + .trust-item {
      padding-left: 28px;
      border-left: 1px solid var(--border);
    }
    .trust-num {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 36px;
      color: var(--teal);
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .trust-label {
      font-size: 13px;
      color: var(--gray-light);
      margin-top: 5px;
    }

    @media(max-width:860px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero::after { display: none; }
      .hero-left {
        padding: 110px 6% 64px;
        order: 2;
      }
      .hero-right {
        order: 1;
        height: 62vw;
        min-height: 320px;
        max-height: 500px;
        border-radius: 0 0 32px 32px;
      }
      .hero-right::after { border-radius: 0 0 32px 32px; }
      .hero-logo-stage { top: 42%; width: 160px; height: 160px; }
      .hero-brand-logo { width: 160px; height: 160px; }
      .hero-ring.hr1 { width: 200px; height: 200px; }
      .hero-ring.hr2 { width: 250px; height: 250px; }
      .hero-ring.hr3 { display: none; }
      .hero-verified .hero-verified-label { display: none; }
      .hero-verified { top: 80px; right: 16px; padding: 9px 12px; }
    }

    /* =========================================================
       SECTION COMMONS
    ========================================================= */
    .section { padding: 110px 7%; position: relative; z-index: 1; }

    .section-header { text-align: center; margin-bottom: 72px; }

    .eyebrow {
      display: inline-block;
      color: #096B64;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(34px, 4.5vw, 50px);
      line-height: 1.07;
      letter-spacing: -0.03em;
      color: var(--navy);
      margin-bottom: 18px;
      text-wrap: balance;
    }
    .section-title .accent { font-style: italic; color: #096B64; }

    .section-sub {
      font-size: 17.5px;
      color: var(--gray);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* =========================================================
       COME FUNZIONA — Horizontal timeline
    ========================================================= */
    .funziona-section { background: var(--white); }

    .journey {
      max-width: 1040px;
      margin: 0 auto;
      position: relative;
    }

    /* Horizontal connector line */
    .journey-line {
      position: absolute;
      top: 28px;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 1px;
      background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--teal));
      opacity: 0.3;
    }
    .journey-line::before,
    .journey-line::after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal);
    }
    .journey-line::before { left: 0; }
    .journey-line::after  { right: 0; }

    .journey-nodes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      position: relative;
    }

    .journey-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-top: 8px;
    }

    .journey-dot {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid var(--teal);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
    }
    .journey-dot svg {
      color: var(--teal);
    }

    .journey-num {
      font-family: 'Fraunces', serif;
      font-size: 88px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 4px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--teal-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: .85;
    }

    .journey-title {
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 14px;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }

    .journey-desc {
      color: var(--gray);
      font-size: 15.5px;
      line-height: 1.7;
      max-width: 280px;
    }

    @media(max-width:860px) {
      .journey-nodes { grid-template-columns: 1fr; gap: 36px; }
      .journey-line  { display: none; }
      .journey-node  { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; padding-top: 0; }
      .journey-dot   { margin-bottom: 0; flex-shrink: 0; }
      .journey-content { flex: 1; }
      .journey-num   { font-size: 44px; margin-bottom: 6px; }
    }

    /* =========================================================
       STORIA — Dark navy section
    ========================================================= */
    .storia-section {
      background: var(--navy);
      padding: 110px 7%;
      position: relative;
      overflow: hidden;
    }

    /* Ocean background at low opacity */
    .storia-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=1400&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      opacity: 0.10;
      pointer-events: none;
    }

    .storia-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 80px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Image mosaic */
    .storia-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .storia-photos img {
      border-radius: var(--radius-md);
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      background: rgba(10,124,115,0.18);
      color: transparent;
    }
    .storia-photos .photo-tall {
      grid-row: span 3;
      height: 100%;
    }
    .storia-photos .photo-sq { aspect-ratio: 4/3; }

    /* Content */
    .storia-eyebrow { color: var(--teal-light); }
    .storia-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(30px, 3.8vw, 44px);
      color: white;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 26px;
      text-wrap: balance;
    }
    .storia-title .accent { font-style: italic; color: var(--teal-light); }

    .storia-text {
      color: rgba(255,255,255,.72);
      font-size: 16.5px;
      line-height: 1.78;
      margin-bottom: 18px;
    }
    .storia-text strong { color: white; font-weight: 600; }

    /* Elegant pull quote */
    .storia-pullquote {
      margin: 32px 0;
      position: relative;
      padding: 0 0 0 28px;
    }
    .storia-pullquote::before {
      content: '\201C';
      font-family: 'Fraunces', serif;
      font-size: 120px;
      font-weight: 900;
      color: var(--teal-light);
      opacity: 0.18;
      position: absolute;
      top: -20px;
      left: -8px;
      line-height: 1;
      pointer-events: none;
    }
    .storia-pullquote p {
      color: var(--teal-light);
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 18px;
      line-height: 1.65;
      position: relative;
      z-index: 1;
    }
    .storia-pullquote strong { color: white; font-style: normal; font-weight: 700; }

    @media(max-width:860px) {
      .storia-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* =========================================================
       TESTIMONIANZE — Quote-first design
    ========================================================= */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .testi-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform .3s, box-shadow .3s;
      padding: 28px 24px 24px;
      display: flex;
      flex-direction: column;
    }
    .testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

    .testi-deco-quote {
      font-family: 'Fraunces', serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 8px;
      opacity: 0.9;
    }

    .testi-quote {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 15px;
      color: var(--navy);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 14px;
    }

    .testi-stars {
      color: var(--gold);
      letter-spacing: 2px;
      font-size: 13px;
      margin-bottom: 18px;
    }

    .testi-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 18px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar-init {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .02em;
      color: white;
    }
    .testi-avatar-init.ai { background: linear-gradient(135deg, #0A7C73, #0A1628); }
    .testi-avatar-init.bi { background: linear-gradient(135deg, #B89040, #0A1628); }
    .testi-avatar-init.ci { background: linear-gradient(135deg, #14B8A6, #0A7C73); }
    .testi-avatar-init.di { background: linear-gradient(135deg, #1a3a5c, #0A7C73); }

    .testi-name {
      font-weight: 600;
      font-size: 14px;
      color: var(--navy);
    }
    .testi-location {
      font-size: 12.5px;
      color: var(--gray-light);
      margin-top: 2px;
    }

    @media(max-width:860px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:480px) { .testi-grid { grid-template-columns: 1fr; } }

    /* =========================================================
       CTA FINALE — Full bleed ocean background
    ========================================================= */
    .cta-section {
      padding: 110px 7%;
      position: relative;
      overflow: hidden;
      background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      text-align: center;
      color: white;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,22,40,0.82), rgba(10,22,40,0.75));
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-eyebrow {
      display: inline-block;
      color: var(--teal-light);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 18px;
      opacity: .9;
    }
    .cta-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 22px;
      text-wrap: balance;
    }
    .cta-title .accent { font-style: italic; color: var(--teal-light); }
    .cta-sub {
      font-size: 18px;
      opacity: .80;
      max-width: 480px;
      margin: 0 auto 44px;
      line-height: 1.75;
    }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      color: var(--navy) !important;
      padding: 20px 52px;
      border-radius: 100px;
      font-size: 17px;
      font-weight: 700;
      box-shadow: 0 10px 32px rgba(0,0,0,.22);
      transition: transform .25s, box-shadow .25s, background .25s;
    }
    .cta-btn:hover {
      background: var(--ivory);
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(0,0,0,.32);
    }

    /* =========================================================
       FOOTER
    ========================================================= */
    .footer {
      background: var(--navy);
      color: rgba(255,255,255,.6);
      padding: 64px 7% 96px;
      position: relative;
      z-index: 1;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.7fr 1fr 1.5fr 1fr;
      gap: 48px;
      max-width: 1100px;
      margin: 0 auto;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand { max-width: 320px; }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 24px;
      color: white;
      letter-spacing: -.02em;
      margin-bottom: 16px;
    }
    .footer-logo img {
      width: 46px; height: 46px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 0 2px rgba(212,168,83,.45);
    }
    .footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.5); margin-bottom: 16px; }
    .footer-loc { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.55); }
    .footer-loc svg { color: var(--teal-light); flex-shrink: 0; }
    .footer-col h3 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 18px;
    }
    .footer-col a {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 14px;
      color: rgba(255,255,255,.62);
      margin-bottom: 13px;
      transition: color .2s, gap .2s;
    }
    .footer-col a:hover { color: var(--teal-light); gap: 12px; }
    .footer-col a svg { color: var(--teal-light); flex-shrink: 0; }
    .footer-bottom-bar {
      max-width: 1100px;
      margin: 24px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12.5px;
      color: rgba(255,255,255,.32);
    }
    .footer-bottom-bar a {
      color: rgba(255,255,255,.45);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color .2s;
    }
    .footer-bottom-bar a:hover { color: var(--teal-light); }
    @media(max-width:860px) {
      .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
      .footer-brand { grid-column: 1 / -1; max-width: none; }
    }
    @media(max-width:540px) {
      .footer-main { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom-bar { flex-direction: column; text-align: center; }
    }

    /* =========================================================
       SCROLL ANIMATIONS
    ========================================================= */
    .reveal {
      opacity: 0.12;
      transform: translateY(22px);
      transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
    }
    .reveal.in-view {
      opacity: 1;
      transform: none;
    }
    .reveal-d1 { transition-delay: .10s; }
    .reveal-d2 { transition-delay: .20s; }
    .reveal-d3 { transition-delay: .30s; }
    .reveal-d4 { transition-delay: .40s; }

    /* =========================================================
       PAIN POINTS — Question section
    ========================================================= */
    .pain-section {
      background: var(--white);
      padding: 72px 7% 80px;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .pain-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-md);
      padding: 32px 28px 28px;
      position: relative;
      overflow: hidden;
    }
    .pain-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
      opacity: 0;
      transition: opacity .3s;
    }
    .pain-card:hover::before { opacity: 1; }
    .pain-num {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 52px;
      line-height: 1;
      color: var(--teal);
      opacity: .12;
      margin-bottom: 16px;
    }
    .pain-icon {
      width: 48px; height: 48px;
      border-radius: 13px;
      background: rgba(10,124,115,.08);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .pain-icon svg { color: var(--teal); }
    .pain-q {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 19px;
      line-height: 1.3;
      color: var(--navy);
      letter-spacing: -.01em;
    }
    @media(max-width:860px) { .pain-grid { grid-template-columns: 1fr; } }

    /* =========================================================
       VIDEO — YouTube embeds
    ========================================================= */
    .video-section {
      background: var(--ivory);
      padding: 100px 7%;
    }
    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .video-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
      background: var(--white);
    }
    .video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .video-embed {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--navy);
    }
    .video-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .video-facade {
      position: absolute;
      inset: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--navy);
    }
    .video-facade img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s cubic-bezier(.22,.61,.36,1);
    }
    .video-facade:hover img { transform: scale(1.04); }
    .video-play-btn {
      position: relative;
      z-index: 2;
      width: 62px;
      height: 62px;
      background: rgba(255,0,0,.88);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .2s, background .2s;
      box-shadow: 0 4px 20px rgba(0,0,0,.45);
    }
    .video-facade:hover .video-play-btn {
      transform: scale(1.12);
      background: #ff0000;
    }
    .video-play-btn svg { margin-left: 4px; }
    .video-body { padding: 18px 20px 22px; }
    .video-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #096B64;
      margin-bottom: 6px;
    }
    .video-title {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 15.5px;
      color: var(--navy);
      line-height: 1.4;
      letter-spacing: -.01em;
    }
    @media(max-width:860px) { .video-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:540px) { .video-grid { grid-template-columns: 1fr; } }

    /* =========================================================
       MOMENTO PERFETTO — Motivational section
    ========================================================= */
    .momento-section {
      background: var(--navy);
      padding: 100px 7%;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .momento-section::before {
      content: '';
      position: absolute;
      top: -200px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 500px;
      background: radial-gradient(ellipse, rgba(10,124,115,.22), transparent 70%);
      pointer-events: none;
    }
    .momento-inner {
      max-width: 800px;
      margin: 0 auto;
      position: relative; z-index: 2;
      color: white;
    }
    .momento-eyebrow { color: var(--teal-light); }
    .momento-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -.025em;
      margin-bottom: 28px;
    }
    .momento-title .accent { font-style: italic; color: var(--teal-light); }
    .momento-text {
      color: rgba(255,255,255,.72);
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .momento-blockquote {
      border-left: 3px solid var(--gold);
      margin: 36px auto;
      padding: 18px 28px;
      text-align: left;
      max-width: 640px;
      background: rgba(255,255,255,.04);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
    .momento-blockquote p {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 19px;
      color: rgba(255,255,255,.9);
      line-height: 1.55;
    }
    .momento-blockquote cite {
      display: block;
      margin-top: 12px;
      font-size: 13px;
      color: var(--gold-light);
      font-style: normal;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* =========================================================
       GALLERIA FOTO — Horizontal scroll
    ========================================================= */
    .gallery-section {
      padding: 80px 0;
      background: var(--ivory);
      overflow: hidden;
    }
    .gallery-header {
      padding: 0 7%;
      margin-bottom: 40px;
      text-align: center;
    }
    /* ── Gallery mood cards ── */
    .gallery-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 7%;
    }
    .gallery-mood {
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
      cursor: pointer;
      transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s;
    }
    .gallery-mood:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
    .gallery-mood-bg {
      position: absolute; inset: 0;
      transition: transform .5s cubic-bezier(.22,.61,.36,1);
    }
    .gallery-mood:hover .gallery-mood-bg { transform: scale(1.06); }
    .gallery-mood-inner {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: linear-gradient(to top, rgba(10,22,40,.72) 0%, rgba(10,22,40,.15) 60%, transparent 100%);
      padding: 24px;
    }
    .gallery-dest {
      font-family: 'Fraunces', serif; font-weight: 800; font-size: 22px;
      color: white; text-align: center; text-shadow: 0 2px 10px rgba(0,0,0,.5);
      margin-bottom: 4px;
    }
    .gallery-sub { font-size: 11px; color: rgba(255,255,255,.85); letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; overflow: visible; }
    @media(max-width:860px) {
      .gallery-track { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 6%; }
    }
    @media(max-width:480px) {
      .gallery-track { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 5%; }
      .gallery-dest { font-size: 17px; }
    }

    /* =========================================================
       PARTNER DI SUCCESSO
    ========================================================= */
    .partner-section {
      background: var(--white);
      padding: 100px 7%;
    }
    .partner-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .partner-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px 22px;
      text-align: center;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .partner-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: rgba(10,124,115,.2);
    }
    .partner-avatar {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 22px;
      color: white;
      letter-spacing: -.02em;
    }
    .partner-name {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 15.5px;
      color: var(--navy);
      letter-spacing: -.01em;
      margin-bottom: 5px;
    }
    .partner-role {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--teal);
    }
    .partner-stars {
      color: var(--gold);
      font-size: 13px;
      margin-top: 8px;
      letter-spacing: 2px;
    }
    @media(max-width:860px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(max-width:480px) { .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

    /* =========================================================
       BLOG — Articoli recenti
    ========================================================= */
    .blog-section {
      background: var(--ivory);
      padding: 100px 7%;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .blog-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform .3s, box-shadow .3s;
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

    .blog-thumb {
      height: 200px;
      position: relative;
      overflow: hidden;
      background: var(--navy);
    }
    .blog-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      color: transparent;
      background: var(--sand);
      transition: transform .5s;
    }
    .blog-card:hover .blog-thumb img { transform: scale(1.05); }
    .blog-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,.55) 0%, transparent 55%);
      pointer-events: none;
    }
    .blog-cat {
      position: absolute;
      top: 16px; left: 16px;
      z-index: 2;
      background: var(--teal);
      color: white;
      padding: 5px 12px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .blog-body {
      padding: 24px 24px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .blog-date {
      font-size: 12px;
      color: var(--gray-light);
      margin-bottom: 10px;
      letter-spacing: .02em;
    }
    .blog-title {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 19px;
      color: var(--navy);
      line-height: 1.35;
      letter-spacing: -.01em;
      margin-bottom: 12px;
      text-wrap: balance;
    }
    .blog-excerpt {
      font-size: 14.5px;
      color: var(--gray);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 20px;
    }
    .blog-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--teal);
      transition: gap .2s, color .2s;
    }
    .blog-link:hover { gap: 13px; color: var(--teal-light); }
    .blog-link svg { flex-shrink: 0; }

    @media(max-width:860px) {
      .blog-grid { grid-template-columns: 1fr; max-width: 480px; }
      .blog-section { padding: 60px 6%; }
    }
    @media(max-width:540px) { .blog-section { padding: 52px 6%; } }

    /* =========================================================
       WHATSAPP FLOATING BUTTON
    ========================================================= */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 24px;
      z-index: 300;
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: white !important;
      padding: 13px 22px 13px 16px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 700;
      filter: drop-shadow(0 6px 24px rgba(37,211,102,.4));
      transition: transform .25s, filter .25s;
      text-decoration: none;
    }
    .wa-float:hover {
      transform: translateY(-3px);
      filter: drop-shadow(0 10px 32px rgba(37,211,102,.55));
    }
    .wa-float svg { flex-shrink: 0; }
    @media(max-width:480px) {
      .wa-float { padding: 14px; border-radius: 50%; }
      .wa-float span { display: none; }
    }

    /* =========================================================
       FOOTER — contact row
    ========================================================= */

    /* =========================================================
       MOBILE — spacing, layout, typography (≤860px + ≤540px)
    ========================================================= */
    @media(max-width:860px) {

      /* ─ Sezioni: padding ridotto ─ */
      .hero-left       { padding: 68px 6% 52px; }
      .section         { padding: 68px 6%; }
      .pain-section    { padding: 56px 6%; }
      .storia-section  { padding: 68px 6%; }
      .video-section   { padding: 60px 6%; }
      .momento-section { padding: 64px 6%; }
      .gallery-section { padding: 48px 0; }
      .partner-section { padding: 60px 6%; }
      .cta-section     { padding: 68px 6%; }
      .footer          { padding: 40px 6% 24px; }
      .section-header  { margin-bottom: 48px; }

      /* ─ Hero left ─ */
      .hero-sub  { font-size: 16.5px; margin-bottom: 30px; }
      .hero-ctas { gap: 12px; }

      /* ─ Trust stats ─ */
      .trust-row { padding-top: 24px; }
      .trust-num { font-size: 30px; }
      .trust-item { padding-right: 18px; }
      .trust-item + .trust-item { padding-left: 18px; }

      /* ─ Pain cards ─ */
      .pain-card { padding: 26px 20px; }
      .pain-num  { font-size: 40px; }

      /* ─ Storia: mostra solo la foto grande, nascondi i quadrati ─ */
      .storia-photos { display: block; }
      .storia-photos .photo-tall {
        display: block;
        width: 100%;
        height: 300px;
        aspect-ratio: unset;
        border-radius: var(--radius-lg);
        object-fit: cover;
        object-position: center 25%;
        box-shadow: 0 0 0 1px rgba(184,144,64,0.22), 0 20px 56px rgba(0,0,0,0.5);
      }
      .storia-photos .photo-sq { display: none; }

      /* ─ Come funziona ─ */
      .journey-dot   { width: 48px; height: 48px; }
      .journey-title { font-size: 20px; }
      .journey-desc  { font-size: 15px; }

      /* ─ Testimonianze: 1 colonna su telefono ─ */
      .testi-grid { grid-template-columns: 1fr; max-width: 480px; }

      /* ─ Momento ─ */
      .momento-title      { font-size: clamp(28px, 6.5vw, 40px); }
      .momento-blockquote { padding: 14px 20px; }
      .momento-blockquote p { font-size: 17px; }
      .momento-text { font-size: 15.5px; }

      /* ─ Footer ─ */
    }

    @media(max-width:540px) {

      /* ─ Hero title più stretto ─ */
      .hero-title { font-size: clamp(36px, 10vw, 50px); line-height: 1.01; }
      .hero-sub   { font-size: 15.5px; }

      /* ─ Trust stats ─ */
      .trust-num   { font-size: 26px; }
      .trust-label { font-size: 11.5px; }
      .trust-item  { padding-right: 14px; }
      .trust-item + .trust-item { padding-left: 14px; }

      /* ─ Bottoni ─ */
      .btn-primary { padding: 15px 26px; font-size: 15px; }
      .btn-outline { padding: 15px 24px; font-size: 15px; }

      /* ─ Section typography ─ */
      .section-title { font-size: clamp(25px, 7.5vw, 36px); }
      .section-sub   { font-size: 15.5px; }
      .storia-title  { font-size: clamp(24px, 7vw, 34px); }
      .cta-title     { font-size: clamp(28px, 8vw, 40px); }

      /* ─ Gallery ─ */
      .gallery-header { padding: 0 6%; }
      .gallery-track  { padding: 0 6%; }

      /* ─ Partner ─ */
      .partner-card { padding: 20px 16px; }

      /* ─ CTA button ─ */
      .cta-btn { padding: 15px 32px; font-size: 15.5px; }

      /* ─ Padding ulteriormente ridotto su piccoli schermi ─ */
      .pain-section    { padding: 48px 6%; }
      .video-section   { padding: 52px 6%; }
      .momento-section { padding: 52px 6%; }
      .partner-section { padding: 52px 6%; }
      .cta-section     { padding: 60px 6%; }

      /* ─ Pain question text ─ */
      .pain-q { font-size: 17px; }

      /* ─ Testi card padding ─ */
      .testi-card { padding: 22px 20px 20px; }

      /* ─ Nav: compatta su schermi molto piccoli ─ */
      .nav { padding: 14px 5%; }
      .nav-logo-name { font-size: 19px; }
      .nav-cta { padding: 10px 18px; font-size: 13px; }
    }

    /* ─ Mobile: riduci loghi ripetitivi ─ */
    @media(max-width:860px) {
      /* Nascondi testo "Michele." nella nav — l'icona è sufficiente */
      .nav-logo-name { display: none; }
      /* Nascondi avatar piccolo nell'overlay — il logo grande sopra già mostra Michele */
      .photo-avatar  { display: none; }
      /* Compensa lo spazio rimosso dall'avatar */
      .photo-overlay { padding: 24px 28px 32px; }
      .photo-name    { font-size: 22px; margin-bottom: 3px; }
    }

    /* Back to top */
    .back-top {
      position: fixed; bottom: 90px; right: 24px; z-index: 290;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); color: white; border: 1.5px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; opacity: 0; transform: translateY(12px);
      transition: opacity .3s, transform .3s, background .2s;
      box-shadow: 0 4px 16px rgba(10,22,40,.25);
    }
    .back-top.visible { opacity: 1; transform: translateY(0); }
    .back-top:hover { background: var(--teal); }

    /* ── Micro-transitions ── */
    .btn-primary, .btn-ghost, .btn-outline, .cta-btn {
      transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .22s, background .22s, color .22s !important;
    }
    .btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(10,124,115,.35); }
    .btn-ghost:hover    { transform: translateY(-2px); }
    .btn-outline:hover  { transform: translateY(-2px); }
    .cta-btn:hover      { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,255,255,.2); }

    .pain-card { transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s, border-color .28s; }
    .pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(10,124,115,.3); }
    .pain-card:hover .pain-icon { transform: scale(1.12) rotate(-4deg); }
    .pain-icon { transition: transform .28s cubic-bezier(.34,1.56,.64,1); }

    .blog-card { transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s; }
    .blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

    .partner-card { transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s, border-color .28s; }
    .partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(10,124,115,.25); }
    .partner-card:hover .partner-avatar { background: var(--teal); transform: scale(1.08); }
    .partner-avatar { transition: background .25s, transform .25s cubic-bezier(.34,1.56,.64,1); }

    .testi-card { transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s; }
    .testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

    .video-card { transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s; }
    .video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

    .nav-links a { position: relative; }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: -3px;
      width: 0; height: 2px; background: var(--teal);
      transition: width .25s cubic-bezier(.22,.61,.36,1);
      border-radius: 2px;
    }
    .nav-links a:hover::after { width: 100%; }


    /* Journey hover */
    .journey-dot { transition: background .25s, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s; }
    .journey-node:hover .journey-dot { transform: scale(1.15); background: var(--teal); box-shadow: 0 0 0 8px rgba(10,124,115,.12); }

    /* Shimmer on hero badge */
    @keyframes shimmerSlide {
      0%   { transform: translateX(-250%); }
      100% { transform: translateX(250%); }
    }
    .hero-verified::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
      animation: shimmerSlide 4s linear infinite;
      pointer-events: none;
    }

    /* Destination chips float */
    @keyframes chipFloat {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-5px); }
    }
    .dest-chip { animation: chipFloat var(--dur, 3s) ease-in-out infinite var(--delay, 0s); }

    /* Counter number */
    .trust-num[data-count] { transition: none; }

    /* Pulse on WA float */
    @keyframes waPulse {
      0%, 100% { filter: drop-shadow(0 6px 24px rgba(37,211,102,.4)); }
      50%       { filter: drop-shadow(0 6px 36px rgba(37,211,102,.7)); }
    }
    .wa-float { animation: waPulse 2.8s ease-in-out infinite; }
    .wa-float:hover { animation: none; }

    /* ─── Destination chips ─── */
    .dest-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .dest-chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(10,124,115,.08); border: 1px solid rgba(10,124,115,.18);
      color: var(--teal); padding: 7px 14px; border-radius: 100px;
      font-size: 13px; font-weight: 600; letter-spacing: .02em;
      backdrop-filter: blur(8px);
    }
    @media(max-width:860px) { .dest-chips { margin-top: 20px; gap: 8px; } .dest-chip { font-size: 12px; padding: 6px 12px; } }

    /* ─── Hero left: cruise background, fades in from left to right ─── */
    .hero-left::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?q=60&w=1100&auto=format&fit=crop');
      background-size: cover;
      background-position: right bottom;
      opacity: 0.16;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 48%, #000 100%);
      mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 48%, #000 100%);
      pointer-events: none;
      z-index: 0;
    }

    /* ─── Pain section: warm gradient bg + colored card accents ─── */
    .pain-section {
      background: linear-gradient(160deg, var(--ivory) 0%, #e7e0d3 100%);
      position: relative;
    }
    .pain-section::after {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(10,124,115,.06) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
    }
    .pain-section > * { position: relative; z-index: 1; }
    .pain-card::before { opacity: 1; height: 4px; }
    .pain-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
    .pain-card:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
    .pain-card:nth-child(3)::before { background: linear-gradient(90deg, var(--ocean), var(--coral)); }
    .pain-card:nth-child(1) { background: linear-gradient(180deg, rgba(10,124,115,.06) 0%, var(--white) 45%); }
    .pain-card:nth-child(2) { background: linear-gradient(180deg, rgba(184,144,64,.07) 0%, var(--white) 45%); }
    .pain-card:nth-child(3) { background: linear-gradient(180deg, rgba(14,165,233,.06) 0%, var(--white) 45%); }
    .pain-card:nth-child(1) .pain-num { color: var(--teal); opacity: .9; }
    .pain-card:nth-child(2) .pain-num { color: var(--gold); opacity: .9; }
    .pain-card:nth-child(3) .pain-num { color: var(--ocean-dark); opacity: .9; }
    .pain-card:nth-child(1) .pain-icon { background: rgba(10,124,115,.12); color: var(--teal); }
    .pain-card:nth-child(2) .pain-icon { background: rgba(184,144,64,.14); color: var(--gold); }
    .pain-card:nth-child(3) .pain-icon { background: rgba(14,165,233,.12); color: var(--ocean-dark); }

    /* ─── Come funziona: dark travel background ─── */
    .funziona-section {
      background: linear-gradient(160deg, #060f1e 0%, var(--navy) 55%, #0a1a30 100%);
      position: relative;
    }
    .funziona-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=30&w=1400&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      opacity: 0.07;
      pointer-events: none;
    }
    .funziona-section > * { position: relative; z-index: 1; }
    .funziona-section .section-title { color: white; }
    .funziona-section .section-sub  { color: rgba(255,255,255,.58); }
    .funziona-section .eyebrow      { color: var(--teal-light); border-color: rgba(20,184,166,.35); }
    .funziona-section .journey-title { color: white; }
    .funziona-section .journey-desc  { color: rgba(255,255,255,.6); }
    .funziona-section .journey-dot   { background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.14); }
    .funziona-section .journey-dot svg { color: var(--teal-light); }
    .funziona-section .journey-line  { background: linear-gradient(90deg, var(--teal-light), rgba(255,255,255,.2), var(--teal-light)); opacity: .25; }

    /* ─── Gallery section: ocean dark background + real photos ─── */
    .gallery-section {
      background:
        linear-gradient(160deg, rgba(4,12,26,.93) 0%, rgba(7,22,38,.90) 55%, rgba(4,12,26,.95) 100%),
        url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=40&w=1400&auto=format&fit=crop') center/cover no-repeat;
    }
    .gallery-section .section-title { color: white; }
    .gallery-section .eyebrow       { color: var(--teal-light); border-color: rgba(20,184,166,.35); }
    .gallery-mood-link { display: block; text-decoration: none; color: inherit; border-radius: var(--radius-md); }
    .gallery-mood-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.22,.61,.36,1);
    }
    .gallery-mood:hover .gallery-mood-img { transform: scale(1.06); }
    .gallery-mood-inner {
      background: linear-gradient(to top, rgba(10,22,40,.84) 0%, rgba(10,22,40,.28) 55%, rgba(10,22,40,.05) 100%);
    }
    .gallery-cta-hint {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 8px; font-size: 11px; font-weight: 600;
      color: var(--gold-light); letter-spacing: .05em; text-transform: uppercase;
      opacity: 0; transform: translateY(4px);
      transition: opacity .3s, transform .3s;
    }
    .gallery-mood:hover .gallery-cta-hint { opacity: 1; transform: translateY(0); }

    /* ─── Storia: support 3 photo-sq + badge ─── */
    .storia-photos { position: relative; }
    .storia-photos img { border: 1px solid rgba(255,255,255,.10); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
    @media(max-width:860px) {
      .storia-badge { bottom: -14px; font-size: 12px; padding: 8px 18px; }
    }
    /* Virgolette di chiusura del pullquote */
    .storia-pullquote { padding-right: 24px; }
    .storia-pullquote::after {
      content: '\201D';
      font-family: 'Fraunces', serif;
      font-size: 120px;
      font-weight: 900;
      color: var(--teal-light);
      opacity: 0.18;
      position: absolute;
      bottom: -66px;
      right: -4px;
      line-height: 1;
      pointer-events: none;
    }
    .storia-badge {
      position: absolute;
      bottom: -16px; left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--navy);
      font-weight: 700; font-size: 13px;
      padding: 10px 22px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(184,144,64,.4);
      z-index: 3;
    }


    /* =========================================================
       REDUCED MOTION
    ========================================================= */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; }
    }

    @media(max-width:860px) {
      .hero-right {
        background-image:
          linear-gradient(150deg, rgba(15,32,64,.84) 0%, rgba(10,22,40,.88) 55%, rgba(6,14,29,.93) 100%),
          url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=50&w=600&auto=format&fit=crop');
      }
      .hero-left::after {
        background-image: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?q=40&w=600&auto=format&fit=crop');
      }
      .storia-section::before {
        background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=50&w=700&auto=format&fit=crop');
      }
      .funziona-section::before {
        background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=20&w=700&auto=format&fit=crop');
      }
      .gallery-section {
        background-image:
          linear-gradient(160deg, rgba(4,12,26,.93) 0%, rgba(7,22,38,.90) 55%, rgba(4,12,26,.95) 100%),
          url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=30&w=700&auto=format&fit=crop');
      }
      .cta-section {
        background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=50&w=700&auto=format&fit=crop');
      }
    }
