/* ===== Soccer Hub Coaching — shared styles ===== */

:root {
  /* Core palette */
  --ink: #0d0714;
  --ink-soft: rgba(13, 7, 20, 0.62);
  --ink-faint: rgba(13, 7, 20, 0.38);
  --white: #ffffff;
  --surface: #f7f5fb;
  --surface-2: #efe9f7;
  --line: rgba(13, 7, 20, 0.08);
  --line-strong: rgba(13, 7, 20, 0.14);

  /* Brand — single purple everywhere */
  --brand: #5818a4;
  --brand-mid: #5818a4;
  --brand-deep: #5818a4;
  --brand-tint: rgba(88, 24, 164, 0.07);

  --gold-start: #f2e17f;
  --gold-end: #b7873d;
  --gold-gradient: linear-gradient(115deg, var(--gold-start), var(--gold-end));
  --brand-gradient: linear-gradient(160deg, #6b26bb 0%, #5818a4 45%, #4a1389 100%);

  --max-width: 1240px;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter Tight", "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold-start); color: var(--brand-deep); }

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

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

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.on-dark { color: var(--white); }
.on-dark p { color: rgba(255, 255, 255, 0.72); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold-gradient);
  color: var(--brand-deep);
  box-shadow: 0 10px 30px -8px rgba(183, 135, 61, 0.55);
}
.btn-gold:hover { box-shadow: 0 16px 36px -8px rgba(183, 135, 61, 0.65); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(13, 7, 20, 0.4);
}
.btn-dark:hover { background: var(--brand-mid); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--ink); background: var(--surface); }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255,255,255,0.6); }

.btn-sm { padding: 11px 22px; font-size: 13px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(88, 24, 164, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }

/* ---- Centres dropdown ---- */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease);
  opacity: 0.7;
}

.has-dropdown:hover > a::after { transform: rotate(225deg) translateY(1px); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu-panel {
  position: relative;
  min-width: 340px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 56px -16px rgba(13, 7, 20, 0.28);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  transform: translateY(6px);
  transition: transform 0.28s var(--ease);
}

.has-dropdown:hover .dropdown-menu-panel,
.has-dropdown:focus-within .dropdown-menu-panel {
  transform: translateY(0);
}

.dropdown-menu-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: background 0.25s var(--ease);
}

.dropdown-item:hover { background: var(--surface); }

.dropdown-item-name {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.dropdown-item-region {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-faint);
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .dropdown-menu { display: none; }
}

.centre-pill {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-start);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 4px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--brand-gradient);
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 85% 8%, rgba(242, 225, 127, 0.22) 0%, rgba(242, 225, 127, 0) 60%),
    radial-gradient(45% 45% at 10% 95%, rgba(183, 135, 61, 0.18) 0%, rgba(183, 135, 61, 0) 65%);
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-content { max-width: 780px; padding: 140px 0 100px; }

/* ---- Split hero (home page) ---- */
.hero-split { min-height: 0; }

.hero-split-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 120px 0;
}

.hero-split .hero-content {
  max-width: 540px;
  padding: 0;
  flex: 1 1 460px;
}

.hero-photo {
  flex: 0 0 auto;
  width: min(380px, 34vw);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-split-inner { flex-direction: column-reverse; padding: 64px 0; gap: 40px; align-items: center; }
  .hero-photo { width: min(320px, 70vw); }
  .hero-split .hero-content { max-width: 100%; }
  .hero-split .hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-split .hero-content .lead { max-width: 480px; }
  .hero-split .hero-ctas { justify-content: center; }
  .hero-split .hero-social { align-self: center; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-start);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(242, 225, 127, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-gradient);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badges .hero-eyebrow { margin-bottom: 0; }

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

/* ---- Hero social link ---- */
.hero-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.3s var(--ease);
}

.hero-social:hover { transform: translateX(4px); }

.hero-social-icon {
  display: flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.hero-social-icon svg { width: 100%; height: 100%; }

.hero-social-text {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.hero p.lead {
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Sections ---- */
section { padding: 128px 0; }

.section-alt { background: var(--surface); }

.section-dark {
  background: var(--brand-gradient);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 90% 0%, rgba(242, 225, 127, 0.14) 0%, rgba(242,225,127,0) 60%);
  pointer-events: none;
}

.section-dark .wrap { position: relative; z-index: 1; }

.section-head { max-width: 640px; margin-bottom: 64px; }

.section-head .eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-head .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.on-dark .section-head .eyebrow { color: var(--gold-start); }

.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }

.section-head p { font-size: 18px; }

/* ---- Grid / cards ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(13, 7, 20, 0.16);
  border-color: var(--line-strong);
}

.card-body { padding: 32px; }

.card img { height: 240px; width: 100%; object-fit: cover; }

.card h3 { font-size: 20px; }

.card p { font-size: 15px; }

.card-feature {
  background: var(--brand-gradient);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px;
  position: relative;
}

.card-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(242, 225, 127, 0.16) 0%, rgba(242, 225, 127, 0) 65%);
  pointer-events: none;
}

.card-feature h3,
.card-feature p { position: relative; }

.card-feature h3 { color: var(--white); }
.card-feature p { color: rgba(255, 255, 255, 0.72); }

.card-feature-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-feature-icon svg { width: 24px; height: 24px; }

.programme-meta {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px !important;
}

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.pillar { padding-top: 24px; position: relative; }

.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
}

.pillar h3 { font-size: 19px; }
.pillar p { font-size: 15px; }

.on-dark .pillar h3 { color: var(--white); }
.on-dark .pillar p { color: rgba(255,255,255,0.68); }

/* ---- Stat callouts ---- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 1100px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  background: var(--brand-gradient);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(242, 225, 127, 0.16) 0%, rgba(242, 225, 127, 0) 65%);
  pointer-events: none;
}

.stat .num,
.stat .label { position: relative; }

.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
}

.stat .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

/* ---- Centre directory ---- */
.centre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.centre-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
}

.centre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(13, 7, 20, 0.16);
  border-color: rgba(183, 135, 61, 0.4);
}

.centre-card-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--surface-2);
  overflow: hidden;
}

.centre-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.centre-card:hover .centre-card-photo img { transform: scale(1.06); }

.centre-card-body { padding: 26px 28px 28px; }

.centre-card .region-tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.centre-card h3 { font-size: 21px; margin-bottom: 8px; }
.centre-card p { font-size: 14.5px; margin: 0; }

.centre-card .arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 1;
}

.centre-card:hover .arrow { background: var(--gold-gradient); color: var(--brand-deep); transform: rotate(45deg); }

/* ---- Testimonials ---- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--line);
}

.testimonial p.quote { font-size: 17px; color: var(--ink); }
.testimonial .who { color: var(--brand); font-size: 13.5px; font-weight: 600; margin-top: 20px; font-family: var(--font-display); }

/* ---- Final CTA ---- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.2vw, 44px); }
.cta-band p { max-width: 560px; margin: 0 auto 36px; font-size: 17px; }
.cta-band .hero-eyebrow { margin-bottom: 24px; }

/* ---- Footer ---- */
footer {
  background: var(--brand-deep);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

footer .logo { color: var(--white); }
footer h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-start);
  margin-bottom: 4px;
}
footer a, footer p { color: rgba(255, 255, 255, 0.58); font-size: 14.5px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
footer a { transition: color 0.25s var(--ease); }
footer a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Utilities ---- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .pillars, .footer-grid, .stat-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 80px 0; }
  .hero { border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .hero-content { padding: 120px 0 72px; }
}
