/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Ada Onanuga brand */
  --ada-primary:     #522552;
  --ada-secondary:   #BB70A1;
  --ada-crimson:     #802A53;
  --ada-dark:        #471D3B;
  --ada-blush:       #FDE2FB;
  --ada-gold:        #E7B655;
  --ada-white:       #FAF5FA;

  /* The White Honeycomb Collective brand */
  --whc-white:       #FFF8F5;
  --whc-peach:       #FFE2CF;
  --whc-amber:       #F9A820;
  --whc-orange:      #EC6813;
  --whc-brown:       #642714;

  /* Typography */
  --font-ada-head:   'Playfair Display', Georgia, serif;
  --font-ada-body:   'Lato', sans-serif;
  --font-whc-head:   'DM Serif Display', Georgia, serif;
  --font-whc-body:   'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ada-body);
  color: var(--ada-dark);
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(71, 29, 59, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Fallback text if logo image fails */
.nav-logo-text {
  font-family: var(--font-ada-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.nav-logo-text span { color: var(--ada-gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-ada-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ada-gold); }
.nav-cta {
  background: var(--ada-gold) !important;
  color: var(--ada-dark) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; color: var(--ada-dark) !important; }

/* ============================================================
   HAMBURGER BUTTON
============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  background: var(--ada-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(82,37,82,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(187,112,161,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  background: rgba(231,182,85,0.06);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hero-text {
  padding: 9rem 4rem 6rem 6rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-ada-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ada-gold);
  margin-bottom: 1.4rem;
}
.hero-name {
  font-family: var(--font-ada-head);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-name em {
  font-style: italic;
  color: var(--ada-gold);
}
.hero-title {
  font-family: var(--font-ada-head);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ada-secondary);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--ada-gold);
  margin-bottom: 2rem;
}
.hero-tagline {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.8rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--ada-gold);
  color: var(--ada-dark);
  font-family: var(--font-ada-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-ada-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--ada-secondary); color: var(--ada-secondary); }

.hero-image-col {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(82,37,82,0.4) 0%, rgba(128,42,83,0.2) 100%);
}
.hero-photo-placeholder {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 460px;
  height: 88%;
  background: linear-gradient(180deg, rgba(82,37,82,0.1) 0%, rgba(71,29,59,0.6) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px 4px 0 0;
  opacity: 0.9;
}
.hero-social {
  position: absolute;
  bottom: 2.5rem;
  left: 6rem;
  display: flex;
  gap: 1.2rem;
  z-index: 2;
}
.hero-social a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.hero-social a:hover { color: var(--ada-gold); }

/* ============================================================
   CREDENTIAL BAR
============================================================ */
.cred-bar {
  background: var(--ada-primary);
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cred-number {
  font-family: var(--font-ada-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ada-gold);
}
.cred-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.cred-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.18);
}

/* ============================================================
   SECTION SHARED
============================================================ */
section { position: relative; }
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ada-secondary);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--font-ada-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ada-dark);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--ada-primary);
}
.section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}
.gold-rule {
  width: 50px;
  height: 2px;
  background: var(--ada-gold);
  margin-bottom: 2rem;
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--ada-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-frame {
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--ada-secondary);
  border-radius: 2px;
  z-index: 0;
}
.about-img-box {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 120%;
  background: linear-gradient(160deg, var(--ada-blush) 0%, rgba(187,112,161,0.25) 100%);
  border-radius: 2px;
  overflow: hidden;
}
.about-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--ada-gold);
  color: var(--ada-dark);
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-radius: 2px;
}
.badge-num {
  font-family: var(--font-ada-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-text .section-body { margin-bottom: 1.5rem; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.pillar-card {
  background: #fff;
  border: 1.5px solid var(--ada-blush);
  padding: 1.4rem;
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar-card:hover {
  border-color: var(--ada-secondary);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-name {
  font-family: var(--font-ada-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ada-primary);
  margin-bottom: 0.4rem;
}
.pillar-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #666;
}

/* ============================================================
   WORK WITH ADA
============================================================ */
.work-with {
  background: var(--ada-dark);
  overflow: hidden;
}
.work-with .section-inner { padding: 6rem 2rem; }
.work-with .section-title { color: #fff; }
.work-with .section-eyebrow { color: var(--ada-gold); }
.work-with .section-body { color: rgba(255,255,255,0.7); margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.6rem;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  background: rgba(82,37,82,0.4);
  border-color: var(--ada-secondary);
  transform: translateY(-4px);
}
.service-num {
  font-family: var(--font-ada-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ada-gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}
.service-name {
  font-family: var(--font-ada-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.25;
}
.service-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ada-gold);
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }
.work-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ============================================================
   SPEAKING TOPICS
============================================================ */
.speaking { background: #fff; }
.speaking-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.topics-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--ada-blush);
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ada-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  padding: 0.6rem 1.2rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active {
  color: var(--ada-primary);
  border-bottom-color: var(--ada-primary);
}
.tab-btn:hover { color: var(--ada-primary); }
.topics-panel { display: none; }
.topics-panel.active { display: block; }
.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: var(--ada-white);
  border-radius: 3px;
  border-left: 3px solid var(--ada-blush);
  font-size: 0.88rem;
  line-height: 1.5;
  color: #444;
  transition: border-color 0.2s;
}
.topic-item:hover { border-left-color: var(--ada-secondary); }
.topic-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ada-gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.speaking-cta {
  background: var(--ada-blush);
  padding: 2.5rem;
  border-radius: 4px;
  text-align: center;
}
.speaking-cta p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ada-dark);
  margin-bottom: 1.2rem;
}

/* ============================================================
   THE BOOK
============================================================ */
.book { background: var(--ada-blush); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.book-cover-wrap {
  display: flex;
  justify-content: center;
}
.book-cover {
  width: 300px;
  height: 420px;
  border-radius: 4px 12px 12px 4px;
  box-shadow: -8px 8px 40px rgba(82,37,82,0.35), -2px 2px 0 rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ada-primary) 0%, var(--ada-crimson) 100%);
}
/* Left spine shadow */
.book-cover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 24px;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}
/* Book cover image fills the shape */
.book-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 12px 12px 0;
  display: block;
}
/* Fallback text content (visible if no image) */
.book-cover-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 2rem 2.5rem;
  text-align: center;
  z-index: 1;
}
.book-cover-title {
  font-family: var(--font-ada-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.book-cover-title em {
  font-style: italic;
  color: var(--ada-gold);
}
.book-cover-author {
  font-family: var(--font-ada-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.book-cover-ornament {
  width: 48px;
  height: 2px;
  background: var(--ada-gold);
  margin: 1rem auto;
}
.book-text .section-title { color: var(--ada-dark); }
.book-text .section-body { margin-bottom: 1.5rem; }
.book-quote {
  font-family: var(--font-ada-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ada-primary);
  line-height: 1.6;
  padding-left: 1.5rem;
  border-left: 3px solid var(--ada-gold);
  margin: 2rem 0;
}

/* ============================================================
   THE WHITE HONEYCOMB COLLECTIVE (shared section styles)
============================================================ */
.whc {
  background: var(--whc-white);
  font-family: var(--font-whc-body);
}
.whc::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M15 2l13 7.5v15L15 32 2 24.5V9.5z' fill='none' stroke='%23F9A820' stroke-width='0.5' opacity='0.18'/%3E%3Cpath d='M45 2l13 7.5v15L45 32 32 24.5V9.5z' fill='none' stroke='%23F9A820' stroke-width='0.5' opacity='0.18'/%3E%3Cpath d='M30 28l13 7.5v15L30 58 17 50.5V35.5z' fill='none' stroke='%23F9A820' stroke-width='0.5' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}
.whc .section-inner { position: relative; z-index: 1; }
.whc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.whc-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.whc-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--whc-orange);
  margin-bottom: 0.9rem;
}
.whc-title {
  font-family: var(--font-whc-head);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--whc-brown);
  margin-bottom: 1.2rem;
}
.whc-title em {
  font-style: italic;
  color: var(--whc-orange);
}
.whc-gold-rule {
  width: 50px;
  height: 2px;
  background: var(--whc-amber);
  margin-bottom: 1.6rem;
}
.whc-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #6b4c3b;
  margin-bottom: 1.4rem;
}
.whc-tagline {
  font-family: var(--font-whc-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--whc-brown);
  line-height: 1.6;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--whc-amber);
  background: rgba(249,168,32,0.08);
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}

/* WHC Pillars */
.whc-pillars { margin-bottom: 4rem; }
.whc-pillars-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whc-orange);
  margin-bottom: 1.5rem;
}
.whc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.whc-pillar {
  background: #fff;
  border: 1.5px solid var(--whc-peach);
  border-radius: 4px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.whc-pillar:hover {
  border-color: var(--whc-amber);
  transform: translateY(-3px);
}
.whc-pillar-hex {
  width: 48px;
  height: 48px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--whc-amber);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-whc-head);
  font-size: 1.1rem;
  color: #fff;
}
.whc-pillar-name {
  font-family: var(--font-whc-head);
  font-size: 1rem;
  color: var(--whc-brown);
  margin-bottom: 0.5rem;
}
.whc-pillar-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #8a6555;
}

/* WHC Areas */
.whc-areas {
  background: var(--whc-brown);
  border-radius: 8px;
  padding: 3rem;
  margin-bottom: 3rem;
}
.whc-areas-title {
  font-family: var(--font-whc-head);
  font-size: 1.4rem;
  color: var(--whc-peach);
  margin-bottom: 0.5rem;
}
.whc-areas-sub {
  font-size: 0.85rem;
  color: rgba(255,226,207,0.65);
  margin-bottom: 2rem;
}
.whc-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 2rem auto 0;
}
.whc-area-card {
  text-align: left;
  padding: 2rem;
  background: var(--whc-white);
  border-radius: 4px;
}
.whc-area-num {
  font-family: var(--font-whc-head);
  font-size: 2rem;
  font-style: italic;
  color: var(--whc-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.whc-area-name {
  font-family: var(--font-whc-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--whc-brown);
  margin-bottom: 0.75rem;
}
.whc-area-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #7a4a30;
}

/* WHC Programmes */
.whc-programmes { margin-bottom: 1rem; }
.whc-programmes-title {
  font-family: var(--font-whc-head);
  font-size: 1.3rem;
  color: var(--whc-brown);
  margin-bottom: 1.5rem;
}
.whc-prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.whc-prog-card {
  background: #fff;
  border: 1.5px solid var(--whc-peach);
  border-radius: 4px;
  padding: 1.4rem;
  transition: border-color 0.2s;
}
.whc-prog-card:hover { border-color: var(--whc-amber); }
.whc-prog-tag {
  display: inline-block;
  background: var(--whc-peach);
  color: var(--whc-brown);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}
.whc-prog-name {
  font-family: var(--font-whc-head);
  font-size: 0.98rem;
  color: var(--whc-brown);
  margin-bottom: 0.5rem;
}
.whc-prog-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #8a6555;
}
.whc-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.btn-whc {
  display: inline-block;
  background: var(--whc-amber);
  color: var(--whc-brown);
  font-family: var(--font-whc-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-whc:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-whc-outline {
  display: inline-block;
  border: 1.5px solid var(--whc-brown);
  color: var(--whc-brown);
  font-family: var(--font-whc-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-whc-outline:hover {
  background: var(--whc-brown);
  color: var(--whc-peach);
}

/* WHC programme list (used on dedicated page) */
.whc-prog-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 680px;
}
.whc-prog-item {
  background: #fff;
  border: 1px solid var(--whc-peach);
  border-radius: 6px;
  padding: 1.5rem 1.8rem;
}
.whc-prog-item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.whc-prog-status-live {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--whc-orange);
  margin-top: 0.8rem;
}
.whc-prog-status-dev {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #a0806e;
  margin-top: 0.8rem;
}
.whc-entry-box {
  background: var(--whc-brown);
  border-radius: 6px;
  padding: 1.8rem 2rem;
  margin-top: 0.4rem;
}

/* ============================================================
   CREDENTIALS
============================================================ */
.credentials { background: var(--ada-white); }
.creds-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.creds-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cred-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border-radius: 3px;
  border-left: 3px solid var(--ada-gold);
}
.cred-row-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}
.cred-row-text strong {
  display: block;
  font-weight: 700;
  color: var(--ada-dark);
  margin-bottom: 0.1rem;
}
.cred-icon {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.05rem;
}
.brands-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 1.5rem;
  text-align: center;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.brand-chip {
  background: #fff;
  border: 1.5px solid #e8e0e8;
  border-radius: 3px;
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--ada-primary); overflow: hidden; }
.testimonials .section-title { color: #fff; }
.testimonials .section-eyebrow { color: var(--ada-gold); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2rem;
}
.testimonial-quote {
  font-family: var(--font-ada-head);
  font-size: 2rem;
  color: var(--ada-gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.testimonial-source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ada-secondary);
}

/* Testimonials carousel — 2 cards per page, scroll-snapped */
.carousel-track--testimonials {
  gap: 2rem;
}
.carousel-track--testimonials .testimonial-card {
  flex: 0 0 calc(50% - 1rem);
  scroll-snap-align: start;
}
@media (max-width: 700px) {
  .carousel-track--testimonials .testimonial-card {
    flex: 0 0 100%;
  }
}

/* ============================================================
   BRANDS I'VE WORKED WITH — auto-scrolling logo marquee
============================================================ */
.brands {
  background: var(--ada-cream, #f4efe9);
  padding: 1rem 0 4.5rem;
  overflow: hidden;
}
.brands .section-eyebrow { color: var(--ada-secondary); }
.brands .section-title { margin-bottom: 0; }

.brands-marquee {
  margin-top: 0.5rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}

.brands-track:hover { animation-play-state: paused; }

.brands-track-set {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  padding-right: 4.5rem;
}

.brand-logo {
  flex: 0 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  max-height: 200px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: opacity 0.25s, transform 0.25s;
}

.brand-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .brand-logo { height: 50px; }
  .brand-logo img { max-height: 100px; max-width: 120px; }
  .brands-track-set { gap: 2.5rem; padding-right: 2.5rem; }
}


/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--ada-crimson) 0%, var(--ada-primary) 100%);
  padding: 4rem 2rem;
  text-align: center;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter .section-eyebrow {
  color: var(--ada-gold);
  margin-bottom: 0.8rem;
  display: block;
}
.newsletter .section-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.newsletter p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-ada-body);
  font-size: 0.9rem;
  outline: none;
}

/* ============================================================
   CONTACT / FOOTER
============================================================ */
.contact { background: var(--ada-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 2rem 3rem;
  max-width: 1160px;
  margin: 0 auto;
}
.contact-brand {
  font-family: var(--font-ada-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-brand span { color: var(--ada-gold); }
.contact-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.contact-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.social-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--ada-gold); border-color: var(--ada-gold); }
.contact-col-title {
  font-family: var(--font-ada-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ada-gold);
  margin-bottom: 1.2rem;
}
.contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.contact-col ul li a:hover { color: rgba(255,255,255,0.9); }
.contact-email {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}
.contact-email a {
  color: var(--ada-secondary);
  transition: color 0.2s;
}
.contact-email a:hover { color: var(--ada-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-whc-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--whc-amber);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-whc-link:hover { opacity: 1; }

/* ============================================================
   WHC PAGE — HERO BANNER
============================================================ */
.whc-page-hero {
  background: var(--whc-brown);
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.whc-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M15 2l13 7.5v15L15 32 2 24.5V9.5z' fill='none' stroke='%23F9A820' stroke-width='0.5' opacity='0.25'/%3E%3Cpath d='M45 2l13 7.5v15L45 32 32 24.5V9.5z' fill='none' stroke='%23F9A820' stroke-width='0.5' opacity='0.25'/%3E%3Cpath d='M30 28l13 7.5v15L30 58 17 50.5V35.5z' fill='none' stroke='%23F9A820' stroke-width='0.5' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}
.whc-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.whc-page-hero-logo {
  max-width: 200px;
  margin: 0 auto 2rem;
  display: block;
}
.whc-page-hero-title {
  font-family: var(--font-whc-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--whc-peach);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.whc-page-hero-title em {
  font-style: italic;
  color: var(--whc-amber);
}
.whc-page-hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,226,207,0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   IMAGE MOSAIC
============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 420px;
}
.mosaic-panel {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--ada-dark);
  cursor: pointer;
  text-decoration: none;
}
/* Placeholder background colour when no image */
.mosaic-panel:nth-child(1) { background: #3a1a38; }
.mosaic-panel:nth-child(2) { background: #522552; }
.mosaic-panel:nth-child(3) { background: #642a55; }
.mosaic-panel:nth-child(4) { background: #471d3b; }

.mosaic-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.mosaic-panel:hover img { transform: scale(1.06); }

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(71, 29, 59, 0.25) 0%,
    rgba(71, 29, 59, 0.65) 100%
  );
  transition: background 0.3s ease;
}
.mosaic-panel:hover .mosaic-overlay {
  background: linear-gradient(
    to bottom,
    rgba(71, 29, 59, 0.35) 0%,
    rgba(71, 29, 59, 0.78) 100%
  );
}

.mosaic-label {
  position: absolute;
  bottom: 2.2rem;
  left: 1.8rem;
  right: 1rem;
  z-index: 2;
}
.mosaic-title {
  display: block;
  font-family: var(--font-ada-head);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.mosaic-sub {
  display: block;
  font-family: var(--font-ada-head);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

/* Vertical dividers between panels */
.mosaic-panel + .mosaic-panel {
  border-left: 1px solid rgba(255,255,255,0.15);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 8rem 1.5rem 3rem; }
  .hero-image-col { height: 55vw; min-height: 280px; }
  .hero-social { left: 1.5rem; }
  .about-grid, .book-grid, .speaking-header, .creds-layout,
  .whc-header, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .whc-pillars-grid, .whc-prog-grid,
  .topics-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .whc-areas-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .section-inner { padding: 4rem 1.5rem; }

  /* Keep all 4 credentials on one line at tablet */
  .cred-bar { gap: 0.8rem; padding: 1.2rem 1rem; flex-wrap: nowrap; justify-content: center; }
  .cred-item { gap: 0.4rem; }
  .cred-number { font-size: 1.15rem; }
  .cred-label { font-size: 0.62rem; letter-spacing: 0.06em; }
  .cred-sep { flex-shrink: 0; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .book-cover { width: 260px; height: 364px; }

  /* Mosaic: 2×2 grid at tablet */
  .mosaic { grid-template-columns: 1fr 1fr; height: auto; }
  .mosaic-panel { height: 280px; }
  .mosaic-panel + .mosaic-panel { border-left: none; }
  .mosaic-panel:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.15); }
  .mosaic-panel:nth-child(3),
  .mosaic-panel:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); }
  .mosaic-panel:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.15); }
  .mosaic-label { bottom: 1.5rem; left: 1.4rem; }

  /* About image: hide decorative border that clips on stacked layout, keep image visible */
  .about-img-frame::before { display: none; }
  .about-img-box { padding-top: 100%; min-height: 260px; }
  .about-img-badge { bottom: -14px; right: 0; }
}

@media (max-width: 600px) {
  /* Nav */
  .nav {
    padding: 0.9rem 1.2rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-logo { flex: 1; }
  .nav-logo-img { height: 34px; }
  .nav-hamburger { display: flex; }

  /* Mobile dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 3;
    background: rgba(71, 29, 59, 0.98);
    margin: 0 -1.2rem;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.8rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a.nav-cta {
    margin: 0.8rem 1.4rem 0;
    display: block;
    text-align: center;
    border-radius: 2px;
    border-bottom: none;
    padding: 0.75rem 1.3rem;
  }

  /* Grids */
  .services-grid, .whc-pillars-grid, .whc-areas-grid, .whc-prog-grid,
  .topics-grid, .testimonials-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 7rem 1.2rem 2.5rem; }
  /* Show the photo below the text on mobile */
  .hero-image-col {
    display: block;
    height: 70vw;
    min-height: 260px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero-image-col .hero-image-bg { display: block; }
  .hero-photo-placeholder {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 340px;
    height: 100%;
    border-radius: 4px 4px 0 0;
  }
  /* Move socials out of the image column — hide the absolute one, show inline row */
  .hero-social {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    padding: 0.6rem 1.2rem 1.4rem;
    background: var(--ada-dark);
    justify-content: center;
  }
  .hero-social a { color: rgba(255,255,255,0.55); font-size: 0.68rem; }

  /* Credential bar: one per row, centred */
  .cred-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.2rem;
    text-align: center;
  }
  .cred-sep { display: none; }
  .cred-item {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
  }
  .cred-label { text-align: center; }

  .section-inner { padding: 3rem 1.2rem; }

  .about-grid { gap: 2rem; }
  /* Mosaic: single column on mobile */
  .mosaic { grid-template-columns: 1fr; height: auto; }
  .mosaic-panel { height: 220px; border-left: none !important; }
  .mosaic-panel + .mosaic-panel { border-top: 1px solid rgba(255,255,255,0.15); border-left: none; }
  .mosaic-title { font-size: 1.4rem; }
  .mosaic-sub { font-size: 0.9rem; }
  .mosaic-label { bottom: 1.4rem; left: 1.4rem; }

  .about-img-frame { max-width: 360px; margin: 0 auto; overflow: visible; }
  .about-img-frame::before { display: none; }
  /* Switch away from the padding-top trick so the image is actually visible */
  .about-img-box {
    padding-top: 0 !important;
    height: 400px;
  }
  .about-img-box img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover;
    object-position: top center;
  }
  .about-img-badge { bottom: -14px; right: 0; padding: 0.9rem 1.1rem; }
  .badge-num { font-size: 1.5rem; }

  .pillars { grid-template-columns: 1fr; gap: 0.8rem; }

  .book-grid { gap: 2rem; }
  .book-cover { width: 200px; height: 280px; }
  .book-cover-title { font-size: 1.1rem; }

  .whc-header { gap: 2rem; }
  .whc-areas { padding: 1.8rem 1.2rem; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.2rem 2rem;
  }

  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }

  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; }

  .speaking-header { grid-template-columns: 1fr; gap: 2rem; }
  .creds-layout { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { padding: 1.2rem; }

  .whc-page-hero { padding: 7rem 1.2rem 3.5rem; }
}

/* ============================================================
   ADA IN ACTION PAGE
============================================================ */

/* ── Hero ── */
.action-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--ada-dark);
}
.action-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.action-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(71,29,59,0.88) 0%,
    rgba(71,29,59,0.60) 55%,
    rgba(71,29,59,0.25) 100%
  );
}
.action-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 9rem 4rem 6rem 6rem;
}
.action-hero-title {
  font-family: var(--font-ada-head);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.5rem;
}
.action-hero-title em {
  font-style: italic;
  color: var(--ada-gold);
}
.action-hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.action-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.action-hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ── Section wrappers ── */
.action-section {
  background: #fff;
}
.action-section--dark {
  background: var(--ada-dark);
}
.action-section--blush {
  background: var(--ada-white);
}

/* ── Podcasts ── */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.podcast-card {
  background: #fff;
  border: 1.5px solid var(--ada-blush);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(82,37,82,0.12);
}
.podcast-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--ada-primary);
  overflow: hidden;
}
.podcast-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.podcast-card:hover .podcast-thumb img { transform: scale(1.04); }
.podcast-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(71,29,59,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.podcast-card:hover .podcast-play-overlay { opacity: 1; }
.podcast-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ada-gold);
  color: var(--ada-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.podcast-play-btn svg { width: 28px; height: 28px; margin-left: 3px; }
.podcast-info {
  padding: 1.6rem 1.8rem 1.8rem;
}
.podcast-topic {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ada-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.podcast-name {
  font-family: var(--font-ada-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ada-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.podcast-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.2rem;
}
.podcast-listen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ada-primary);
  transition: color 0.2s;
}
.podcast-listen:hover { color: var(--ada-gold); }
.podcast-listen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ada-gold);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── Engagements ── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.engagement-card {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.engagement-card:hover {
  transform: translateY(-4px);
  border-color: var(--ada-secondary);
}
.engagement-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(82,37,82,0.5);
  overflow: hidden;
}
.engagement-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.engagement-card:hover .engagement-thumb img { transform: scale(1.05); }
.engagement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(71,29,59,0.5);
  transition: background 0.3s ease;
}
.engagement-card:hover .engagement-overlay { background: rgba(71,29,59,0.35); }
.engagement-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ada-gold);
  color: var(--ada-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.engagement-card:hover .engagement-play { transform: translate(-50%, -50%) scale(1.1); }
.engagement-play svg { width: 24px; height: 24px; margin-left: 3px; }
.engagement-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--ada-gold);
  color: var(--ada-dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.engagement-info {
  padding: 1.4rem 1.6rem 1.6rem;
}
.engagement-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ada-gold);
  margin-bottom: 0.5rem;
}
.engagement-title {
  font-family: var(--font-ada-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.engagement-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.engagement-watch {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ada-secondary);
  transition: color 0.2s;
}
.engagement-card:hover .engagement-watch { color: var(--ada-gold); }

/* ── Speaking Themes ── */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}
.theme-card {
  border-radius: 6px;
  padding: 2.2rem 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(82,37,82,0.1);
}
.theme-card--faith   { background: var(--ada-blush); border-top: 3px solid var(--ada-secondary); }
.theme-card--corporate { background: var(--ada-dark); border-top: 3px solid var(--ada-gold); }
.theme-card--women   { background: var(--ada-primary); border-top: 3px solid var(--ada-gold); }
.theme-icon {
  font-size: 1.4rem;
  color: var(--ada-gold);
  margin-bottom: 0.9rem;
  line-height: 1;
}
.theme-name {
  font-family: var(--font-ada-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.theme-card--faith   .theme-name { color: var(--ada-primary); }
.theme-card--corporate .theme-name,
.theme-card--women   .theme-name { color: #fff; }
.theme-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.theme-list li {
  font-size: 0.85rem;
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.theme-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ada-gold);
  font-size: 0.75rem;
}
.theme-card--faith   .theme-list li { color: #555; }
.theme-card--corporate .theme-list li,
.theme-card--women   .theme-list li { color: rgba(255,255,255,0.75); }

/* ── Credentials grid ── */
.cred-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1rem;
}
.cred-full-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1.5px solid var(--ada-blush);
  border-left: 3px solid var(--ada-gold);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cred-full-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(82,37,82,0.09);
}
.cred-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.cred-row-text { font-size: 0.88rem; line-height: 1.6; color: #555; }
.cred-row-text strong { display: block; color: var(--ada-dark); font-weight: 700; margin-bottom: 0.2rem; font-size: 0.92rem; }

/* ── Testimonials (3-col override for this page) ── */
.action-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ── Responsive: action page ── */
@media (max-width: 960px) {
  .action-hero-content { padding: 8rem 2rem 5rem 2.5rem; }
  .action-hero-scroll { left: 2.5rem; }
  .podcast-grid { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .themes-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cred-cards-grid { grid-template-columns: 1fr 1fr; }
  .action-testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .action-hero { min-height: 92vh; }
  .action-hero-content { padding: 7rem 1.4rem 4rem; }
  .action-hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .action-hero-scroll { left: 1.4rem; bottom: 1.8rem; }
  .podcast-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .engagement-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .themes-grid { grid-template-columns: 1fr; }
  .cred-cards-grid { grid-template-columns: 1fr; }
  .action-testimonials-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* ============================================================
   CAROUSEL SYSTEM
============================================================ */
.carousel-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.carousel-header .section-title { margin-bottom: 0; }
.carousel-nav-btns {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 0.3rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ada-secondary);
  background: transparent;
  color: var(--ada-primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.carousel-btn:hover {
  background: var(--ada-primary);
  color: #fff;
  border-color: var(--ada-primary);
}
.carousel-btn--light {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}
.carousel-btn--light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.carousel-viewport {
  overflow: hidden;           /* hides cards outside view */
  width: 100%;
  cursor: grab;
  position: relative;
}
.carousel-viewport:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;           /* still scrollable on touch */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;      /* Firefox */
  padding-bottom: 0.5rem;
  /* smooth edge fade */
}
.carousel-track::-webkit-scrollbar { display: none; }

/* ============================================================
   VIDEO CARDS
============================================================ */
.vid-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border: 1.5px solid var(--ada-blush);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(82,37,82,0.14);
}
.vid-card--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.vid-card--dark:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.3); }

/* Thumbnail — 16:9 aspect */
.vid-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--ada-primary);
  overflow: hidden;
  cursor: pointer;
}
/* Taller thumbnail for testimonials (portrait-ish feel) */
.vid-card-thumb--tall { padding-top: 72%; }

.vid-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vid-card:hover .vid-card-thumb img { transform: scale(1.04); }

.vid-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(71,29,59,0.35);
  transition: background 0.25s;
}
.vid-card:hover .vid-card-overlay { background: rgba(71,29,59,0.55); }

.vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ada-gold);
  color: var(--ada-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s;
  z-index: 2;
}
.vid-play-btn:hover { transform: translate(-50%, -50%) scale(1.12); background: #fff; }
.vid-play-btn svg { width: 26px; height: 26px; margin-left: 3px; }

.vid-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: var(--ada-gold);
  color: var(--ada-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  z-index: 2;
}

.vid-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.vid-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ada-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.vid-title {
  font-family: var(--font-ada-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ada-dark);
  line-height: 1.3;
}

/* ============================================================
   YOUTUBE LIGHTBOX MODAL
============================================================ */
.yt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.yt-modal.is-open { display: flex; }

.yt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 6, 18, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.yt-modal-box {
  position: relative;
  z-index: 1;
  width: min(900px, 94vw);
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.yt-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.yt-modal-close:hover { background: rgba(255,255,255,0.25); }
.yt-modal-close svg { width: 18px; height: 18px; }

.yt-modal-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.yt-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   RESPONSIVE — carousel & lightbox
============================================================ */
@media (max-width: 960px) {
  .vid-card { flex: 0 0 280px; }
  .carousel-section-inner { padding: 4rem 1.5rem; }
  .yt-modal-box { width: 96vw; }
  .yt-modal-close { top: -42px; }
}

@media (max-width: 600px) {
  .vid-card { flex: 0 0 82vw; }
  .carousel-section-inner { padding: 3rem 1.2rem; }
  .carousel-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .carousel-nav-btns { align-self: flex-end; }
  .yt-modal-box { width: 98vw; border-radius: 4px; }
  .yt-modal-close { top: -40px; right: 0; }
}

/* ============================================================
   FOOTER LOGO
============================================================ */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Logo likely has a dark/purple background — if it's transparent or light,
     add a filter to make it visible on the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-logo-link:hover .footer-logo-img { opacity: 1; }
