:root {
  --navy-950: #030812;
  --navy: #07101f;
  --navy-800: #0d1b35;
  --blue: #0b5fff;
  --blue-2: #18a0fb;
  --red: #e32636;
  --red-2: #ff4659;
  --white: #ffffff;
  --ice: #f5f7fb;
  --ice-2: #eaf0f7;
  --ink: #142033;
  --muted: #64748b;
  --line: rgba(226, 232, 240, .92);
  --shadow-soft: 0 18px 55px rgba(7, 16, 31, .10);
  --shadow-blue: 0 18px 44px rgba(11, 95, 255, .25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1160px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Narrow", "Roboto Condensed", "Aptos Display", Impact, Haettenschweiler, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ice);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background:
    radial-gradient(circle at 12% 8%, rgba(11, 95, 255, .10), transparent 23rem),
    radial-gradient(circle at 92% 2%, rgba(227, 38, 54, .10), transparent 26rem),
    linear-gradient(rgba(7, 16, 31, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 31, .04) 1px, transparent 1px);
  background-size: auto, auto, 58px 58px, 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; object-fit: contain; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
button { font: inherit; }
[hidden] { display: none !important; }
::selection { background: rgba(227, 38, 54, .22); color: var(--navy); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 14px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: padding .25s ease;
}
.site-header.is-scrolled { padding: 9px 0; }
.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 48px rgba(3, 8, 18, .14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--navy);
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(7, 16, 31, .08);
}
.brand-mark img { width: 34px; height: auto; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brand-text small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(20, 32, 51, .78);
  font-size: .9rem;
  font-weight: 750;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--ice-2);
  color: var(--navy);
}
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(25, 163, 255, .42);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
  box-shadow: 0 16px 40px rgba(227, 38, 54, .25);
}
.btn-secondary,
.btn-secondary-dark,
.btn-light,
.btn-ghost-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255,255,255,.58);
  box-shadow: 0 12px 34px rgba(7, 16, 31, .09);
}
.btn-secondary-dark {
  color: var(--white);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
}
.btn-secondary-dark:hover { background: rgba(255,255,255,.20); }
.btn-light { box-shadow: 0 14px 38px rgba(0,0,0,.16); }
.btn-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.32);
  box-shadow: none;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.10); }
.btn-small { min-height: 44px; padding-inline: 17px; font-size: .88rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.2;
  transition: color .2s ease;
}
.inline-link:hover { color: var(--red); }

.hero {
  position: relative;
  overflow: clip;
  padding: 150px 0 96px;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(24, 160, 251, .22), transparent 24rem),
    radial-gradient(circle at 18% 25%, rgba(227, 38, 54, .22), transparent 28rem),
    linear-gradient(135deg, var(--navy-950) 0%, #07101f 54%, #2b0911 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .15;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px, 22px 22px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.court-line,
.court-circle {
  position: absolute;
  border: 2px solid rgba(255,255,255,.15);
  filter: drop-shadow(0 0 14px rgba(25, 163, 255, .16));
}
.court-line { height: 0; transform-origin: center; animation: courtDrift 12s ease-in-out infinite alternate; }
.court-line-one { width: 72vw; top: 24%; left: -14vw; transform: rotate(-14deg); }
.court-line-two { width: 90vw; top: 69%; right: -24vw; transform: rotate(-14deg); animation-delay: -4s; }
.court-circle {
  width: 320px;
  height: 320px;
  top: 25%;
  right: 11%;
  border-radius: 50%;
  opacity: .55;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .62fr);
  align-items: center;
  gap: 54px;
}
.hero-copy { max-width: 760px; }
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.hero h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6.8vw, 5.8rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-text {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.58;
  font-weight: 560;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-emblem {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}
.hero-emblem img {
  width: min(88%, 340px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}

/* Tipografia: evita sovrapposizioni su testi lunghi e breakpoint stretti */
h1, h2, h3, .number-card strong, .map-label {
  overflow-wrap: normal;
  word-break: normal;
}
.team-card-head { flex-wrap: wrap; }

.section { position: relative; padding: 92px 0; }
.section-ice {
  background: rgba(255,255,255,.78);
  border-block: 1px solid rgba(226,232,240,.85);
}
.section-head { max-width: 720px; margin-bottom: 32px; }
.section-head h2,
.section-intro h2,
.youth h2,
.season h2,
.field h2,
.contact h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-head p,
.club-story p,
.youth-copy p,
.season-copy p,
.field-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}
.section-head p { margin-top: 14px; max-width: 660px; }
.section-kicker { color: var(--red); }
.section-kicker-light { color: var(--white); }
.club-grid,
.season-grid,
.field-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}
.club-story {
  display: grid;
  gap: 18px;
  padding-top: 34px;
}
.identity-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.number-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}
.number-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
.number-card-label,
.team-card-head span,
.venue-copy span {
  color: var(--red);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.number-card strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.number-card p { color: var(--muted); font-weight: 650; line-height: 1.45; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(7,16,31,.10);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(7,16,31,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, var(--blue), var(--red));
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,95,255,.22);
  box-shadow: 0 18px 48px rgba(7,16,31,.12);
}
.team-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}
.team-card-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.team-card h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.25vw, 2.05rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.team-card p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-weight: 560;
}
.team-card .inline-link { margin-top: auto; }

.youth {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(25,163,255,.24), transparent 25rem),
    radial-gradient(circle at 16% 72%, rgba(227,38,54,.22), transparent 27rem),
    linear-gradient(140deg, #081121, #0e2347 62%, #320914);
}
.youth::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
}
.youth-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 40px;
  align-items: center;
}
.youth h2 { color: var(--white); }
.youth-copy p {
  max-width: 710px;
  margin-top: 20px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.80);
}
.pillar-grid { display: grid; gap: 13px; }
.pillar-card {
  position: relative;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pillar-card span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.pillar-card p { margin-top: 8px; color: rgba(255,255,255,.74); font-weight: 560; }

.season-board {
  display: grid;
  gap: 10px;
}
.season-board a {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border: 1px solid rgba(7,16,31,.10);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(7,16,31,.07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.season-board a:hover {
  transform: translateY(-2px);
  border-color: rgba(11,95,255,.22);
  box-shadow: 0 16px 42px rgba(7,16,31,.10);
}
.season-board span {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1;
  text-transform: uppercase;
}
.season-board em { color: var(--muted); font-style: normal; font-weight: 650; }
.season-copy { padding-top: 10px; }
.season-copy p { margin: 16px 0 26px; }

.field { background: var(--white); }
.field-copy { padding-top: 10px; }
.field-copy p { margin-top: 16px; }
.venue-card {
  overflow: hidden;
  border: 1px solid rgba(7,16,31,.10);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-soft);
}
.map-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  background:
    radial-gradient(circle at 44% 46%, rgba(227,38,54,.16), transparent 7rem),
    radial-gradient(circle at 58% 46%, rgba(11,95,255,.18), transparent 10rem),
    linear-gradient(135deg, #081121, #0f2752);
}
.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 28px;
}
.map-card::after {
  inset: 68px auto 68px 50%;
  width: 2px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.18);
}
.map-route {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-2), var(--red-2));
  box-shadow: 0 0 22px rgba(25,163,255,.30);
  transform-origin: center;
}
.route-one { width: 72%; top: 46%; left: 12%; transform: rotate(-16deg); }
.route-two { width: 52%; top: 64%; left: 28%; transform: rotate(21deg); opacity: .62; }
.map-pin {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 28px;
  height: 28px;
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(0,0,0,.32);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}
.map-label {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(255,255,255,.14);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.8vw, 4.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
}
.venue-copy { padding: 26px; }
.venue-copy h3 {
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  line-height: 1.12;
  text-transform: uppercase;
}
.venue-copy address {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.contact {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(227,38,54,.16), transparent 40%),
    radial-gradient(circle at 76% 12%, rgba(25,163,255,.24), transparent 22rem),
    linear-gradient(135deg, var(--navy-950), #102347);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(135deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 26px 26px;
}
.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact h2 { color: var(--white); }
.contact-copy p { max-width: 680px; margin-top: 16px; color: rgba(255,255,255,.78); }
.contact-actions { display: grid; gap: 10px; min-width: 240px; }
.contact-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.contact-details div {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.contact-details dt {
  color: rgba(255,255,255,.58);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.contact-details dd { margin: 5px 0 0; font-weight: 760; overflow-wrap: anywhere; }
.contact-details a:hover { color: var(--blue-2); }

.site-footer {
  color: rgba(255,255,255,.74);
  background: #030812;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand img {
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 50%;
  background: var(--white);
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1;
  text-transform: uppercase;
}
.footer-brand span { font-size: .84rem; color: rgba(255,255,255,.58); font-weight: 650; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-weight: 720;
}
.footer-links a:hover,
.footer-meta a:hover { color: var(--blue-2); }
.footer-meta { text-align: right; font-size: .87rem; font-weight: 650; }
.footer-meta p + p { margin-top: 4px; }
.credit a { color: var(--white); font-weight: 800; }


.privacy-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, .96);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 22px 70px rgba(3, 8, 18, .18);
}
.privacy-notice__content {
  display: grid;
  gap: 4px;
}
.privacy-notice strong {
  color: var(--navy);
  font-size: .98rem;
  font-weight: 900;
}
.privacy-notice p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}
.privacy-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.privacy-notice__actions a {
  color: var(--blue);
  font-size: .88rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-main {
  padding: 0 0 88px;
}
.legal-hero {
  padding: 156px 0 60px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(24, 160, 251, .18), transparent 22rem),
    radial-gradient(circle at 12% 18%, rgba(227, 38, 54, .18), transparent 24rem),
    linear-gradient(135deg, var(--navy-950), var(--navy));
}
.legal-hero .eyebrow {
  color: rgba(255,255,255,.74);
}
.legal-hero h1 {
  max-width: 880px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 4.7rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.legal-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}
.legal-content {
  display: grid;
  gap: 18px;
  padding-top: 34px;
}
.legal-section {
  padding: 28px;
  border: 1px solid rgba(226,232,240,.92);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 42px rgba(7, 16, 31, .06);
}
.legal-section h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.legal-section h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}
.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.7;
}
.legal-section p {
  margin-top: 12px;
}
.legal-section ul {
  margin: 14px 0 0;
  padding-left: 1.1rem;
}
.legal-section a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(11, 95, 255, .08);
  color: var(--ink);
}
.legal-note strong {
  color: var(--navy);
}
.legal-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
}
.legal-meta span {
  display: block;
}
.cookie-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  font-size: .95rem;
}
.cookie-table th,
.cookie-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.cookie-table th {
  color: var(--navy);
  background: var(--ice);
  font-weight: 900;
}
.cookie-table td {
  color: var(--muted);
}
.cookie-table tr:last-child td {
  border-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes courtDrift {
  from { translate: -8px 0; opacity: .42; }
  to { translate: 14px -8px; opacity: .76; }
}

@media (max-width: 1120px) {
  .header-shell { grid-template-columns: auto auto 1fr; }
  .nav-toggle {
    justify-self: start;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(7,16,31,.10);
    border-radius: 999px;
    background: var(--ice);
    color: var(--navy);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(3) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 92px 20px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(7,16,31,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 70px rgba(7,16,31,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  body.nav-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { justify-content: center; min-height: 48px; font-size: 1rem; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .hero { padding: 130px 0 82px; }
  .hero-grid,
  .club-grid,
  .season-grid,
  .field-grid,
  .youth-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .hero-emblem { min-height: 250px; }
  .hero-emblem img { width: min(72vw, 300px); }
  .identity-numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .club-story { padding-top: 0; }
  .contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); min-width: 0; }
  .contact-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .site-header { padding: 10px 0; }
  .header-shell { min-height: 62px; gap: 8px; padding: 7px 8px; }
  .brand-text { display: none; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-mark img { width: 32px; }
  .btn-small { min-height: 40px; padding-inline: 12px; font-size: .82rem; }
  .hero { padding-top: 114px; }
  .hero h1 { font-size: clamp(2.5rem, 10.6vw, 3.75rem); line-height: 1.06; }
  .hero-text { font-size: 1.02rem; }
  .hero-ctas .btn { width: 100%; }
  .section { padding: 72px 0; }
  .section-head h2,
  .section-intro h2,
  .youth h2,
  .season h2,
  .field h2,
  .contact h2 { font-size: clamp(1.85rem, 8.4vw, 2.75rem); line-height: 1.1; }
  .identity-numbers,
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: auto; }
  .map-card { height: 250px; }
  .contact-actions,
  .contact-details { grid-template-columns: 1fr; }
  .footer-links { gap: 10px 14px; }
  .privacy-notice { grid-template-columns: 1fr; right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .privacy-notice__actions { justify-content: flex-start; }
  .legal-hero { padding-top: 126px; }
  .legal-section { padding: 22px; }
  .cookie-table { display: block; overflow-x: auto; }
}

@media (max-width: 420px) {
  .btn { width: 100%; padding-inline: 16px; }
  .header-cta { width: auto; }
  .number-card { min-height: 190px; }
  .number-card strong { font-size: clamp(1.65rem, 12vw, 2.35rem); }
}

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