        /* ---------- Variables (allineate a home v4) ---------- */
        :root {
            --primary:    #002d5a;
            --primary-dk: #001d3d;
            --primary-lt: #003d7a;
            --accent:     #c59d5f;
            --accent-dk:  #a6844d;
            --accent-lt:  #f4ead8;
            --accent-bg:  #f4ead8;
            --bg:         #fdfdfd;
            --bg-alt:     #f9f9f9;
            --surface:    #ffffff;
            --text:       #1a1a1a;
            --text-muted: #555555;
            --text-soft:  #777777;
            --border:     #ececec;
            --border-lt:  #f0f0f0;
            --radius:     4px;
            --radius-lg:  8px;
            --shadow-sm:  0 2px 8px rgba(0,45,90,0.06);
            --shadow-md:  0 8px 24px rgba(0,45,90,0.09);
            --shadow-lg:  0 18px 48px rgba(0,45,90,0.12);
            --t-fast:     .25s ease;
            --t-med:      .4s cubic-bezier(.2,.8,.2,1);
            --t-slow:     .8s cubic-bezier(.2,.8,.2,1);
            --serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
            --sans:       'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            --container:  1260px;
        }

        /* ---------- Reset & Base ---------- */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            overflow-x: hidden;
        }
        img, picture, svg { display: block; max-width: 100%; height: auto; }
        a { color: inherit; text-decoration: none; }
        button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

        ::selection { background: var(--accent); color: #fff; }

        /* ---------- A11y ---------- */
        .sr-only {
            position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
            overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
        }
        .skip-link {
            position: absolute; top: -100px; left: 10px; z-index: 9999;
            background: var(--primary); color: #fff;
            padding: 12px 18px; border-radius: var(--radius);
            font-weight: 600; font-size: .82rem;
            transition: top var(--t-fast);
        }
        .skip-link:focus { top: 10px; outline: 2px solid var(--accent); outline-offset: 2px; }
        :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
                scroll-behavior: auto !important;
            }
        }

        .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--t-med), transform .9s var(--t-med); will-change: opacity, transform; }
        .reveal.is-visible { opacity: 1; transform: none; }

        /* Header/topbar/nav sono gestiti centralmente da assets/css/header-v3.css */

        /* ============================================================
           BREADCRUMBS — componente nuovo
        ============================================================ */
        .breadcrumbs {
            background: var(--bg-alt);
            border-bottom: 1px solid var(--border-lt);
            padding: 14px 5%;
        }
        .breadcrumbs-inner {
            max-width: var(--container);
            margin: 0 auto;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: .76rem;
            letter-spacing: .4px;
            color: var(--text-soft);
        }
        .breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
        .breadcrumbs li + li::before {
            content: "/";
            color: var(--border);
            margin-right: 0;
        }
        .breadcrumbs a {
            color: var(--text-muted);
            transition: color var(--t-fast);
        }
        .breadcrumbs a:hover { color: var(--accent-dk); }
        .breadcrumbs [aria-current="page"] {
            color: var(--primary);
            font-weight: 600;
        }

        /* ============================================================
           HERO — pagina interna (non full-screen)
        ============================================================ */
        .page-hero {
            position: relative;
            min-height: 55vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 80px 6%;
            overflow: hidden;
            isolation: isolate;
        }
        .page-hero::before {
            content: "";
            position: absolute; inset: 0;
            background:
                linear-gradient(180deg, rgba(0,29,61,.72) 0%, rgba(0,29,61,.65) 40%, rgba(0,29,61,.82) 100%),
                url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=2000&q=80&fm=webp') center/cover no-repeat;
            z-index: -2;
        }
        .page-hero::after {
            content: "";
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,15,33,.35) 100%);
            z-index: -1;
        }
        .page-hero-content { max-width: 920px; }
        .page-hero-eyebrow {
            display: inline-block;
            font-size: .72rem;
            letter-spacing: 4px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 22px;
            padding: 6px 18px;
            border: 1px solid rgba(197, 157, 95,.5);
            border-radius: 40px;
            opacity: 0; transform: translateY(10px);
            animation: hero-up .9s var(--t-med) .15s forwards;
        }
        .page-hero h1 {
            font-family: var(--serif);
            font-size: clamp(2.2rem, 4.6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.5px;
            margin-bottom: 26px;
            text-shadow: 0 2px 30px rgba(0,0,0,.25);
            opacity: 0; transform: translateY(16px);
            animation: hero-up 1s var(--t-med) .3s forwards;
        }
        .page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
        .page-hero-quote {
            display: block;
            font-family: var(--serif);
            font-style: italic;
            font-size: clamp(1rem, 1.8vw, 1.35rem);
            color: rgba(255,255,255,.92);
            max-width: 780px;
            margin: 0 auto;
            line-height: 1.6;
            padding: 0 20px;
            opacity: 0; transform: translateY(16px);
            animation: hero-up 1s var(--t-med) .5s forwards;
        }
        .page-hero-quote::before, .page-hero-quote::after {
            content: "“"; color: var(--accent); opacity: .55;
            font-size: 1.8rem; line-height: 0; position: relative; top: .12em;
        }
        .page-hero-quote::after { content: "”"; }
        @keyframes hero-up { to { opacity: 1; transform: translateY(0); } }

        /* ============================================================
           SECTION base
        ============================================================ */
        section { scroll-margin-top: 100px; }
        .section { padding: 100px 5%; }
        .section-inner { max-width: var(--container); margin: 0 auto; }
        .section-head { text-align: center; margin-bottom: 60px; }
        .eyebrow {
            display: inline-block;
            color: var(--accent);
            font-weight: 700;
            font-size: .72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }
        .eyebrow::before, .eyebrow::after {
            content: "";
            display: inline-block;
            width: 26px; height: 1px;
            background: var(--accent);
            vertical-align: middle;
            margin: 0 12px;
        }
        .section-head h2 {
            font-family: var(--serif);
            color: var(--primary);
            font-size: clamp(1.75rem, 3vw, 2.4rem);
            line-height: 1.15;
            margin-bottom: 18px;
        }
        .section-head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
        .section-head p.dek {
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* ============================================================
           COMPANY PROFILE — split
        ============================================================ */
        .profile { background: var(--bg); }
        .profile-inner {
            max-width: var(--container);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }
        .profile-text .eyebrow { margin-bottom: 16px; }
        .profile-text .eyebrow::before { display: none; margin-left: 0; }
        .profile-text .eyebrow { padding-left: 0; }
        .profile-text .eyebrow::after { margin-left: 14px; }
        .profile-text h2 {
            font-family: var(--serif);
            color: var(--primary);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            line-height: 1.15;
            margin-bottom: 26px;
        }
        .profile-text h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
        .profile-text p {
            color: var(--text-muted);
            font-size: 1.02rem;
            line-height: 1.85;
            margin-bottom: 20px;
        }
        .profile-text p:last-of-type { margin-bottom: 0; }
        .profile-text strong { color: var(--primary); font-weight: 600; }
        .profile-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/5;
            box-shadow: var(--shadow-lg);
        }
        .profile-image img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        .profile-image::after {
            content: "";
            position: absolute;
            top: -1px; right: -1px;
            width: 80px; height: 80px;
            border-top: 3px solid var(--accent);
            border-right: 3px solid var(--accent);
            border-top-right-radius: var(--radius-lg);
            pointer-events: none;
        }
        .profile-image .img-frame-b {
            position: absolute;
            bottom: -1px; left: -1px;
            width: 80px; height: 80px;
            border-bottom: 3px solid var(--accent);
            border-left: 3px solid var(--accent);
            border-bottom-left-radius: var(--radius-lg);
            pointer-events: none;
        }

        /* ============================================================
           METHOD — 3 step sobri
        ============================================================ */
        .method {
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .method-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            counter-reset: method-counter;
        }
        .method-step {
            background: #fff;
            border: 1px solid var(--border-lt);
            border-radius: var(--radius-lg);
            padding: 40px 32px 36px;
            position: relative;
            counter-increment: method-counter;
            transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
        }
        .method-step:hover {
            border-color: var(--accent-lt);
            transform: translateY(-4px);
            box-shadow: var(--shadow-sm);
        }
        .method-step::before {
            content: counter(method-counter, decimal-leading-zero);
            position: absolute;
            top: 28px;
            right: 30px;
            font-family: var(--serif);
            font-style: italic;
            font-size: 2.4rem;
            color: var(--accent-lt);
            line-height: 1;
            font-weight: 400;
        }
        .method-step .method-icon {
            width: 38px; height: 38px;
            color: var(--accent);
            margin-bottom: 22px;
        }
        .method-step h3 {
            font-family: var(--serif);
            color: var(--primary);
            font-size: 1.25rem;
            line-height: 1.3;
            margin-bottom: 12px;
            padding-right: 40px;
        }
        .method-step p {
            font-size: .92rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ============================================================
           NUMBERS STRIP
        ============================================================ */
        .numbers {
            background: var(--primary);
            color: #fff;
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .numbers::before {
            content: "";
            position: absolute; inset: 0;
            background:
                radial-gradient(circle at 10% 50%, rgba(197, 157, 95,.14), transparent 42%),
                radial-gradient(circle at 90% 50%, rgba(197, 157, 95,.12), transparent 42%);
            z-index: -1;
        }
        .numbers-inner {
            max-width: var(--container);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        .number-item {
            border-left: 1px solid rgba(255,255,255,.12);
            padding: 10px 10px;
        }
        .number-item:first-child { border-left: 0; }
        .number-value {
            font-family: var(--serif);
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            color: var(--accent);
            line-height: 1;
            margin-bottom: 12px;
            font-weight: 400;
        }
        .number-value em { font-style: italic; font-size: .7em; vertical-align: super; margin-left: 2px; }
        .number-label {
            font-size: .74rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            opacity: .82;
        }

        /* ============================================================
           CERTIFICATIONS — extended with explanations
        ============================================================ */
        .certifications { background: var(--bg); }
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .cert-card {
            background: #fff;
            border: 1px solid var(--border-lt);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: all var(--t-med);
            display: flex;
            flex-direction: column;
        }
        .cert-card:hover {
            border-color: var(--accent-lt);
            box-shadow: var(--shadow-sm);
            transform: translateY(-3px);
        }
        .cert-card-head {
            display: grid;
            grid-template-columns: 104px 1fr;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }
        .cert-code {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 36px;
            min-width: 104px;
            font-weight: 700;
            font-size: .78rem;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: var(--primary);
            line-height: 1;
            white-space: nowrap;
            padding: 6px 10px;
            background: var(--accent-bg);
            border: 1px solid var(--accent-lt);
            border-radius: var(--radius);
        }
        .cert-code--logo {
            padding: 5px 8px;
        }
        .cert-logo {
            display: block;
            width: auto;
            height: auto;
            max-width: 86px;
            max-height: 26px;
            object-fit: contain;
            object-position: center;
        }
        .cert-logo--iata { max-width: 40px; max-height: 20px; }
        .cert-logo--fto { max-width: 64px; max-height: 20px; }
        .cert-logo--iso { max-width: 66px; max-height: 24px; }
        .cert-logo--visitusa { max-width: 66px; max-height: 28px; }
        .cert-logo--pata { max-width: 66px; max-height: 24px; }
        .cert-logo--garanzia { max-width: 78px; max-height: 24px; }
        .cert-logo--pdr { max-width: 62px; max-height: 30px; }
        .cert-card h3 {
            font-family: var(--serif);
            font-size: 1rem;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.4;
            margin: 0;
            flex: 1;
        }
        .cert-card p {
            font-size: .86rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 560px) {
            .cert-card-head {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .cert-code {
                min-width: 0;
                width: fit-content;
            }
        }

        /* ============================================================
           COMMITMENT — 4 valori
        ============================================================ */
        .commitment {
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
        }
        .commit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px;
        }
        .commit-card {
            background: #fff;
            border: 1px solid var(--border-lt);
            border-radius: var(--radius-lg);
            padding: 34px 28px;
            transition: all var(--t-med);
            position: relative;
            overflow: hidden;
        }
        .commit-card::after {
            content: "";
            position: absolute; left: 0; top: 0;
            width: 4px; height: 0;
            background: var(--accent);
            transition: height var(--t-med);
        }
        .commit-card:hover {
            border-color: var(--accent-lt);
            transform: translateY(-4px);
            box-shadow: var(--shadow-sm);
        }
        .commit-card:hover::after { height: 100%; }
        .commit-icon {
            width: 40px; height: 40px;
            color: var(--accent);
            margin-bottom: 22px;
        }
        .commit-card h3 {
            font-family: var(--serif);
            color: var(--primary);
            font-size: 1.15rem;
            margin-bottom: 10px;
        }
        .commit-card p {
            font-size: .88rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ============================================================
           CTA FINAL
        ============================================================ */
        .cta-final {
            background: #050a14;
            color: #fff;
            padding: 110px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .cta-final::before {
            content: "";
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 50% 20%, rgba(197, 157, 95,.18), transparent 55%);
            z-index: -1;
        }
        .cta-final h2 {
            font-family: var(--serif);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            margin-bottom: 24px;
            line-height: 1.15;
        }
        .cta-final h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
        .cta-final p {
            margin: 0 auto 40px;
            opacity: .78;
            font-weight: 300;
            font-size: 1.05rem;
            max-width: 640px;
            line-height: 1.75;
        }
        .cta-final .btn-group { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

        /* ============================================================
           RESPONSIVE
        ============================================================ */
        @media (max-width: 1024px) {
            .profile-inner { grid-template-columns: 1fr; gap: 40px; }
            .profile-image { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
            .method-grid { grid-template-columns: 1fr; gap: 20px; }
            .numbers-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
            .number-item:nth-child(odd) { border-left: 0; }
            .number-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.12); padding-top: 30px; }
            .number-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); padding-top: 30px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
        }
        @media (max-width: 768px) {
            .section { padding: 70px 5%; }
            .section-head { margin-bottom: 45px; }
            .page-hero { min-height: 50vh; padding: 60px 5% 70px; }
            .page-hero-quote { padding: 0 10px; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        }
        @media (max-width: 480px) {
            .btn-gold { padding: 14px 28px; font-size: .72rem; }
            .btn-outline { padding: 13px 22px; font-size: .7rem; }
            .numbers-inner { grid-template-columns: 1fr; gap: 28px; }
            .number-item { border-left: 0 !important; border-top: 1px solid rgba(255,255,255,.12) !important; padding-top: 24px !important; }
            .number-item:first-child { border-top: 0 !important; padding-top: 10px !important; }
        }
