/*
 * ============================================================
 * SELF CLARITY — MASTER STYLESHEET (base.css)
 * ============================================================
 * Structure:
 *  1. Google Fonts Import
 *  2. CSS Custom Properties (Design Tokens)
 *  3. CSS Reset & Base
 *  4. Typography Scale
 *  5. Layout Utilities
 *  6. Navigation
 *  7. Buttons
 *  8. Hero Components
 *  9. Section Components
 * 10. Card Components
 * 11. Programme Cards
 * 12. Testimonial Cards
 * 13. Form Elements
 * 14. Footer
 * 15. Animations
 * 16. Responsive Breakpoints
 * ============================================================
 */

/* ============================================================
   1. GOOGLE FONTS
   Change font families in config.js → fonts.*
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');
/* The Seasons is a premium font — loaded via CDN below */
@import url('https://fonts.cdnfonts.com/css/the-seasons');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (Design Tokens)
   Edit here OR in config.js — these are the authoritative values.
   ============================================================ */
:root {
  /* --- Colours --- */
  --gold:         #c39f41;
  --gold-light:   #d4b870;
  --gold-pale:    #f5edda;
  --gold-subtle:  rgba(195,159,65,0.10);
  --forest:       #324d37;
  --forest-dark:  #243828;
  --forest-mid:   #3a5a3f;
  --white:        #ffffff;
  --off-white:    #faf8f5;
  --warm-grey:    #f2ede4;
  --text:         #3a3a3a;
  --text-mid:     #5c5c5c;
  --text-light:   #8a8a8a;
  --border:       rgba(195,159,65,0.18);
  --border-light: rgba(195,159,65,0.10);

  /* --- Fonts --- */
  --font-heading: 'The Seasons', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;

  /* --- Spacing Scale (8px base) --- */
  --sp-1:   8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  56px;
  --sp-7:  72px;
  --sp-8:  96px;
  --sp-9: 128px;

  /* --- Type Scale --- */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  32px;
  --text-3xl:  44px;
  --text-4xl:  58px;
  --text-hero: clamp(44px, 6.5vw, 88px);

  /* --- Border Radius --- */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg: 16px;

  /* --- Shadows --- */
  --shadow-sm:  0 2px 12px rgba(50,77,55,0.07);
  --shadow:     0 8px 32px rgba(50,77,55,0.10);
  --shadow-lg:  0 20px 64px rgba(50,77,55,0.13);
  --shadow-gold:0 8px 32px rgba(195,159,65,0.25);

  /* --- Transitions --- */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast: 200ms;
  --dur:      320ms;
  --dur-slow: 500ms;

  /* --- Nav height --- */
  --nav-h: 76px;

  /* --- Max content widths --- */
  --max-w:       1280px;
  --max-w-text:  760px;
  --max-w-narrow:580px;
}

/* ============================================================
   3. CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font-body); }
strong { font-weight: 600; }
em { font-style: italic; }

/* Page top padding for fixed nav */
.page-body { padding-top: var(--nav-h); }

/* ============================================================
   4. TYPOGRAPHY SCALE
   ============================================================ */

/* Display headings — The Seasons font */
.display-xl {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}
.display-xl em { font-style: italic; color: var(--gold-light); }

.display-lg {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.display-lg em { font-style: italic; color: var(--gold); }

.display-md {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.display-md em { font-style: italic; color: var(--gold); }

.display-sm {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
}

/* Section eyebrow — small label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
/* Centered variant — no left rule */
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
/* Light variant (on dark bg) */
.eyebrow--light { color: rgba(195,159,65,0.75); }
.eyebrow--light::before { background: rgba(195,159,65,0.75); }

/* Body text utilities */
.body-lg  { font-size: var(--text-md); line-height: 1.85; font-weight: 300; }
.body-md  { font-size: var(--text-base); line-height: 1.82; }
.body-sm  { font-size: var(--text-sm); line-height: 1.75; color: var(--text-mid); }

/* Pull quote */
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.55;
  color: var(--forest);
}
.pull-quote--white { color: rgba(255,255,255,0.88); }

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}
.container--narrow {
  width: 90%;
  max-width: 900px;
  margin-inline: auto;
}
.container--text {
  width: 90%;
  max-width: var(--max-w-text);
  margin-inline: auto;
}

/* Section spacing */
.section        { padding-block: var(--sp-9); }
.section--sm    { padding-block: var(--sp-7); }
.section--lg    { padding-block: calc(var(--sp-9) * 1.35); }

/* Background variants */
.bg-white      { background: var(--white); }
.bg-off-white  { background: var(--off-white); }
.bg-warm       { background: var(--warm-grey); }
.bg-forest     { background: var(--forest); }
.bg-forest-dk  { background: var(--forest-dark); }
.bg-gold-pale  { background: var(--gold-pale); }

/* Grid helpers */
.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.grid-3   { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
.grid-4   { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-3); }
.grid-2-1 { display: grid; grid-template-columns: 1fr 0.75fr; gap: var(--sp-7); align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 0.75fr 1fr; gap: var(--sp-7); align-items: center; }

/* Flex helpers */
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.items-c     { align-items: center; }
.justify-c   { justify-content: center; }
.justify-b   { justify-content: space-between; }
.flex-wrap   { flex-wrap: wrap; }
.gap-2       { gap: var(--sp-2); }
.gap-3       { gap: var(--sp-3); }
.gap-4       { gap: var(--sp-4); }

/* Spacing helpers */
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }

/* Text align */
.text-c { text-align: center; }
.text-l { text-align: left; }

/* Color utilities */
.c-gold    { color: var(--gold); }
.c-forest  { color: var(--forest); }
.c-white   { color: var(--white); }
.c-muted   { color: var(--text-light); }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: 5%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow); }

/* Nav logo */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 48px; width: auto; }

/* Nav links wrapper */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: var(--sp-4);
}

/* Individual nav link */
.nav__link {
  position: relative;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--gold); }

/* Underline indicator */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

/* Dropdown parent */
.nav__item { position: relative; }
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* Dropdown menu */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  padding: var(--sp-1) 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  pointer-events: none;
}
.nav__item:hover .nav__dropdown { pointer-events: all; }

.nav__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: var(--text-sm);
  color: var(--text);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__dropdown-link:hover { color: var(--gold); background: var(--off-white); }
.nav__dropdown-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 2px 7px;
  border-radius: 100px;
}

/* Nav CTA button */
.nav__cta {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: calc(100vh - var(--nav-h));
  background: var(--white);
  overflow-y: auto;
  padding: var(--sp-4) 5%;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
}
.nav__mobile.open { transform: translateX(0); display: flex; }
.nav__mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--dur-fast);
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-sub {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0 8px var(--sp-3);
  border-bottom: 1px solid var(--border-light);
  display: block;
}
.nav__mobile-sub:hover { color: var(--gold); }
.nav__mobile-cta {
  margin-top: var(--sp-4);
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
}

/* ============================================================
   7. BUTTONS
   All buttons use --gold as the primary accent colour.
   ============================================================ */

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

/* Primary — gold fill */
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Secondary — gold outline */
.btn--secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost — white outline (on dark bg) */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Forest fill */
.btn--forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn--forest:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
}

/* Size variants */
.btn--sm { padding: 10px 22px; font-size: 10px; }
.btn--lg { padding: 18px 44px; font-size: var(--text-sm); }
.btn--xl { padding: 20px 56px; font-size: var(--text-base); }

/* ============================================================
   8. HERO COMPONENTS
   ============================================================ */

/* Main hero (index page) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--forest-dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.45;
  filter: saturate(0.7);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(36,56,40,0.88) 0%,
    rgba(36,56,40,0.72) 50%,
    rgba(36,56,40,0.45) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--nav-h) 5% var(--sp-8);
  max-width: 700px;
}
.hero__eyebrow { margin-bottom: var(--sp-3); }
.hero__title   { margin-bottom: var(--sp-3); }
.hero__sub {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.82;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: var(--sp-5);
}
.hero__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* Inner hero (for interior pages) */
.page-hero {
  position: relative;
  background: var(--forest-dark);
  padding: calc(var(--nav-h) + var(--sp-8)) 5% var(--sp-7);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.30;
  filter: saturate(0.6);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(36,56,40,0.90) 0%,
    rgba(36,56,40,0.70) 60%,
    rgba(36,56,40,0.50) 100%
  );
}
.page-hero__content { position: relative; z-index: 2; max-width: 680px; }
.page-hero__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
}
.page-hero__title { color: var(--white); margin-bottom: var(--sp-2); }
.page-hero__title em { font-style: italic; color: var(--gold-light); }
.page-hero__sub {
  font-size: var(--text-md);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: var(--sp-5);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }
.breadcrumb__current { color: var(--gold); }

/* ============================================================
   9. SECTION COMPONENTS
   ============================================================ */

/* Section header block */
.section-header { margin-bottom: var(--sp-7); }
.section-header--center { text-align: center; }
.section-header--center .eyebrow { justify-content: center; }
.section-header--center .eyebrow::before { display: none; }
.section-header__title { margin-top: var(--sp-2); color: var(--forest); }
.section-header__title--white { color: var(--white); }
.section-header__body {
  margin-top: var(--sp-3);
  max-width: 580px;
  color: var(--text-mid);
}
.section-header--center .section-header__body { margin-inline: auto; }

/* Gold divider line */
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-block: var(--sp-6);
  opacity: 0.4;
}

/* Two-column feature */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.feature-split--reverse .feature-split__media { order: -1; }

/* Feature image with overlay card */
.feature-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.feature-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-img-wrap .img-card {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  background: rgba(36,56,40,0.88);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: var(--sp-3);
  border: 1px solid rgba(195,159,65,0.22);
}
.feature-img-wrap .img-card p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.55;
}
.feature-img-wrap .img-card cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Value cards row */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-3); }
.value-card {
  padding: var(--sp-3) var(--sp-3) var(--sp-3) var(--sp-4);
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--forest);
  margin-bottom: var(--sp-1);
}
.value-card__body { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.75; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
}
.stat-block {
  background: var(--forest-dark);
  padding: var(--sp-5);
  text-align: center;
}
.stat-block__num {
  font-family: var(--font-heading);
  font-size: clamp(38px,5vw,64px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-block__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Alternating features (framework components) */
.component-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--sp-6);
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.component-row:last-child { border-bottom: none; }
.component-num {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 400;
  color: rgba(195,159,65,0.18);
  line-height: 1;
}
.component-text__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}
.component-text__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--forest);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}
.component-text__body { font-size: var(--text-base); color: var(--text-mid); line-height: 1.82; }
.component-aside {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--sp-3);
}
.component-aside__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.component-aside__body { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   10. CARD COMPONENTS
   ============================================================ */

/* Generic white card */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card--soft { background: var(--off-white); box-shadow: none; }
.card--soft:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.card--gold-top { border-top: 3px solid var(--gold); }
.card--forest {
  background: var(--forest);
  color: var(--white);
}

/* Gain/feature list item */
.gain-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding: var(--sp-3);
  background: var(--off-white);
  border-radius: var(--radius-sm);
}
.gain-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.gain-item__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.gain-item__body { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.7; }

/* Process steps */
.step-row {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-light);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--gold);
}
.step-row__title { font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.step-row__body  { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.72; }

/* Who-this-is-for list */
.who-list { display: flex; flex-direction: column; gap: 14px; }
.who-item  { display: flex; gap: 14px; align-items: flex-start; }
.who-item__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.who-item__text { font-size: var(--text-base); color: rgba(255,255,255,0.80); line-height: 1.72; }
.who-item__text--dark { color: var(--text); }

/* Participants / logo placeholders */
.logo-placeholder {
  height: 56px;
  border: 1.5px dashed rgba(195,159,65,0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.logo-placeholder:hover { border-color: var(--gold); color: var(--gold); }

/* Country pill */
.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(50,77,55,0.15);
  background: var(--off-white);
  font-size: var(--text-sm);
  color: var(--text);
  transition: all var(--dur-fast);
  cursor: default;
}
.country-pill:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* Apply steps */
.apply-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); text-align: center; }
.apply-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin: 0 auto var(--sp-2);
}
.apply-step__label { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   11. PROGRAMME CARDS
   ============================================================ */
.prog-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.prog-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--forest);
}
.prog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s var(--ease);
}
.prog-card:hover .prog-card__img img { transform: scale(1.04); }

.prog-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.prog-card__body { padding: var(--sp-3) var(--sp-3) var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.prog-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--forest);
  margin-bottom: var(--sp-1);
  line-height: 1.2;
}
.prog-card__desc { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.75; flex: 1; margin-bottom: var(--sp-3); }
.prog-card__link {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast);
}
.prog-card:hover .prog-card__link { gap: 10px; }

/* ============================================================
   12. TESTIMONIAL CARDS
   ============================================================ */
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(195,159,65,0.18);
  border-radius: var(--radius);
  padding: var(--sp-4);
  transition: background var(--dur) var(--ease);
}
.testi-card:hover { background: rgba(255,255,255,0.10); }

/* Light variant (on white bg) */
.testi-card--light {
  background: var(--off-white);
  border-color: var(--border);
  border-top: 3px solid var(--gold);
}
.testi-card--light:hover { background: var(--white); box-shadow: var(--shadow); }

.testi-card__stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: var(--sp-2); }

.testi-card__quote {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.6vw, 19px);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--sp-3);
}
.testi-card__quote--dark { color: var(--forest); }

.testi-card__author { display: flex; align-items: center; gap: 14px; }
.testi-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
}
.testi-card__name { font-weight: 600; color: var(--white); font-size: var(--text-sm); }
.testi-card__name--dark { color: var(--text); }
.testi-card__role { font-size: var(--text-xs); color: var(--gold); letter-spacing: 0.05em; margin-top: 3px; }

/* ============================================================
   13. FORM ELEMENTS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-input, .form-textarea, .form-select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(195,159,65,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(195,159,65,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: var(--forest-dark);
  padding: var(--sp-9) 5% var(--sp-5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4,1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}
/* Logo sits inside a small white-background pill so it reads on the dark footer */
.footer__logo-wrap {
  display: inline-block;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: var(--sp-3);
  line-height: 0;
}
.footer__logo-wrap img {
  max-width: 140px;
  height: auto;
  display: block;
}
.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.82;
  max-width: 300px;
  margin-top: var(--sp-2);
}
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.footer__link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  margin-bottom: 12px;
  transition: color var(--dur-fast);
}
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer__legal { font-size: var(--text-xs); color: rgba(255,255,255,0.28); }

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--sp-9) 5%;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(195,159,65,0.08) 0%, transparent 65%);
}
.cta-band__inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.cta-band__title { color: var(--white); margin-bottom: var(--sp-2); }
.cta-band__title em { font-style: italic; color: var(--gold-light); }
.cta-band__sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-5);
  line-height: 1.82;
  font-weight: 300;
}

/* ============================================================
   15. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* JS-driven: add .is-visible via IntersectionObserver */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-anim].is-visible { opacity: 1; transform: translateY(0); }
[data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim-delay="4"] { transition-delay: 0.4s; }

/* Hero entrance */
.hero__content > * { animation: fadeInUp 0.8s var(--ease) both; }
.hero__eyebrow     { animation-delay: 0.1s; }
.hero__title       { animation-delay: 0.2s; }
.hero__sub         { animation-delay: 0.35s; }
.hero__actions     { animation-delay: 0.5s; }

/* ============================================================
   16. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet (max 1100px) */
@media (max-width: 1100px) {
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: var(--sp-5); }
  .feature-split { grid-template-columns: 1fr !important; gap: var(--sp-5) !important; }
  .feature-split--reverse .feature-split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  /* component-row: collapse to 2-col (text + aside), hide giant number */
  .component-row { grid-template-columns: 1fr 0.85fr; gap: var(--sp-4); }
  .component-num { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  /* Catalyst section image: full-width on top, don't show beside */
  .catalyst-image-col { min-height: 220px !important; }
  .catalyst-image-col img { opacity: 0.35 !important; }
}

/* Medium mobile (max 720px) */
@media (max-width: 720px) {
  .component-row { grid-template-columns: 1fr; gap: var(--sp-3); padding-block: var(--sp-4); }
  .component-aside { margin-top: 0; }
  .dates-grid { grid-template-columns: 1fr 1fr; }
  .nominate-band { flex-direction: column; text-align: center; }
  .sticky-apply__label { display: none; }
}

/* Mobile nav trigger (max 960px) */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* Mobile (max 680px) */
@media (max-width: 680px) {
  :root { --nav-h: 64px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding-block: var(--sp-7); }
  .section--lg { padding-block: var(--sp-8); }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
  .apply-steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROGRAMME DATES SECTION
   ============================================================ */
.dates-section {
  background: var(--forest-dark);
  padding: var(--sp-7) 0;
}
.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.date-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(195,159,65,0.18);
  border-radius: var(--radius);
  padding: var(--sp-3);
  transition: background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.date-card:hover { background: rgba(255,255,255,0.09); }
.date-card--full {
  opacity: 0.5;
}
.date-card--full::after {
  content: 'FULL';
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 9px;
  border-radius: 100px;
}
.date-card--soon::after {
  content: 'FILLING FAST';
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(195,159,65,0.2);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 100px;
}
.date-card__month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.date-card__date {
  font-family: var(--font-heading);
  font-size: 28px;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
}
.date-card__location {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.date-card__spots {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-2);
}
.date-card .btn {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 10px;
}

/* Nominate button floating style */
.nominate-band {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.nominate-band__text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--forest);
  margin-bottom: 4px;
}
.nominate-band__text p {
  font-size: var(--text-sm);
  color: var(--text-mid);
}

/* Mobile (max 680px) — dates single col, hero text, prog card img */
@media (max-width: 680px) {
  .dates-grid { grid-template-columns: 1fr !important; }
  .date-card__date { font-size: 22px; }
  .page-hero__sub { font-size: var(--text-base); }
  .prog-card__img { height: 190px; }
  .display-xl { font-size: clamp(30px, 9vw, 56px); }
}

/* Contact / Partner form layout */
.two-col-form {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (max-width: 860px) {
  .two-col-form { grid-template-columns: 1fr; gap: var(--sp-5); }
}

/* Catalyst section: desktop side-by-side, mobile hides image and shows content full-width */
.catalyst-split { grid-template-columns: 1fr 1fr !important; gap: 0 !important; }
@media (max-width: 1100px) {
  .catalyst-split { grid-template-columns: 1fr !important; }
  .catalyst-image-col { display: none; }
}
