/* ============================================================
   Bayside Netball Club — design system v2
   Cinematic, full-bleed, animated. Ocean-blue brand.
   ============================================================ */

:root {
  --navy-900: #06183d;
  --navy-800: #0a2456;
  --navy-700: #103173;
  --blue-600: #1856c4;
  --blue-500: #2a72e6;
  --blue-400: #4a93f0;
  --aqua-500: #19c2e6;
  --aqua-400: #4fd6f2;
  --coral-500: #ff6b4a;   /* energetic accent, used sparingly */
  --ink: #0e1c33;
  --muted: #5d6e89;
  --line: #e6ecf5;
  --bg: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-tint: #eef5fe;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --shadow-sm: 0 6px 18px rgba(10, 36, 86, .08);
  --shadow: 0 18px 44px rgba(10, 36, 86, .12);
  --shadow-lg: 0 30px 70px rgba(10, 36, 86, .20);
  --wrap: 1280px;
  --wrap-wide: 1480px;
  --pad: clamp(20px, 5vw, 64px);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background: var(--bg); line-height: 1.7; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--navy-800); }

h1, h2, h3, h4 { font-family: var(--font); color: var(--navy-800); line-height: 1.1; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1.1rem; }

/* Layout helpers */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--wide { max-width: var(--wrap-wide); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint), #fff); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .28em; font-size: .72rem; font-weight: 700; color: var(--blue-500); margin-bottom: 1rem; }
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--aqua-500); vertical-align: middle; margin-right: 12px; transform: translateY(-3px); }
.on-dark .eyebrow { color: var(--aqua-400); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 60ch; }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark .lead, .on-dark p { color: rgba(233, 240, 252, .86); }
.maxch { max-width: 62ch; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--aqua-500), var(--blue-500)); transition: width .1s linear; }

/* ---------- Buttons ---------- */
.btn {
  --bx: 0;
  position: relative; display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1rem; font-family: inherit; line-height: 1;
  padding: 1.05rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35), transparent 70%); transform: translateX(-130%); transition: transform .6s var(--ease); }
.btn:hover::after { transform: translateX(130%); }
.btn--primary { background: linear-gradient(135deg, var(--blue-600), var(--aqua-500)); color: #fff; box-shadow: 0 12px 30px rgba(26, 86, 196, .4); }
.btn--primary:hover { color: #fff; box-shadow: 0 18px 40px rgba(26, 86, 196, .5); }
.btn--coral { background: linear-gradient(135deg, var(--coral-500), #ff9166); color: #fff; box-shadow: 0 12px 30px rgba(255, 107, 74, .4); }
.btn--coral:hover { color: #fff; }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--navy-800); border-color: #fff; }
.btn--outline { background: #fff; color: var(--navy-800); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { color: var(--blue-600); border-color: var(--blue-400); }
.btn--lg { padding: 1.2rem 2.3rem; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
  padding-block: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  box-shadow: 0 4px 18px rgba(10,36,86,.07);
  border-bottom: 1px solid rgba(10,36,86,.06);
}
.site-header.solid { box-shadow: 0 8px 28px rgba(10,36,86,.12); padding-block: 8px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: var(--wrap-wide); margin-inline: auto; padding-inline: var(--pad); }
.nav__logo img { height: 50px; width: auto; transition: height .3s var(--ease); }
.site-header.solid .nav__logo img { height: 44px; }
.nav__menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__menu > li > a, .nav__drop > button {
  display: inline-flex; align-items: center; gap: 5px; padding: .65rem .95rem; border-radius: 10px;
  font-weight: 600; font-size: .98rem; color: var(--ink); background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__menu > li > a:hover, .nav__drop > button:hover, .nav__menu > li > a.active { color: var(--blue-500); background: var(--bg-tint); }
.nav__cta .btn { padding: .7rem 1.4rem; }

/* Dropdown */
.nav__drop { position: relative; }
.nav__drop > button .chev { transition: transform .2s var(--ease); font-size: .7em; }
.nav__drop:hover > button .chev, .nav__drop:focus-within > button .chev { transform: rotate(180deg); }
.nav__submenu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  min-width: 220px; padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav__drop:hover .nav__submenu, .nav__drop:focus-within .nav__submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__submenu a { display: block; padding: .7rem .9rem; border-radius: 9px; color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav__submenu a:hover { background: var(--bg-tint); color: var(--blue-600); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; z-index: 110; }
.nav__toggle span { display: block; width: 28px; height: 3px; background: var(--navy-800); border-radius: 3px; margin: 6px 0; transition: .3s var(--ease); }
.site-header.menu-open .nav__toggle span { background: #fff; }
.site-header.menu-open .nav__toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero (cinematic slideshow) ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; color: #fff; }
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; background-size: cover; background-position: center; animation: heroCycle 24s infinite; will-change: opacity, transform; }
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroCycle {
  0%   { opacity: 0; transform: scale(1.12); }
  6%   { opacity: 1; }
  25%  { opacity: 1; transform: scale(1.0); }
  31%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,24,61,.5) 0%, rgba(6,24,61,.35) 40%, rgba(6,24,61,.82) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(25,194,230,.22), transparent 55%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; max-width: var(--wrap-wide); margin-inline: auto; padding: 140px var(--pad) 120px; }
.hero__content { max-width: 920px; }
.hero h1 { color: #fff; text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.hero h1 .grad { background: linear-gradient(120deg, var(--aqua-400), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(1.1rem, 1.9vw, 1.5rem); color: rgba(235,243,255,.92); max-width: 660px; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.hero .btn-row { margin-top: 34px; }
.hero__cue { position: absolute; left: 50%; bottom: 28px; z-index: 3; transform: translateX(-50%); display: grid; place-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; }
.hero__cue .mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.hero__cue .mouse::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 4px; transform: translateX(-50%); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }
.hero__waves { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; line-height: 0; pointer-events: none; }
.hero__waves svg { width: 100%; height: clamp(50px, 7vw, 110px); display: block; }

/* Floating intro animation for hero text */
.hero [data-stagger] { opacity: 0; transform: translateY(34px); animation: riseIn .9s var(--ease) forwards; }
.hero [data-stagger="1"] { animation-delay: .15s; }
.hero [data-stagger="2"] { animation-delay: .32s; }
.hero [data-stagger="3"] { animation-delay: .5s; }
.hero [data-stagger="4"] { animation-delay: .66s; }
@keyframes riseIn { to { opacity: 1; transform: none; } }

/* ---------- Page header (interior) ---------- */
.page-hero { position: relative; min-height: 56vh; display: grid; align-items: center; overflow: hidden; color: #fff; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); animation: slowZoom 14s var(--ease) forwards; z-index: 0; }
@keyframes slowZoom { to { transform: scale(1); } }
.page-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,24,61,.62), rgba(6,24,61,.84)), radial-gradient(100% 80% at 80% 20%, rgba(25,194,230,.25), transparent 60%); }
.page-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin-inline: auto; padding: 150px var(--pad) 90px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(235,243,255,.9); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 620px; }
.breadcrumb { font-size: .82rem; letter-spacing: .04em; color: rgba(180,205,245,.9); margin-bottom: 18px; text-transform: uppercase; }
.breadcrumb a { color: rgba(210,228,255,.95); }

/* ---------- Parallax bands ---------- */
.band { position: relative; overflow: hidden; color: #fff; }
.band__bg { position: absolute; inset: -10% 0; background-size: cover; background-position: center; z-index: 0; will-change: transform; }
.band__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,24,61,.66), rgba(10,36,86,.82)); }
.band__inner { position: relative; z-index: 2; padding-block: clamp(80px, 12vw, 170px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.split__media .badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; color: var(--navy-800);
  border-radius: 18px; padding: 16px 22px; box-shadow: var(--shadow); font-weight: 800; display: flex; align-items: center; gap: 12px;
}
.split__media .badge .dot { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-500), var(--aqua-500)); display: grid; place-items: center; color: #fff; font-size: 1.2rem; }

/* ---------- Pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { background: #fff; border: 1px solid var(--line); color: var(--navy-800); font-weight: 700; padding: .55rem 1.25rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.on-dark .pill, .band .pill { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; backdrop-filter: blur(4px); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(18px, 2.5vw, 30px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.card--hover:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .ic { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px; background: var(--bg-tint); color: var(--blue-600); }
.card .ic.grad { background: linear-gradient(135deg, var(--blue-500), var(--aqua-500)); color: #fff; box-shadow: 0 10px 22px rgba(26,86,196,.32); }

/* Consistent line-icon system */
.icon { width: 24px; height: 24px; display: block; stroke-width: 2; }
.card .ic .icon { width: 28px; height: 28px; }
.doc-item .doc-ic .icon, .info-card .ic .icon { width: 26px; height: 26px; }
.socials a .icon { width: 20px; height: 20px; }
.store-badge .icon.sb { width: 17px; height: 17px; }
.doc-item .arrow .icon { width: 20px; height: 20px; }
/* Standalone doc icon (e.g. committee AGM card) */
.doc-ic { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-500), var(--aqua-500)); color: #fff; }
.doc-ic .icon { width: 26px; height: 26px; }
.kicker { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--blue-500); font-weight: 700; }

/* ---------- Teams ---------- */
.teams { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.team { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); background: #0a2456; }
.team img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform .6s var(--ease); }
.team:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team:hover img { transform: scale(1.08); }
.team__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,24,61,.86)); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.team__name { color: #fff; font-weight: 800; font-size: 1.15rem; line-height: 1.1; }
.team__age { display: inline-block; margin-top: 4px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--aqua-400); }

/* ---------- Sponsor marquee + tiers ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 70px; width: max-content; animation: marquee 30s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 56px; width: auto; object-fit: contain; opacity: .8; filter: grayscale(.2); transition: .2s; }
.marquee__track img:hover { opacity: 1; filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

.tier { margin-bottom: clamp(34px, 5vw, 60px); }
.tier__label { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 24px; }
.tier__label.platinum { background: linear-gradient(135deg, #e9edf5, #cdd6e6); color: #46546e; }
.tier__label.gold { background: linear-gradient(135deg, #ffeebd, #f6d488); color: #7d5a00; }
.tier__label.silver { background: linear-gradient(135deg, #eef1f6, #d7deea); color: #54627a; }
.sponsor-feature { display: flex; gap: clamp(22px, 3vw, 44px); align-items: center; flex-wrap: wrap; }
.sponsor-feature .logo-box { flex: 0 0 auto; width: 220px; height: 150px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); display: grid; place-items: center; padding: 22px; box-shadow: var(--shadow-sm); }
.sponsor-feature .logo-box img { max-height: 100px; width: auto; object-fit: contain; }
.sponsor-feature .info { flex: 1; min-width: 280px; }
.logo-box--full { width: 100%; height: 130px; margin-bottom: 20px; }

/* ---------- Products ---------- */
.product { text-align: center; }
.product .ic { margin-inline: auto; }
.product .price { font-size: 1.7rem; font-weight: 800; background: linear-gradient(120deg, var(--blue-600), var(--aqua-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product .opts { color: var(--muted); font-size: .95rem; }
.dot { display: inline-block; width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); vertical-align: middle; margin-right: 5px; }

/* ---------- Committee ---------- */
.committee { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.role-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.role-card .avatar { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--blue-500), var(--aqua-500)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
.role-card .role { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-500); font-weight: 700; }
.role-card .name { font-size: 1.12rem; font-weight: 800; color: var(--navy-800); }

/* ---------- Docs ---------- */
.doc-list { display: grid; gap: 16px; }
.doc-item { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 26px; box-shadow: var(--shadow-sm); transition: .22s var(--ease); }
.doc-item:hover { border-color: var(--blue-400); transform: translateX(6px); box-shadow: var(--shadow); }
.doc-item .doc-ic { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 14px; background: linear-gradient(135deg, var(--bg-tint), #fff); color: var(--blue-600); display: grid; place-items: center; font-size: 1.5rem; }
.doc-item .doc-meta { flex: 1; }
.doc-item .doc-meta strong { color: var(--navy-800); font-size: 1.08rem; }
.doc-item .arrow { color: var(--blue-500); font-size: 1.4rem; transition: transform .2s var(--ease); }
.doc-item:hover .arrow { transform: translate(4px,-4px); }

/* ---------- App cards ---------- */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.store-badge { display: inline-flex; align-items: center; gap: 8px; padding: .7rem 1.15rem; border-radius: 12px; background: var(--navy-800); color: #fff; font-size: .92rem; font-weight: 600; transition: .2s var(--ease); }
.store-badge:hover { color: #fff; background: var(--blue-600); transform: translateY(-2px); }

/* ---------- Gallery (masonry) ---------- */
.gallery { columns: 4; column-gap: 18px; }
.gallery figure { margin: 0 0 18px; break-inside: avoid; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery img { width: 100%; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(6,24,61,.5)); opacity: 0; transition: .3s var(--ease); }
.gallery figure:hover::after { opacity: 1; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(26px, 3.4vw, 46px); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--navy-800); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; padding: .95rem 1.1rem; border: 1.5px solid var(--line); border-radius: 13px; font: inherit; color: var(--ink); background: #fbfcfe; transition: .18s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(42,114,230,.14); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .88rem; color: var(--muted); }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: 13px; font-weight: 600; display: none; }
.form-status.ok { display: block; background: #e7f8ee; color: #15743b; border: 1px solid #b6e6c6; }
.form-status.err { display: block; background: #fdeceb; color: #b22a1e; border: 1px solid #f3c2bf; }

/* ---------- Contact info ---------- */
.info-card { display: flex; gap: 18px; align-items: flex-start; }
.info-card .ic { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 15px; background: linear-gradient(135deg, var(--bg-tint), #fff); color: var(--blue-600); display: grid; place-items: center; font-size: 1.4rem; }
.info-card .label { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.info-card a, .info-card span { font-weight: 700; color: var(--navy-800); }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; border-radius: var(--radius-xl); color: #fff; box-shadow: var(--shadow-lg); }
.cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); z-index: 0; }
.cta__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(24,86,196,.92), rgba(25,194,230,.78)); }
.cta__inner { position: relative; z-index: 2; padding: clamp(44px, 6vw, 86px); text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(240,247,255,.94); max-width: 60ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--navy-900), #04122e); color: #9fb3d6; padding-block: clamp(56px, 7vw, 90px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); }
.site-footer h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.site-footer a { color: #9fb3d6; }
.site-footer a:hover { color: #fff; }
.footer-logo img { height: 60px; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; font-weight: 700; transition: .2s var(--ease); }
.socials a:hover { background: linear-gradient(135deg, var(--blue-500), var(--aqua-500)); transform: translateY(-3px); }
.footer-sponsor { background: rgba(255,255,255,.05); border-radius: var(--radius); padding: 20px; }
.footer-sponsor img { background: #fff; border-radius: 10px; padding: 12px; max-height: 78px; width: auto; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(40px,5vw,60px); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #768bb3; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-rev="left"] { transform: translateX(-50px); }
.reveal[data-rev="right"] { transform: translateX(50px); }
.reveal[data-rev="zoom"] { transform: scale(.9); }
.reveal.in[data-rev] { transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .teams { grid-template-columns: repeat(4, 1fr); }
  .committee { grid-template-columns: repeat(3, 1fr); }
  .gallery { columns: 3; }
}
@media (max-width: 1024px) {
  .nav__menu { gap: 2px; }
  .nav__menu > li > a, .nav__drop > button { padding: .6rem .7rem; font-size: .92rem; }
  .nav__logo img { height: 46px; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media .badge { left: 16px; bottom: 16px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .committee { grid-template-columns: repeat(2, 1fr); }
  .teams { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 760px) {
  /* Mobile nav: full-screen overlay */
  .site-header { padding-block: 10px; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 4px; background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
    padding: 96px var(--pad) 40px; transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y: auto; z-index: 105;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu > li > a, .nav__drop > button { color: #fff !important; font-size: 1.3rem; padding: .85rem .4rem; background: none !important; }
  .nav__drop { width: 100%; }
  .nav__drop > button { width: 100%; justify-content: space-between; }
  .nav__submenu { position: static; transform: none; opacity: 1; visibility: visible; background: transparent; border: 0; box-shadow: none; min-width: 0; padding: 0 0 0 14px; display: none; }
  .nav__drop.open-sub .nav__submenu { display: block; }
  .nav__submenu { border-left: 2px solid rgba(79,214,242,.5); margin: 4px 0 4px 6px; }
  .nav__submenu a { color: #cfe0fc !important; font-size: 1.1rem; padding: .6rem .9rem; }
  .nav__cta { margin-top: 18px; }
  .nav__cta .btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem; }

  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .teams { grid-template-columns: repeat(2, 1fr); }
  .committee { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .sponsor-feature .logo-box { width: 100%; }
  .band__bg { background-attachment: scroll !important; }
  .hero__cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__slide { opacity: 1; }
  .hero__slide:nth-child(n+2) { display: none; }
  .reveal { opacity: 1; transform: none; }
}
