/* Simon Grayson Football Academy
   MiddsDigital house style, Variant A (Elite / Performance) */

:root {
  --accent: #01e3c2;
  --accent-deep: #00b89d;
  --ink: #101010;
  --ink-2: #151515;
  --ink-3: #1c1c1c;
  --ink-4: #262626;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.46);
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.16);

  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 28px;
  --pill: 999px;

  --gutter: 20px;
  --max: 1320px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --gutter: 32px; --header-h: 84px; }
}
@media (min-width: 1200px) {
  :root { --gutter: 48px; }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

::selection { background: var(--accent); color: var(--ink); }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--ink);
  padding: 10px 18px; border-radius: var(--pill); font-weight: 600;
}
.skip:focus { top: 16px; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  max-width: 18ch;
}

h3 { font-size: 24px; line-height: 1.15; }

em { font-style: normal; color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow .i-star { width: 13px; height: 13px; fill: var(--accent); flex: none; }

.lead {
  margin-top: 22px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 34em;
}

.prose { margin-top: 22px; }
.prose p { color: var(--muted); max-width: 36em; }
.prose p + p { margin-top: 14px; }

/* ---------- Icons ---------- */

.i-arrow {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.35s var(--ease);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--pill);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover .i-arrow { transform: translateX(4px); }
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--white); box-shadow: 0 10px 30px -10px rgba(1, 227, 194, 0.55); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-4); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.5); color: var(--white); background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--white); background: var(--white); color: var(--ink); }

.btn-sm { min-height: 44px; padding: 0 22px; font-size: 15px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 30px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid rgba(1, 227, 194, 0.35);
  padding-bottom: 4px;
  transition: border-color 0.3s var(--ease);
}
.text-link:hover { border-color: var(--accent); }
.text-link:hover .i-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(16, 16, 16, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 42px; height: auto; }
.brand-word {
  display: flex; flex-direction: column;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand-word span:first-child { font-size: 16px; letter-spacing: 0.02em; }
.brand-word span:last-child { font-size: 10px; color: var(--accent); letter-spacing: 0.2em; }

.nav { display: none; }
.header-cta { display: none; }

.burger {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-content: center; gap: 6px;
}
.burger span {
  display: block; width: 18px; height: 1.5px; background: var(--white);
  transition: transform 0.35s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: rgba(16, 16, 16, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 28px var(--gutter) calc(32px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.mobile-nav.is-open { opacity: 1; }
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  font-family: var(--display);
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease);
}
.mobile-nav nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 32px; width: 100%; }

@media (min-width: 1200px) {
  .burger, .mobile-nav { display: none !important; }
  .brand img { width: 48px; }
  .nav {
    display: flex;
    gap: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav a {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--pill);
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
  }
  .nav a:hover, .nav a.is-active { color: var(--white); background: rgba(255, 255, 255, 0.08); }
  .nav a.is-active { color: var(--accent); }
  .header-cta { display: inline-flex; }
  .header-inner { position: relative; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 40px) 0 88px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  transform: scale(1.06);
  animation: heroZoom 2.4s var(--ease) forwards;
}
@media (max-width: 767px) { .hero-bg { object-position: 50% 30%; } }
@media (max-width: 767px) {
  .hero { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .hero-sub { margin-top: 16px; }
  .hero .btn-row { flex-wrap: nowrap; gap: 10px; margin-top: 22px; }
  .hero .btn-row .btn { flex: 1 1 0; min-width: 0; min-height: 46px; padding: 0 14px; font-size: 14px; gap: 6px; }
  .hero .btn-row .i-arrow { width: 15px; height: 15px; }
}
@media (max-width: 359px) {
  .hero .btn-row .btn { font-size: 13px; padding: 0 10px; }
  .hero .btn-row .i-arrow { display: none; }
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,16,16,0.72) 0%, rgba(16,16,16,0.15) 26%, rgba(16,16,16,0.35) 52%, rgba(16,16,16,0.94) 88%, #101010 100%),
    linear-gradient(90deg, rgba(16,16,16,0.7) 0%, rgba(16,16,16,0.1) 60%);
}

.hero-title {
  font-size: clamp(40px, min(5.6vw, 11vh), 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  letter-spacing: 0.005em;
}
.hero-title .line { display: block; }

.hero-sub {
  margin-top: 24px;
  max-width: 30em;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.hero .eyebrow { color: var(--white); }
.hero .eyebrow .i-star { fill: var(--accent); }


.scroll-cue {
  position: absolute; left: 50%; bottom: 24px;
  width: 26px; height: 42px;
  margin-left: -13px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--pill);
  display: none;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px;
  width: 4px; height: 8px; margin-left: -2px;
  background: var(--accent); border-radius: 4px;
  animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

@media (min-width: 1080px) {
  .hero { padding-bottom: 110px; }
  .scroll-cue { display: block; }
}

/* ---------- Sections ---------- */

.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--ink-2); }
@media (min-width: 900px) { .section { padding: 140px 0; } }

.section-head { margin-bottom: 52px; }
@media (min-width: 900px) { .section-head { margin-bottom: 72px; } }

/* Media containers: aspect-ratio with a scoped fallback only */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink-3);
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.media-43 { aspect-ratio: 4 / 3; }
.media-45 { aspect-ratio: 4 / 5; }
@supports not (aspect-ratio: 1 / 1) {
  .media-43 { min-height: 320px; }
  .media-45 { min-height: 380px; }
  .media img { position: absolute; inset: 0; }
}

/* ---------- Split ---------- */

.split { display: grid; gap: 48px; align-items: center; }
.split-reverse .split-media { order: 2; }
.split-media figcaption { margin-top: 14px; font-size: 14px; color: var(--faint); }
.split-media:hover .media img { transform: scale(1.08); }

@media (min-width: 960px) {
  .split { grid-template-columns: 1.05fr 1fr; gap: 88px; }
  .split-reverse { grid-template-columns: 1fr 1.05fr; }
}

.partner-list { margin-top: 36px; border-top: 1px solid var(--line); }
.partner-list li {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.pl-name { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.pl-desc { color: var(--muted); font-size: 15px; }
@media (min-width: 600px) {
  .partner-list li { grid-template-columns: 170px 1fr; gap: 24px; align-items: baseline; }
}

/* ---------- Features ---------- */

.features { display: grid; gap: 16px; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .features { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.feature {
  padding: 32px 28px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.feature:hover { border-color: rgba(1, 227, 194, 0.5); transform: translateY(-4px); }
.feature-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(1, 227, 194, 0.1);
  border: 1px solid rgba(1, 227, 194, 0.25);
  margin-bottom: 44px;
}
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 22px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- Development plan mockup ---------- */

.idp {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(1, 227, 194, 0.14), rgba(1, 227, 194, 0) 60%),
    var(--ink-3);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
  color: var(--white);
}
@media (min-width: 700px) { .idp { padding: 40px; } }
@media (min-width: 520px) { .idp-chip { margin-left: auto; } }

.idp-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 24px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.idp-head img { width: 40px; }
.idp-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.idp-title { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; margin-top: 4px; }
.idp-chip {
  font-size: 12px; font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--pill);
  background: rgba(1, 227, 194, 0.12);
  color: var(--accent);
}
.idp-row { padding: 22px 0; border-bottom: 1px solid var(--line); }
.idp-label { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--display); font-size: 19px; font-weight: 600; line-height: 1.1; }
.idp-val { color: var(--accent); }
.idp-val::after { content: "%"; font-size: 0.7em; margin-left: 1px; }
.idp-row p { font-size: 14px; color: var(--muted); margin: 6px 0 14px; }
.idp-bar { height: 6px; border-radius: var(--pill); background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.idp-bar span {
  display: block; height: 100%; width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  transition: width 1.4s var(--ease) 0.3s;
}
.is-visible .idp-bar span { width: var(--w); }
.idp-foot { display: flex; flex-wrap: wrap; gap: 8px 22px; padding-top: 22px; font-size: 13px; color: var(--faint); }
.idp-foot span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 8px; vertical-align: middle; }

/* ---------- Statement ---------- */

.statement {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 120% at 50% 100%, rgba(1, 227, 194, 0.1), rgba(1, 227, 194, 0) 70%),
    var(--ink);
}
@media (min-width: 900px) { .statement { padding: 160px 0; } }
.statement-text {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 72px;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .stats { margin-bottom: 110px; } }
.stat {
  display: flex; flex-direction: column-reverse; justify-content: flex-end;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .stat { padding: 40px 32px; } }
.stat dd { font-family: var(--display); font-size: clamp(38px, 4.2vw, 60px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--white); }
.stat dd span { color: var(--accent); }
.stat dt { margin-top: 10px; font-size: 14px; line-height: 1.4; color: var(--muted); max-width: 18em; }

.stars-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 960px) { .stars-grid { grid-template-columns: 0.9fr 1.1fr; gap: 96px; } }

.timeline-head {
  font-family: var(--body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}
.timeline ol + .timeline-head { margin-top: 40px; }
.timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.timeline li::before {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 16px; height: 16px; margin-top: -8px;
  background: var(--accent);
  clip-path: polygon(50% 0, 62% 35%, 100% 38%, 70% 60%, 80% 100%, 50% 76%, 20% 100%, 30% 60%, 0 38%, 38% 35%);
}
.t-year { grid-row: span 2; font-family: var(--display); font-size: 22px; font-weight: 600; line-height: 1.1; color: var(--accent); padding-top: 2px; }
.t-club img { width: 28px; height: 28px; object-fit: contain; flex: none; }
.t-club { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; padding-right: 30px; }
.t-what { font-size: 14px; color: var(--muted); padding-right: 30px; }
.timeline-note { margin-top: 32px; color: var(--muted); max-width: 34em; }

/* ---------- Team ---------- */

.team { display: grid; gap: 20px; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .team { grid-template-columns: repeat(4, 1fr); } }

.coach {
  border-radius: var(--r-lg);
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease);
}
.coach:hover { border-color: rgba(1, 227, 194, 0.45); }
.coach .media { border-radius: 0; }
.coach:hover .media img { transform: scale(1.08); }
.coach-body { padding: 26px 24px 30px; }
.coach-role {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.coach h3 { font-size: 24px; margin: 8px 0 12px; }
.coach-body p:not(.coach-role) { font-size: 15px; color: var(--muted); }
.coach-body p + p:not(.coach-role) { margin-top: 10px; }

/* ---------- Timetable ---------- */

.timetable {
  border-radius: var(--r-lg);
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.tt-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.tt-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 18px 16px 16px;
  text-align: left;
  border-bottom: 2px solid transparent;
  color: var(--faint);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.tt-tab + .tt-tab { border-left: 1px solid var(--line); }
.tt-tab span { font-family: var(--display); font-size: clamp(17px, 1.8vw, 22px); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.tt-tab small { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.tt-tab:hover { color: var(--white); }
.tt-tab[aria-selected="true"] { color: var(--white); border-bottom-color: var(--accent); background: rgba(1, 227, 194, 0.06); }
.tt-tab[aria-selected="true"] small { color: var(--accent); }
@media (min-width: 700px) { .tt-tab { padding: 24px 32px 22px; } }

/* Without JS every day shows with its heading; JS turns the tabs on */
.tt-tabs { display: none; }
.has-tabs .tt-tabs { display: grid; }
.has-tabs .tt-day { display: none; }
.tt-panel[hidden] { display: none; }
.tt-day { font-size: 22px; padding: 24px 20px 0; }
@media (min-width: 700px) { .tt-day { padding: 28px 32px 0; } }

.sessions { padding: 8px 20px; }
@media (min-width: 700px) { .sessions { padding: 8px 32px; } }
.session {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.session:last-child { border-bottom: 0; }
.session-time { grid-row: span 2; align-self: start; display: flex; flex-direction: column; line-height: 1; }
.session-time span { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--accent); }
.session-time small { font-size: 12px; color: var(--faint); margin-top: 4px; }
.session-info h4 { font-family: var(--display); font-weight: 600; font-size: 17px; line-height: 1.25; letter-spacing: -0.01em; margin: 0; }
.session-info p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.session-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--pill);
  border: 1px solid var(--line-2); color: var(--muted);
}
.chip-gk { border-color: rgba(1, 227, 194, 0.45); color: var(--accent); }
.session-book {
  justify-self: start;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-size: 14px; font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--pill);
  border: 1px solid var(--line-2);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.session-book .i-arrow { width: 15px; height: 15px; }
.session-book:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.session-book:hover .i-arrow { transform: translateX(3px); }
@media (max-width: 799px) {
  /* Time on the left; name above; tag pills and Book pill share one row */
  .session { grid-template-columns: 76px auto 1fr; column-gap: 8px; }
  .session-time { grid-column: 1; grid-row: 1 / span 2; padding-right: 8px; }
  .session-info { grid-column: 2 / -1; grid-row: 1; }
  .session-chips { grid-column: 2; grid-row: 2; }
  .session-book {
    grid-column: 3; grid-row: 2;
    align-self: center;
    gap: 4px;
    font-family: var(--body);
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    line-height: 1.6;
    padding: 5px 12px;
    border-color: rgba(1, 227, 194, 0.45);
    color: var(--accent);
  }
  .session-book .i-arrow { width: 12px; height: 12px; }
}
@media (min-width: 800px) {
  .session { grid-template-columns: 110px 1fr auto auto; gap: 24px; padding: 22px 0; }
  .session-time { grid-row: auto; align-self: center; }
  .session-time span { font-size: 22px; }
  .session-info h4 { font-size: 18px; }
  .session-book { grid-column: auto; }
}

.tt-note { margin-top: 16px; font-size: 14px; color: var(--faint); }

/* ---------- Venue ---------- */

.address {
  font-style: normal;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  line-height: 1.6;
}
.address strong { display: block; color: var(--white); font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 4px; }

.map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--ink-3);
}
@supports not (aspect-ratio: 1 / 1) { .map { min-height: 360px; } }
.map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.95);
}

/* ---------- Grassroots (light) ---------- */

.section-light { background: var(--white); color: var(--ink); }
.section-light .eyebrow { color: var(--ink); }
.section-light .eyebrow .i-star { fill: var(--accent-deep); }
.section-light em { color: var(--ink); background: linear-gradient(transparent 62%, var(--accent) 62%, var(--accent) 90%, transparent 90%); }
.section-light .lead { color: rgba(16, 16, 16, 0.7); }
.section-light .prose p { color: rgba(16, 16, 16, 0.7); }
.section-light .idp { box-shadow: 0 40px 80px -40px rgba(16, 16, 16, 0.45); }

.section-light .coach { background: #f3f4f3; border-color: rgba(16, 16, 16, 0.06); }
.section-light .coach:hover { border-color: rgba(0, 184, 157, 0.5); }
.section-light .coach .media { background: #e6e8e7; }
.section-light .coach-role { color: var(--accent-deep); }
.section-light .coach-body p:not(.coach-role) { color: rgba(16, 16, 16, 0.7); }

.grass-grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .grass-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.grass-card {
  padding: 32px 28px 36px;
  border-radius: var(--r-md);
  background: #f3f4f3;
  border: 1px solid rgba(16, 16, 16, 0.06);
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}
.grass-card:hover { transform: translateY(-4px); background: #ecf8f5; }
.grass-num { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--accent-deep); }
.grass-card h3 { font-size: 22px; margin: 34px 0 10px; }
.grass-card p { color: rgba(16, 16, 16, 0.7); font-size: 15px; }
.grass-foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(16, 16, 16, 0.1);
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.grass-foot p { font-family: var(--display); font-size: clamp(19px, 1.8vw, 24px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; max-width: 26ch; }

/* ---------- Partners ---------- */

.partners { padding: 64px 0; border-bottom: 1px solid var(--line); }
.partners-inner { display: grid; gap: 28px; justify-items: center; text-align: center; }
.partners .eyebrow { margin: 0; color: var(--faint); }
.partner-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 28px 56px;
}
.partner-logos img { height: 52px; width: auto; opacity: 0.8; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.partner-logos li:last-child img { height: 34px; }
.partner-logos img:hover { opacity: 1; transform: translateY(-2px); }
@media (min-width: 900px) { .partner-logos { gap: 40px 88px; } .partner-logos img { height: 62px; } .partner-logos li:last-child img { height: 40px; } }

/* ---------- Coming soon ---------- */

.soon {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 64px) 0 96px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.soon-glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50% 45% at 50% 42%, rgba(1, 227, 194, 0.16), rgba(1, 227, 194, 0) 70%);
}
.soon-inner { display: flex; flex-direction: column; align-items: center; }
.soon-badge { width: 120px; margin-bottom: 36px; }
@media (min-width: 768px) { .soon-badge { width: 150px; } }
.soon-title { font-size: clamp(40px, 5.6vw, 84px); line-height: 1; letter-spacing: -0.035em; }
.soon .lead { margin-left: auto; margin-right: auto; }
.soon .btn-row { justify-content: center; }

/* ---------- Legal pages ---------- */

.legal { padding: calc(var(--header-h) + 72px) 0 110px; }
.legal-inner { max-width: 760px; }
.legal h1 { font-size: clamp(36px, 4.4vw, 60px); letter-spacing: -0.035em; }
.legal-updated { margin-top: 16px; font-size: 14px; color: var(--faint); }
.legal h2 { font-size: clamp(22px, 2vw, 26px); max-width: none; margin: 48px 0 14px; }
.legal p, .legal li { color: var(--muted); }
.legal p + p { margin-top: 12px; }
.legal ul { margin: 12px 0 0; display: grid; gap: 8px; }
.legal li { position: relative; padding-left: 20px; }
.legal li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal a:not(.btn) { color: var(--accent); border-bottom: 1px solid rgba(1, 227, 194, 0.35); }
.legal a:not(.btn):hover { border-color: var(--accent); }

/* ---------- Contact ---------- */

.contact-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .contact-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.contact-card {
  display: flex; flex-direction: column;
  padding: 28px;
  border-radius: var(--r-md);
  background: var(--ink-3);
  border: 1px solid var(--line);
}
.contact-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(1, 227, 194, 0.1);
  border: 1px solid rgba(1, 227, 194, 0.25);
  margin-bottom: 32px;
}
.contact-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.contact-card h3 { font-size: 20px; margin: 10px 0 8px; }
.contact-card p, .contact-card address { font-style: normal; font-size: 15px; color: var(--muted); }
.contact-email { color: var(--white); font-weight: 600; word-break: break-all; border-bottom: 1px solid rgba(1, 227, 194, 0.45); transition: color 0.25s var(--ease); }
.contact-email:hover { color: var(--accent); }
.contact-card p + p { margin-top: 8px; }
.contact-card .text-link { margin-top: auto; padding-top: 20px; align-self: flex-start; border-bottom: 0; }
.contact-card .socials { margin-top: 14px; }
.contact-cta {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  align-items: center; justify-content: space-between;
  padding: 32px 28px;
  border-radius: var(--r-md);
  background: var(--accent);
  color: var(--ink);
}
@media (min-width: 900px) { .contact-cta { padding: 36px 48px; } }
.contact-cta p { font-family: var(--display); font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; max-width: 30ch; }

/* ---------- Footer ---------- */

.site-footer { background: #0b0b0b; padding: 80px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 44px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 56px; } }
.footer-brand > p { margin-top: 18px; color: var(--muted); font-size: 15px; }
.footer-col h3 {
  font-family: var(--body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col li { overflow-wrap: anywhere; padding: 5px 0; color: var(--muted); font-size: 15px; }
.footer-col a { transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-col .btn { margin-top: 18px; }
.footer-col .btn-primary, .footer-col .btn-primary:hover { color: var(--ink); }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); }
.socials a:hover svg { stroke: var(--ink); }
.socials a:hover svg .fill { fill: var(--ink); }
.socials svg { width: 18px; height: 18px; fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.socials svg .fill { fill: var(--white); }

.footer-bottom {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 32px; justify-content: space-between;
  font-size: 13px; color: var(--faint);
}
.legal-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom a { color: var(--white); border-bottom: 1px solid var(--line-2); transition: border-color 0.25s var(--ease); }
.footer-bottom a:hover { border-color: var(--accent); }
.footer-bottom .legal-links a { color: inherit; border-bottom: 0; transition: color 0.25s var(--ease); }
.footer-bottom .legal-links a:hover { color: var(--white); }

/* ---------- Reveal on scroll ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 767px) {
  .js .hero .reveal { opacity: 1; transform: none; transition: none; }
}

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