/* ============================================================
   AC BELLINZONA 1904 — design system
   granata · oro · notte — sotto i tre castelli
   ============================================================ */

/* ---------- font ---------- */
@font-face { font-family: 'Barlow Condensed'; src: url('../fonts/BarlowCondensed-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('../fonts/BarlowCondensed-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('../fonts/BarlowCondensed-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('../fonts/Barlow-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('../fonts/Barlow-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('../fonts/Barlow-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

/* ---------- token ---------- */
:root {
  --night: #0a0c10;
  --night-2: #0e1117;
  --panel: #131722;
  --panel-2: #181d2a;
  --granata: #7d2430;
  --granata-hot: #9c2c3b;
  --granata-deep: #43141c;
  --oro: #c99833;
  --oro-bright: #e6bd63;
  --bianco: #f4f1ea;
  --muted: #99a0ad;
  --hair: rgba(201, 152, 51, .22);
  --hair-soft: rgba(244, 241, 234, .08);
  --disp: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --pad: clamp(20px, 6vw, 96px);
  --maxw: 1240px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--night);
  color: var(--bianco);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--granata); color: var(--bianco); }

/* rombo decorativo (dal logo) */
.dia {
  display: inline-block; width: 7px; height: 7px; margin-right: 10px;
  background: var(--oro); transform: rotate(45deg) translateY(-1px);
}

/* ---------- bottoni ---------- */
.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--disp); font-weight: 600; font-size: 17px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 30px; border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--oro); color: #1a1206; }
.btn--gold:hover { background: var(--oro-bright); }
.btn--ghost { border-color: rgba(244, 241, 234, .4); color: var(--bianco); }
.btn--ghost:hover { border-color: var(--oro); color: var(--oro-bright); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--oro); outline-offset: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 28px;
  padding: 0 clamp(16px, 3vw, 40px);
  height: 72px;
  transition: background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-solid {
  background: rgba(10, 12, 16, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hair-soft);
}
.header__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__brand img { width: 34px; height: auto; }
.header__wordmark {
  font-family: var(--disp); font-weight: 600; font-size: 20px;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.header__wordmark em { font-style: normal; color: var(--oro); margin-left: 7px; font-weight: 500; }

.nav { display: flex; gap: clamp(10px, 1.6vw, 24px); margin-left: auto; }
.nav a {
  font-family: var(--disp); font-weight: 500; font-size: 15px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
  padding: 6px 2px; position: relative; transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--oro); transition: right .3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--bianco); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }

.header__right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav + .header__right { margin-left: 0; }

/* lingua */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--hair-soft); color: var(--bianco);
  font-family: var(--disp); font-weight: 600; font-size: 14px; letter-spacing: .1em;
  padding: 8px 12px; cursor: pointer; transition: border-color .2s;
}
.lang__btn:hover { border-color: var(--oro); }
.lang__flag { display: inline-flex; width: 20px; height: 14px; overflow: hidden; }
.lang__flag svg { width: 100%; height: 100%; display: block; }
.lang__chev { opacity: .6; transition: transform .2s; }
.lang.is-open .lang__chev { transform: rotate(180deg); }
.lang__list {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px;
  background: var(--panel); border: 1px solid var(--hair-soft);
  list-style: none; padding: 6px; z-index: 110;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.lang.is-open .lang__list { opacity: 1; transform: none; pointer-events: auto; }
.lang__list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 500; font-size: 15px; letter-spacing: .08em;
  padding: 9px 12px; cursor: pointer; color: var(--muted); transition: color .15s, background .15s;
}
.lang__list li:hover, .lang__list li.is-current { color: var(--bianco); background: rgba(201, 152, 51, .08); }

/* burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 7px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.burger span { height: 2px; background: var(--bianco); transition: transform .3s var(--ease), opacity .3s; }
.burger.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* menu mobile */
.mobmenu {
  position: fixed; inset: 0; z-index: 90;
  background: linear-gradient(160deg, var(--granata-deep), var(--night) 70%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px var(--pad) 48px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobmenu.is-open { opacity: 1; pointer-events: auto; }
.mobmenu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobmenu__nav a {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 8vw, 56px); letter-spacing: .04em; line-height: 1.25;
  color: var(--bianco); opacity: 0; transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s;
}
.mobmenu.is-open .mobmenu__nav a { opacity: 1; transform: none; }
.mobmenu__nav a:hover { color: var(--oro-bright); }
.mobmenu__foot { margin-top: 40px; font-family: var(--disp); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-size: 13px; }

/* ============================================================
   HERO — il viaggio
   ============================================================ */
.journey { height: 420vh; position: relative; }
.journey__sticky {
  position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden;
  background: var(--night) url('../img/poster.webp') center / cover no-repeat;
}
.journey__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.journey__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,12,16,.5) 0%, rgba(10,12,16,0) 22%),
    linear-gradient(0deg, rgba(10,12,16,.55) 0%, rgba(10,12,16,0) 26%);
}

/* segmenti testuali */
.jseg {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  opacity: 0; pointer-events: none;
  will-change: opacity, transform;
}
.jseg.is-live { pointer-events: auto; }

.jseg__eyebrow {
  font-family: var(--disp); font-weight: 500; font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: .34em; text-transform: uppercase; color: var(--oro-bright);
  margin-bottom: 14px; text-shadow: 0 1px 18px rgba(0,0,0,.6);
}
.jseg__eyebrow--center { text-align: center; margin-bottom: 26px; }

.jseg--title { align-items: flex-start; }
.jseg__h1 {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(64px, 13.5vw, 190px); line-height: .92; letter-spacing: .01em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, .55);
}
.jseg__sub {
  margin-top: 18px; font-size: clamp(16px, 1.8vw, 21px); color: var(--bianco);
  font-weight: 400; opacity: .92; max-width: 520px; text-shadow: 0 1px 14px rgba(0,0,0,.7);
}

.jseg--castles { align-items: flex-end; text-align: right; }
.jseg__lines { display: flex; flex-direction: column; gap: 2px; }
.jseg__lines span {
  font-family: var(--disp); font-weight: 600; text-transform: uppercase;
  font-size: clamp(36px, 6vw, 84px); line-height: 1.08; letter-spacing: .02em;
  text-shadow: 0 3px 40px rgba(0, 0, 0, .6);
}
.jseg__lines span:nth-child(2) { color: var(--oro-bright); }

/* match center */
.jseg--mc { justify-content: center; }
.mc {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 1080px; margin: 0 auto; width: 100%;
}
.mc__card {
  background: rgba(10, 12, 16, .58);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hair-soft); border-top: 2px solid var(--oro);
  padding: clamp(16px, 2.2vw, 28px);
}
.mc__card h3 {
  font-family: var(--disp); font-weight: 500; font-size: 14px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--oro-bright);
  margin-bottom: 12px;
}
.mc__teams { font-family: var(--disp); font-weight: 600; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.15; text-transform: uppercase; letter-spacing: .02em; }
.mc__teams--small { font-size: clamp(16px, 1.6vw, 20px); color: var(--muted); }
.mc__score { font-family: var(--disp); font-weight: 700; font-size: clamp(38px, 4.6vw, 62px); line-height: 1; letter-spacing: .04em; }
.mc__meta { margin-top: 8px; font-size: 14px; color: var(--bianco); }
.mc__meta--dim { color: var(--muted); font-size: 13px; }
.mc__link {
  display: inline-block; margin-top: 12px;
  font-family: var(--disp); font-weight: 600; font-size: 14px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--oro-bright);
}
.mc__link:hover { color: var(--bianco); }
.tbc {
  display: inline-block; margin-left: 8px; padding: 2px 8px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--hair); color: var(--oro-bright); vertical-align: middle;
  font-family: var(--body); font-weight: 500;
}

.jseg--sprint { align-items: center; text-align: center; }
.jseg__giant {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(56px, 11vw, 170px); line-height: .95; letter-spacing: .015em;
  color: var(--bianco); text-shadow: 0 6px 80px rgba(0, 0, 0, .65);
}

.jseg--end { align-items: center; text-align: center; }
.jseg__h2 {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(44px, 8vw, 120px); line-height: .95; letter-spacing: .015em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, .6);
}
.jseg--end .jseg__sub { max-width: 640px; margin-left: auto; margin-right: auto; }
.jseg__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }

/* hint + loading */
.journey__hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 6;
  font-family: var(--disp); font-size: 13px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--bianco); opacity: .85; transition: opacity .4s;
}
.journey__hintline { width: 1px; height: 44px; background: linear-gradient(var(--oro), transparent); animation: hint 1.8s var(--ease) infinite; }
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.journey__load { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; z-index: 7; background: rgba(244, 241, 234, .06); transition: opacity .5s; }
.journey__loadbar { display: block; height: 100%; width: 0; background: var(--oro); transition: width .3s var(--ease); }

/* ============================================================
   SEZIONI
   ============================================================ */
.sec { padding: clamp(80px, 12vh, 150px) var(--pad); max-width: calc(var(--maxw) + 2 * var(--pad)); margin: 0 auto; scroll-margin-top: 64px; }
.sec__head { margin-bottom: clamp(32px, 5vh, 56px); }
.sec__eyebrow {
  font-family: var(--disp); font-weight: 500; font-size: 14px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--oro-bright); margin-bottom: 10px;
}
.sec__title {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(44px, 7vw, 92px); line-height: .95; letter-spacing: .01em;
}

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- news ---------- */
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news__card {
  background: var(--panel); border: 1px solid var(--hair-soft);
  padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.news__card:hover { transform: translateY(-5px); border-color: var(--hair); }
.news__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.news__tag {
  font-family: var(--disp); font-weight: 600; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--oro-bright);
  border: 1px solid var(--hair); padding: 4px 10px;
}
.news__date { font-size: 13px; color: var(--muted); }
.news__title { font-family: var(--disp); font-weight: 600; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.12; text-transform: uppercase; letter-spacing: .01em; }
.news__excerpt { color: var(--muted); font-size: 15px; }

/* ---------- società ---------- */
.club__mission {
  font-family: var(--disp); font-weight: 500; font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.25; max-width: 900px; margin-bottom: clamp(36px, 6vh, 64px);
}
.club__facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: clamp(36px, 6vh, 64px); }
.fact {
  border-top: 1px solid var(--hair); padding-top: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.fact__k { font-family: var(--disp); font-weight: 500; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.fact__v { font-family: var(--disp); font-weight: 600; font-size: clamp(18px, 1.8vw, 24px); text-transform: uppercase; letter-spacing: .02em; }
.staff { max-width: 760px; }
.staff__title { font-family: var(--disp); font-weight: 600; font-size: 20px; letter-spacing: .16em; text-transform: uppercase; color: var(--oro-bright); margin-bottom: 18px; }
.staff__row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--hair-soft);
  font-size: 15px;
}
.staff__row span:first-child { color: var(--muted); }
.staff__row span:last-child { font-weight: 500; text-align: right; }

/* ---------- squadra ---------- */
.squad__group { margin-bottom: clamp(32px, 5vh, 52px); }
.squad__role {
  font-family: var(--disp); font-weight: 600; font-size: 19px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--oro-bright);
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.squad__role::after { content: ''; flex: 1; height: 1px; background: var(--hair-soft); }
.squad__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.player {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--panel-2), var(--panel) 65%);
  border: 1px solid var(--hair-soft); padding: 18px 18px 16px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.player:hover { transform: translateY(-4px); border-color: var(--hair); }
.player__num {
  position: absolute; top: -14px; right: 6px;
  font-family: var(--disp); font-weight: 700; font-size: 84px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201, 152, 51, .4);
}
.player__name { font-family: var(--disp); font-weight: 600; font-size: 23px; line-height: 1.08; text-transform: uppercase; letter-spacing: .01em; max-width: 75%; min-height: 50px; display: flex; align-items: flex-end; }
.player__meta { margin-top: 10px; font-size: 13px; color: var(--muted); display: flex; gap: 10px; }
.squad__coach { font-size: 15px; color: var(--muted); margin-top: 8px; }
.squad__coach strong { color: var(--bianco); font-weight: 600; }

/* ---------- stagione ---------- */
.season { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 64px); }
.season__sub { font-family: var(--disp); font-weight: 600; font-size: 19px; letter-spacing: .18em; text-transform: uppercase; color: var(--oro-bright); margin-bottom: 18px; }
.fixture {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--hair-soft);
}
.fixture__date { font-family: var(--disp); font-weight: 600; font-size: 15px; letter-spacing: .06em; color: var(--muted); min-width: 86px; text-transform: uppercase; }
.fixture__teams { font-family: var(--disp); font-weight: 600; font-size: clamp(19px, 2vw, 24px); text-transform: uppercase; letter-spacing: .01em; line-height: 1.15; flex: 1; }
.fixture__teams .is-acb { color: var(--oro-bright); }
.fixture__note { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--granata-hot); border: 1px solid rgba(156, 44, 59, .5); padding: 3px 8px; font-weight: 600; }
.season__empty {
  border: 1px dashed var(--hair); padding: 28px; color: var(--muted); font-size: 15px;
}
table.standings { width: 100%; border-collapse: collapse; font-size: 15px; }
table.standings th { font-family: var(--disp); font-weight: 600; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--hair); }
table.standings td { padding: 10px 8px; border-bottom: 1px solid var(--hair-soft); }
table.standings tr.is-acb td { background: rgba(201, 152, 51, .07); font-weight: 600; }

/* ---------- biglietti ---------- */
.tickets { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 72px); }
.price {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--hair-soft); font-size: 15px;
}
.price strong { font-family: var(--disp); font-weight: 700; font-size: 22px; letter-spacing: .04em; color: var(--oro-bright); }
.tickets__gap { margin-top: 36px; }
.tickets__note { font-size: 13px; color: var(--muted); margin: 18px 0 24px; }
.tickets__text { color: var(--muted); margin-bottom: 26px; max-width: 460px; }
.tickets__stadium .fact { margin-bottom: 18px; }
.tickets__photo { width: 100%; height: auto; margin-bottom: 22px; border: 1px solid var(--hair-soft); }
.tickets__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tickets__links { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 10px; }
.tickets__links a {
  font-family: var(--disp); font-weight: 600; font-size: 14px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--oro-bright); border-bottom: 1px solid var(--hair);
  padding-bottom: 3px; transition: color .2s;
}
.tickets__links a:hover { color: var(--bianco); }

/* ---------- giovanili ---------- */
.youth__text { font-size: clamp(17px, 1.6vw, 20px); max-width: 760px; margin-bottom: 36px; color: var(--bianco); }
.youth__cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  font-family: var(--disp); font-weight: 600; font-size: 16px; letter-spacing: .12em;
  text-transform: uppercase; border: 1px solid var(--hair); color: var(--oro-bright);
  padding: 9px 18px;
}

/* ---------- club dei 100 ---------- */
#club100 .c100 {
  background: linear-gradient(140deg, var(--granata-deep), #2a0d13 55%, var(--night-2));
  border: 1px solid rgba(201, 152, 51, .3);
  padding: clamp(32px, 5vw, 72px);
}
.c100__pitch { font-family: var(--disp); font-weight: 500; font-size: clamp(20px, 2.6vw, 32px); line-height: 1.3; max-width: 820px; margin-bottom: 32px; }
.c100__benefits { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin-bottom: 36px; max-width: 860px; }
.c100__benefits li { padding-left: 22px; position: relative; color: var(--bianco); font-size: 15px; }
.c100__benefits li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; background: var(--oro); transform: rotate(45deg);
}

/* ---------- storia ---------- */
.history__intro { color: var(--muted); max-width: 640px; margin-bottom: clamp(36px, 6vh, 64px); font-size: 17px; }
.timeline { display: flex; flex-direction: column; }
.tl {
  display: grid; grid-template-columns: minmax(120px, 220px) 1fr; gap: clamp(16px, 4vw, 56px);
  padding: clamp(20px, 3vh, 34px) 0; border-bottom: 1px solid var(--hair-soft);
  align-items: center;
}
.tl__year {
  font-family: var(--disp); font-weight: 700; font-size: clamp(44px, 6.5vw, 96px);
  line-height: .9; letter-spacing: .01em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(244, 241, 234, .55);
}
.tl__year--gold { color: var(--oro); -webkit-text-stroke: 0; }
.tl__text { color: var(--bianco); font-size: clamp(15px, 1.5vw, 18px); max-width: 640px; }

/* ---------- sponsor ---------- */
.sponsors { display: grid; grid-template-columns: 1fr 1.4fr; gap: 18px; }
.sponsor {
  border: 1px solid var(--hair-soft); background: var(--panel);
  padding: clamp(26px, 3.4vw, 48px); display: flex; flex-direction: column; gap: 8px;
}
.sponsor--slot { border-style: dashed; border-color: var(--hair); background: transparent; }
.sponsor__k { font-family: var(--disp); font-weight: 500; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.sponsor__name { font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 4vw, 52px); text-transform: uppercase; letter-spacing: .02em; line-height: 1; }
.sponsor--slot .sponsor__name { color: var(--oro-bright); }
.sponsor__text { color: var(--muted); font-size: 15px; margin: 6px 0 18px; }

/* ---------- contatti ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 72px); }
.contact__text { color: var(--muted); margin-bottom: 32px; }
.contact__mail {
  display: inline-block; font-family: var(--disp); font-weight: 600;
  font-size: clamp(24px, 3vw, 40px); letter-spacing: .02em; color: var(--oro-bright);
  margin-bottom: 36px; border-bottom: 1px solid var(--hair); padding-bottom: 4px;
  transition: color .2s;
}
.contact__mail:hover { color: var(--bianco); }
.social { display: flex; gap: 12px; }
.social a {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--hair-soft);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.social a:hover { border-color: var(--oro); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; fill: var(--bianco); }

/* ---------- form ---------- */
.form { margin-top: clamp(40px, 7vh, 72px); border-top: 1px solid var(--hair); padding-top: clamp(28px, 4vh, 44px); max-width: 760px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__field--full { grid-column: 1 / -1; }
.form__field span {
  font-family: var(--disp); font-weight: 500; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.form__field input, .form__field select, .form__field textarea {
  background: var(--panel); border: 1px solid var(--hair-soft); color: var(--bianco);
  font-family: var(--body); font-size: 16px; padding: 13px 14px;
  border-radius: 0; appearance: none; -webkit-appearance: none; resize: vertical;
  transition: border-color .2s;
}
.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23c99833' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--oro);
}
.form__foot { display: flex; align-items: center; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
.form__status { font-size: 14px; color: var(--oro-bright); }
.season__live {
  margin-top: 10px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-family: var(--disp); font-weight: 500;
}
.season__live::before { content: ''; display: inline-block; width: 7px; height: 7px; background: #4caf6e; border-radius: 50%; margin-right: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (max-width: 560px) { .form__grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--hair-soft); background: var(--night-2); }
.footer__inner {
  max-width: calc(var(--maxw) + 2 * var(--pad)); margin: 0 auto;
  padding: 40px var(--pad);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: var(--disp); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: 15px; }
.footer__legal { color: var(--muted); font-size: 13px; margin-left: auto; }
.footer__credits { color: var(--muted); font-size: 13px; opacity: .7; width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 900px) {
  .mc { grid-template-columns: 1fr; gap: 10px; max-width: 460px; }
  .mc__card { padding: 14px 18px; }
  .mc__score { font-size: 34px; }
  .season, .tickets, .contact { grid-template-columns: 1fr; }
  .sponsors { grid-template-columns: 1fr; }
  .club__facts { grid-template-columns: repeat(2, 1fr); }
  .news { grid-template-columns: 1fr; }
  .c100__benefits { grid-template-columns: 1fr; }
}
/* telefoni in landscape / viewport bassi: match center compatto su 3 colonne */
@media (max-height: 620px) and (orientation: landscape) {
  .mc { grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 96vw; }
  .mc__card { padding: 12px 14px; }
  .mc__score { font-size: 30px; }
  .mc__teams { font-size: 17px; }
  .mc__meta { margin-top: 4px; font-size: 12px; }
  .jseg__eyebrow--center { margin-bottom: 12px; }
}
@media (max-width: 560px) {
  .header { height: 64px; }
  .header__wordmark { font-size: 17px; }
  .journey { height: 380vh; }
  .jseg { padding: 0 20px; }
  .jseg--castles { align-items: flex-start; text-align: left; }
  .tl { grid-template-columns: 1fr; gap: 8px; align-items: start; }
  .jseg__cta .btn { width: 100%; text-align: center; }
}

/* riduzione movimento: niente scrub, frame fermo */
@media (prefers-reduced-motion: reduce) {
  .journey { height: auto; }
  .journey__sticky { position: relative; height: auto; min-height: 100vh; }
  .jseg { position: relative; opacity: 1 !important; transform: none !important; padding-top: 14vh; padding-bottom: 14vh; height: auto; }
  .journey__hint, .journey__load { display: none; }
  .journey__hintline { animation: none; }
}
