/* AEDB Calcio — Liquid Glass layer.
   Loaded AFTER site.css: reskins nav, cards and buttons with a frosted
   "liquid glass" treatment. Tokens still come from the design system. */

/* ---------- Ambient depth behind the glass ---------- */
body { position: relative; background: var(--aedb-navy); }
/* Flat, uniform AEDB navy canvas across every page (white sections stay white) */
body::before { display: none; }

.section { scroll-margin-top: 110px; }

/* ---------- Floating glass nav pill ---------- */
.nav {
  position: sticky;
  top: 14px;
  z-index: 340;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0 var(--container-pad);
}
.nav__inner {
  height: auto;
  max-width: 1600px;
  margin: 0 auto;
  padding: 7px clamp(10px, 1.5vw, 14px) 7px clamp(18px, 2.5vw, 30px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(6px, 1.5vw, 20px);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 12px 40px rgba(4, 16, 32, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}
.nav__made {
  justify-self: start; display: flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 400; font-size: 13px; line-height: 1;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap; padding-left: 4px;
}
.nav__made a { color: var(--gold-400); font-weight: 400; transition: color var(--dur-fast) var(--ease-out); }
.nav__made a:hover { color: var(--gold-300); }
.nav--onlight .nav__made { color: rgba(18, 59, 102, 0.55); }
.nav--onlight .nav__made a { color: var(--aedb-navy); }

.nav__burger {
  justify-self: end; position: relative; z-index: 320;
  width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--aedb-white);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, background 300ms ease;
}
.nav--onlight .nav__burger span { background: var(--aedb-navy); }
.menu-open .nav__burger span { background: var(--aedb-white); }
.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Full-screen overlay menu (bvb-tribute style) ---------- */
.navmenu {
  position: fixed; inset: 0; z-index: 300;
  background: linear-gradient(160deg, #123b66, #0c2a49);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(90px, 12vh, 130px) clamp(28px, 9vw, 130px) clamp(24px, 6vh, 64px);
  clip-path: inset(0 0 100% 0);
  opacity: 0; pointer-events: none;
  transition: clip-path 720ms cubic-bezier(0.76, 0, 0.24, 1), opacity 10ms linear 710ms;
}
.menu-open .navmenu {
  clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto;
  transition: clip-path 760ms cubic-bezier(0.76, 0, 0.24, 1), opacity 10ms linear;
}
.navmenu::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 85% 15%, rgba(190, 161, 81, 0.14), transparent 60%);
}
.navmenu__list { display: flex; flex-direction: column; position: relative; z-index: 1; }
.navmenu__num { display: none; }
.navmenu__link {
  position: relative; display: flex; align-items: baseline;
  padding: clamp(4px, 0.8vh, 10px) 0;
  text-decoration: none; overflow: hidden;
}
.navmenu__text {
  font-family: var(--font-body); text-transform: uppercase; line-height: 0.95;
  font-size: clamp(2.4rem, 7.5vw, 5.6rem); letter-spacing: 0.01em;
  color: var(--aedb-white); display: inline-block;
  transform: translateY(115%); transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), color 320ms ease;
  transition-delay: calc(var(--i, 0) * 60ms);
}
.menu-open .navmenu__text { transform: translateY(0); }
.navmenu__link:hover .navmenu__text { color: var(--gold-400); }
.navmenu__link::after {
  content: ""; position: absolute; left: 0;
  bottom: clamp(4px, 0.8vh, 10px); height: 2px; width: 0; background: var(--gold-400);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.navmenu__link:hover::after { width: 100%; }
.navmenu__foot {
  position: absolute; left: clamp(28px, 9vw, 130px); right: clamp(28px, 9vw, 130px);
  bottom: clamp(24px, 6vh, 60px); z-index: 1;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: clamp(16px, 3vh, 30px);
  opacity: 0; transition: opacity 500ms ease 380ms;
}
.navmenu__years {
  justify-self: start; font-family: var(--font-body); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--white-64, rgba(255, 255, 255, 0.55));
}
.menu-open .navmenu__foot { opacity: 1; }
.navmenu__word { justify-self: center; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--gold-400); }
.navmenu__social {
  justify-self: end; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem); color: var(--aedb-white);
  transition: color 260ms ease;
}
.navmenu__social:hover { color: var(--gold-300); }
@media (prefers-reduced-motion: reduce) {
  .navmenu, .menu-open .navmenu { transition: opacity 200ms ease; clip-path: none; }
  .navmenu__text, .navmenu__foot { transition: none; transform: none; opacity: 1; }
}
.nav__logo {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(8px, 1.5vw, 20px);
}
.nav__logo img { height: 44px; width: auto; }
@media (max-width: 720px) {
  .nav__inner { padding-inline: 12px; gap: 8px; }
  .nav__made { font-size: 10.5px; letter-spacing: 0.08em; }
  .nav__logo { padding: 0 6px; }
  .nav__logo img { height: 38px; }
}
@media (max-width: 420px) {
  .nav__made { font-size: 9px; letter-spacing: 0.05em; }
}

/* ---------- Buttons: liquid-glass pills (frost hover, text always white) ---------- */
.aedb-btn {
  position: relative; z-index: 0; isolation: isolate; overflow: hidden;
  background: linear-gradient(160deg, rgba(18, 59, 102, 0.85), rgba(18, 59, 102, 0.65)) !important;
  border: 1px solid rgba(18, 59, 102, 0.45) !important;
  color: var(--aedb-white) !important;
  border-radius: 999px !important;
  letter-spacing: 0.18em !important;
  backdrop-filter: blur(9px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(9px) saturate(130%) !important;
  box-shadow:
    0 10px 30px rgba(4, 16, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06) !important;
  transition: background 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 420ms ease !important;
}
.aedb-btn::before { display: none !important; }
.aedb-btn:hover {
  color: var(--aedb-white) !important;
  background: linear-gradient(160deg, rgba(18, 59, 102, 0.96), rgba(18, 59, 102, 0.8)) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  transform: none !important;
}
.aedb-btn:active { transform: none !important; }
.aedb-btn--ghost { background: linear-gradient(160deg, rgba(18, 59, 102, 0.85), rgba(18, 59, 102, 0.65)) !important; }

.aedb-btn--dark {
  background: linear-gradient(160deg, rgba(18, 59, 102, 0.85), rgba(18, 59, 102, 0.65)) !important;
  border: 1px solid rgba(18, 59, 102, 0.45) !important;
  box-shadow:
    0 10px 30px rgba(4, 16, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06) !important;
}
.aedb-btn--dark:hover {
  background: linear-gradient(160deg, rgba(18, 59, 102, 0.96), rgba(18, 59, 102, 0.8)) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}

/* ---------- Hero overlay: logo docks bottom, buttons reveal on scroll ---------- */
.hero-video-logo {
  height: 46px; width: auto; display: block;
  transform: translateY(var(--logo-shift, 0px));
  transition: transform 120ms linear;
}
@media (max-width: 560px) { .hero-video-logo { height: 38px; } }
.hero__actions--overlay {
  position: absolute; left: 0; right: 0; bottom: clamp(18px, 4vw, 40px); z-index: 3;
  margin-top: 0; padding: 0 var(--space-4);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.hero__actions-row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-4);
}
.hero__actions-row .aedb-btn:first-child { justify-self: end; }
.hero__actions-row .aedb-btn:last-child { justify-self: start; }
.hero__actions-row .aedb-btn {
  opacity: 0; transform: translateY(22px);
  transition: opacity 130ms linear, transform 130ms linear, background 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 420ms ease !important;
}
.hero__actions-row .aedb-btn:hover { transform: translateY(0) !important; }
@media (prefers-reduced-motion: reduce) {
  .hero-video-logo { transform: none !important; transition: none; }
  .hero__actions-row .aedb-btn { opacity: 1; transform: none; transition: none !important; }
}
.aedb-btn--glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)) !important;
  transition: background 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 420ms ease !important;
}
.aedb-btn--glass::before { display: none !important; }
.aedb-btn--glass:hover {
  color: var(--aedb-white) !important;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.14)) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}
@media (max-width: 560px) {
  .hero__actions--overlay { top: 0; bottom: 0; justify-content: center; gap: var(--space-2); }
  .aedb-btn--glass { padding: 0.55em 1.1em; font-size: 0.72rem; }
}

/* ---------- Shared glass card recipe ---------- */
.match-card,
.squad-card,
.sqc,
.team-info-card,
.value,
.philosophy,
.logo-card,
.player-card,
.ig-tile--error,
.contact-info {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 16px 44px rgba(4, 16, 32, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.contact-info { border-radius: var(--radius-lg); padding: var(--space-6); }
.contact-info .lbl { color: var(--aedb-white); }
.contact-info .val { color: var(--aedb-gold); }
.match-card__t, .match-card__k, .match-card__p { color: var(--white); }
.match-card__p { color: var(--white-80); }
.match-card:hover {
  box-shadow:
    0 24px 60px rgba(4, 16, 32, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.squad-card:hover, .team-info-card:hover, .sqc.is-shown:hover {
  border-color: rgba(190, 161, 81, 0.65);
  box-shadow:
    0 24px 60px rgba(4, 16, 32, 0.5),
    0 0 28px rgba(190, 161, 81, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.value {
  border-left: 2px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.logo-card::after { opacity: 0.9; }

/* ---------- Instagram tiles ---------- */
.ig-tile {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 12px 32px rgba(4, 16, 32, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ---------- Media frames ---------- */
.video-card, .map-frame, .thumb-frame, .team-photo-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 16px 44px rgba(4, 16, 32, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ---------- Shop "Coming Soon": retint the teal pitch to brand navy ---------- */
.coming img {
  filter: saturate(0.55) brightness(0.82) hue-rotate(-18deg);
}
.coming::before {
  background:
    linear-gradient(150deg, rgba(18, 59, 102, 0.82), rgba(9, 30, 53, 0.9)),
    radial-gradient(700px 460px at 78% 8%, rgba(190, 161, 81, 0.14), transparent 60%) !important;
}

/* ---------- "Coming soon" panel: glass sheet over the pitch ---------- */
.coming__inner {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  padding: var(--space-7) clamp(28px, 6vw, 72px);
  box-shadow:
    0 20px 50px rgba(4, 16, 32, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

/* ---------- Sponsor plates: bright frosted glass for the logos ---------- */
.sponsor {
  width: 240px;
  height: 132px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 12px 34px rgba(4, 16, 32, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4);
}
.sponsor:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
}
.sponsor img { transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1); }
.sponsor:hover img { transform: scale(1.12); }
.sponsor img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* ---------- Form fields ---------- */
.field input, .field textarea {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold-400);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(190, 161, 81, 0.18);
}

/* ---------- Footer hairline ---------- */
.footer {
  background: var(--aedb-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* ---------- Prima Squadra: roster photo marquee (auto-scroll + drag) ---------- */
.roster-marquee-live {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
}
.roster-marquee-live.is-dragging { cursor: grabbing; }
.roster-marquee-live::-webkit-scrollbar { display: none; }
.roster-row {
  display: flex;
  gap: var(--space-5);
  padding: 6px 2px 12px;
  width: max-content;
}
.player {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 16px 44px rgba(4, 16, 32, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}
.player:hover {
  transform: translateY(-6px);
  border-color: rgba(190, 161, 81, 0.6);
  box-shadow:
    0 26px 62px rgba(4, 16, 32, 0.52),
    0 0 30px rgba(190, 161, 81, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.player__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-500), var(--navy-700));
}
.player__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.player__num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: var(--font-brand);
  font-size: 34px;
  line-height: 1;
  color: var(--gold-300);
  text-shadow: 0 2px 10px rgba(4, 16, 32, 0.7);
}
.player__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 30, 53, 0.25) 0%, transparent 30%, transparent 62%, rgba(9, 30, 53, 0.5) 100%);
  pointer-events: none;
}
.player--empty .player__photo {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vh, 15px);
  align-items: center;
  justify-content: center;
}
.player--empty .player__photo::before {
  content: "Coming Soon";
  order: 2;
  font-family: var(--font-brand);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--gold-300);
  z-index: 2;
}
.player--empty .player__silhouette {
  width: 34%;
  color: rgba(255, 255, 255, 0.16);
}
.player__meta {
  padding: var(--space-4) var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.player__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-wrap: balance;
}
.player__role {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--fs-caption);
  color: var(--gold-300);
}
@media (max-width: 560px) {
  .player { flex-basis: 62vw; }
  .player__num { font-size: 28px; }
}

/* Shop: text-only "Coming Soon" (card + button removed, same rise-in animation) */
.coming--text { min-height: 0; border-radius: 0; box-shadow: none; background: none; padding: 0.18em 0; overflow: visible; }
.coming--text::before { display: none; }
.coming--text .coming__soon { color: var(--gold-400); text-shadow: none; line-height: 1.15; padding-top: 0.12em; }
.shop-pin__stack { overflow: visible; }

/* Shop page: title phase navy (title white) → transitions to white for Coming Soon (navy) + gold subtitle */
.shop-pin--store { background: var(--aedb-navy); transition: background 550ms cubic-bezier(0.22, 1, 0.36, 1); }
.shop-pin--store.is-title-out { background: var(--aedb-navy); }
.shop-pin--store .shop-title .word { color: rgba(255, 255, 255, 0.22); }
.shop-pin--store .shop-title .word.is-active { color: var(--aedb-white); }
.shop-pin--store .shop-sub { font-size: clamp(1rem, 2.6vw, 1.7rem); letter-spacing: 0.28em; margin: var(--space-4) 0 0; }
.shop-pin--store .shop-sub .word.is-active { color: var(--gold-400); }
@media (prefers-reduced-motion: reduce) {
  .shop-pin--store { background: var(--aedb-navy); }
  .shop-pin--store .shop-title .word { color: var(--aedb-white); }
  .shop-pin--store .shop-sub .word { color: var(--gold-400); }
}

/* Video: promote to its own GPU layer so pinned scroll stays smooth (no lag) */
.hero-video { will-change: transform; transform: translateZ(0); backface-visibility: hidden; }

/* Team photo placeholder → "La stagione inizia tra poco" season-soon */
.team-photo-card { overflow: hidden; }
.team-photo-card .season-soon { min-height: clamp(240px, 40vh, 380px); height: 100%; }

/* ============ MOBILE (≤600px) — layout only; desktop choreography untouched ============ */
@media (max-width: 600px) {
  html, body { overflow-x: clip; }

  /* Every multi-column layout stacks full-width, in reading order */
  .hero__grid, .card-duo, .contact-grid,
  .squad-grid, .value-grid, .stat-row,
  .team-info-grid, .squads-row { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }

  /* Match banners: force single column both directions, image on top */
  .match-banner, .match-banner[data-dir="right"] { grid-template-columns: 1fr; }
  .match-banner[data-dir="right"] .match-banner__media,
  .match-banner[data-dir="right"] .match-banner__body { order: 0; }
  .match-banner__body { padding: var(--space-4); }

  /* Nav pill + full-screen overlay foot */
  .nav { top: 10px; }
  /* "MADE BY / RLZMEDIA" stacked on two lines (mobile only), vertically centered on the hamburger axis */
  .nav__made { display: flex; flex-direction: column; justify-content: center; line-height: 1.05; align-self: center; align-items: flex-start; gap: 1px; }
  .nav__burger { align-self: center; }
  /* Menu — "Ledger": voci distribuite su tutta l'altezza, numerate, con righe divisorie */
  .navmenu { justify-content: flex-start; padding: 92px 24px 26px; }
  .navmenu__list { flex: 1; }
  .navmenu__link { flex: 1; align-items: center; gap: 16px; padding: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .navmenu__link:last-child { border-bottom: none; }
  .navmenu__link::after { display: none; }
  .navmenu__num { display: block; flex: none; width: 30px; font-family: var(--font-brand); font-size: 20px; line-height: 1; color: var(--gold-400); }
  .navmenu__text { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .navmenu__foot { position: static; left: auto; right: auto; bottom: auto; margin-top: 4px; }
  .navmenu__foot { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 10px; }
  .navmenu__years, .navmenu__word, .navmenu__social { justify-self: center; }

  /* Sponsors — smaller plates, tighter track */
  .sponsor { width: 150px; height: 86px; padding: 12px 16px; }
  .marquee__track, .sponsor-row { gap: var(--space-4); }

  /* Google map — shorter on phones */
  .map-frame { min-height: 260px; }
  .map-frame iframe { min-height: 260px; height: 260px; }

  /* Home hero: pinned video fills the whole mobile screen; nav floats over it */
  body.home .nav { position: fixed; left: 0; right: 0; top: 14px; }
  body.home .hero-stage { top: 0; height: 100vh; }
  .hero-video-frame { width: 100vw; max-width: 100vw; height: 100vh; max-height: none; aspect-ratio: auto; border-radius: 0; border: 0; box-shadow: none; }
  .hero-video { object-fit: cover; }
  /* Logo + buttons centered in the video (not docked at the bottom) */
  .hero__actions--overlay { top: 0; bottom: 0; justify-content: center; }

  /* Tall pins that can't fit a phone screen: unpin so content flows above
     the footer (no clipping / footer overlap). Choreography stays on desktop. */
  .contact-pin { height: auto; padding-block: var(--space-section); }
  .contact-pin__sticky { position: relative; top: 0; height: auto; overflow: visible; }
  .contact-pin .contact-head { transform: none !important; margin-bottom: var(--space-6); }
  .contact-title .word { color: var(--gold-400); }
  .contact-pin .map-frame, .contact-pin .contact-info { opacity: 1 !important; transform: none !important; }
  .contact-rule { transform: scaleX(1) !important; }

  .squads-pin { height: auto; padding-block: var(--space-section) var(--space-6); }
  .squads-pin__sticky { position: relative; top: 0; height: auto; overflow: visible; }
  .squads-head { transform: none !important; margin-bottom: var(--space-6); }
  .squads-pin.is-docked .squads-title { font-size: clamp(3rem, 7.4vw, 6.4rem); }
  .squads-title .word { color: var(--gold-400); }
  .squads-sub .word { color: var(--white-80); }
  .squads-row { opacity: 1 !important; transform: none !important; }
  .sqc { opacity: 1 !important; transform: none !important; }
}
