/* ===== Soccer Hub Coaching — design system ===== */

@font-face {
  font-family: "Gotham Black";
  src: url("assets/fonts/GothamBlack.woff2") format("woff2"),
       url("assets/fonts/GothamBlack.woff") format("woff"),
       url("assets/fonts/GothamBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

  /* Brand */
  --primary: #5818a4;
  --primary-tint: rgba(88, 24, 164, 0.07);
  --secondary: #b7873d;
  --secondary-light: #f2e17f;
  --gradient-gold: linear-gradient(115deg, var(--secondary-light), var(--secondary));
  --gradient-dark: linear-gradient(160deg, #6b26bb 0%, #5818a4 45%, #4a1389 100%);

  --max-width: 1240px;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-title: "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(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

h1, h2 { letter-spacing: -2px; }
h3, h4 { letter-spacing: -0.01em; }

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

::selection { background: var(--secondary-light); color: var(--primary); }

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

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

.gold-text {
  background: var(--gradient-gold);
  -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); }

/* ---- Image fallback placeholder ---- */
/* Pair every <img> with a sibling .slide-ph; imgFallback() in main.js
   (wired via onerror) hides the broken image and reveals this instead. */
.slide-ph {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: var(--gradient-dark);
}

.slide-ph img { width: 44px; height: 44px; opacity: 0.85; }

/* ---- 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(--gradient-gold);
  color: var(--primary);
  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(--black);
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(13, 7, 20, 0.4);
}
.btn-dark:hover { background: var(--primary); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--black); 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: var(--primary);
  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;
  position: relative;
}

.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 (desktop hover, mobile tap via main.js) ---- */
.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,
.has-dropdown.open > 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,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu-panel {
  position: relative;
  min-width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  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,
.has-dropdown.open .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(--border);
  border-top: 1px solid var(--border);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--black);
  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(--black);
}

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

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

/* ---- Hamburger (mobile) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open { max-height: 600px; }

.mobile-menu a {
  padding: 14px 32px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-centres {
  display: flex;
  flex-direction: column;
}

.mobile-menu-centres .dropdown-item { border-radius: 0; padding: 12px 32px 12px 48px; }
.mobile-menu-centres .dropdown-item-name { color: var(--white); }
.mobile-menu-centres .dropdown-item-region { color: rgba(255, 255, 255, 0.55); }
.mobile-menu-centres .dropdown-item:hover { background: rgba(255, 255, 255, 0.06); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  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 .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);
  position: relative;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .slide-ph { position: absolute; inset: 0; }

@media (max-width: 900px) {
  .hero-split-inner { flex-direction: column-reverse; padding: 64px 0; gap: 40px; align-items: center; }
  .wrap { padding-left: 24px; padding-right: 24px; }
  .hero-photo { width: min(320px, 70vw); }
  .hero-split .hero-content { max-width: 100%; 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(--secondary-light);
  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(--gradient-gold);
}

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

@media (max-width: 560px) {
  .hero-badges { justify-content: center; }
}

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

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
}

.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; }

.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); }

/* ---- Sections ---- */
section { padding: 128px 0; }
.section-alt { background: var(--surface); }

.section-dark { background: var(--gradient-dark); 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(--primary);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-head .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gradient-gold); border-radius: 2px; }
.on-dark .section-head .eyebrow { color: var(--secondary-light); }
.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(--border);
  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(--border-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(--gradient-dark);
  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 cards ---- */
.prog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(13, 7, 20, 0.16); border-color: var(--border-strong); }
.prog-card h3 { font-size: 20px; }

/* .prog-full-card: the flagship/highlighted programme, spans the full grid width */
.prog-full-card {
  grid-column: 1 / -1;
  background: var(--gradient-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.prog-full-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 95% 0%, rgba(242, 225, 127, 0.16) 0%, rgba(242, 225, 127, 0) 65%);
  pointer-events: none;
}
.prog-full-card h3, .prog-full-card p, .prog-full-card .programme-meta { position: relative; }
.prog-full-card h3 { color: var(--white); font-size: 24px; }
.prog-full-card p { color: rgba(255, 255, 255, 0.75); }
.prog-full-card .programme-meta { color: var(--secondary-light); }

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

/* ---- Venue cards ---- */
.venue-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.venue-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-tint);
  display: flex; align-items: center; justify-content: center;
}
.venue-card-icon svg { width: 22px; height: 22px; }
.venue-card h4 { font-size: 15px; margin-bottom: 2px; }
.venue-card p { font-size: 13.5px; margin: 0; }

/* ---- Tier cards (pricing / plan comparison, available for future use) ---- */
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}
.tier-card.is-featured { border-color: var(--secondary); box-shadow: 0 24px 48px -20px rgba(183, 135, 61, 0.35); }
.tier-card .tier-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); }
.tier-card .tier-price { font-family: var(--font-title); font-size: 36px; font-weight: 800; margin: 12px 0; }

/* ---- Pathway diagram (available for future use) ---- */
.pathway-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.pathway-step {
  flex: 1 1 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.pathway-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 20px;
  z-index: 1;
}
@media (max-width: 900px) {
  .pathway-flow { flex-direction: column; }
  .pathway-step:not(:last-child)::after { content: "↓"; right: 50%; top: auto; bottom: -18px; transform: translateX(50%); }
}

/* ---- Comparison table (available for future use) ---- */
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.comparison-table th, .comparison-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.comparison-table th { font-family: var(--font-display); font-weight: 600; background: var(--surface); }
.comparison-table tr:last-child td { border-bottom: none; }

/* ---- Staff cards ---- */
.staff-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.staff-card-photo {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--gradient-dark);
}
.staff-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card-photo .slide-ph { position: absolute; inset: 0; min-height: 0; }
.staff-card-photo .slide-ph img { width: 22px; height: 22px; }
.staff-card h4 { font-size: 16px; margin-bottom: 2px; }
.staff-card .staff-role { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--primary); }

.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(--gradient-gold); 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(--gradient-dark);
  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(--border);
  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-photo .slide-ph { position: absolute; inset: 0; }

.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(--primary);
  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(--black);
  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(--gradient-gold); color: var(--primary); transform: rotate(45deg); }

/* ---- Testimonials ---- */
.testimonial { background: var(--white); border-radius: var(--radius-md); padding: 36px; border: 1px solid var(--border); }
.testimonial p.quote { font-size: 17px; color: var(--black); }
.testimonial .who { color: var(--primary); 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(--primary); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
footer .logo img { filter: none; }
footer h4 { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--secondary-light); 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; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  section { padding: 80px 0; }
  .hero { border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .hero-content { padding: 120px 0 72px; }
  .prog-full-card { grid-column: 1; }
}
