/* =========================================================
   U.S. URBIS SALVIA 1969 — v20
   Fraunces (display) + Archivo (testo e dati)
   ========================================================= */

:root{
  /* colore */
  --paper:#ffffff;
  --paper-2:#f6f5f2;
  --tint:#fff2e9;
  --navy:#0e2036;
  --navy-2:#17324f;
  --orange:#f36a2d;
  --orange-deep:#d6531c;
  --orange-lit:#ff8b4f;
  --blue:#143a63;
  --ink:#12171e;
  --muted:#5f6a76;
  --muted-2:#8b95a0;
  --line:#e6e4df;
  --line-soft:#f0eeea;
  --line-dark:rgba(255,255,255,.16);

  /* tipografia */
  --serif:Georgia,"Times New Roman",Times,serif;
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,Helvetica,sans-serif;

  /* misure */
  --shell:1280px;
  --gutter:clamp(20px,4vw,44px);
  --header:76px;
  --section-y:clamp(72px,9vw,124px);
}

*{box-sizing:border-box}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header) + 16px);
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:15.5px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit}
p{text-wrap:pretty}

.container{width:min(var(--shell),calc(100% - var(--gutter) * 2));margin-inline:auto}

.skip{
  position:fixed;left:16px;top:-70px;z-index:1000;
  background:var(--navy);color:#fff;padding:12px 18px;
  font-size:13px;font-weight:600;
}
.skip:focus{top:16px}

:focus-visible{outline:2px solid var(--orange);outline-offset:3px}

/* ---------------------------------------------------------
   TIPOGRAFIA DISPLAY
   Titolo in tondo, seconda riga in corsivo: il contrasto lo
   fa la forma della lettera, non il colore.
   --------------------------------------------------------- */
h1,h2,h3,blockquote{
  font-family:var(--serif);
  font-optical-sizing:auto;
  font-weight:400;
  font-style:normal;
  letter-spacing:-.022em;
  text-wrap:balance;
  margin:0;
}
h1 em,h2 em,h3 em,blockquote em{
  font-style:italic;
  font-weight:400;
  color:inherit;
  font-variation-settings:"WONK" 1;
}

.eyebrow{
  display:flex;align-items:center;gap:10px;
  margin:0 0 18px;
  font-family:var(--sans);
  font-size:12.5px;
  font-weight:600;
  color:var(--orange);
}
.eyebrow::before{content:"";width:22px;height:1px;flex:none;background:currentColor}
.eyebrow--light{color:#ffd0b6}

/* etichette dei dati */
.identity small,.team-facts small,.fixture-round small,
.contact small,.prestige__list small,.roster-group__head span,
.matchday__meta dt,.history-grid figcaption small{
  font-family:var(--sans);
  font-size:11.5px;
  font-weight:600;
  letter-spacing:.03em;
  color:var(--muted-2);
}

/* numeri e dati: Archivo stretto e tabellare */
.numbers strong,.norway__years strong,.academy__photo strong,
.fixture-round strong,.roster-group__head b,.update-note span,
.countdown b,.timeline time{
  font-family:var(--sans);
  font-variation-settings:"wdth" 78;
  font-weight:700;
  font-variant-numeric:tabular-nums lining-nums;
  font-style:normal;
  letter-spacing:-.01em;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.header{
  position:fixed;z-index:300;left:0;right:0;top:0;
  background:rgba(255,255,255,.88);
  border-bottom:1px solid transparent;
  backdrop-filter:saturate(140%) blur(18px);
  -webkit-backdrop-filter:saturate(140%) blur(18px);
  transition:border-color .25s ease;
}
.header.is-stuck{border-bottom-color:var(--line)}

.scrollbar{position:absolute;left:0;right:0;top:0;height:2px}
.scrollbar span{display:block;height:100%;width:0;background:var(--orange)}

.nav{
  height:var(--header);
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  transition:height .25s ease;
}
.header.is-stuck .nav{height:64px}

.brand{display:flex;align-items:center;gap:13px;color:var(--navy)}
.brand img{width:50px;height:50px;object-fit:contain;transition:width .25s ease,height .25s ease}
.header.is-stuck .brand img{width:42px;height:42px}
.brand strong,.brand small{display:block}
.brand strong{font-size:13.5px;font-weight:700;line-height:1.1}
.brand small{margin-top:3px;font-size:10.5px;font-weight:500;color:var(--muted-2);letter-spacing:.02em}

.links{display:flex;align-items:center;gap:26px;font-size:13.5px;font-weight:500;color:var(--navy)}
.links a{position:relative;padding-block:6px}
.links a:not(.nav-cta)::after{
  content:"";position:absolute;left:0;right:100%;bottom:0;height:1.5px;
  background:var(--orange);transition:right .28s cubic-bezier(.2,.7,.2,1);
}
.links a:hover::after,.links a.current::after{right:0}
.nav-cta{color:var(--orange);font-weight:600}

.menu{display:none;border:0;background:transparent;padding:8px;cursor:pointer}
.menu span{display:block;width:22px;height:1.5px;background:var(--navy);margin:5px 0;transition:transform .22s ease}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero{padding-top:var(--header);background:var(--navy)}
.hero-slider{
  position:relative;
  height:min(760px,calc(100vh - var(--header)));
  height:min(760px,calc(100svh - var(--header)));
  min-height:580px;overflow:hidden;background:var(--navy);
}
.hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .8s ease,visibility .8s ease}
.hero-slide.active{opacity:1;visibility:visible}
.hero-slide>img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transform:scale(1.06);transition:transform 9s linear;
  filter:saturate(.92) contrast(1.04);
}
.hero-slide.active>img{transform:scale(1)}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(92deg,rgba(9,19,32,.86) 0%,rgba(9,19,32,.55) 46%,rgba(9,19,32,.12) 82%),
    linear-gradient(0deg,rgba(9,19,32,.72),transparent 55%);
}
.hero-content{
  position:relative;z-index:2;height:100%;
  display:flex;align-items:flex-end;padding-bottom:clamp(96px,12vh,128px);
}
.hero-copy{max-width:760px;color:#fff}
.hero h1{font-size:clamp(56px,8vw,118px);line-height:.9;letter-spacing:-.035em;color:#fff}
.hero h1 em{color:#fff}
.hero-copy>p:not(.eyebrow){
  max-width:52ch;margin:24px 0 0;
  font-size:16.5px;line-height:1.7;color:rgba(255,255,255,.82);
}
.hero-link{
  display:inline-flex;align-items:center;gap:12px;
  margin-top:30px;padding:12px 22px;
  border:1px solid rgba(255,255,255,.45);
  font-size:13.5px;font-weight:600;color:#fff;
  transition:background .25s ease,border-color .25s ease;
}
.hero-link::after{content:"";width:16px;height:1px;background:currentColor;transition:width .25s ease}
.hero-link:hover{background:var(--orange);border-color:var(--orange)}
.hero-link:hover::after{width:26px}

.hero-ui{
  position:absolute;z-index:5;left:50%;bottom:30px;transform:translateX(-50%);
  display:grid;grid-template-columns:110px 1fr 110px;align-items:center;
}
.hero-index{
  display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.8);
  font-size:12px;font-weight:600;font-variant-numeric:tabular-nums;
}
.hero-index i{width:26px;height:1px;background:rgba(255,255,255,.35)}
.hero-dots{justify-self:center;display:flex;gap:8px}
.hero-dot{width:40px;height:3px;border:0;padding:0;cursor:pointer;background:rgba(255,255,255,.3);transition:background .25s ease}
.hero-dot.active{background:var(--orange)}
.hero-arrows{justify-self:end;display:flex}
.hero-arrow{
  width:44px;height:40px;border:1px solid rgba(255,255,255,.3);
  background:transparent;color:#fff;cursor:pointer;transition:background .2s ease,border-color .2s ease;
}
.hero-arrow:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.5)}
.hero-arrow + .hero-arrow{border-left:0}
.hero-progress{position:absolute;left:0;right:0;bottom:-30px;height:2px;background:rgba(255,255,255,.14)}
.hero-progress span{display:block;height:100%;width:0;background:var(--orange)}

/* ---------------------------------------------------------
   PROSSIMA PARTITA
   --------------------------------------------------------- */
.matchday{
  position:relative;background:var(--navy);color:#fff;
  padding:clamp(44px,6vw,68px) 0;overflow:hidden;
}
.matchday[hidden]{display:none}
.matchday::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.055;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.matchday::after{
  content:"";position:absolute;left:0;right:0;top:0;height:3px;
  background:linear-gradient(90deg,var(--orange) 0%,var(--orange) 38%,transparent 38%);
}
.matchday__inner{position:relative;z-index:1}

.matchday__top{display:flex;align-items:baseline;justify-content:space-between;gap:24px;padding-bottom:16px}
.matchday__kicker{margin:0;font-size:12.5px;font-weight:600;color:var(--orange-lit)}
.matchday__comp{margin:0;font-size:12.5px;color:rgba(255,255,255,.55)}

.matchday__fixture{
  margin:0;display:flex;flex-wrap:wrap;align-items:baseline;gap:.3em;
  font-family:var(--serif);font-weight:400;
  font-size:clamp(32px,5.4vw,74px);line-height:1.04;letter-spacing:-.03em;
}
.matchday__dash{color:var(--orange);font-style:italic}
.matchday__team.is-us{font-style:italic;font-variation-settings:"WONK" 1}

.matchday__grid{
  display:grid;grid-template-columns:1fr auto;gap:40px;align-items:end;
  margin-top:clamp(28px,4vw,46px);padding-top:22px;border-top:1px solid var(--line-dark);
}
.matchday__meta{margin:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.matchday__meta div{min-width:0}
.matchday__meta dt{color:rgba(255,255,255,.5)}
.matchday__meta dd{margin:6px 0 0;font-size:16px;font-weight:600;color:#fff}

.matchday__side{display:flex;flex-direction:column;align-items:flex-end;gap:18px}
.countdown{display:flex;gap:clamp(14px,2vw,26px)}
.countdown[hidden]{display:none}
.countdown div{text-align:center;min-width:60px}
.countdown b{
  display:block;font-size:clamp(38px,5vw,62px);line-height:.92;
  color:var(--orange-lit);font-variation-settings:"wdth" 66;font-weight:800;
}
.countdown span{display:block;margin-top:7px;font-size:11px;font-weight:500;letter-spacing:.04em;color:rgba(255,255,255,.48)}
.matchday__live{margin:0;font-family:var(--serif);font-style:italic;font-size:clamp(30px,4vw,50px);color:var(--orange-lit)}
.matchday__live[hidden]{display:none}

/* bottoni */
.btn-ghost{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 20px;cursor:pointer;
  border:1px solid rgba(255,255,255,.4);background:transparent;color:#fff;
  font-size:13.5px;font-weight:600;
  transition:background .22s ease,border-color .22s ease,color .22s ease;
}
.btn-ghost::after{content:"";width:14px;height:1px;background:currentColor;transition:width .22s ease}
.btn-ghost:hover{background:var(--orange);border-color:var(--orange);color:#fff}
.btn-ghost:hover::after{width:22px}
.btn-ghost--dark{border-color:var(--line);color:var(--navy)}
.btn-ghost--dark:hover{background:var(--navy);border-color:var(--navy);color:#fff}

/* ---------------------------------------------------------
   BARRA IDENTITÀ
   --------------------------------------------------------- */
.identity{background:var(--paper);border-bottom:1px solid var(--line)}
.identity__grid{display:grid;grid-template-columns:repeat(4,1fr)}
.identity__grid>div{padding:24px 0;border-right:1px solid var(--line-soft)}
.identity__grid>div:not(:first-child){padding-left:28px}
.identity__grid>div:last-child{border-right:0}
.identity small,.identity strong{display:block}
.identity strong{margin-top:6px;font-size:15px;font-weight:600;color:var(--navy)}

/* ---------------------------------------------------------
   SEZIONI
   --------------------------------------------------------- */
.section{padding:var(--section-y) 0}
.section--white{background:var(--paper)}
.section--tint{background:var(--tint)}
.section--orange{background:var(--orange);color:#fff}
.section--contact{background:var(--paper-2);border-top:1px solid var(--line)}
#partner{background:var(--tint)}

.editorial{display:grid;grid-template-columns:.92fr 1.08fr;gap:clamp(40px,7vw,92px);align-items:end}
.editorial__title h2,
.prestige__heading h2,
.norway__heading h2,
.academy__copy h2,
.contact-layout__copy h2{
  font-size:clamp(40px,5.6vw,76px);line-height:.98;color:var(--ink);
}
.editorial__copy p,
.academy__copy>p,
.contact-layout__copy>p{
  margin:0 0 14px;max-width:62ch;font-size:15.5px;line-height:1.75;color:var(--muted);
}
.editorial__copy .lead-copy{font-size:19px;line-height:1.62;color:var(--ink)}

/* numeri chiave */
.numbers{
  margin-top:clamp(40px,5vw,66px);display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.numbers>div{padding:30px 0;border-right:1px solid var(--line-soft)}
.numbers>div:not(:first-child){padding-left:30px}
.numbers>div:last-child{border-right:0}
.numbers strong,.numbers span{display:block}
.numbers strong{font-size:clamp(44px,5vw,62px);line-height:.92;color:var(--orange)}
.numbers span{margin-top:9px;font-size:13px;color:var(--muted)}

/* frase in campo arancio */
.statement{padding:clamp(68px,8vw,104px) 0}
.statement__inner{text-align:center}
.statement__small{margin:0 0 26px;font-size:12.5px;font-weight:600;color:rgba(255,255,255,.82)}
.statement blockquote{
  margin:0 auto;
  font-size:clamp(30px,4.6vw,58px);line-height:1.14;letter-spacing:-.028em;
  font-style:italic;font-variation-settings:"WONK" 1;
}

/* ---------------------------------------------------------
   STORIA
   --------------------------------------------------------- */
.history-grid{display:grid;grid-template-columns:1.4fr .6fr;gap:14px;margin-top:clamp(34px,4vw,52px)}
.history-grid figure{position:relative;margin:0;overflow:hidden;background:var(--paper-2)}
.history-grid figure img{width:100%;height:100%;object-fit:cover;filter:saturate(.94)}
.history-main{height:clamp(320px,46vw,600px)}
.history-side{display:grid;gap:14px}
.history-side figure{height:clamp(160px,22vw,293px)}
.history-grid figcaption{position:absolute;left:0;bottom:0;padding:11px 15px;background:#fff;color:var(--navy)}
.history-grid figcaption small,.history-grid figcaption strong{display:block}
.history-grid figcaption strong{margin-top:3px;font-size:14px;font-weight:600}

.timeline{display:grid;grid-template-columns:1fr 1fr;margin-top:clamp(44px,5vw,68px);border-top:1px solid var(--line)}
.timeline article{display:grid;grid-template-columns:130px 1fr;gap:20px;padding:24px 0;border-bottom:1px solid var(--line-soft)}
.timeline article:nth-child(odd){padding-right:34px;border-right:1px solid var(--line-soft)}
.timeline article:nth-child(even){padding-left:34px}
.timeline time{font-size:21px;color:var(--orange);line-height:1.2}
.timeline h3{margin:0 0 6px;font-family:var(--sans);font-size:16px;font-weight:600;letter-spacing:0;color:var(--navy)}
.timeline p{margin:0;font-size:14px;line-height:1.6;color:var(--muted)}

/* ---------------------------------------------------------
   PERSONAGGI
   --------------------------------------------------------- */
.prestige{display:grid;grid-template-columns:.78fr 1.22fr;gap:clamp(38px,6vw,86px)}
.prestige__list{display:grid}
.prestige__list article{
  display:grid;grid-template-columns:260px 1fr;gap:28px;align-items:start;
  padding:24px 0;border-top:1px solid rgba(20,58,99,.13);
}
.prestige__list article:last-child{border-bottom:1px solid rgba(20,58,99,.13)}
.prestige__list small,.prestige__list strong{display:block}
.prestige__list small{margin-bottom:5px}
.prestige__list strong{
  font-family:var(--serif);font-weight:400;font-size:23px;
  line-height:1.15;letter-spacing:-.015em;color:var(--navy);
}
.prestige__list p{margin:0;font-size:14.5px;line-height:1.65;color:var(--muted)}

/* ---------------------------------------------------------
   PRIMA SQUADRA
   --------------------------------------------------------- */
.team-photo{margin:clamp(34px,4vw,52px) auto 0;height:clamp(300px,44vw,620px);overflow:hidden}
.team-photo img{width:100%;height:100%;object-fit:cover;filter:saturate(.95)}
.team-facts{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid var(--line)}
.team-facts>div{padding:22px 0;border-right:1px solid var(--line-soft)}
.team-facts>div:not(:first-child){padding-left:26px}
.team-facts>div:last-child{border-right:0}
.team-facts small,.team-facts strong{display:block}
.team-facts strong{margin-top:6px;font-size:15px;font-weight:600;color:var(--navy)}
.update-note{display:grid;grid-template-columns:120px 1fr;gap:22px;align-items:center;padding-top:22px}
.update-note span{font-size:26px;color:var(--orange)}
.update-note p{margin:0;font-size:14px;line-height:1.6;color:var(--muted)}

/* rosa */
.roster{margin-top:clamp(56px,7vw,86px);padding-top:clamp(38px,4vw,56px);border-top:1px solid var(--line)}
.roster__head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:34px}
.roster__head h3{font-size:clamp(32px,4.4vw,56px);line-height:1;color:var(--ink)}
.roster__head>p{margin:0 0 6px;max-width:30ch;text-align:right;font-size:14px;color:var(--muted)}
.roster__grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);border-left:1px solid var(--line-soft);
}
.roster-group{min-width:0;border-right:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft)}
.roster-group__head{
  display:flex;align-items:center;justify-content:space-between;
  min-height:50px;padding:0 20px;background:var(--paper-2);border-bottom:1px solid var(--line-soft);
}
.roster-group__head span{color:var(--navy)}
.roster-group__head b{font-size:19px;color:var(--orange)}
.roster-group ul{list-style:none;padding:0;margin:0}
.roster-group li{
  position:relative;min-height:54px;padding:13px 20px;
  border-bottom:1px solid var(--line-soft);transition:background .18s ease;
}
.roster-group li::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--orange);
  transform:scaleY(0);transform-origin:top;transition:transform .22s cubic-bezier(.2,.7,.2,1);
}
.roster-group li:hover{background:var(--paper-2)}
.roster-group li:hover::before{transform:scaleY(1)}
.roster-group li:last-child{border-bottom:0}
.roster-group li strong,.roster-group li span{display:block}
.roster-group li strong{font-size:14.5px;font-weight:600;color:var(--ink)}
.roster-group li span{margin-top:3px;font-size:12px;color:var(--muted-2)}

/* ---------------------------------------------------------
   CALENDARIO
   --------------------------------------------------------- */
.calendar-section{padding-top:clamp(72px,9vw,120px);border-top:1px solid var(--line)}
.calendar-intro{margin-bottom:clamp(30px,4vw,46px)}
.calendar-toolbar{
  display:flex;align-items:flex-end;justify-content:space-between;gap:30px;
  padding-bottom:16px;border-bottom:1.5px solid var(--ink);
}
.calendar-tabs{display:flex;gap:30px}
.calendar-tab{
  position:relative;appearance:none;border:0;padding:0 0 8px;background:transparent;
  color:var(--muted-2);font-size:14.5px;font-weight:600;cursor:pointer;
}
.calendar-tab::after{
  content:"";position:absolute;left:0;right:100%;bottom:-17.5px;height:3px;
  background:var(--orange);transition:right .26s cubic-bezier(.2,.7,.2,1);
}
.calendar-tab.active{color:var(--navy)}
.calendar-tab.active::after{right:0}
.calendar-actions{display:flex;align-items:center;gap:20px;flex-wrap:wrap;justify-content:flex-end}
.calendar-source{font-size:12px;color:var(--muted-2);text-align:right}

.calendar-panel{display:none}
.calendar-panel.active{display:block}

.fixture-row{
  position:relative;display:grid;
  grid-template-columns:100px 160px 1fr 92px;gap:24px;align-items:center;
  min-height:86px;border-bottom:1px solid var(--line-soft);transition:background .2s ease;
}
.fixture-row:hover{background:var(--paper-2)}
.fixture-round small,.fixture-round strong,.fixture-date strong,.fixture-date span{display:block}
.fixture-round strong{margin-top:2px;font-size:26px;color:var(--orange);line-height:1}
.fixture-date strong{font-size:15px;font-weight:600;color:var(--navy)}
.fixture-date span{margin-top:4px;font-size:12px;color:var(--muted-2)}
.fixture-match{display:grid;grid-template-columns:88px 1fr;gap:20px;align-items:center}
.fixture-venue{
  display:inline-block;padding:4px 9px;
  font-size:11.5px;font-weight:600;
  color:var(--muted);background:var(--paper-2);border:1px solid var(--line-soft);
}
.fixture-venue.is-home{color:#fff;background:var(--orange);border-color:var(--orange)}
.fixture-match>div{display:grid;grid-template-columns:minmax(0,1fr) 26px minmax(0,1fr);align-items:center}
.fixture-match strong{font-size:15px;font-weight:600;line-height:1.35;color:var(--ink)}
.fixture-match strong:first-child{text-align:right}
.fixture-match strong:last-child{text-align:left}
.fixture-match i{text-align:center;font-style:normal;color:var(--muted-2)}
.fixture-next{opacity:0;justify-self:end;font-size:11.5px;font-weight:600;color:var(--orange)}
.fixture-row.next-fixture{background:var(--tint)}
.fixture-row.next-fixture::before{
  content:"";position:absolute;left:-14px;top:12px;bottom:12px;width:3px;background:var(--orange);
}
.fixture-row.next-fixture .fixture-next{opacity:1}
.fixture-row.past{opacity:.45}
.fixture-row.past:hover{opacity:.8}

/* ---------------------------------------------------------
   NORWAY CUP
   --------------------------------------------------------- */
.norway{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(38px,7vw,92px);align-items:end}
.norway__heading h2{color:#fff}
.norway__body>p{margin:0;max-width:56ch;font-size:16.5px;line-height:1.72;color:rgba(255,255,255,.9)}
.norway__years{display:grid;grid-template-columns:1fr 1fr;margin-top:36px;border-top:1px solid rgba(255,255,255,.45)}
.norway__years div{padding:24px 0}
.norway__years div + div{padding-left:32px;border-left:1px solid rgba(255,255,255,.28)}
.norway__years strong,.norway__years span{display:block}
.norway__years strong{font-size:clamp(44px,5vw,60px);line-height:.92;color:#fff}
.norway__years span{margin-top:8px;font-size:13px;color:rgba(255,255,255,.82)}

/* ---------------------------------------------------------
   VIVAIO
   --------------------------------------------------------- */
.academy{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(38px,6vw,86px);align-items:center}
.academy__photo{position:relative;margin:0;height:clamp(320px,46vw,620px);overflow:hidden}
.academy__photo img{width:100%;height:100%;object-fit:cover;filter:saturate(.95)}
.academy__photo figcaption{position:absolute;left:0;bottom:0;padding:15px 19px;background:#fff;color:var(--navy)}
.academy__photo strong,.academy__photo span{display:block}
.academy__photo strong{font-size:46px;line-height:.9;color:var(--orange)}
.academy__photo span{margin-top:7px;font-size:12.5px;color:var(--muted)}
.academy__copy dl{margin:30px 0 0}
.academy__copy dl div{display:grid;grid-template-columns:180px 1fr;gap:20px;padding:16px 0;border-top:1px solid var(--line-soft)}
.academy__copy dl div:last-child{border-bottom:1px solid var(--line-soft)}
.academy__copy dt{font-size:14.5px;font-weight:600;color:var(--navy)}
.academy__copy dd{margin:0;font-size:14px;color:var(--muted)}

.staff{margin-top:clamp(56px,7vw,90px)}
.staff__head{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:24px}
.staff__head h3{font-size:clamp(26px,3.2vw,38px);color:var(--navy)}
.staff__rail{display:flex;gap:16px;overflow-x:auto;padding-bottom:14px;scroll-snap-type:x proximity;scrollbar-width:thin}
.staff__rail article{flex:0 0 250px;scroll-snap-align:start}
.staff__rail img{width:100%;aspect-ratio:1/1;object-fit:cover;filter:saturate(.95)}
.staff__rail h4{margin:12px 0 4px;font-family:var(--sans);font-size:15px;font-weight:600;color:var(--navy)}
.staff__rail p{margin:0;font-size:13px;line-height:1.5;color:var(--muted)}

/* ---------------------------------------------------------
   PARTNER
   --------------------------------------------------------- */
.partner-grid{
  display:grid;grid-template-columns:repeat(4,1fr);margin-top:clamp(34px,4vw,52px);
  border-top:1px solid var(--line);border-left:1px solid var(--line);
}
.partner-grid div{
  height:138px;display:flex;align-items:center;justify-content:center;padding:22px;
  background:#fff;border-right:1px solid var(--line);border-bottom:1px solid var(--line);
}
.partner-grid img{max-height:76px;object-fit:contain}

/* ---------------------------------------------------------
   CONTATTI
   --------------------------------------------------------- */
.contact-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(38px,6vw,86px);align-items:center}
.contact{font-style:normal;padding-top:26px;border-top:2px solid var(--orange);color:var(--ink)}
.contact strong{
  display:block;margin:10px 0 16px;
  font-family:var(--serif);font-weight:400;font-size:38px;line-height:1;color:var(--navy);
}
.contact>a{
  display:block;padding:16px 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  font-size:28px;font-weight:700;color:var(--orange);
  font-variant-numeric:tabular-nums;letter-spacing:-.01em;transition:color .2s ease;
}
.contact>a:hover{color:var(--orange-deep)}
.contact>p{margin:16px 0 0;font-size:13.5px;line-height:1.6;color:var(--muted)}

.social-links{margin-top:20px;border-top:1px solid var(--line)}
.social-links a{display:grid;grid-template-columns:110px 1fr;gap:16px;align-items:center;padding:14px 0;border-bottom:1px solid var(--line-soft)}
.social-links span{font-size:12px;font-weight:600;color:var(--muted-2)}
.social-links b{font-size:14.5px;font-weight:600;color:var(--navy);transition:color .2s ease}
.social-links a:hover b{color:var(--orange)}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.footer{position:relative;background:var(--navy);color:#fff;overflow:hidden}
.footer::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer .container{position:relative;z-index:1}
.footer__main{
  min-height:116px;display:flex;align-items:center;justify-content:space-between;gap:26px;
  padding:22px 0;border-bottom:1px solid var(--line-dark);
}
.footer__brand{display:flex;align-items:center;gap:13px}
.footer__brand img{width:50px;height:50px;object-fit:contain}
.footer__brand strong,.footer__brand span{display:block}
.footer__brand strong{font-size:13px;font-weight:700}
.footer__brand span{margin-top:3px;font-size:12px;color:rgba(255,255,255,.55)}
.footer nav{display:flex;flex-wrap:wrap;gap:22px;font-size:13.5px;color:rgba(255,255,255,.72)}
.footer nav a:hover{color:var(--orange-lit)}
.footer__social{display:flex;align-items:center;gap:18px;font-size:13.5px;color:var(--orange-lit)}
.footer__social a{white-space:nowrap}
.footer__top{font-size:13.5px;font-weight:600;color:#fff}
.footer__top:hover{color:var(--orange-lit)}
.footer__bottom{
  display:flex;justify-content:space-between;gap:16px;
  padding:18px 0 26px;font-size:12.5px;color:rgba(255,255,255,.45);
}

/* ---------------------------------------------------------
   MOVIMENTO
   --------------------------------------------------------- */
.js .reveal{
  opacity:0;transform:translateY(12px);
  transition:opacity .6s ease,transform .6s cubic-bezier(.2,.7,.2,1);
  transition-delay:var(--d,0ms);
}
.js .reveal.visible{opacity:1;transform:none}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media(max-width:1080px){
  .editorial,.prestige,.norway,.academy,.contact-layout{grid-template-columns:1fr}
  .editorial{align-items:start}
  .history-grid{grid-template-columns:1fr}
  .history-side{grid-template-columns:1fr 1fr}
  .numbers,.team-facts,.partner-grid{grid-template-columns:repeat(2,1fr)}
  .roster__grid{grid-template-columns:1fr 1fr}
  .prestige__list article{grid-template-columns:1fr}
  .prestige__list article p{margin-top:8px}
  .matchday__grid{grid-template-columns:1fr;gap:30px}
  .matchday__side{align-items:flex-start}
  .countdown div{min-width:auto;text-align:left}
}

@media(max-width:860px){
  :root{--header:68px}
  .menu{display:block;position:relative;z-index:450}
  .menu.open span:first-child{transform:translateY(6.5px) rotate(45deg)}
  .menu.open span:last-child{transform:translateY(-6.5px) rotate(-45deg)}
  .links{
    position:fixed;z-index:400;right:0;top:0;
    width:min(360px,88vw);height:100dvh;padding:92px 26px 32px;overflow-y:auto;
    background:#fff;color:var(--navy);
    display:flex;flex-direction:column;align-items:flex-start;gap:0;
    transform:translateX(103%);transition:transform .28s cubic-bezier(.2,.7,.2,1);
    box-shadow:-30px 0 70px rgba(9,19,32,.18);
  }
  .links.open{transform:none}
  .links a{width:100%;padding:16px 0;border-bottom:1px solid var(--line-soft);font-size:17px}
  .links a::after{display:none!important}
  .hero-slider{height:min(640px,82vh);height:min(640px,82svh);min-height:520px}
  .hero-ui{grid-template-columns:84px 1fr 92px}
  .identity__grid{grid-template-columns:1fr 1fr}
  .identity__grid>div:nth-child(2){border-right:0}
  .identity__grid>div:nth-child(-n+2){border-bottom:1px solid var(--line-soft)}
  .timeline{grid-template-columns:1fr}
  .timeline article:nth-child(odd),.timeline article:nth-child(even){padding-left:0;padding-right:0;border-right:0}
  .roster__head{display:block}
  .roster__head>p{margin-top:14px;text-align:left;max-width:none}
  .calendar-toolbar{flex-direction:column;align-items:flex-start;gap:18px}
  .calendar-actions{justify-content:flex-start}
  .calendar-source{text-align:left}
  .fixture-row{grid-template-columns:70px 120px 1fr;gap:16px;padding:14px 0}
  .fixture-next{display:none}
  .fixture-match{grid-column:3}
  .fixture-row.next-fixture::before{left:-10px}
}

@media(max-width:560px){
  .hero-slider{height:min(560px,78vh);height:min(560px,78svh);min-height:460px}
  .hero-content{padding-bottom:108px}
  .hero-index{display:none}
  .hero-ui{grid-template-columns:1fr auto}
  .hero-dots{justify-self:start}
  .hero-arrows{grid-column:2}
  .numbers,.team-facts,.identity__grid,.history-side,.norway__years,.partner-grid,.roster__grid{grid-template-columns:1fr}
  .identity__grid>div,.numbers>div,.team-facts>div{padding-left:0!important;border-right:0;border-bottom:1px solid var(--line-soft)}
  .norway__years div + div{padding-left:0;border-left:0;border-top:1px solid rgba(255,255,255,.28)}
  .matchday__meta{grid-template-columns:1fr 1fr;gap:20px}
  .matchday__meta div:last-child{grid-column:1/-1}
  .countdown{width:100%;justify-content:space-between;gap:8px}
  .academy__copy dl div{grid-template-columns:1fr;gap:5px}
  .staff__head{display:block}
  .staff__head h3{margin-top:8px}
  .contact>a{font-size:24px}
  .fixture-row{grid-template-columns:62px 1fr;gap:10px 16px;padding:18px 0}
  .fixture-date{grid-column:2}
  .fixture-match{grid-column:1/-1;grid-template-columns:1fr;gap:10px;margin-top:4px}
  .fixture-venue{justify-self:start}
  .fixture-match>div{grid-template-columns:1fr;gap:2px}
  .fixture-match strong:first-child,.fixture-match strong:last-child{text-align:left}
  .fixture-match i{display:none}
  .footer__main,.footer__bottom{flex-direction:column;align-items:flex-start}
  .footer__social{order:3;width:100%}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important}
  .js .reveal{opacity:1;transform:none}
  .hero-slide>img{transform:none}
}

@media print{
  .header,.hero,.matchday,.hero-ui,.btn-ghost,.footer__top{display:none!important}
  .section{padding:20px 0}
  .calendar-panel{display:block!important}
}

/* =========================================================
   V20b — RISULTATI, CLASSIFICA, ARCHIVIO STORICO
   ========================================================= */

.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;
}

/* --------------------------------------------- risultati e classifica */
.standings{margin-top:clamp(56px,7vw,88px);padding-top:clamp(38px,4vw,56px);border-top:1px solid var(--line)}
.standings__head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:30px}
.standings__head h3{font-size:clamp(30px,4vw,50px);line-height:1;color:var(--ink)}
.standings__last{margin:0 0 6px;text-align:right;display:grid;gap:5px}
.standings__last:empty{display:none}
.standings__last span{font-size:11.5px;font-weight:600;letter-spacing:.03em;color:var(--muted-2)}
.standings__last b{font-size:16px;font-weight:600;color:var(--navy)}
.standings__last i{font-style:normal;font-size:12.5px;font-weight:600}

.esito-V{color:var(--orange)}
.esito-N{color:var(--muted)}
.esito-P{color:var(--navy)}

.standings__notice{
  display:flex;flex-wrap:wrap;align-items:baseline;gap:8px 18px;
  margin-bottom:26px;padding:18px 22px;
  background:var(--tint);border-left:3px solid var(--orange);
}
.standings__notice[hidden]{display:none}
.standings__notice strong{font-size:12.5px;font-weight:700;letter-spacing:.03em;color:var(--orange)}
.standings__notice p{margin:0;max-width:62ch;font-size:14.5px;color:var(--muted)}

.standings__wrap{overflow-x:auto}
.standings__table{width:100%;border-collapse:collapse;min-width:560px}
.standings__table th,.standings__table td{
  padding:13px 10px;text-align:right;
  font-size:14.5px;font-variant-numeric:tabular-nums;
  border-bottom:1px solid var(--line-soft);
}
.standings__table thead th{
  padding-bottom:11px;
  font-size:11.5px;font-weight:600;letter-spacing:.03em;color:var(--muted-2);
  border-bottom:1.5px solid var(--ink);
}
.standings__table abbr{text-decoration:none;border-bottom:1px dotted var(--line);cursor:help}
.standings__table .c-pos{
  width:44px;text-align:left;color:var(--muted-2);
  font-variation-settings:"wdth" 78;font-weight:700;
}
.standings__table .c-team{
  text-align:left;font-weight:500;color:var(--ink);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:1px;width:99%;
}
.standings__table thead .c-team{font-weight:600}
.standings__table .c-pts{
  width:56px;font-weight:700;color:var(--navy);
  font-variation-settings:"wdth" 82;
}
.standings__table tbody tr:hover{background:var(--paper-2)}
.standings__table tbody tr.is-us{background:var(--tint)}
.standings__table tbody tr.is-us .c-team{font-weight:700;color:var(--orange-deep)}
.standings__table tbody tr.is-us .c-pts{color:var(--orange-deep)}
.standings__foot{margin:18px 0 0;font-size:12.5px;line-height:1.6;color:var(--muted-2);max-width:70ch}

/* risultato dentro la riga del calendario */
.fixture-match i.has-score{
  font-family:var(--sans);font-weight:700;font-size:16px;
  font-variation-settings:"wdth" 82;font-variant-numeric:tabular-nums;
  color:var(--ink);letter-spacing:-.01em;
}
.fixture-row.played{opacity:1}
.fixture-row.played.past{opacity:1}
.fixture-row.played.past .fixture-round strong{color:var(--muted-2)}
.fixture-esito{
  opacity:1;display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;border:1px solid currentColor;
  font-size:12px;font-weight:700;
}

/* --------------------------------------------- archivio storico */
.archive{
  position:relative;background:var(--navy);color:#fff;
  margin-top:clamp(56px,7vw,90px);padding:clamp(56px,7vw,92px) 0 clamp(40px,5vw,60px);
  overflow:hidden;
}
.archive[hidden]{display:none}
.archive::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.055;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.archive__head{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(30px,5vw,72px);align-items:end;
  margin-bottom:clamp(30px,4vw,44px);
}
.archive__head h2{font-size:clamp(34px,4.8vw,64px);line-height:1;color:#fff}
.archive__head>p{margin:0;max-width:52ch;font-size:15.5px;line-height:1.72;color:rgba(255,255,255,.72)}

.archive__rail{
  position:relative;z-index:1;
  display:flex;gap:16px;overflow-x:auto;
  padding:0 var(--gutter) 18px;
  scroll-snap-type:x proximity;scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.3) transparent;
}
.archive__rail::-webkit-scrollbar{height:6px}
.archive__rail::-webkit-scrollbar-thumb{background:rgba(255,255,255,.28)}
.archive__item{
  flex:0 0 auto;scroll-snap-align:start;
  display:block;padding:0;border:0;background:transparent;cursor:zoom-in;
  text-align:left;
}
.archive__item img{
  height:clamp(220px,30vw,380px);width:auto;max-width:none;
  filter:grayscale(1) contrast(1.06);
  transition:filter .3s ease,transform .3s ease;
}
.archive__item:hover img,.archive__item:focus-visible img{filter:grayscale(.15) contrast(1.02)}
.archive__cap{display:block;margin-top:12px;max-width:38ch}
.archive__cap b{display:block;font-size:13.5px;font-weight:600;color:rgba(255,255,255,.9)}
.archive__cap i{display:block;margin-top:3px;font-style:normal;font-size:12px;color:var(--orange-lit)}
.archive__credit{
  position:relative;z-index:1;
  margin:clamp(20px,3vw,32px) auto 0;font-size:12.5px;line-height:1.6;color:rgba(255,255,255,.42);
}

/* --------------------------------------------- lightbox */
.lightbox{
  position:fixed;inset:0;z-index:600;
  display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:16px;
  padding:clamp(16px,4vw,48px);
  background:rgba(8,17,29,.94);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}
.lightbox[hidden]{display:none}
.lightbox__figure{
  grid-column:2;margin:0;min-width:0;
  display:flex;flex-direction:column;align-items:center;gap:16px;
}
.lightbox__figure img{
  max-width:100%;max-height:76vh;width:auto;height:auto;object-fit:contain;
  filter:grayscale(1) contrast(1.04);
}
.lightbox__figure figcaption{text-align:center;color:#fff}
.lightbox__figure strong{display:block;font-size:15px;font-weight:600}
.lightbox__figure span{display:block;margin-top:4px;font-size:13px;color:var(--orange-lit)}
.lightbox__nav{
  width:48px;height:48px;cursor:pointer;
  border:1px solid rgba(255,255,255,.3);background:transparent;color:#fff;font-size:18px;
  transition:background .2s ease;
}
.lightbox__nav:hover{background:rgba(255,255,255,.14)}
.lightbox__nav--prev{grid-column:1}
.lightbox__nav--next{grid-column:3}
.lightbox__close{
  position:absolute;top:clamp(12px,3vw,28px);right:clamp(12px,3vw,28px);
  padding:10px 18px;cursor:pointer;
  border:1px solid rgba(255,255,255,.3);background:transparent;color:#fff;
  font-size:13px;font-weight:600;
}
.lightbox__close:hover{background:rgba(255,255,255,.14)}

@media(max-width:1080px){
  .archive__head{grid-template-columns:1fr;align-items:start}
}
@media(max-width:860px){
  .standings__head{display:block}
  .standings__last{margin-top:14px;text-align:left;justify-items:start}
  .standings__table .c-opt{display:none}
  .standings__table{min-width:0}
}
@media(max-width:560px){
  .lightbox{grid-template-columns:1fr;grid-template-rows:1fr auto;padding-top:64px}
  .lightbox__figure{grid-column:1}
  .lightbox__nav{width:auto;height:44px;padding:0 24px}
  .lightbox__nav--prev{grid-column:1;grid-row:2;justify-self:start}
  .lightbox__nav--next{grid-column:1;grid-row:2;justify-self:end}
  .archive__item img{height:230px}
}
@media print{
  .archive,.lightbox{display:none!important}
}


/* =========================================================
   V22 — ROSA A SCORRIMENTO + RISULTATI LIVE
   ========================================================= */
.roster-slider .roster__head{align-items:center}
.roster-role-nav{display:flex;align-items:center;gap:12px;max-width:720px}
.roster-role-tabs{display:flex;align-items:center;gap:0;overflow-x:auto;scrollbar-width:none;border-bottom:1px solid var(--line)}
.roster-role-tabs::-webkit-scrollbar{display:none}
.roster-role-tab{
  appearance:none;border:0;background:transparent;white-space:nowrap;
  padding:13px 17px 12px;color:var(--muted);cursor:pointer;
  font-size:13px;font-weight:600;border-bottom:2px solid transparent;margin-bottom:-1px;
  transition:color .2s ease,border-color .2s ease
}
.roster-role-tab b{margin-left:5px;font-size:10px;font-weight:600;color:var(--muted-2)}
.roster-role-tab.active{color:var(--navy);border-bottom-color:var(--orange)}
.roster-role-tab.active b{color:var(--orange)}
.roster-role-arrow{
  flex:0 0 auto;width:42px;height:42px;border:1px solid var(--line);background:#fff;color:var(--navy);
  cursor:pointer;font-size:17px;transition:background .18s ease,border-color .18s ease
}
.roster-role-arrow:hover{background:var(--paper-2);border-color:var(--muted-2)}
.roster-role-stage{position:relative;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.roster-role-panel{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:thin;scrollbar-color:var(--line) transparent}
.roster-role-panel[hidden]{display:none}
.roster-player{
  position:relative;flex:0 0 25%;min-width:240px;min-height:150px;padding:28px 24px 24px;
  border-right:1px solid var(--line-soft);scroll-snap-align:start;background:#fff
}
.roster-player::after{content:"";position:absolute;left:0;right:100%;bottom:0;height:3px;background:var(--orange);transition:right .24s ease}
.roster-player:hover::after{right:0}
.roster-player span{display:block;font-size:11px;font-weight:600;color:var(--orange);font-variant-numeric:tabular-nums}
.roster-player strong{
  display:block;margin-top:24px;font-family:var(--serif);font-style:italic;font-weight:400;
  font-size:clamp(23px,2.15vw,31px);line-height:1;color:var(--navy)
}
.roster-player small{display:block;margin-top:9px;font-size:12px;color:var(--muted-2)}

.standings__live{display:grid;justify-items:end;gap:8px}
.live-source{margin:0;display:flex;align-items:center;gap:7px;font-size:11.5px;color:var(--muted-2)}
.live-dot{display:block;width:7px;height:7px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 4px rgba(239,108,45,.10)}
.live-source.is-error .live-dot{background:var(--muted-2);box-shadow:none}
.standings__foot a{color:var(--orange-deep);text-decoration:underline;text-underline-offset:3px}

@media(max-width:1080px){
  .roster-slider .roster__head{display:block}
  .roster-role-nav{margin-top:22px;max-width:none}
  .roster-player{flex-basis:33.333%}
}
@media(max-width:760px){
  .roster-player{flex-basis:72%;min-width:260px}
  .roster-role-nav{gap:7px}
  .roster-role-arrow{width:38px;height:38px}
  .roster-role-tab{padding-inline:12px;font-size:12.5px}
  .standings__live{justify-items:start;margin-top:14px}
}


/* V23 — privacy / cookie */
.footer__legal{display:flex;align-items:center;gap:16px;font-size:12.5px;color:rgba(255,255,255,.62)}
.footer__legal a{border-bottom:1px solid transparent}
.footer__legal a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.5)}
.legal-page{background:var(--paper);min-height:100vh}
.legal-header{border-bottom:1px solid var(--line);background:#fff}
.legal-header__inner{min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.legal-header__brand{display:flex;align-items:center;gap:12px;color:var(--navy);font-weight:700}
.legal-header__brand img{width:48px;height:48px;object-fit:contain}
.legal-header__brand span{font-size:13px}
.legal-header__back{font-size:13px;font-weight:600;color:var(--blue)}
.legal-main{padding:clamp(56px,8vw,96px) 0}
.legal-wrap{width:min(900px,calc(100% - var(--gutter)*2));margin-inline:auto}
.legal-kicker{margin:0 0 14px;color:var(--orange);font-size:12px;font-weight:700}
.legal-title{font-family:var(--serif);font-size:clamp(48px,7vw,78px);line-height:.95;font-weight:400;letter-spacing:-.03em;color:var(--navy)}
.legal-lead{margin:24px 0 0;font-size:17px;line-height:1.75;color:var(--muted);max-width:760px}
.legal-updated{margin:18px 0 0;font-size:12px;color:var(--muted-2)}
.legal-content{margin-top:52px;border-top:1px solid var(--line)}
.legal-section{padding:28px 0;border-bottom:1px solid var(--line)}
.legal-section h2{font-family:var(--serif);font-size:28px;line-height:1.15;color:var(--navy);margin:0 0 12px}
.legal-section p,.legal-section li{font-size:14px;line-height:1.8;color:var(--muted)}
.legal-section p{margin:0 0 10px}.legal-section p:last-child{margin-bottom:0}
.legal-section ul{margin:10px 0 0;padding-left:20px}
.legal-note{margin-top:34px;padding:18px 20px;background:var(--tint);border-left:3px solid var(--orange);font-size:13px;line-height:1.7;color:var(--navy)}
.legal-footer{padding:28px 0 40px;border-top:1px solid var(--line);font-size:12px;color:var(--muted)}
.legal-links{display:flex;gap:18px;flex-wrap:wrap;margin-top:8px}.legal-links a{color:var(--blue);font-weight:600}
@media(max-width:720px){.footer__legal{order:4;width:100%}.legal-header__inner{min-height:76px}.legal-header__brand span{display:none}}
