/**
 * Stili pagina: staff
 */

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

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #f8f8f8;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* â”€â”€ Hero Header (dark, from B) â”€â”€ */
        .staff-hero {
            background-color: #111;
            background-image: url('../../images/general/storia.jpg');
            background-size: cover;
            background-position: center 22%;
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .staff-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg,
                rgba(5,1,1,0.88) 0%,
                rgba(8,3,3,0.80) 45%,
                rgba(5,2,2,0.68) 100%);
            z-index: 0;
        }

        .staff-hero::before {
            content: "'98";
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
            font-size: clamp(8rem, 20vw, 18rem);
            font-weight: 700;
            color: rgba(255,255,255,0.05);
            line-height: 1;
            pointer-events: none;
            letter-spacing: -4px;
            z-index: 1;
        }

        .staff-hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: rgba(229, 16, 26, 0.9);
            margin-bottom: 18px;
            display: block;
        }

        .staff-hero-title {
            font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
            font-size: clamp(2.6rem, 6vw, 5.2rem);
            font-weight: 700;
            color: #f0eded;
            line-height: 1.0;
            letter-spacing: -1px;
        }

        /* â”€â”€ Leadership (editorial split, from A) â”€â”€ */
        .staff-leadership {
            padding: 88px 0;
            background: white;
        }

        .leadership-feature {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 72px;
            align-items: center;
        }

        .leadership-feature + .leadership-feature {
            margin-top: 80px;
            padding-top: 80px;
            border-top: 1px solid rgba(0,0,0,0.08);
        }

        .lf-photo {
            position: relative;
        }

        .lf-photo::after {
            content: '';
            position: absolute;
            bottom: -16px;
            right: -16px;
            width: 48%;
            height: 48%;
            background: #e5101a;
            z-index: 0;
        }

        .lf-photo img {
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            object-position: center top;
            display: block;
            position: relative;
            z-index: 1;
        }

        .lf-role {
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: rgba(229, 16, 26, 0.9);
            margin-bottom: 14px;
            display: block;
        }

        .lf-name {
            font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.05;
            letter-spacing: -0.5px;
            margin-bottom: 22px;
        }

        .lf-quote {
            font-size: 1rem;
            color: #4a4a4a;
            line-height: 1.78;
            font-style: italic;
            margin-bottom: 30px;
        }

        .lf-contact {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(229, 16, 26, 0.75);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.25s ease;
        }

        .lf-contact::after { content: '\2192'; }

        .lf-contact:hover { color: #e5101a; }

        /* â”€â”€ Staff Body (numbered sections, from C) â”€â”€ */
        .staff-body {
            padding: 88px 0;
        }

        .staff-numbered-section {
            margin-bottom: 72px;
        }

        .staff-numbered-section:last-child {
            margin-bottom: 0;
        }

        .section-header-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .section-num {
            font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
            font-size: clamp(3.5rem, 6vw, 5rem);
            font-weight: 700;
            color: rgba(229, 16, 26, 0.12);
            line-height: 1;
            letter-spacing: -2px;
            flex-shrink: 0;
        }

        .section-heading {
            font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.3px;
            line-height: 1.1;
        }

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
            gap: 20px;
        }

        .staff-card {
            background: white;
            overflow: hidden;
        }

        /* Featured (allenatori): red top border, from B */
        .staff-card.featured {
            border-top: 2px solid #e5101a;
        }

        .staff-card-photo {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            background: #e8e8e8;
        }

        .staff-card-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform 0.5s ease;
        }

        .staff-card:hover .staff-card-photo img {
            transform: scale(1.04);
        }

        .staff-card-photo-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.2);
            font-size: 3rem;
        }

        .staff-card-info {
            padding: 12px 14px 16px;
        }

        .staff-card-role {
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(26, 26, 26, 0.38);
            margin-bottom: 4px;
            display: block;
        }

        .staff-card.featured .staff-card-role {
            color: rgba(229, 16, 26, 0.75);
        }

        .staff-card-name {
            font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
            font-size: 1.05rem;
            font-weight: 400;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .staff-card-name strong {
            font-weight: 700;
        }

        /* â”€â”€ Join CTA (minimal, from C) â”€â”€ */
        .staff-cta {
            background: white;
            border-top: 1px solid rgba(0,0,0,0.08);
            padding: 56px 0 72px;
        }

        .staff-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .cta-title {
            font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.3px;
            margin-bottom: 6px;
        }

        .cta-desc {
            font-size: 0.9rem;
            color: #5a5a5a;
            line-height: 1.6;
            max-width: 480px;
        }

        .cta-link {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(229, 16, 26, 0.75);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            white-space: nowrap;
            transition: color 0.25s ease;
        }

        .cta-link::after { content: '\2192'; }

        .cta-link:hover { color: #e5101a; }

        /* â”€â”€ Responsive â”€â”€ */
        @media (max-width: 900px) {
            .leadership-feature {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .lf-photo::after {
                display: none;
            }

            .lf-photo img {
                aspect-ratio: 4 / 3;
            }

            .staff-cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 640px) {
            .staff-hero {
                padding: 110px 0 56px;
            }

            .staff-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .staff-numbered-section {
                margin-bottom: 56px;
            }

            .section-header-row {
                gap: 14px;
            }
        }
