/* =================================================================
   DishFlow — chisiamo.css
   Editorial luxury "About" page
   Zero Google Fonts — sistema serif + sans
   ================================================================= */

:root {
    --bg:      #07090f;
    --bg2:     #0b0e18;
    --card:    #0d1020;
    --gold:    #c9a84c;
    --goldh:   #e8c96a;
    --white:   #ffffff;
    --off:     #e8e4dc;
    --gray:    #8892a4;
    --gray2:   #4a5568;
    --border:  rgba(201,168,76,.15);
    --brd2:    rgba(255,255,255,.06);
    --serif:   'Georgia', 'Times New Roman', 'Palatino Linotype', serif;
    --sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --ease:    cubic-bezier(.16,1,.3,1);
    --ease2:   cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;

}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { display: block; }
p { line-height: 1.75; }

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
.cursor, .cursor-follower { display: none !important; }

/* ── NOISE ───────────────────────────────────────────────────── */
.noise {
    position: fixed; inset: 0; z-index: 2; pointer-events: none;
    opacity: .022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    /* Fallback: mostra dopo 2s anche senza JS */
    animation: revealFallback 0s 2s forwards;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}
@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 52px; height: 72px;
    transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled {
    background: rgba(7,9,15,.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; object-fit: contain; }
.nav-logo-txt {
    font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
}
.nav-logo-txt em { font-style: italic; color: var(--gold); }

.nav-links {
    display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-link {
    font-size: .83rem; font-weight: 500; color: var(--gray);
    position: relative; transition: color .2s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -3px; left: 50%; right: 50%;
    height: 1px; background: var(--gold);
    transition: left .25s var(--ease), right .25s var(--ease);
}
.nav-link:hover, .nav-link--active { color: var(--white); }
.nav-link:hover::after, .nav-link--active::after { left: 0; right: 0; }
.nav-link--active { color: var(--gold); }
.nav-link--active::after { background: var(--gold); left: 0; right: 0; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-btn-ghost {
    font-size: .82rem; font-weight: 600; color: var(--gray);
    border: 1px solid var(--brd2); border-radius: 50px;
    padding: 8px 20px;
    transition: all .2s ease;
}
.nav-btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.2); }
.nav-btn-gold {
    font-size: .82rem; font-weight: 700; color: #07090f;
    background: var(--gold); border-radius: 50px;
    padding: 8px 22px;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(201,168,76,.25);
}
.nav-btn-gold:hover { background: var(--goldh); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    padding-top: 72px;
    overflow: hidden;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: space-between;
}

/* Watermark number */
.hero-watermark {
    position: absolute; top: 60px; right: -20px;
    font-family: var(--serif); font-size: 28vw; font-weight: 700;
    color: rgba(255,255,255,.018); line-height: 1;
    pointer-events: none; user-select: none; z-index: 0;
    letter-spacing: -2vw;
}

/* Grid lines decorative */
.hero-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hg-line {
    position: absolute;
    background: rgba(201,168,76,.06);
}
.hg-v1 { width: 1px; top: 0; bottom: 0; left: 25%; }
.hg-v2 { width: 1px; top: 0; bottom: 0; right: 25%; }
.hg-h1 { height: 1px; left: 0; right: 0; top: 72px; }

.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end;
    padding: 80px 52px 60px;
    max-width: 1400px; margin: 0 auto; width: 100%;
}

/* Left */
.hero-tag {
    display: flex; align-items: center; gap: 12px;
    font-size: .68rem; font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 24px;
}
.tag-line {
    display: block; width: 36px; height: 1px;
    background: var(--gold); opacity: .7;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3.4rem, 6vw, 6rem);
    font-weight: 400; line-height: 1.0;
    letter-spacing: -.02em;
}
.ht-line { display: block; overflow: hidden; }
.ht-gold {
    color: var(--gold); font-style: italic;
}

/* Right */
.hero-desc {
    font-size: 1rem; color: rgba(255,255,255,.6);
    font-weight: 300; line-height: 1.85;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex; align-items: center; gap: 28px;
}
.hstat { display: flex; align-items: baseline; gap: 5px; }
.hstat-num {
    font-family: var(--serif);
    font-size: 2.2rem; font-weight: 700;
    background: linear-gradient(135deg, #e8c96a, #c9a84c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.hstat-label {
    font-size: .70rem; color: var(--gray); margin-left: 6px;
    font-weight: 500; letter-spacing: .2px;
}
.hstat-sep {
    width: 1px; height: 30px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Foto hero */
.hero-photo {
    position: relative; z-index: 1;
    width: 100%; height: 320px;
    overflow: hidden;
}

.hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7,9,15,.2) 0%,
        transparent 40%,
        rgba(7,9,15,.35) 100%
    );
}


/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 36px; left: 52px; z-index: 2;
    display: flex; align-items: center; gap: 12px;
    font-size: .65rem; color: rgba(255,255,255,.3);
    text-transform: uppercase; letter-spacing: 2px;
    animation: fadeIn .8s ease 1.5s both;
}
.sh-mouse {
    width: 20px; height: 30px; border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 10px; display: flex; justify-content: center; padding-top: 5px;
}
.sh-wheel {
    width: 2px; height: 6px; background: var(--gold); border-radius: 1px;
    animation: wheelDrop 2s ease-in-out infinite;
}
@keyframes wheelDrop {
    0%   { transform: translateY(0); opacity: 1; }
    60%  { transform: translateY(8px); opacity: 0; }
    61%  { transform: translateY(0); opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════════════════════════════
   SEZIONI GENERALI
═══════════════════════════════════════════════════════════════ */
.section-container {
    max-width: 1280px; margin: 0 auto; padding: 0 52px;
}
.section-header {
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 60px;
}
.section-num {
    font-family: var(--serif);
    font-size: 6rem; font-weight: 700;
    color: rgba(255,255,255,.04); line-height: .8;
    user-select: none; pointer-events: none;
    letter-spacing: -2px; flex-shrink: 0;
    margin-top: -10px;
}
.section-tag {
    font-size: .68rem; font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 2.5px;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
}
.section-tag::before {
    content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .6;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; line-height: 1.15; color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════════════════════════════ */
.manifesto {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    position: relative;
}
.manifesto::before {
    content: ''; position: absolute; top: 0; left: 52px; right: 52px; height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.manifesto-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 52px;
    display: flex; gap: 80px; align-items: flex-start;
}
.manifesto-inner .section-num {
    font-size: 8rem; margin-top: -20px;
}
.manifesto-content { flex: 1; }

.manifesto-quote {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400; line-height: 1.4;
    color: var(--white); margin-bottom: 40px;
    position: relative; padding-left: 28px;
}
.manifesto-quote::before {
    content: '';
    position: absolute; left: 0; top: 8px; bottom: 8px;
    width: 3px; background: var(--gold); border-radius: 2px;
}
.manifesto-quote em { font-style: italic; color: var(--gold); }

.manifesto-body { display: flex; gap: 40px; }
.manifesto-body p {
    flex: 1; font-size: .92rem; color: rgba(255,255,255,.5);
    font-weight: 300; line-height: 1.9;
}

/* ═══════════════════════════════════════════════════════════════
   VALORI
═══════════════════════════════════════════════════════════════ */
.values {
    padding: 100px 0;
    border-top: 1px solid var(--brd2);
}

.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--brd2);
    border: 1px solid var(--brd2);
    border-radius: 20px; overflow: hidden;
}
.value-card {
    background: var(--card); padding: 40px 36px;
    position: relative; overflow: hidden;
    transition: background .3s ease;
}
.value-card:hover { background: rgba(201,168,76,.04); }
.value-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
    background: linear-gradient(to top, rgba(201,168,76,.06), transparent);
    transition: height .4s var(--ease));
}
.value-card:hover::after { height: 80px; }

.vc-number {
    font-family: var(--serif);
    font-size: 2.5rem; font-weight: 400;
    color: rgba(255,255,255,.06); margin-bottom: 20px;
    letter-spacing: -1px; line-height: 1;
}
.vc-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(201,168,76,.08); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.vc-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.value-card:hover .vc-icon {
    background: rgba(201,168,76,.15); border-color: var(--gold);
    transform: translateY(-3px);
}
.value-card h3 {
    font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
    margin-bottom: 12px; color: var(--white);
}
.value-card p { font-size: .83rem; color: var(--gray); line-height: 1.75; }
.vc-line {
    position: absolute; bottom: 0; left: 0;
    height: 2px; width: 0;
    background: linear-gradient(to right, var(--gold), transparent);
    transition: width .5s var(--ease);
}
.value-card:hover .vc-line { width: 60%; }

/* ═══════════════════════════════════════════════════════════════
   NUMBERS
═══════════════════════════════════════════════════════════════ */
.numbers {
    padding: 100px 0; position: relative; overflow: hidden;
}
.numbers-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
}
.numbers-bg::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,.3), transparent);
}
.numbers-bg::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,.3), transparent);
}

.numbers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.number-item {
    text-align: center; padding: 60px 40px;
    border-right: 1px solid var(--brd2);
    position: relative;
}
.number-item:last-child { border-right: none; }

.ni-num {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700; color: var(--white); line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,.7) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ni-unit {
    font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 400;
}
.ni-label {
    font-size: .88rem; font-weight: 600; color: var(--white);
    margin-top: 12px; margin-bottom: 5px;
}
.ni-sub { font-size: .74rem; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════════════ */
.timeline-section {
    padding: 100px 0;
    border-top: 1px solid var(--brd2);
}

.timeline {
    position: relative; padding: 20px 0;
    max-width: 900px; margin: 0 auto;
}
.tl-spine {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: var(--border);
    transform: translateX(-50%);
}
.tl-spine::before, .tl-spine::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.tl-spine::before { top: 0; }
.tl-spine::after  { bottom: 0; }

.tl-item {
    display: flex; align-items: flex-start;
    margin-bottom: 56px; position: relative;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
    position: absolute; left: 50%; top: 22px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--bg2); border: 2px solid var(--border);
    transform: translateX(-50%);
    transition: background .3s, border-color .3s, transform .3s;
    z-index: 1;
}
.tl-item:hover .tl-dot { background: var(--gold); border-color: var(--gold); transform: translateX(-50%) scale(1.3); }
.tl-dot-gold { background: var(--gold) !important; border-color: var(--gold) !important; }

.tl-card {
    width: calc(50% - 40px);
    background: var(--card);
    border: 1px solid var(--brd2);
    border-radius: 16px; padding: 28px 30px;
    transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.tl-card:hover {
    border-color: rgba(201,168,76,.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.tl-card-gold { border-color: rgba(201,168,76,.25) !important; }

.tl-left  .tl-card { margin-right: auto; }
.tl-right .tl-card { margin-left: auto; }

.tl-year {
    font-size: .68rem; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 1.5px;
    display: block; margin-bottom: 8px;
}
.tl-card h3 {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
    margin-bottom: 10px; color: var(--white);
}
.tl-card p { font-size: .82rem; color: var(--gray); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════════════════ */
.team-section {
    padding: 100px 0;
    border-top: 1px solid var(--brd2);
}

.team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.team-card {
    background: var(--card);
    border: 1px solid var(--brd2);
    border-radius: 18px; overflow: hidden;
    transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,.3);
    box-shadow: 0 24px 56px rgba(0,0,0,.5);
}

/* Foto placeholder con gradient unico per ciascuno */
.tc-photo {
    height: 200px; position: relative; overflow: hidden;
}
.tc-photo-1 { background: linear-gradient(135deg, #1a2a1a 0%, #2d4a2d 50%, #1a3020 100%);
}
.tc-photo-2 { background: linear-gradient(135deg, #1a1a2a 0%, #2d2d4a 50%, #1a2040 100%);
}
.tc-photo-3 { background: linear-gradient(135deg, #2a1a1a 0%, #4a2d2d 50%, #301a1a 100%);
}
.tc-photo-4 { background: linear-gradient(135deg, #1a2a2a 0%, #2d4a4a 50%, #1a3030 100%);
}

.tc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13,16,32,.9) 100%);
}

.tc-body { padding: 22px 22px 24px; }
.tc-info { margin-bottom: 12px; }
.tc-info h3 {
    font-family: var(--serif); font-size: 1.05rem;
    font-weight: 600; margin-bottom: 3px;
}
.tc-info span { font-size: .72rem; color: var(--gold); font-weight: 600; letter-spacing: .5px; }
.tc-body p { font-size: .78rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.tc-socials { display: flex; gap: 8px; }
.tc-soc {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,255,255,.05); border: 1px solid var(--brd2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); transition: all .2s ease;
}
.tc-soc svg { width: 13px; height: 13px; }
.tc-soc:hover { background: rgba(201,168,76,.1); border-color: var(--border); color: var(--gold); }



/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════ */
.final-cta {
    padding: 120px 0; position: relative; overflow: hidden;
    border-top: 1px solid var(--brd2);
}
.fca-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a0d16 0%, #111827 50%, #0a0d16 100%);
}
.fca-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(7,9,15,.3) 0%, rgba(7,9,15,.85) 100%);
}

.fca-inner {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 680px; margin: 0 auto;
}
.fca-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .68rem; font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.sb-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.fca-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400; line-height: 1.1; margin-bottom: 18px;
}
.fca-title em { font-style: italic; color: var(--gold); }
.fca-sub { font-size: .95rem; color: rgba(255,255,255,.5); margin-bottom: 40px; }

.fca-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #e8c96a 0%, #b8900a 100%);
    color: #07090f; border-radius: 50px; padding: 15px 32px;
    font-size: .92rem; font-weight: 700;
    box-shadow: 0 8px 28px rgba(201,168,76,.28);
    transition: all .25s var(--ease); position: relative; overflow: hidden;
}
.btn-gold svg { width: 16px; height: 16px; transition: transform .25s; }
.btn-gold::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transition: left .5s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,168,76,.38); }
.btn-gold:hover::after { left: 150%; }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost {
    font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.15); border-radius: 50px; padding: 15px 28px;
    transition: all .2s ease;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.35); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
    background: #040608; border-top: 1px solid var(--brd2);
    padding: 60px 0 0;
}
.footer-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 52px;
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid var(--brd2);
}
.footer-logo { height: 32px; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { font-size: .80rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 9px; }
.fsoc {
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--brd2); border: 1px solid rgba(255,255,255,.04);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); transition: all .2s;
}
.fsoc svg { width: 15px; height: 15px; }
.fsoc:hover { background: rgba(201,168,76,.1); border-color: var(--border); color: var(--gold); }

.footer-col h4 {
    font-size: .74rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .82rem; color: var(--gray); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1280px; margin: 0 auto; padding: 18px 52px;
    font-size: .70rem; color: var(--gray2); text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* Team grid 2 colonne */
.team-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
}

/* Card senza foto */
.team-card--nophoto {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}
.team-card--nophoto .tc-body {
    padding: 28px 28px 28px 0;
}

/* Avatar iniziali */
.tc-avatar {
    width: 72px;
    min-width: 72px;
    height: 100%;
    min-height: 140px;
    background: linear-gradient(135deg, rgba(201,168,76,.15) 0%, rgba(201,168,76,.06) 100%);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    flex-shrink: 0;
    transition: background .3s ease;
}
.team-card--nophoto:hover .tc-avatar {
    background: linear-gradient(135deg, rgba(201,168,76,.22) 0%, rgba(201,168,76,.10) 100%);
}

@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .number-item:nth-child(2) { border-right: none; }
    .number-item { border-bottom: 1px solid var(--brd2); }
}
@media (max-width: 900px) {
    .nav-links, .nav-btn-ghost { display: none; }
    .nav { padding: 0 24px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
    .section-container { padding: 0 24px; }
    .manifesto-inner { flex-direction: column; gap: 32px; padding: 0 24px; }
    .manifesto-body { flex-direction: column; gap: 20px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .tl-spine, .tl-dot { left: 20px; }
    .tl-left .tl-card, .tl-right .tl-card { width: calc(100% - 56px); margin-left: 56px; }
    .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 24px 40px; }
    .join-inner { flex-direction: column; padding: 32px 28px; }
    .hero-watermark { font-size: 40vw; }
}
@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; padding: 0 20px 32px; }
    .footer-bottom { padding: 16px 20px; }

}

/* Card team minimal — solo nome e ruolo */
.team-card--nophoto .tc-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 24px;
}
.team-card--nophoto .tc-body h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.tc-role {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero photo — gradiente CSS (no dipendenze esterne) */
.hero-photo-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg,
            #0f1a0f 0%,
            #1a2e1a 20%,
            #2a1808 40%,
            #1a1008 60%,
            #0f1520 80%,
            #080c18 100%
        );
}
.hero-photo-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(201,168,76,.015) 60px,
        rgba(201,168,76,.015) 61px
    );
}

/* Immagine hero reale */
.hero-photo-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}