/* =========================================================================
   JOLA OLYMPUS — main stylesheet
   Palette:  --navy #0E2A52  --blue #1959C9  --yellow #FFCC29  --cream #F7F6F1
   Display:  Space Grotesk · Body: Inter · Data: JetBrains Mono
   Signature: diagonal "court line" dividers + scoreboard stat bar
   ========================================================================= */

:root {
	--navy: #0E2A52;
	--navy-deep: #081B38;
	--blue: #1959C9;
	--yellow: #FFCC29;
	--yellow-deep: #F0B400;
	--cream: #F7F6F1;
	--white: #FFFFFF;
	--ink: #10182B;
	--ink-soft: #4A5468;
	--line: rgba(14,42,82,.12);
	--radius: 18px;
	--radius-sm: 10px;
	--shadow: 0 20px 45px -20px rgba(14,42,82,.35);
	--shadow-sm: 0 8px 20px -12px rgba(14,42,82,.3);
	--font-display: "Space Grotesk", "Inter", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono: "JetBrains Mono", monospace;
	--container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: fixed; top: -60px; left: 12px; z-index: 999; background: var(--navy); color: var(--white); padding: 12px 18px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-mono); font-size: .74rem; font-weight: 700;
	letter-spacing: .09em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--yellow); display: inline-block; }
.eyebrow-light { color: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 15px 26px; border-radius: 999px;
	font-weight: 700; font-size: .95rem; font-family: var(--font-body);
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
	white-space: nowrap;
}
.btn svg { transition: transform .18s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--navy-deep); box-shadow: 0 12px 28px -12px rgba(255,204,41,.7); }
.btn-yellow:hover { background: var(--yellow-deep); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.55); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-outline-navy { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* =========================================================================
   TOPBAR + HEADER
   ========================================================================= */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.8); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; }
.topbar-location { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: rgba(255,255,255,.75); transition: color .15s; }
.topbar-social a:hover { color: var(--yellow); }

.site-header {
	position: sticky; top: 0; z-index: 90;
	background: rgba(247,246,241,.92); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.site-brand { display: flex; align-items: center; gap: 12px; }
.site-brand img { max-height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); }
.brand-text small { font-size: .72rem; color: var(--ink-soft); letter-spacing: .03em; }

.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
	display: flex; align-items: center; gap: 6px;
	padding: 10px 16px; border-radius: 999px;
	font-weight: 600; font-size: .95rem; color: var(--navy);
	transition: background-color .15s, color .15s;
}
.nav-menu > li > a:hover, .nav-menu > li.current-menu-item > a { background: var(--navy); color: var(--white); }
.nav-menu .caret { transition: transform .18s ease; }
.nav-menu li.has-dropdown:hover .caret,
.nav-menu li.has-dropdown:focus-within .caret { transform: rotate(180deg); }
.nav-cta { background: var(--yellow) !important; color: var(--navy-deep) !important; }

.sub-menu {
	position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
	background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow);
	padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-menu li.has-dropdown:hover .sub-menu,
.nav-menu li.has-dropdown:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ink); font-size: .92rem; font-weight: 500; }
.sub-menu a:hover { background: var(--cream); color: var(--blue); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2.4px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .25s; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
	position: relative; overflow: hidden;
	background: radial-gradient(120% 140% at 15% 0%, var(--blue) 0%, var(--navy) 46%, var(--navy-deep) 100%);
	color: var(--white);
	padding: 84px 0 0;
}
.hero-court { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.hero-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); }
.hero-line-1 { width: 140%; top: 22%; left: -20%; transform: rotate(-8deg); }
.hero-line-2 { width: 160%; bottom: 12%; left: -30%; transform: rotate(6deg); }
.hero-ball {
	position: absolute; top: 8%; right: 6%; width: 190px; height: 190px; border-radius: 50%;
	background:
		radial-gradient(circle at 32% 28%, rgba(255,255,255,.28), transparent 45%),
		repeating-conic-gradient(from 0deg, rgba(255,204,41,.16) 0 30deg, transparent 30deg 60deg);
	border: 1.5px solid rgba(255,204,41,.35);
	animation: spin 34s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-bottom: 70px; position: relative; z-index: 1; }
.hero-copy h1 { color: var(--white); margin: 16px 0 18px; }
.hero-subtitle { font-size: 1.08rem; color: rgba(255,255,255,.82); max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-photo-frame {
	aspect-ratio: 4/3.1; border-radius: var(--radius); overflow: hidden;
	border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow);
	transform: rotate(1.4deg);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
	position: absolute; left: -18px; bottom: -18px; background: var(--yellow); color: var(--navy-deep);
	border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow); text-align: center; line-height: 1.1;
}
.hero-badge strong { display: block; font-family: var(--font-mono); font-size: 1.5rem; }
.hero-badge span { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }

.ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; width: 100%; height: 100%; color: rgba(255,255,255,.55); text-align: center; padding: 20px; font-size: .8rem; background: rgba(255,255,255,.06); }
.about-photo-frame .ph, .card-media .ph, .gallery-item .ph { color: var(--ink-soft); background: linear-gradient(135deg, #EEF1F8, #E4E9F5); }

/* =========================================================================
   SCOREBOARD (stat bar) — signature element
   ========================================================================= */
.scoreboard { background: var(--navy-deep); position: relative; margin-top: -1px; }
.scoreboard::before {
	content: ""; position: absolute; inset: 0; top: -34px; height: 34px;
	background: var(--navy-deep); clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.scoreboard-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
	text-align: center; padding: 30px 14px; border-right: 1px solid rgba(255,255,255,.1);
}
.stat:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-mono); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--yellow); }
.stat-label { display: block; margin-top: 6px; font-size: .8rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .05em; }

/* =========================================================================
   ABOUT + CARDS
   ========================================================================= */
.about-section { padding: 88px 0 40px; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.about-photo-frame { aspect-ratio: 4/3.4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { margin: 14px 0 16px; }
.about-copy p { color: var(--ink-soft); font-size: 1.03rem; max-width: 56ch; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
	background: var(--white); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
	display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-number {
	position: absolute; top: 14px; left: 14px; font-family: var(--font-mono); font-weight: 700;
	background: var(--yellow); color: var(--navy-deep); padding: 4px 10px; border-radius: 999px; font-size: .78rem;
}
.card-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; color: var(--blue); font-size: .92rem; }
.card-link svg { transition: transform .18s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery-section { padding: 40px 0 90px; }
.section-head { margin-bottom: 30px; }
.section-head h2 { margin-top: 12px; }
.section-head-center { text-align: center; }
.section-head-center .eyebrow { justify-content: center; }
.section-head-center p { color: var(--ink-soft); max-width: 56ch; margin: 14px auto 0; }

.gallery-grid {
	max-width: var(--container); margin: 0 auto; padding: 0 24px;
	display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; gap: 14px;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-tall { grid-row: span 2; grid-column: span 2; }
.gallery-wide { grid-row: span 1; grid-column: span 2; }
.gallery-square { grid-row: span 1; grid-column: span 1; }

.pull-quote {
	margin-top: 54px; text-align: center; max-width: 760px; margin-inline: auto;
	font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.7rem); color: var(--navy); font-weight: 600; line-height: 1.4;
	position: relative; padding-top: 10px;
}
.quote-mark { display: block; font-size: 3.4rem; color: var(--yellow); line-height: 1; font-family: Georgia, serif; }

/* =========================================================================
   SPONSORS
   ========================================================================= */
.sponsors-strip { background: var(--white); padding: 90px 0; border-top: 1px solid var(--line); }
.main-sponsor { text-align: center; margin: 40px auto 34px; }
.main-sponsor-label { display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.main-sponsor img { max-height: 88px; width: auto; margin: 0 auto; }
.sponsor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sponsor-logo {
	background: var(--cream); border-radius: var(--radius-sm); padding: 22px;
	display: flex; align-items: center; justify-content: center; min-height: 96px;
	filter: grayscale(1); opacity: .75; transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.sponsor-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }
.sponsor-logo img { max-height: 56px; width: auto; }
.ph-sponsor { color: var(--ink-soft); font-family: var(--font-mono); font-weight: 700; }
.sponsor-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 18px; }
.sponsor-cta { text-align: center; margin-top: 50px; padding-top: 44px; border-top: 1px solid var(--line); }
.sponsor-cta h3 { margin-bottom: 18px; }

/* =========================================================================
   NEWSLETTER BAND
   ========================================================================= */
.newsletter-band { background: linear-gradient(100deg, var(--yellow) 0%, #FFDE73 100%); position: relative; }
.newsletter-band::before { content: ""; position: absolute; inset: 0; top: -1px; height: 40px; background: var(--yellow); clip-path: polygon(0 0, 100% 100%, 0 100%); transform: translateY(-100%); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 24px; flex-wrap: wrap; }
.newsletter-copy .eyebrow { color: var(--navy-deep); }
.newsletter-copy .eyebrow::before { background: var(--navy); }
.newsletter-copy h2 { margin: 10px 0 8px; max-width: 20ch; }
.newsletter-copy p { color: var(--navy-deep); opacity: .8; max-width: 46ch; }
.newsletter-band .btn-yellow { background: var(--navy); color: var(--white); box-shadow: 0 12px 28px -12px rgba(14,42,82,.5); }
.newsletter-band .btn-yellow:hover { background: var(--navy-deep); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.footer-about p { font-size: .92rem; margin: 16px 0 20px; color: rgba(255,255,255,.68); max-width: 32ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; transition: background-color .15s, border-color .15s; }
.footer-social a:hover { background: var(--yellow); color: var(--navy-deep); border-color: var(--yellow); }
.footer-widget-title { color: var(--white); font-size: .95rem; margin-bottom: 18px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.68); transition: color .15s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact ul { margin-bottom: 20px; }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 8px; }

.back-to-top {
	position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
	background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity .2s, transform .2s, visibility .2s, background-color .2s; z-index: 80;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }

/* =========================================================================
   GENERIC PAGE HEADER / BODY / CONTENT TYPOGRAPHY
   ========================================================================= */
.page-header {
	background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
	color: var(--white); padding: 130px 0 56px; position: relative; overflow: hidden;
}
.page-header::after {
	content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
	border: 1.5px solid rgba(255,204,41,.3); top: -110px; right: -60px;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb svg { opacity: .6; }
.page-header h1 { color: var(--white); position: relative; z-index: 1; }
.page-lead { margin-top: 16px; color: rgba(255,255,255,.78); max-width: 62ch; font-size: 1.03rem; position: relative; z-index: 1; }

.page-body { padding: 64px 0; }
.page-body-inner.has-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.page-featured-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow-sm); }

.prose { font-size: 1.03rem; color: var(--ink-soft); max-width: 76ch; }
.prose-narrow { margin-bottom: 44px; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.4em; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .4em; }
.prose img { border-radius: var(--radius-sm); }
.prose blockquote { border-left: 3px solid var(--yellow); padding: 4px 0 4px 22px; font-style: italic; color: var(--navy); font-size: 1.1rem; }
.prose table { margin: 1.4em 0; font-size: .95rem; box-shadow: var(--shadow-sm); border-radius: var(--radius-sm); overflow: hidden; }
.prose table th { background: var(--navy); color: var(--white); text-align: left; padding: 14px 16px; font-weight: 600; }
.prose table td { padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--white); }
.prose table tr:last-child td { border-bottom: none; }
.prose table tr:nth-child(even) td { background: var(--cream); }
.prose strong { color: var(--navy); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2em 0; }

.page-sidebar .widget { background: var(--white); border-radius: var(--radius-sm); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.widget-title { font-size: 1rem; margin-bottom: 14px; }

/* =========================================================================
   TEAMS TABLE
   ========================================================================= */
.teams-table-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin: 20px 0 50px; }
.teams-table th { background: var(--navy); color: var(--white); text-align: left; padding: 16px 22px; font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.teams-table td { padding: 15px 22px; background: var(--white); border-bottom: 1px solid var(--line); font-size: .96rem; }
.teams-table tr:last-child td { border-bottom: none; }
.teams-table tr:nth-child(even) td { background: var(--cream); }
.teams-table a { color: var(--blue); font-weight: 600; }
.teams-table a:hover { text-decoration: underline; }

.inline-cta {
	display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
	background: linear-gradient(120deg, var(--navy), var(--blue)); color: var(--white);
	border-radius: var(--radius); padding: 34px 38px; margin-top: 40px;
}
.inline-cta h3 { color: var(--white); margin-bottom: 6px; }
.inline-cta p { color: rgba(255,255,255,.8); }

/* =========================================================================
   TRAININGSTIJDEN
   ========================================================================= */
.schedule-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.schedule-day { background: var(--white); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.schedule-day-title {
	font-size: 1.05rem; color: var(--navy); padding-bottom: 14px; margin-bottom: 14px;
	border-bottom: 2px solid var(--yellow); display: flex; align-items: center; gap: 8px;
}
.schedule-list li { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.schedule-list li:last-child { border-bottom: none; }
.schedule-time { font-family: var(--font-mono); color: var(--blue); font-weight: 700; white-space: nowrap; }
.schedule-team { text-align: right; color: var(--ink-soft); }
.schedule-team em { display: block; font-style: normal; font-size: .78rem; color: var(--ink-soft); opacity: .75; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--white); border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-info-card svg { color: var(--blue); margin-bottom: 10px; }
.contact-info-card h3 { font-size: .98rem; margin-bottom: 6px; }
.contact-info-card p { color: var(--ink-soft); font-size: .92rem; }
.contact-info-card a { color: var(--blue); font-weight: 600; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 18px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-size: .86rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-row label span { color: var(--blue); }
.form-row input, .form-row textarea {
	width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
	background: var(--cream); transition: border-color .15s, background-color .15s;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); background: var(--white); outline: none; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-notice { padding: 16px 18px; border-radius: 10px; font-size: .92rem; margin-bottom: 22px; }
.form-success { background: #E7F6EC; color: #1B7A3B; border: 1px solid #BEE7C9; }
.form-error { background: #FDEBEA; color: #B3261E; border: 1px solid #F5C5C2; }

/* =========================================================================
   POST LIST / SINGLE
   ========================================================================= */
.post-list { display: flex; flex-direction: column; gap: 30px; }
.post-list-item { display: grid; grid-template-columns: 220px 1fr; gap: 26px; background: var(--white); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); align-items: center; }
.post-list-thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.post-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-list-date { font-family: var(--font-mono); font-size: .78rem; color: var(--blue); text-transform: uppercase; }
.post-list-item h2 { font-size: 1.25rem; margin: 6px 0 8px; }
.post-list-item p { color: var(--ink-soft); font-size: .92rem; }
.post-meta { font-size: .85rem !important; }
.pagination { margin-top: 30px; display: flex; gap: 10px; }

/* =========================================================================
   404
   ========================================================================= */
.error-404 { text-align: center; padding: 140px 0 120px; }
.error-ball { display: inline-block; margin-bottom: 26px; animation: bounce 2.4s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.error-404 h1 { margin-bottom: 14px; }
.error-404 p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 30px; }
.error-404 .hero-actions { justify-content: center; }

/* =========================================================================
   SCROLL REVEAL (JS toggles .in-view)
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
	.hero-inner, .about-grid { grid-template-columns: 1fr; }
	.hero-media { order: -1; }
	.cards-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.schedule-days { grid-template-columns: 1fr 1fr; }
	.sponsor-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.topbar-location span, .topbar { font-size: .76rem; }
	.main-navigation {
		position: fixed; inset: 0; top: 0; background: var(--navy-deep);
		display: flex; align-items: center; justify-content: center;
		transform: translateX(100%); transition: transform .3s ease; z-index: 100;
	}
	.main-navigation.is-open { transform: translateX(0); }
	.nav-menu { flex-direction: column; align-items: stretch; width: 84%; max-width: 360px; gap: 6px; }
	.nav-menu > li > a { color: var(--white); justify-content: space-between; padding: 14px 18px; font-size: 1.05rem; }
	.nav-menu > li > a:hover { background: rgba(255,255,255,.08); }
	.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.04); margin: 4px 0 8px; display: none; }
	.nav-menu li.has-dropdown.is-open .sub-menu { display: block; }
	.sub-menu a { color: rgba(255,255,255,.75); }
	.menu-toggle { display: flex; }
	.hero { padding-top: 60px; }
	.scoreboard-inner { grid-template-columns: 1fr 1fr; }
	.stat:nth-child(2) { border-right: none; }
	.cards-grid { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
	.gallery-tall, .gallery-wide { grid-column: span 2; grid-row: span 1; }
	.footer-grid { grid-template-columns: 1fr; }
	.schedule-days { grid-template-columns: 1fr; }
	.form-row-split { grid-template-columns: 1fr; }
	.post-list-item { grid-template-columns: 1fr; }
	.sponsor-grid { grid-template-columns: repeat(2, 1fr); }
	.page-header { padding-top: 110px; }
}

@media (max-width: 520px) {
	.hero-badge { left: 10px; bottom: -14px; padding: 10px 14px; }
	.newsletter-inner { flex-direction: column; align-items: flex-start; }
	.footer-bottom-inner { flex-direction: column; text-align: center; }
	.inline-cta { flex-direction: column; align-items: flex-start; }
}
