/* ────────────────────────────────────────
   COMMUNIQUÉ LABS — WEBSITE STYLES
   Brand: clarity / confidence / communication
   Palette: navy ink, teal, sage, rust accents
   ──────────────────────────────────────── */

:root {
  /* Colors */
  --ink:        #0E2A3D;
  --navy:       #0E2A3D;
  --teal:       #2A7B8C;
  --teal-dark:  #1B4B5A;
  --teal-light: #7AB5C0;
  --sage:       #4A8C5C;
  --sage-light: #A8CDB0;
  --rust:       #C0392B;
  --rust-light: #E8B5AB;
  --gold:       #D4A848;
  --white:      #FFFFFF;
  --cream:      #FAFAF7;
  --grey-d:     #3D4F58;
  --grey-m:     #7A8A92;
  --grey-l:     #C5D0D4;
  --grey-bg:    #F5F8FA;

  /* Vivid gradient for hero/highlight sections */
  --grad-mint:  #A8E6B8;
  --grad-blue:  #7AAEEC;

  /* Typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4rem;
  --s-8: 6rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 42, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 42, 61, 0.10);
  --shadow-lg: 0 16px 48px rgba(14, 42, 61, 0.14);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

button { font-family: inherit; cursor: pointer; border: none; }

/* ─── Layout ────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}

section {
  padding: var(--s-8) 0;
}

@media (max-width: 768px) {
  section { padding: var(--s-7) 0; }
  .container, .container-narrow { padding: 0 var(--s-3); }
}

/* ─── Typography ────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: var(--s-3); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: var(--s-3);
}

.eyebrow.eyebrow-light { color: var(--teal-light); }

.tagline-3 .clarity { color: var(--teal); font-weight: 700; }
.tagline-3 .confidence { color: var(--sage); font-weight: 700; }
.tagline-3 .communication { color: var(--rust); font-weight: 700; }

.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--grey-l);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-rust { background: var(--rust); border-color: var(--rust); color: var(--white); }
.btn-rust:hover { background: #a52f23; border-color: #a52f23; }

.btn-large { padding: 1rem 2.25rem; font-size: 1rem; }

/* ─── Header / Nav ──────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 42, 61, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) var(--s-4);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
}

.nav-brand img {
  width: 32px;
  height: 32px;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--teal);
}

.nav-cta {
  margin-left: var(--s-3);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  padding: 0.5rem;
  border-radius: var(--r-sm);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--ink);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--s-4);
    gap: var(--s-3);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(14, 42, 61, 0.08);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { width: 100%; }
}

/* ─── Hero ──────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--grad-mint) 0%, var(--grad-blue) 100%);
  padding: var(--s-8) 0 var(--s-7);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.hero-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--s-4);
  animation: floatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero h1 {
  margin-bottom: var(--s-3);
  animation: floatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}

.hero h1 .accent {
  color: var(--teal-dark);
  font-style: italic;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.35rem;
  margin-bottom: var(--s-4);
  animation: floatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--grey-d);
  max-width: 640px;
  margin: 0 auto var(--s-5);
  animation: floatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  animation: floatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Stats Strip ───────────────────────── */
.stats-strip {
  background: var(--ink);
  color: var(--white);
  padding: var(--s-6) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: var(--s-1);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--grey-l);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ─── Section Headers ───────────────────── */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-6);
}

.section-head p {
  font-size: 1.1rem;
  color: var(--grey-d);
  margin-top: var(--s-3);
}

/* ─── Cards Grid ────────────────────────── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

@media (max-width: 900px) {
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards-3, .cards-2, .cards-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--s-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-teal { border-top-color: var(--teal); }
.card-sage { border-top-color: var(--sage); }
.card-rust { border-top-color: var(--rust); }
.card-gold { border-top-color: var(--gold); }

.card h3 { margin-bottom: var(--s-2); }
.card p { color: var(--grey-d); font-size: 0.95rem; margin-bottom: 0; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--s-3);
}

.icon-teal { background: rgba(42, 123, 140, 0.10); color: var(--teal); }
.icon-sage { background: rgba(74, 140, 92, 0.10); color: var(--sage); }
.icon-rust { background: rgba(192, 57, 43, 0.10); color: var(--rust); }
.icon-gold { background: rgba(212, 168, 72, 0.15); color: var(--gold); }

.focus-tag {
  display: inline-block;
  margin-top: var(--s-3);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-tag.tag-teal { background: rgba(42, 123, 140, 0.10); color: var(--teal); }
.focus-tag.tag-sage { background: rgba(74, 140, 92, 0.10); color: var(--sage); }
.focus-tag.tag-rust { background: rgba(192, 57, 43, 0.10); color: var(--rust); }

/* ─── Programme Cards (with combo tags) ──── */
.combo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}

.combo-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
  border: 1.5px solid;
}

.combo-tag.t-teal { color: var(--teal); border-color: var(--teal); background: rgba(42, 123, 140, 0.05); }
.combo-tag.t-sage { color: var(--sage); border-color: var(--sage); background: rgba(74, 140, 92, 0.05); }
.combo-tag.t-rust { color: var(--rust); border-color: var(--rust); background: rgba(192, 57, 43, 0.05); }

.flagship-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.flagship-card::before {
  content: '★ FLAGSHIP';
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.flagship-card h3, .flagship-card p { color: var(--white); }
.flagship-card p { color: var(--teal-light); }
.flagship-card .combo-tag {
  background: rgba(255, 255, 255, 0.06);
}

/* ─── Pricing Cards ──────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}

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

.price-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--s-4);
  box-shadow: var(--shadow-sm);
  border-top: 5px solid;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.flagship {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border-top-color: var(--gold);
}

.price-card .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.price-card.flagship .label { color: var(--gold); }

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--s-2);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

.price-card.flagship h3 { color: var(--white); }

.price-card .duration {
  font-style: italic;
  color: var(--grey-m);
  font-size: 0.9rem;
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--grey-l);
}

.price-card.flagship .duration {
  color: var(--teal-light);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  text-align: center;
  margin: var(--s-2) 0;
}

.price-card .per {
  font-size: 0.8rem;
  color: var(--grey-m);
  font-style: italic;
  text-align: center;
}

.price-card.flagship .per { color: var(--teal-light); }

/* ─── About / Founder Section ─────────────── */
.founder-section {
  background: var(--cream);
}

.founder-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--s-5);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  align-items: start;
}

@media (max-width: 700px) {
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.founder-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 8px 24px rgba(42, 123, 140, 0.3);
}

.founder-avatar::before,
.founder-avatar::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.founder-avatar::before {
  background: var(--rust);
  top: 10%;
  left: -8px;
}

.founder-avatar::after {
  background: var(--gold);
  bottom: 15%;
  right: -8px;
}

.founder-name {
  font-size: 2.25rem;
  margin-bottom: var(--s-1);
}

.founder-title {
  color: var(--teal);
  font-weight: 600;
  margin-bottom: var(--s-3);
}

.founder-creds {
  color: var(--grey-d);
  font-size: 0.95rem;
  margin-bottom: var(--s-3);
}

.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

@media (max-width: 700px) {
  .cred-pills { justify-content: center; }
}

.cred-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(42, 123, 140, 0.08);
  color: var(--teal-dark);
}

.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--grey-d);
  border-left: 3px solid var(--teal);
  padding-left: var(--s-3);
  line-height: 1.7;
}

/* ─── Pillar Cards (process / pedagogy) ───── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

@media (max-width: 800px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.pillar-card:hover { transform: translateY(-2px); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  font-style: italic;
  flex-shrink: 0;
  line-height: 1;
}

.pillar-num.n-teal { color: var(--teal); }
.pillar-num.n-sage { color: var(--sage); }
.pillar-num.n-rust { color: var(--rust); }
.pillar-num.n-dark { color: var(--teal-dark); }

.pillar-content h3 { margin-bottom: var(--s-1); }
.pillar-content p { color: var(--grey-d); font-size: 0.95rem; }

/* ─── Process Steps ───────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}

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

.step-card {
  text-align: center;
  background: var(--white);
  padding: var(--s-4);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-3);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
}

.step-num.s-teal { background: var(--teal); }
.step-num.s-sage { background: var(--sage); }
.step-num.s-rust { background: var(--rust); }
.step-num.s-dark { background: var(--teal-dark); }

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-2);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--grey-d);
}

/* ─── AI Edge Section (dark) ──────────────── */
.section-dark {
  background: linear-gradient(135deg, #0A1F2C 0%, #1B4A5A 100%);
  color: var(--white);
}

.section-dark h2 { color: var(--white); }
.section-dark .section-head p { color: var(--teal-light); }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

@media (max-width: 900px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ai-grid { grid-template-columns: 1fr; } }

.ai-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(122, 181, 192, 0.2);
  border-radius: var(--r-md);
  padding: var(--s-4);
  transition: all var(--transition);
}

.ai-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal-light);
  transform: translateY(-2px);
}

.ai-icon {
  font-size: 1.75rem;
  margin-bottom: var(--s-3);
}

.ai-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: var(--s-2);
}

.ai-card p {
  color: var(--teal-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ─── Forms ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-6);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

.contact-info-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: var(--s-5);
  border-radius: var(--r-lg);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: var(--s-3);
}

.contact-info-card p {
  color: var(--teal-light);
  margin-bottom: var(--s-4);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition);
}

.contact-method:last-child { border-bottom: none; }
.contact-method:hover { transform: translateX(4px); color: var(--white); }

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(122, 181, 192, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method-text { flex: 1; }
.contact-method-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 2px;
}
.contact-method-value {
  font-weight: 600;
}

.form-card {
  background: var(--white);
  padding: var(--s-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--s-3);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--grey-l);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 123, 140, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-success {
  display: none;
  padding: var(--s-4);
  background: rgba(74, 140, 92, 0.10);
  border: 1.5px solid var(--sage);
  border-radius: var(--r-md);
  color: var(--sage);
  font-weight: 600;
  margin-bottom: var(--s-3);
}

.form-success.is-visible { display: block; }

/* ─── WhatsApp Floating Button ────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ink);
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ─── Footer ──────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--grey-l);
  padding: var(--s-6) 0 var(--s-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-3);
}

.footer-col p { font-size: 0.9rem; line-height: 1.7; }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--s-2); }
.footer-col a {
  color: var(--grey-l);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}

.footer-brand img { width: 32px; height: 32px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 0.85rem;
}

.footer-bottom .tagline-mini {
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--grey-m);
}

/* ─── Reveal animation on scroll ──────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CTA Banner ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--s-7) var(--s-4);
  border-radius: var(--r-lg);
  margin: var(--s-6) auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(122, 181, 192, 0.15), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(168, 205, 176, 0.1), transparent 50%);
  pointer-events: none;
}

.cta-banner > * { position: relative; }

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--s-3);
}

.cta-banner h2 .accent {
  color: var(--sage-light);
  font-style: italic;
  font-weight: 400;
  display: block;
}

.cta-banner p {
  color: var(--teal-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--s-4);
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.cta-banner .btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
}

/* ════════════════════════════════════════
   ADDITIONAL STYLES — visuals + tinted bg
   ════════════════════════════════════════ */

/* Tinted section backgrounds (replaces plain white) */
.section-tint {
  background: linear-gradient(180deg, #F5F9FC 0%, #EAF2F7 100%);
}

.section-tint-warm {
  background: linear-gradient(180deg, #F8FAFA 0%, #EFF5F4 100%);
}

.section-soft-blue {
  background: linear-gradient(135deg, rgba(122, 174, 236, 0.06) 0%, rgba(168, 230, 184, 0.06) 100%);
}

/* ─── Image hero / showcase ───────────── */
.image-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}

@media (max-width: 800px) {
  .image-showcase { grid-template-columns: 1fr; }
}

.image-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 42, 61, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--s-4);
}

.image-card-label {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
}

/* ─── Split section (image + text side-by-side) ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; gap: var(--s-5); }
  .split-section.reverse-mobile > *:first-child { order: 2; }
}

.split-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4 / 3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 123, 140, 0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

.split-content h2 { margin-bottom: var(--s-3); }
.split-content p { color: var(--grey-d); font-size: 1.05rem; line-height: 1.7; margin-bottom: var(--s-3); }

.split-feature-list {
  list-style: none;
  margin-top: var(--s-4);
}

.split-feature-list li {
  padding: var(--s-2) 0;
  padding-left: var(--s-4);
  position: relative;
  color: var(--grey-d);
}

.split-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: var(--s-2);
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ─── Floating decorative shapes ───────── */
.deco-bg {
  position: relative;
  overflow: hidden;
}

.deco-bg::before,
.deco-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.deco-bg::before {
  width: 400px;
  height: 400px;
  background: var(--teal-light);
  top: -100px;
  left: -100px;
}

.deco-bg::after {
  width: 350px;
  height: 350px;
  background: var(--sage-light);
  bottom: -100px;
  right: -100px;
}

.deco-bg > * { position: relative; z-index: 1; }

/* ─── Programme contact CTA card ───────── */
.programme-cta {
  margin-top: var(--s-3);
  padding: var(--s-3) 0 0;
  border-top: 1px solid rgba(14, 42, 61, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.programme-cta-text {
  font-size: 0.85rem;
  color: var(--grey-m);
  font-style: italic;
  margin-bottom: var(--s-2);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1faa56;
  border-color: #1faa56;
  color: var(--white);
}

.btn-row-mini {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}

/* ─── Dark variant of stat strip on programmes page ─── */
.outcome-strip {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: var(--s-6) 0;
  border-radius: var(--r-lg);
  margin: 0 var(--s-3);
}

.outcome-strip h2 { color: var(--white); margin-bottom: var(--s-3); text-align: center; }
.outcome-strip > p { color: var(--teal-light); text-align: center; margin-bottom: var(--s-5); }
