/* === Reset minimo === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* === Tokens === */
:root {
  --bg-dark:    #101010;
  --bg-darker:  #050505;
  --bg-light:   #f9fafd;
  --bg-card:    #1a1a1a;
  --accent:     #0bb4aa;
  --accent-hov: #08938a;
  --text-light: #ffffff;
  --text-mute-d:rgba(255,255,255,.65);
  --text-mute-l:#6c6c77;
  --border:     rgba(255,255,255,.12);
  --border-l:   rgba(0,0,0,.08);

  --font-head:  'Onest', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 32px rgba(0,0,0,.18);
  --shadow-l:   0 4px 16px rgba(0,0,0,.08);
  --max-w:      1200px;

  --space-1:  4px;  --space-2:  8px;  --space-3: 16px;
  --space-4: 24px;  --space-5: 32px;  --space-6: 48px;
  --space-7: 64px;  --space-8: 96px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
@media (min-width: 768px) { .container { padding-inline: var(--space-5); } }

/* === Skip link === */
.skip {
  position: absolute; left: -9999px; top: 0; padding: var(--space-2) var(--space-3);
  background: var(--accent); color: #000; z-index: 999;
}
.skip:focus { left: 0; }

/* === Eyebrow === */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.eyebrow-light { color: rgba(255,255,255,.75); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: var(--accent-hov); }
.btn-ghost { background: transparent; color: var(--text-light); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--text-light); background: rgba(255,255,255,.06); }
.btn-dark { background: var(--bg-dark); color: var(--text-light); }
.btn-dark:hover { background: var(--bg-darker); }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,16,16,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-block: var(--space-3);
}
.brand {
  display: flex; align-items: center; gap: var(--space-2);
  text-decoration: none;
  margin-right: auto;     /* spinge tutto il resto a destra */
}
.brand img { height: 32px; width: auto; }
.brand-text {
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  letter-spacing: -0.02em; color: var(--text-light);
}

.primary-nav {
  display: flex;
  align-items: center; gap: var(--space-5);
}
.primary-nav ul { display: flex; gap: var(--space-5); }
.primary-nav a {
  font-weight: 500; font-size: 15px; text-decoration: none;
  color: var(--text-light); padding: 6px 0; position: relative;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 18px; font-size: 14px; }

/* === Hamburger + mobile nav === */
.hamburger {
  order: 99;                /* ultimo nel flex order, sempre a destra */
  border: 0; background: transparent; padding: 8px;
  display: flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 51;              /* sopra alla nav fixed */
  position: relative;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text-light);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

@media (max-width: 1023px) {
  .primary-nav {
    display: block;                       /* override flex base */
    position: fixed;
    top: 64px; left: 0; right: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);          /* iOS dynamic viewport */
    background: var(--bg-dark);
    padding: var(--space-5) var(--space-4);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 49;
    box-sizing: border-box;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul {
    display: block;
    width: 100%;
    margin: 0; padding: 0;
    list-style: none;
  }
  .primary-nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .primary-nav a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
  }
  .primary-nav a::after { display: none; }
  .nav-cta {
    display: inline-block;
    margin-top: var(--space-5);
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  isolation: isolate;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { min-height: 80vh; } }
@media (min-width: 1024px) { .hero { min-height: 92vh; } }

.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('/wp-content/uploads/2022/10/brandon-mowinkel-3_JwPJwq6CI-unsplash-1536x1097.jpg');
  background-size: cover; background-position: center;
  /* Shift toni violetto della foto verso blu navy brand (#0A1F3D, hsl 215° 72% 14%) */
  filter: hue-rotate(-28deg) saturate(.95);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  /* Tinta navy brand #0A1F3D in alto, fade a nero in basso per leggibilità */
  background:
    linear-gradient(180deg, rgba(10,31,61,.55) 0%, rgba(10,31,61,.65) 35%, rgba(16,16,16,.92) 100%),
    linear-gradient(180deg, rgba(10,31,61,.20), rgba(10,31,61,.20));
}
.hero-inner { padding-block: var(--space-8) var(--space-7); }
.hero-eyebrow {
  font-weight: 600; font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--space-4);
}
.hero h1 {
  font-size: clamp(48px, 11vw, 120px);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.hero-sub {
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 500;
  color: var(--text-mute-d);
  margin-bottom: var(--space-6);
  max-width: 36ch;
}
.hero-sub span { color: rgba(255,255,255,.5); font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero-scroll {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: var(--space-5);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border);
  text-decoration: none; color: var(--text-light); font-size: 18px;
  animation: bounce 2.4s infinite ease-in-out;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* === Stats === */
.stats {
  background: var(--bg-darker);
  padding-block: var(--space-7);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-3);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--space-2);
}
.stat-num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--accent); line-height: 1;
}
.stat-lbl {
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-mute-d);
}

/* === Mission === */
.mission { padding-block: var(--space-8); background: var(--bg-light); color: var(--bg-dark); }
.mission h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: var(--space-4);
  max-width: 18ch;
}
.lead {
  font-size: 18px; line-height: 1.65;
  color: var(--text-mute-l); max-width: 60ch;
  margin-bottom: var(--space-7);
}
.mission-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5);
}
@media (min-width: 640px)  { .mission-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); } }
@media (min-width: 1024px) { .mission-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); } }
.m-item h3 {
  font-size: 22px; margin-block: var(--space-3) var(--space-2);
}
.m-item p { color: var(--text-mute-l); font-size: 15px; }
.m-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--accent); color: #000;
  display: flex; align-items: center; justify-content: center;
}
.m-icon svg { width: 28px; height: 28px; }

/* === Teams grid === */
.teams { padding-block: var(--space-8); background: var(--bg-dark); }
.teams h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: var(--space-6);
  max-width: 22ch;
}

.teams-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .teams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .teams-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); } }

.team-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-light);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.tc-img { aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.tc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .tc-img img { transform: scale(1.05); }

.tc-body { padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.tc-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.tc-body h3 { font-size: 24px; }
.tc-body p { color: var(--text-mute-d); font-size: 14px; flex: 1; }
.tc-arrow { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: var(--space-2); }

/* === Open Week banda === */
.open-week {
  position: relative; isolation: isolate;
  padding-block: var(--space-8);
  text-align: center;
  overflow: hidden;
}
.ow-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('/wp-content/uploads/2018/07/LITTLE-KIDS-2018-1024x768.jpg');
  background-size: cover; background-position: center;
}
.ow-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,180,170,.85) 0%, rgba(8,147,138,.95) 100%);
}
.ow-inner { max-width: 720px; margin: 0 auto; }
.open-week h2 {
  font-size: clamp(32px, 5.5vw, 56px);
  margin-bottom: var(--space-4);
  color: #fff;
}
.ow-text {
  font-size: 18px; line-height: 1.6;
  color: #fff;
  margin-bottom: var(--space-6);
}
.ow-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.open-week .btn-accent { background: var(--bg-dark); color: var(--text-light); }
.open-week .btn-accent:hover { background: #000; }
.open-week .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.open-week .btn-ghost:hover { background: rgba(0,0,0,.15); }

/* === Venue === */
.venue { padding-block: var(--space-8); background: var(--bg-light); color: var(--bg-dark); }
.venue-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center;
}
@media (min-width: 1024px) {
  .venue-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-8); }
}
.venue-photo img {
  width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-l);
}
.venue h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--space-4);
}
.venue p { color: var(--text-mute-l); margin-bottom: var(--space-4); }
.venue-features {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.venue-features li {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-dark); color: var(--text-light);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
}
.venue-features li::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 8px;
}
.venue-list {
  margin-block: var(--space-4) var(--space-5);
  border-top: 1px solid var(--border-l);
}
.venue-list li {
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--border-l);
  font-size: 15px;
}
.venue-list strong { color: var(--bg-dark); }
.venue a { color: var(--accent); }

/* === History timeline === */
.history { padding-block: var(--space-8); background: var(--bg-darker); }
.history h2 { font-size: clamp(28px, 4.4vw, 48px); margin-bottom: var(--space-6); }

.timeline {
  display: grid; grid-template-columns: 1fr; gap: var(--space-3);
  position: relative;
}
.timeline li {
  display: grid; grid-template-columns: 100px 1fr; gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-card); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.t-year { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--accent); }
.t-text { color: var(--text-mute-d); font-size: 15px; align-self: center; }

@media (min-width: 1024px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
  .timeline li {
    grid-template-columns: 1fr;
    border-left: 0; border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    gap: var(--space-2);
  }
}

/* === Sponsors === */
.sponsors { padding-block: var(--space-7); background: var(--bg-dark); text-align: center; }
.sponsors .eyebrow { color: var(--text-mute-d); }
.sponsor-row {
  display: flex; flex-wrap: wrap; gap: var(--space-5);
  align-items: center; justify-content: center;
}
.sponsor-row a {
  filter: grayscale(1) brightness(1.2); opacity: .7;
  transition: filter .3s ease, opacity .3s ease;
}
.sponsor-row a:hover { filter: grayscale(0); opacity: 1; }
.sponsor-row img { max-width: 180px; height: auto; }

/* === FAQ accordion (CSS-only via <details>) === */
.faq { padding-block: var(--space-8); background: var(--bg-light); color: var(--bg-dark); }
.faq h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: var(--space-6);
  max-width: 22ch;
}
.faq-list {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-2);
  max-width: 800px;
}
.faq-list details {
  border: 1px solid var(--border-l);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s ease;
}
.faq-list details[open] { border-color: var(--accent); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--bg-dark);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 var(--space-4) var(--space-4);
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mute-l);
}
.faq-list details p a { color: var(--accent); }

/* === Contact section === */
.contact {
  padding-block: var(--space-8);
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  text-align: center;
}
.ct-inner { max-width: 640px; margin: 0 auto; }
.contact h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: var(--space-4);
  color: var(--text-light);
}
.ct-text {
  font-size: 17px; line-height: 1.6;
  color: var(--text-mute-d);
  margin-bottom: var(--space-6);
}
.ct-cta {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: center;
}

/* === Footer === */
.site-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding-top: var(--space-8);
  scroll-margin-top: var(--space-8);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6);
  padding-bottom: var(--space-7);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--space-7); } }

.f-brand img { margin-bottom: var(--space-3); }
.f-brand h2 {
  font-size: 24px; margin-bottom: var(--space-2);
}
.f-brand p { color: var(--text-mute-d); font-size: 14px; max-width: 24ch; }

.f-col h3 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--space-3);
}
.f-col ul li { margin-bottom: var(--space-2); }
.f-col a {
  text-decoration: none; color: var(--text-mute-d); font-size: 15px;
  transition: color .15s ease;
}
.f-col a:hover { color: var(--text-light); }

.social li a {
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.social svg { color: var(--accent); }

.footer-bottom {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding-block: var(--space-5);
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-mute-d);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.f-links a { color: var(--text-mute-d); margin-inline: var(--space-1); text-decoration: none; }
.f-links a:hover { color: var(--text-light); }

/* === Sottopagine team === */
.subhero {
  position: relative; isolation: isolate;
  min-height: 50vh;
  display: flex; align-items: flex-end;
  padding-block: var(--space-7) var(--space-6);
  overflow: hidden;
}
@media (min-width: 1024px) { .subhero { min-height: 60vh; } }
.subhero-bg, .subhero-overlay {
  position: absolute; inset: 0;
}
.subhero-bg { z-index: -2; background-size: cover; background-position: center; }
.subhero-overlay { z-index: -1;
  background: linear-gradient(180deg, rgba(10,31,61,.45) 0%, rgba(10,31,61,.6) 50%, rgba(16,16,16,.95) 100%);
}
.subhero-inner { position: relative; }
.subhero .crumbs {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  font-size: 13px; color: var(--text-mute-d);
  margin-bottom: var(--space-3);
}
.subhero .crumbs a { color: var(--accent); text-decoration: none; }
.subhero .crumbs a:hover { color: var(--text-light); }
.subhero .tc-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--space-3);
}
.subhero h1 {
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1; margin-bottom: var(--space-3);
  text-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.subhero .lead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,.85);
  max-width: 50ch;
}

.team-detail { padding-block: var(--space-8); background: var(--bg-light); color: var(--bg-dark); }
.detail-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6);
}
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 2fr 1fr; gap: var(--space-7); } }

.detail-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--space-4);
}
.detail-content p {
  font-size: 17px; line-height: 1.7; color: var(--text-mute-l);
  margin-bottom: var(--space-4);
}
.detail-content p strong { color: var(--bg-dark); }

.detail-info {
  background: var(--bg-card); color: var(--text-light);
  padding: var(--space-5);
  border-radius: var(--radius);
  border-top: 4px solid var(--accent);
  position: sticky; top: 80px; align-self: start;
}
.detail-info h3 {
  font-size: 18px; margin-bottom: var(--space-4);
}
.detail-info dl {
  display: grid; grid-template-columns: 1fr; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.detail-info dt {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 2px;
}
.detail-info dd {
  margin: 0; font-size: 15px; color: var(--text-mute-d);
}
.detail-info .btn { width: 100%; justify-content: center; }

.related { padding-block: var(--space-7); background: var(--bg-dark); }
.related h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: var(--space-5);
}
.related-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3);
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(5, 1fr); gap: var(--space-3); } }
.related-grid a {
  display: block; padding: var(--space-3);
  background: var(--bg-card); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none; color: var(--text-light);
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.related-grid a:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-grid strong { display: block; font-family: var(--font-head); font-size: 16px; }
.related-grid span { display: block; font-size: 11px; color: var(--text-mute-d); margin-top: 2px; }

/* === Reveal animation === */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.teams-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.teams-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }
.teams-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }
.teams-grid [data-reveal]:nth-child(4) { transition-delay: .24s; }
.teams-grid [data-reveal]:nth-child(5) { transition-delay: .32s; }
.teams-grid [data-reveal]:nth-child(6) { transition-delay: .40s; }
