/* ==========================================================================
   Development Academy — Stylesheet
   Palette: Black / Antique Gold / Light Grey
   ========================================================================== */

:root {
  --black: #0D0D0F;
  --charcoal: #19191C;
  --charcoal-2: #232327;
  --gold: #C9A24B;
  --gold-pale: #E8D9AE;
  --gold-deep: #9C7A2E;
  --grey-light: #ECE9E4;
  --grey-light-2: #F5F3EF;
  --grey-mid: #8C8A86;
  --grey-line: #D8D4CC;
  --white: #F7F6F3;
  --line-on-dark: rgba(201, 162, 75, 0.28);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55);

  --display: 'Anton', sans-serif;
  --label: 'Oswald', sans-serif;
  --body: 'Inter', sans-serif;

  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-weight: 400;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { max-width: 640px; }
p.lead {
  font-size: 1.2rem;
  color: var(--grey-mid);
}

.eyebrow {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
  display: inline-block;
}
.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--gold);
}
.section-dark .eyebrow::before,
.hero .eyebrow::before {
  background: var(--gold);
}

.rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 22px 0 26px;
}
.rule.center { margin-left: auto; margin-right: auto; }

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

.btn {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 2px;
  display: inline-block;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-pale); transform: translateY(-2px); }

.btn-outline {
  border-color: var(--gold);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-on-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.brand-crest { width: 42px; height: 42px; flex-shrink: 0; }
.brand-name {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  line-height: 1.2;
}
.brand-name strong {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--grey-light);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--gold);
  display: block;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 86px; left: 0; right: 0;
    background: var(--black);
    padding: 28px 24px 34px;
    gap: 22px;
    border-bottom: 1px solid var(--line-on-dark);
  }
  .nav-links.open .nav-cta-mobile { display: inline-block; }
}

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

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 130px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%; right: -10%;
  width: 720px; height: 720px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  transform: translateY(-50%);
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%; right: -10%;
  width: 720px; height: 1px;
  background: var(--line-on-dark);
  transform: translateY(-50%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 920px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { color: var(--grey-light); max-width: 560px; margin-bottom: 36px; }

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

.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--grey-light); color: var(--black); }
.section-cream { background: var(--white); color: var(--black); }
.section-dark p, .section-dark p.lead { color: var(--grey-light); }
.section-dark .grey-mid-text { color: var(--grey-mid); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Photo placeholders ---------- */

.photo-frame {
  position: relative;
  background: linear-gradient(145deg, var(--charcoal), var(--black));
  border: 1px solid var(--line-on-dark);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-frame.wide { aspect-ratio: 16 / 10; }
.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.photo-frame .placeholder-label {
  position: relative;
  z-index: 0;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gold-pale);
  text-align: center;
  padding: 20px;
  border: 1px dashed var(--line-on-dark);
  margin: 16px;
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.card .tag {
  width: 34px; height: 3px;
  background: var(--gold);
  margin-bottom: 18px;
}
.card h4 {
  text-transform: none;
  font-family: var(--label);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.card p { font-size: 0.95rem; color: var(--grey-mid); max-width: none; }

.card-dark {
  background: var(--charcoal);
  border: 1px solid var(--line-on-dark);
}
.card-dark p { color: var(--grey-light); }
.card-dark h4 { color: var(--white); }

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

.stats-strip {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat { padding: 56px 24px; border-left: 1px solid var(--line-on-dark); }
.stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stat .cap {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: var(--grey-light);
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line-on-dark); }
  .stat:first-child { border-top: none; }
}

/* ---------- Club chips (playing career) ---------- */

.club-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0 10px;
}
.club-chip {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  padding: 10px 18px;
  border-radius: 2px;
  background: var(--grey-light-2);
}
.section-dark .club-chip { color: var(--gold); background: transparent; }

/* ---------- Checklist ---------- */

.checklist { margin-top: 24px; max-width: 640px; }
.checklist li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-line);
  font-size: 0.98rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist .tick {
  color: var(--gold-deep);
  font-family: var(--label);
  font-weight: 600;
  flex-shrink: 0;
}

/* ---------- The Pathway (timeline signature element) ---------- */

.pathway {
  position: relative;
  margin-top: 60px;
}
.pathway-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.pathway-track::before {
  content: "";
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 1px;
  background: var(--line-on-dark);
}
.stop {
  position: relative;
  padding: 0 16px 0 0;
  text-align: left;
}
.stop .marker {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--black);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.stop.milestone .marker {
  background: var(--gold);
  width: 18px; height: 18px;
  box-shadow: 0 0 0 5px rgba(201,162,75,0.18);
}
.stop .stop-year {
  font-family: var(--label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.stop h4 {
  font-family: var(--label);
  text-transform: none;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 8px;
}
@media (min-width: 981px) {
  .stop h4 { min-height: 2.5em; }
}
.stop p { font-size: 0.88rem; color: var(--grey-light); max-width: none; }

@media (max-width: 980px) {
  .pathway-track {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pathway-track::before {
    top: 0; bottom: 0; left: 6px; right: auto;
    width: 1px; height: auto;
  }
  .stop { padding-left: 30px; }
  .stop .marker { position: absolute; left: 0; top: 2px; margin-bottom: 0; }
}

/* ---------- Roadmap (Folkestone -> Nation) ---------- */

.roadmap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 50px;
  flex-wrap: wrap;
}
.roadmap-step {
  background: var(--charcoal);
  border: 1px solid var(--line-on-dark);
  padding: 26px 24px;
  flex: 1;
  min-width: 200px;
}
.roadmap-step .stage {
  font-family: var(--label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.roadmap-step h4 { color: var(--white); font-family: var(--label); text-transform: none; font-size: 1.05rem; }
.roadmap-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0 18px;
  flex: 0 0 auto;
}
@media (max-width: 760px) {
  .roadmap { flex-direction: column; align-items: stretch; }
  .roadmap-arrow { transform: rotate(90deg); padding: 8px 0; align-self: center; }
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
}
.cta-banner h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner p.lead { margin: 0 auto 34px; color: var(--grey-light); }
.cta-banner .btn-row { justify-content: center; }

.closing-statement {
  text-align: center;
  padding: 60px 0 20px;
}
.closing-statement p {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.2;
}

/* ---------- Forms ---------- */

.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--charcoal-2);
  border: 1px solid var(--line-on-dark);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 0.95rem;
  border-radius: 2px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.visually-hidden { position: absolute; left: -9999px; }

.contact-info-list { margin-top: 30px; }
.contact-info-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-line);
}
.contact-info-list .label {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 4px;
}
.section-dark .contact-info-list li { border-bottom: 1px solid var(--line-on-dark); }
.section-dark .contact-info-list .label { color: var(--gold); }

.social-row { display: flex; gap: 14px; margin-top: 26px; }
.social-row a {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--label);
  font-size: 0.8rem;
  color: var(--gold);
  transition: background 0.18s ease, color 0.18s ease;
}
.social-row a:hover { background: var(--gold); color: var(--black); }

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

.site-footer {
  background: var(--black);
  color: var(--grey-light);
  padding: 60px 0 30px;
  border-top: 1px solid var(--gold);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-tagline { max-width: 360px; color: var(--grey-mid); font-size: 0.92rem; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--grey-light);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--grey-mid);
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page header (non-home pages) ---------- */

.page-header {
  background: var(--black);
  color: var(--white);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  bottom: -120px; left: 50%;
  width: 480px; height: 480px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  transform: translateX(-50%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); }

/* ---------- Stats: 4-up + flags (added) ---------- */
.stats-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid-4 .stat:nth-child(3) { border-left: none; }
}
@media (max-width: 760px) {
  .stats-grid-4 { grid-template-columns: 1fr; }
  .stats-grid-4 .stat:nth-child(3) { border-left: none; }
}
.stat .flags {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.stat .flags .flag {
  border: 1px solid var(--line-on-dark);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  display: block;
}

/* ---------- Photo callout (added) ---------- */
.photo-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--gold);
  background: var(--grey-light-2);
  border-radius: 2px;
}
.photo-callout .num {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.photo-callout span:last-child {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--black);
  line-height: 1.35;
}

/* ---------- Hero photo in the semicircle (added) ---------- */
.hero-photo {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  overflow: hidden;
  transform: translateY(-50%);
  z-index: 1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: contrast(1.03) saturate(1.05);
}
/* blend the photo into the black hero on its left edge so the headline stays readable */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(13,13,15,0.82) 0%, rgba(13,13,15,0.3) 18%, rgba(13,13,15,0) 40%);
}
/* keep the gold rings/lines painting OVER the photo */
.hero::before,
.hero::after { z-index: 2; }
.hero .container { z-index: 3; }

@media (max-width: 980px) {
  .hero-photo { width: 560px; height: 560px; right: -22%; }
}
@media (max-width: 860px) {
  .hero { padding-top: 110px; }
  .hero-photo {
    width: 300px; height: 300px;
    right: -70px; top: 86px;
    transform: none;
    opacity: 0.9;
  }
  .hero::before {
    width: 300px; height: 300px;
    right: -70px; top: 86px;
    transform: none;
  }
  .hero::after { display: none; }
}

/* hide mobile-only CTA on desktop so only the right Get In Touch shows (added) */
.nav-cta-mobile { display: none; }

/* ---------- Real brand logo (added) ---------- */
.brand-logo { height: 56px; width: auto; display: block; }
.site-footer .brand-logo { height: 80px; }
@media (max-width: 860px) { .brand-logo { height: 46px; } }


/* ---------- Club crests under playing career (added) ---------- */
.club-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 26px 0 10px;
}
.club-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 26px 18px;
  border: 1px solid var(--grey-line);
  background: var(--white);
  border-radius: 2px;
}
.club-item .club-chip { margin: 0; }
.club-logo { height: 92px; width: auto; max-width: 100%; object-fit: contain; }
.club-logo-ph {
  width: 92px;
  height: 92px;
  border: 1px dashed var(--grey-line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6rem;
  color: var(--grey-mid);
  line-height: 1.4;
  padding: 8px;
}
@media (max-width: 620px) { .club-row { grid-template-columns: 1fr; } }

/* ---------- Section heading with crest to the right (added) ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.section-head-text { flex: 1 1 420px; }
.section-head-logo { height: 118px; width: auto; flex-shrink: 0; }
@media (max-width: 760px) {
  .section-head { gap: 18px; }
  .section-head-logo { height: 76px; }
}

/* ---------- Logo display frames + role titles (added) ---------- */
.logo-frame {
  aspect-ratio: 16 / 10;
  background: var(--white);
  border: 1px solid var(--grey-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 2px;
}
.logo-frame img { width: auto; height: 100%; max-width: 100%; object-fit: contain; }
.role {
  display: block;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: var(--gold-deep);
  margin: 8px 0 16px;
}

/* ---------- Page-header decoration: football centre circle (added) ---------- */
.page-header::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translateX(-50%);
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(201,162,75,0.55) 0 5px, transparent 6px),
    linear-gradient(to bottom, transparent calc(50% - 0.5px), var(--line-on-dark) calc(50% - 0.5px), var(--line-on-dark) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

/* ---------- Academy vision lead + section intro (added) ---------- */
.vision-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--black);
  max-width: 460px;
}
.section-intro {
  max-width: 780px;
  margin-top: 22px;
  font-size: 1.05rem;
}
@media (max-width: 860px) { .vision-lead { font-size: 1.28rem; } }

/* nudge page-header centre-circle motif to the right so it doesn't fight the text (added) */
.page-header::before,
.page-header::after { left: auto; right: -40px; transform: none; }

/* ---------- Services: clickable cards, coming-soon, modal (added) ---------- */
.card-clickable {
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  color: inherit;
  display: block;
}
.card-cta {
  display: block;
  margin-top: 16px;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--gold-deep);
}
.card-clickable:hover .card-cta { color: var(--gold); }
.card-soon { opacity: 0.94; }
.badge {
  display: inline-block;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.next-section { margin-top: 80px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 15, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 520px;
  padding: 44px 40px 40px;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.modal h3 {
  text-transform: none;
  font-family: var(--label);
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.modal p { color: var(--grey-mid); margin-bottom: 26px; max-width: none; }
.modal .btn-row { justify-content: flex-start; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--grey-mid);
  cursor: pointer;
}
.modal-close:hover { color: var(--black); }

/* ---------- Page-header: full-width halfway line + centre circle, kept clear of text (added) ---------- */
.page-header::before {
  left: auto; right: -40px;
  top: auto; bottom: -176px;
  width: 480px; height: 480px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  transform: none;
  background: radial-gradient(circle at center, rgba(201,162,75,0.6) 0 5px, transparent 6px);
  z-index: 1;
}
.page-header::after {
  left: 0; right: 0;
  top: auto; bottom: 64px;
  width: auto; height: 1px;
  transform: none;
  background: var(--line-on-dark);
  z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }

/* keep the "back to the UK" photo modest in size (added) */
.uk-photo {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  align-self: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--charcoal);
}
.uk-photo img { object-position: center 78%; }

/* ---------- Testimonials (added) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 680px; } }
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-line);
  padding: 32px 30px 30px;
  border-radius: 2px;
}
.testimonial::before { display: none; }
.testimonial blockquote {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  max-width: none;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  display: block;
  margin: 0 0 22px;
}
.testimonial-cite {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--gold-deep);
}
.testimonial-cite span {
  display: block;
  margin-top: 4px;
  color: var(--grey-mid);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

/* About hero: player photo inside the partial circle (added) */
.header-photo {
  position: absolute;
  right: -40px;
  bottom: -176px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
}
.header-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.header-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,15,0.8) 0%, rgba(13,13,15,0.22) 22%, rgba(13,13,15,0) 48%);
}
/* modal service content (added) */
.modal-list { margin: 0 0 22px; }
.modal-list li { position: relative; padding-left: 22px; margin-bottom: 9px; color: var(--black); font-size: 0.95rem; line-height: 1.5; }
.modal-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.modal-note { color: var(--grey-mid); font-size: 0.9rem; margin-bottom: 26px; }
#serviceModalBody p:first-child { color: var(--black); }


/* small WhatsApp icon next to phone (added) */
.wa-icon { display: inline-flex; vertical-align: middle; margin-left: 10px; color: #25D366; }
.wa-icon svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.wa-icon:hover { filter: brightness(1.12); }


/* Academy hero: logo to the right of the text, no circle (added) */
.page-header-logo::before, .page-header-logo::after { display: none; }
.page-header-logo .ph-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}
.page-header-logo .ph-logo { display: flex; justify-content: center; }
.page-header-logo .ph-logo img { width: 240px; height: auto; max-width: 100%; }
@media (max-width: 760px) {
  .page-header-logo .ph-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-header-logo .ph-logo { justify-content: flex-start; }
  .page-header-logo .ph-logo img { width: 150px; }
}
/* Mobile: stack inner-page hero — text first, image as a square underneath (added) */
@media (max-width: 760px) {
  .page-header-photo { display: flex; flex-direction: column; }
  .page-header-photo::before, .page-header-photo::after { display: none; }
  .page-header-photo .container { order: 1; position: relative; z-index: 2; }
  .page-header-photo .header-photo {
    order: 2;
    position: static;
    transform: none;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
    margin: 32px 0 0;
  }
  .page-header-photo .header-photo::after { display: none; }
}
