/* =====================================================
   AWDI PODCAST — Design System v4
   Professional · Clean · 2026
   ===================================================== */

/* ─────────────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────────────── */
:root {
  /* Color — professional slate palette (Dala-inspired) */
  --ink:        #0f172a;
  --ink-2:      #1e293b;
  --ink-3:      #475569;
  --ink-4:      #94a3b8;
  --canvas:     #ffffff;
  --canvas-2:   #f8fafc;
  --canvas-3:   #f1f5f9;
  --border:     #e2e8f0;
  --border-2:   #f1f5f9;
  --white:      #ffffff;
  --green:      #16a34a;
  --green-mid:  #22c55e;
  --green-pale: #dcfce7;
  --green-dk:   #15803d;
  --green-ink:  #052e16;
  /* Navy for dark sections / hero */
  --navy:       #0d1b2a;
  --navy-2:     #1e3a5f;

  /* Typography */
  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --t-xs:   11px;
  --t-sm:   13px;
  --t-base: 15px;
  --t-md:   17px;
  --t-lg:   20px;
  --t-xl:   26px;
  --t-2xl:  34px;
  --t-3xl:  46px;
  --t-4xl:  60px;
  --t-5xl:  80px;

  /* Spacing — 8px base */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  48px;
  --s6:  64px;
  --s7:  96px;
  --s8:  128px;

  /* Layout */
  --max-w:    1160px;
  --max-w-sm: 760px;
  --nav-h:    68px;

  /* Radius */
  --r-sm:   3px;
  --r-md:   6px;
  --r-lg:   12px;
  --r-full: 9999px;

  /* Ease */
  --ease:   cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-o: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 150ms;
  --t-mid:  250ms;
  --t-slow: 400ms;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);

  /* Extra radius */
  --r-xl: 20px;

  /* Compatibility aliases for older markup */
  --green-primary: var(--green);
  --green-dark: var(--green-dk);
  --text-dark: var(--ink);
  --text-mid: var(--ink-3);
  --text-light: var(--ink-4);
  --radius-sm: var(--r-md);
  --radius-md: var(--r-lg);
  --radius-lg: var(--r-xl);
  --transition: all var(--t-mid) var(--ease);
}

/* ─────────────────────────────────────────────────────
   2. RESET + BASE
───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
svg { flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────────────── */
.t-display {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.t-label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.t-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s3);
  background: var(--green-pale);
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.t-eyebrow::before,
.t-eyebrow::after { display: none; }

/* ─────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}

.container--sm {
  max-width: var(--max-w-sm);
}

.section {
  padding: var(--s7) 0;
}

.section--sm {
  padding: var(--s6) 0;
}

.section-head {
  margin-bottom: var(--s6);
}

.section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: var(--s2);
  margin-bottom: var(--s2);
}

.section-head p {
  font-size: var(--t-md);
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 560px;
}

.section-head--center {
  text-align: center;
}

.section-head--center p {
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: var(--border-2);
}

/* ─────────────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  padding: 12px 24px;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
  box-shadow: 0 2px 8px rgba(26,120,69,.3);
}
.btn-primary:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  box-shadow: 0 4px 16px rgba(26,120,69,.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid transparent;
  padding: 11px 4px;
}
.btn-ghost:hover { color: var(--green-dk); }
.btn-ghost::after {
  content: '→';
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-lg {
  font-size: var(--t-base);
  padding: 13px 28px;
}

.btn-white {
  background: var(--white);
  color: var(--green-dk);
  border: 1.5px solid var(--white);
}
.btn-white:hover {
  background: var(--green-pale);
  border-color: var(--green-pale);
}

/* ─────────────────────────────────────────────────────
   6. NAVIGATION
───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 var(--s5);
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: border-color var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
/* Only show the light-background logo in the navbar */
.nav-logo .logo-dark { display: none !important; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
}

.nav-links a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-3);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }

.nav-links a.nav-rdv {
  font-size: var(--t-sm);
  font-weight: 600;
  color: #fff;
  background: var(--green);
  border: 1.5px solid var(--green);
  border-radius: var(--r-full);
  padding: 7px 18px;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.nav-links a.nav-rdv::after { display: none; }
.nav-links a.nav-rdv:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s2);
  justify-self: end;
}

.nav-mobile-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  color: var(--ink);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.nav-mobile-btn:hover { background: var(--canvas-2); border-color: var(--ink-4); }

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--green-mid);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ─────────────────────────────────────────────────────
   7. HERO
───────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + var(--s7)) 0 var(--s7);
  background-color: var(--canvas);
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.93) 35%, rgba(255,255,255,0.55) 70%, rgba(255,255,255,0.25) 100%),
    url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--s7);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 680px; }

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: var(--s3);
  background: var(--green-pale);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 6px 14px;
  border-radius: var(--r-full);
}

.hero-overline span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: var(--t-md);
  line-height: 1.8;
  color: var(--ink-3);
  margin-bottom: var(--s5);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s3);
  margin-top: -80px;
  margin-right: -120px;
}

.hero-logo-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-logo-wrap img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

/* Hero logo — absolutely positioned in .hero directly (no stacking context) */
.hero-logo-abs {
  position: absolute;
  top: var(--nav-h);
  right: 40px;
  width: 300px;
  height: 300px;
  z-index: 0;
  pointer-events: none;
}
.hero-logo-abs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.hero-logo-abs .logo-light { display: block; }
.hero-logo-abs .logo-dark  { display: none; }

.hero-ep-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--green-dk);
  background: var(--green-pale);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--r-full);
  padding: 6px 14px;
  letter-spacing: 0.04em;
}

/* Hero secondary button uses standard style on light background */

/* ─────────────────────────────────────────────────────
   8. PLATFORM STRIP
───────────────────────────────────────────────────── */
.platform-strip {
  border-top: none;
  border-bottom: 1px solid var(--border);
  background: var(--canvas-2);
}

.platform-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.platform-strip-inner::-webkit-scrollbar { display: none; }

.platform-strip-label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
  flex-shrink: 0;
}

.platform-strip-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.platform-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.75;
  transition: opacity var(--t-fast);
}
.platform-link:hover { color: var(--ink); }
.platform-link:hover svg { opacity: 1; }

/* ─────────────────────────────────────────────────────
   9. EPISODE MARQUEE
───────────────────────────────────────────────────── */
.ep-marquee {
  background: var(--green-dk);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ep-marquee::before,
.ep-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 1; pointer-events: none;
}
.ep-marquee::before { left: 0; background: linear-gradient(to right, var(--green-dk), transparent); }
.ep-marquee::after  { right: 0; background: linear-gradient(to left,  var(--green-dk), transparent); }

.ep-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: var(--s4);
  white-space: nowrap;
  animation: marquee 42s linear infinite;
}
.ep-marquee:hover .ep-marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.ep-marquee-item {
  font-size: var(--t-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  cursor: default;
}

.ep-marquee-dot {
  font-size: 5px;
  color: rgba(110,231,160,0.5);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────
   10. FEATURED EPISODE
───────────────────────────────────────────────────── */
.featured-ep {
  background: linear-gradient(135deg, var(--green-ink) 0%, #0F3822 50%, var(--green-dk) 100%);
  padding: var(--s7) 0;
  position: relative;
  overflow: hidden;
}
.featured-ep::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(36,160,90,.12) 0%, transparent 60%);
  pointer-events: none;
}

.featured-ep-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: var(--s7);
  align-items: center;
}

.featured-ep-thumb {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,0.3);
}

.featured-ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: opacity var(--t-mid), transform var(--t-slow);
}

.featured-ep-thumb:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.featured-ep-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.12);
  transition: background var(--t-mid);
  text-decoration: none;
}
.featured-ep-play:hover { background: rgba(0,0,0,0.28); }

.play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-mid) var(--ease-o);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.featured-ep-play:hover .play-circle { transform: scale(1.1); }

.featured-ep-info { color: var(--white); }

.featured-ep-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(110,231,160,0.85);
  border: 1px solid rgba(110,231,160,0.3);
  border-radius: var(--r-full);
  padding: 5px 14px;
  margin-bottom: var(--s3);
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6ee7a0;
  animation: blink 1.4s step-end infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.featured-ep-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s2);
}

.featured-ep-desc {
  font-size: var(--t-base);
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s4);
}

.featured-ep-meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}

.ep-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
}

.featured-ep-actions {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}

.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1DB954;
  color: var(--white);
  font-size: var(--t-sm);
  font-weight: 600;
  border-radius: var(--r-md);
  padding: 10px 20px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-spotify:hover { background: #17a349; }
.btn-spotify:active { transform: translateY(1px); }

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: var(--t-sm);
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  padding: 10px 20px;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.btn-youtube:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.btn-youtube:active { transform: translateY(1px); }

/* ─────────────────────────────────────────────────────
   11. EPISODES GRID
───────────────────────────────────────────────────── */
.episodes-section { background: var(--white); }

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

/* Episode Card — the reusable component */
.ep-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.ep-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ep-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--canvas-2);
  display: block;
}

.ep-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.ep-card:hover .ep-card-thumb img { transform: scale(1.04); }

.ep-card-num {
  position: absolute;
  top: 12px; left: 12px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(0,0,0,0.55);
  border-radius: var(--r-sm);
  padding: 3px 8px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.ep-card-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--t-mid);
}
.ep-card:hover .ep-card-play-icon { background: rgba(0,0,0,0.22); }

.ep-card-play-icon svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--t-mid), transform var(--t-mid) var(--ease-o);
}
.ep-card:hover .ep-card-play-icon svg {
  opacity: 1;
  transform: scale(1);
}

.ep-card-body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ep-card-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s2);
}

.ep-tag {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.ep-duration {
  font-size: var(--t-xs);
  color: var(--ink-4);
  font-weight: 500;
}

.ep-card-title {
  font-size: var(--t-base);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--s2);
  flex: 1;
}

.ep-card-date {
  font-size: var(--t-xs);
  color: var(--ink-4);
  margin-bottom: var(--s3);
}

.ep-card-links {
  display: flex;
  gap: var(--s1);
  margin-top: auto;
}

.ep-card-links a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--t-xs);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
  color: var(--ink-2);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.ep-card-links a:hover {
  border-color: var(--green);
  color: var(--green);
}
.ep-card-links a svg { width: 12px; height: 12px; }

.ep-load-more {
  text-align: center;
  margin-top: var(--s6);
}

/* ─────────────────────────────────────────────────────
   12. TOPICS
───────────────────────────────────────────────────── */
.topics-section { background: var(--canvas-3); }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
}

.topic-item {
  padding: var(--s5) var(--s4);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.topic-item:hover {
  background: var(--canvas);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.topic-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: var(--s2);
}

.topic-label {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.topic-desc {
  font-size: var(--t-sm);
  color: var(--ink-3);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────
   13. HOST / ABOUT — DALA REDESIGN
───────────────────────────────────────────────────── */
.host-section { padding: 80px 0; }

.host-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

/* Left visual column */
.host-visual-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.host-photo-wrap {
  background: linear-gradient(160deg, #0a2218 0%, #0f2d20 100%);
  border-radius: 20px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.host-photo-placeholder {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(74,222,128,0.2);
}

.host-name-plate { display: flex; flex-direction: column; gap: 4px; }
.host-name-plate-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.host-name-plate-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.host-identity-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.host-identity-tags span {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dk);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
  text-align: center;
}

.host-email-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.host-email-link:hover {
  border-color: var(--green);
  color: var(--green-dk);
  background: var(--green-pale);
}

/* Right content column */
.host-content-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.host-content-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin: 4px 0 0;
}

.host-content-text {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.75;
  margin: 0;
}

.host-pull-quote {
  position: relative;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 6px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.7;
}

.host-pull-quote-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--green);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -8px;
}

.host-signature-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.host-sig-line {
  width: 32px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.host-sig-text {
  font-size: 13px;
  color: var(--ink-4);
  font-style: italic;
}

.host-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}

/* Responsive — handled in the inner-pages block below */

/* ─────────────────────────────────────────────────────
   14. STATS
───────────────────────────────────────────────────── */
.stats-strip {
  background: var(--ink);
  border-top: none;
  border-bottom: none;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s7) var(--s5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: var(--s4) var(--s4);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--green-mid);
  margin-bottom: 10px;
}

.stat-label {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────
   15. TESTIMONIALS
───────────────────────────────────────────────────── */
.testimonials-section { background: var(--white); }

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

.testimonial-card {
  padding: var(--s5) var(--s4);
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-quote-icon {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--green-pale);
  margin-bottom: var(--s1);
  flex-shrink: 0;
  color: var(--green-mid);
  opacity: 0.3;
}

.testimonial-text {
  font-size: var(--t-md);
  line-height: 1.75;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: var(--s4);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
}

.testimonial-role {
  font-size: var(--t-xs);
  color: var(--ink-4);
}

/* Testimonials carousel (JS-upgraded) */
.testimonials-track-wrap {
  overflow: hidden;
  border-radius: var(--r-lg);
}

.testimonials-track {
  display: flex;
  gap: var(--s3);
  transition: transform 0.4s var(--ease);
}

.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 11px);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  margin-top: var(--s4);
}

.t-prev, .t-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.t-prev:hover, .t-next:hover { border-color: var(--green); color: var(--green); }

.testimonials-dots { display: flex; gap: 6px; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 10px;
  background-clip: content-box;
  transition: background var(--t-fast), transform var(--t-fast);
}
.t-dot.active { background: var(--green); background-clip: content-box; transform: scale(1.3); }

/* ─────────────────────────────────────────────────────
   16. BLOG
───────────────────────────────────────────────────── */
.blog-section { background: var(--canvas-2); }

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--canvas-2);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s1);
  display: block;
}

.blog-card-title {
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--s2);
  flex: 1;
}

.blog-card-excerpt {
  font-size: var(--t-sm);
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: var(--s3);
}

.blog-meta {
  display: flex;
  gap: var(--s2);
  align-items: center;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--t-xs);
  color: var(--ink-4);
}

.blog-meta-item svg { width: 12px; height: 12px; }

/* ─────────────────────────────────────────────────────
   17. VIDEOS
───────────────────────────────────────────────────── */
.videos-section { background: var(--white); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  justify-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid);
}
.video-card:hover { border-color: var(--border); transform: translateY(-2px); }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* YouTube facade */
.yt-facade {
  cursor: pointer;
  position: relative;
  display: block;
}

.yt-facade img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  transition: opacity var(--t-mid);
}

.yt-facade:hover img { opacity: 0.9; }

.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 40px;
  background: #ff0000;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--t-fast), transform var(--t-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  cursor: pointer;
}
.yt-facade:hover .yt-play-btn {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-body {
  padding: var(--s3);
}

.video-card-body h3 {
  font-size: var(--t-base);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 8px;
}

.video-card-body p {
  font-size: var(--t-sm);
  color: var(--ink-3);
  line-height: 1.65;
}

.video-card-cta {
  grid-column: 1 / -1;
  background: var(--canvas-2);
  border: 1px dashed var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s5) var(--s4);
  gap: var(--s2);
}

.video-card-cta h3 {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
}
.video-card-cta p {
  font-size: var(--t-sm);
  color: var(--ink-3);
}

/* ─────────────────────────────────────────────────────
   18. FAQ
───────────────────────────────────────────────────── */
.faq-section { background: var(--canvas-2); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item.open { border-color: var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-sans);
}

.faq-chevron { color: var(--ink-3); transition: transform var(--t-mid); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 var(--s4) var(--s3);
  font-size: var(--t-base);
  color: var(--ink-3);
  line-height: 1.8;
  border-top: 1px solid var(--border-2);
  padding-top: var(--s2);
}
.faq-answer-inner a { color: var(--green); text-decoration: underline; }

/* ─────────────────────────────────────────────────────
   19. CTA SECTION
───────────────────────────────────────────────────── */
.cta-section {
  background: var(--green-ink);
  padding: var(--s8) 0;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--s5);
}

.cta-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(110,231,160,0.75);
  margin-bottom: var(--s3);
  display: block;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s3);
}

.cta-desc {
  font-size: var(--t-md);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--s5);
}

.cta-actions {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}

/* Fallback: .cta-section .container (services.html, videos.html) */
.cta-section .container {
  max-width: 640px;
  text-align: center;
}
.cta-section .container h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: var(--s3);
}
.cta-section .container p {
  font-size: var(--t-md);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--s5);
}
.cta-section .container > div { display: flex; gap: var(--s2); justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────
   20. FOOTER
───────────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--s8) 0 var(--s5);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s4);
}

.footer-logo-link img { height: 60px; width: auto; margin-bottom: var(--s3); }

.footer-tagline {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: var(--s2);
}

.footer-desc {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink-3);
  margin-bottom: var(--s4);
}

.footer-badges {
  display: flex;
  gap: 6px;
  margin-bottom: var(--s3);
}
.footer-badges span {
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--green);
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: var(--r-full);
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  color: var(--ink-3);
  margin-bottom: var(--s3);
  transition: color var(--t-fast);
}
.footer-email:hover { color: var(--green); }

.footer-socials {
  display: flex;
  gap: var(--s2);
}
.footer-social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.footer-social-icon:hover { color: var(--green); border-color: var(--green); background: var(--green-pale); }

.footer-nav-col h5 {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.footer-nav-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-nav-col a {
  font-size: var(--t-sm);
  color: var(--ink-3);
  transition: color var(--t-fast);
}
.footer-nav-col a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--t-xs);
  color: var(--ink-4);
}

.footer-legal {
  display: flex;
  gap: var(--s3);
}
.footer-legal a {
  font-size: var(--t-xs);
  color: var(--ink-4);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--ink); }

/* ─────────────────────────────────────────────────────
   21. PAGE HEROES (inner pages)
───────────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--s6)) var(--s5) var(--s6);
  max-width: 100%;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: 5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--s2);
}

.page-hero p {
  font-size: var(--t-md);
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 560px;
}

/* ─────────────────────────────────────────────────────
   22. MISC UTILITIES
───────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--s6); }
.mt-5 { margin-top: var(--s5); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: var(--s5);
  right: var(--s4);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,107,58,0.35);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s var(--ease-o), opacity 0.4s var(--ease);
  z-index: 990;
  cursor: pointer;
  border: none;
}
#back-to-top.visible { transform: translateY(0); opacity: 1; }
#back-to-top:hover { background: var(--green-dk); }

/* Toast */
.toast {
  position: fixed;
  bottom: var(--s5);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--white);
  font-size: var(--t-sm);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: transform 0.35s var(--ease-o);
  white-space: nowrap;
  max-width: calc(100vw - 40px);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Ripple */
.btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Page transitions removed — were causing header visibility issues */

/* ─────────────────────────────────────────────────────
   23. MOBILE RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ep-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 6px); }
  .host-inner { grid-template-columns: 320px 1fr; gap: var(--s6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav */
  .navbar { padding: 0 var(--s3); }

  .nav-links {
    position: fixed !important;
    top: 0; right: 0;
    width: min(300px, 88vw);
    height: 100dvh;
    background: #071a10 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 72px 0 32px !important;
    transform: translateX(110%) !important;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important;
    box-shadow: -16px 0 48px rgba(0,0,0,0.35) !important;
    display: flex !important;
    z-index: 998 !important;
    overflow-y: auto !important;
    list-style: none !important;
    border-left: 1px solid rgba(255,255,255,0.07) !important;
  }
  .nav-links.open { transform: translateX(0) !important; }

  .nav-links li { width: 100% !important; }
  .nav-links li a {
    display: flex !important;
    align-items: center !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.6) !important;
    border-radius: 0 !important;
    width: 100% !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    transition: color var(--t-fast), background var(--t-fast), padding-left var(--t-fast) !important;
  }
  .nav-links li a:hover {
    color: rgba(255,255,255,0.9) !important;
    background: rgba(255,255,255,0.05) !important;
  }
  .nav-links li a.active {
    color: #4ade80 !important;
    background: rgba(74,222,128,0.08) !important;
    padding-left: 28px !important;
    border-left: 3px solid #4ade80 !important;
  }
  .nav-links a::after { display: none !important; }

  /* Hamburger always at far right regardless of wrapper */
  .nav-mobile-btn { justify-self: end; }

  /* RDV link: full-width pill at bottom (nav-rdv and nav-cta are both used across pages) */
  .nav-links li:last-child {
    padding: 20px 20px 0 !important;
    margin-top: auto !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
  }
  .nav-links a.nav-rdv,
  .nav-links a.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    border-radius: var(--r-full) !important;
    padding: 13px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-align: center !important;
    justify-content: center !important;
    border-bottom: none !important;
    width: 100% !important;
  }
  .nav-links a.nav-rdv:hover,
  .nav-links a.nav-cta:hover {
    background: var(--green-dk) !important;
    padding-left: 24px !important;
    color: #fff !important;
  }
  .nav-links a.nav-rdv.active,
  .nav-links a.nav-cta.active {
    color: #fff !important;
    background: var(--green-dk) !important;
    padding-left: 24px !important;
    border-left: none !important;
  }

  /* Injected drawer header */
  .nav-drawer-header {
    position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    z-index: 1 !important;
  }
  .nav-drawer-logo {
    height: 36px !important;
    width: auto !important;
    filter: brightness(0) invert(1) !important;
  }
  .nav-drawer-close {
    width: 36px !important; height: 36px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.8) !important;
    border: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: background var(--t-fast) !important;
  }
  .nav-drawer-close:hover { background: rgba(255,255,255,0.18) !important; }

  .nav-mobile-btn { display: flex; }
  /* Hero */
  .hero { padding: calc(var(--nav-h) + var(--s6)) 0 var(--s6); }
  .hero-inner { grid-template-columns: 1fr; gap: var(--s5); }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub { font-size: var(--t-base); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Platform strip */
  .platform-strip-inner { gap: var(--s3); }

  /* Featured ep */
  .featured-ep-inner { grid-template-columns: 1fr; gap: var(--s4); }

  /* Episodes */
  .ep-grid { grid-template-columns: 1fr; }

  /* Topics */
  .topics-grid { grid-template-columns: 1fr; }
  .topic-item { border-right: none; }
  .topic-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .topic-item:last-child { border-bottom: none; }

  /* Host */
  .host-inner { grid-template-columns: 1fr; gap: var(--s5); }
  .host-card { position: static; max-width: 360px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
  .stat-item { padding: 0; border-right: none; text-align: center; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { flex: 0 0 100%; }

  /* Blog / Videos */
  .blog-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .footer-bottom { flex-direction: column; gap: var(--s2); }

  /* General */
  .container { padding: 0 var(--s3); }
  .section { padding: var(--s6) 0; }

  /* Ensure all content visible on mobile */
  * { -webkit-text-fill-color: unset; }
}

/* Drawer header only visible inside the mobile nav drawer */
.nav-drawer-header { display: none; }

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 997;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.nav-overlay.show {
  display: block;
}

/* ─────────────────────────────────────────────────────
   24. VARIABLE ALIASES + MISSING COMPONENTS
   (keeps all inner pages consistent with the design system)
───────────────────────────────────────────────────── */

/* Map old variable names → current design tokens */
:root {
  --text-dark:     var(--ink);
  --text-mid:      var(--ink-2);
  --text-light:    var(--ink-4);
  --green-primary: var(--green-mid);
  --green-dark:    var(--green-dk);
  --radius-sm:     var(--r-sm);
  --radius-md:     var(--r-md);
  --radius-lg:     var(--r-lg);
  --transition:    all var(--t-mid) var(--ease);
}

/* Breadcrumb */
.breadcrumb {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: var(--s3);
  display: block;
}
.breadcrumb a { color: var(--ink-4); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--green); }

/* Section label (alias for .t-label) */
.section-label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: var(--s2);
}

/* Section header (alias for .section-head) */
.section-header { margin-bottom: var(--s6); }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: var(--s2);
  margin-bottom: var(--s2);
}
.section-header p {
  font-size: var(--t-md);
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 560px;
}

/* bg-light utility */
.bg-light { background: var(--canvas-2); }
.bg-light > .container { padding-top: var(--s7); padding-bottom: var(--s7); }

/* nav-cta (alias for .nav-rdv) */
.nav-links a.nav-cta {
  font-size: var(--t-sm);
  font-weight: 600;
  color: #fff;
  background: var(--green);
  border: 1.5px solid var(--green);
  border-radius: var(--r-full);
  padding: 7px 18px;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  color: var(--white);
}

/* btn-outline */
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* Footer bottom bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
  font-size: var(--t-xs);
  color: var(--ink-4);
  padding-top: var(--s3);
}
.footer-legal-links { display: flex; gap: var(--s3); }
.footer-legal-links a {
  font-size: var(--t-xs);
  color: var(--ink-4);
  transition: color var(--t-fast);
}
.footer-legal-links a:hover { color: var(--ink); }

/* About page layout */
.about-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--s8);
  align-items: start;
  padding: var(--s7) 0;
}
.about-image-wrap { position: sticky; top: calc(var(--nav-h) + var(--s4)); }
.about-img-placeholder {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--canvas-2);
}
.about-img-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--s4);
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.65;
  list-style: none;
}
.value-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  border: 1px solid rgba(46,155,91,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Features / Mission grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.feature-card {
  padding: var(--s5);
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  transition: border-color var(--t-mid), transform var(--t-mid);
}
.feature-card:hover { border-color: var(--border); transform: translateY(-2px); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  border: 1px solid rgba(46,155,91,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
}
.feature-card h3 {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.feature-card p {
  font-size: var(--t-base);
  color: var(--ink-3);
  line-height: 1.75;
}

/* Contact page */
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s7) var(--s5);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s8);
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  margin-bottom: var(--s4);
}
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  border: 1px solid rgba(46,155,91,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.contact-info-item a {
  font-size: var(--t-sm);
  color: var(--green);
  font-weight: 500;
}
.contact-info-item p {
  font-size: var(--t-xs);
  color: var(--ink-4);
  margin-top: 2px;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: var(--s5);
}
.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
.form-group { margin-bottom: var(--s3); }
.form-group label {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: var(--t-base);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green-mid); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* Services page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: var(--s5);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid);
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--border); transform: translateY(-3px); }
.service-card.featured {
  background: var(--green-ink);
  border-color: transparent;
  color: var(--white);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
  flex-shrink: 0;
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.12);
}
.service-card h3 {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s1);
}
.service-card.featured h3 { color: var(--white); }
.service-price {
  font-family: var(--font-serif);
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--green);
  margin-bottom: var(--s2);
  line-height: 1;
}
.service-price span {
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  color: var(--ink-3);
  font-weight: 500;
}
.service-card.featured .service-price { color: #6ee7a0; }
.service-card.featured .service-price span { color: rgba(255,255,255,0.5); }
.service-card > p {
  font-size: var(--t-sm);
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: var(--s3);
}
.service-card.featured > p { color: rgba(255,255,255,0.65); }
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s4);
  flex: 1; /* pushes button area to the bottom */
}

/* Pin the action area to the bottom of every service card */
.service-card > .btn,
.service-card > a.btn,
.service-card > .stripe-wrap { margin-top: auto; }
.service-features li {
  font-size: var(--t-sm);
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.service-card.featured .service-features li { color: rgba(255,255,255,0.75); }
.service-card.featured .service-features li::before { color: #6ee7a0; }

/* Blog card title (h3 inside .blog-card-body) */
.blog-card-body h3 {
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--s2);
  flex: 1;
}
/* blog-card-meta alias for .blog-meta */
.blog-card-meta {
  display: flex;
  gap: var(--s2);
  align-items: center;
  margin-top: auto;
}
.blog-card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--t-xs);
  color: var(--ink-4);
}

/* Sections without .section class still get breathing room */
section:not([class]) > .container,
section.bg-light > .container {
  padding-top: var(--s7);
  padding-bottom: var(--s7);
}

/* Mobile */
@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: var(--s5); padding: var(--s5) 0; }
  .about-image-wrap { position: static; }
  .about-img-placeholder { aspect-ratio: 16 / 9; }
  .features-grid { grid-template-columns: 1fr; gap: var(--s3); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s4); padding: var(--s5) var(--s3); }
  .contact-name-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-h) + var(--s5)) var(--s3) var(--s5); }
  .bg-light > .container { padding-top: var(--s5); padding-bottom: var(--s5); }
  .footer-bottom-bar { flex-direction: column; gap: var(--s2); text-align: center; }
  /* nav-cta drawer styles handled in the 768px mobile nav block above */
  section:not([class]) > .container,
  section.bg-light > .container { padding-top: var(--s5); padding-bottom: var(--s5); }
}

/* ─────────────────────────────────────────────────────
   25. ARTICLE PAGE
───────────────────────────────────────────────────── */
.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--s7)) var(--s5) var(--s8);
}

.article-header {
  margin-bottom: var(--s6);
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--border-2);
}

.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  color: var(--ink-4);
  font-size: var(--t-sm);
  margin-top: var(--s3);
}

.article-meta .author {
  display: flex;
  align-items: center;
  gap: var(--s1);
  color: var(--ink-2);
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--s3);
}

.tag {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.article-intro {
  font-size: var(--t-md);
  color: var(--ink-2);
  line-height: 1.75;
  margin: var(--s4) 0 var(--s5);
  padding-left: var(--s4);
  border-left: 3px solid var(--green);
}

.article-body {
  font-size: var(--t-base);
  color: var(--ink);
  line-height: 1.85;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--s6) 0 var(--s2);
}

.article-body h3 {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
  margin: var(--s5) 0 var(--s2);
}

.article-body p { margin-bottom: var(--s3); }

.article-body ul, .article-body ol {
  margin-left: var(--s4);
  margin-bottom: var(--s3);
}

.article-body li { margin-bottom: 6px; line-height: 1.7; }

.article-body blockquote {
  border-left: 3px solid var(--green);
  padding-left: var(--s4);
  margin: var(--s4) 0;
  color: var(--ink-2);
  font-style: italic;
}

/* Share strip */
.article-share {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
  padding: var(--s4) 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  margin: var(--s6) 0;
}

.share-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-right: var(--s1);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--ink-2);
  background: var(--canvas-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  text-decoration: none;
}
.share-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.share-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

/* Author box */
.article-author-box {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  background: var(--canvas-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: var(--s5);
  margin-top: var(--s6);
}

.author-avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
}

.article-author-box h4 {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.article-author-box p {
  font-size: var(--t-sm);
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: var(--s2);
}

/* Related articles grid */
.related-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s4);
  margin-top: var(--s4);
}

@media (max-width: 768px) {
  .article-content { padding: calc(var(--nav-h) + var(--s4)) var(--s3) var(--s6); }
  .article-header h1 { font-size: clamp(22px, 5vw, 32px); }
  .article-intro { font-size: var(--t-base); }
  .related-articles { grid-template-columns: 1fr; }
  .article-author-box { flex-direction: column; }
}

/* ─────────────────────────────────────────────────────
   26. REDESIGN — NEW COMPONENTS
───────────────────────────────────────────────────── */

/* About page prose */
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s2) 0 var(--s3);
}

.about-body {
  font-size: var(--t-md);
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: var(--s2);
}

.about-callout {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--s3) var(--s4);
  margin-bottom: var(--s5);
}

.about-callout-label {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-callout p {
  font-size: var(--t-sm);
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}

.text-green { color: var(--green); }

/* Host bio card */
.host-bio-card {
  background: var(--green-pale);
  border-radius: var(--r-xl);
  padding: var(--s6);
  border: 1px solid rgba(26,120,69,.12);
  margin-bottom: var(--s5);
}

.host-bio-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2);
  padding-top: var(--s4);
  border-top: 1px solid rgba(26,120,69,.12);
  margin-top: var(--s4);
}

/* Blog filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-bottom: var(--s5);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border-2);
}

.filter-btn {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-3);
  background: var(--canvas-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 10px 16px;
  min-height: 44px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.filter-btn:hover { color: var(--green); border-color: var(--green); background: var(--green-pale); }
.filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* Blog grid main (blog.html full grid with featured) */
.blog-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s4);
}

/* Featured article */
.featured-article {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 100%);
  border-radius: var(--r-xl);
  padding: var(--s6);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s5);
  align-items: center;
}

.featured-article .blog-tag {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.15);
  padding: 3px 10px;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: var(--s2);
}

.featured-article h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s2);
}

.featured-article p {
  font-size: var(--t-base);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: var(--s4);
  max-width: 560px;
}

.featured-icon {
  width: 180px;
  height: 180px;
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.15);
}

.featured-icon img { width: 100%; height: 100%; object-fit: cover; }

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: var(--s1);
  margin-top: var(--s6);
}

/* Services guarantee strip */
.guarantee-strip {
  background: var(--green-pale);
  border-bottom: 1px solid rgba(26,120,69,.1);
  padding: var(--s4) 0;
}

.guarantee-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--green-dk);
}

.guarantee-item svg { color: var(--green); }

/* Feature card redesign */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s4);
}

.feature-card {
  padding: var(--s5);
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s3);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--s1);
}

.feature-card p { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.7; }

/* Contact page subject grid */
.subject-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s1);
  margin-bottom: var(--s3);
}

.subject-btn {
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--ink-2);
  background: var(--canvas-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.subject-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.subject-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* Values list redesign */
.values-list { list-style: none; padding: 0; display: grid; gap: var(--s3); margin-top: var(--s5); }
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.7;
}
.value-icon {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-icon { display: none; }
  .subject-grid { grid-template-columns: repeat(2, 1fr); }
  .host-bio-card { padding: var(--s4); }
  .blog-grid-main { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────
   NEWSLETTER SECTION
───────────────────────────────────────────────────── */
.newsletter-section {
  background: #0f2d20 !important;
  padding: 80px 24px !important;
  display: block !important;
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 16px;
}

.newsletter-title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.newsletter-desc {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 13px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,0.15);
  font-family: var(--font-sans);
  font-size: 15px;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  outline: none;
  transition: border-color 150ms, background 150ms;
}
.newsletter-input:focus {
  border-color: rgba(74,222,128,0.6);
  background: rgba(255,255,255,0.14);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }

.newsletter-fine {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-input { max-width: 100%; }
}

/* ─────────────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────────────── */
.btn-full { width: 100%; justify-content: center; }
.container--md { max-width: 800px; }
.container--960 { max-width: 960px; }
.mt-8 { margin-top: var(--s7); }

/* ─────────────────────────────────────────────────────
   FOOTER LOGO
───────────────────────────────────────────────────── */
.footer-logo-link img { height: 64px; width: auto; }

/* ─────────────────────────────────────────────────────
   ARTICLE — AUTHOR BOX INNER ELEMENTS
───────────────────────────────────────────────────── */
.author-name { font-weight: 700; font-size: var(--t-md); color: var(--ink); margin-bottom: 4px; }
.author-role { font-size: var(--t-sm); color: var(--green); font-weight: 600; margin-bottom: var(--s2); }
.author-bio  { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.7; }
.author-actions { margin-top: var(--s2); display: flex; gap: 8px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────
   SERVICES — EXTRA COMPONENTS
───────────────────────────────────────────────────── */
.service-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: var(--t-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}

.service-security-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin-top: var(--s4);
  padding: var(--s3) var(--s4);
  background: var(--green-pale);
  border-radius: var(--r-lg);
  border: 1px solid rgba(22,163,74,0.15);
}
.service-security-box p { font-size: var(--t-sm); color: var(--green-dk); margin: 0; }

.btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--r-full);
  font-size: var(--t-base);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  background: var(--green);
  color: white;
}
.btn-pay:hover { background: var(--green-dk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(22,163,74,.3); }
.service-card.featured .btn-pay { background: white; color: var(--green-dk); }
.service-card.featured .btn-pay:hover { background: var(--green-pale); transform: translateY(-1px); }

.stripe-wrap stripe-buy-button { width: 100%; }
.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-xs);
  color: var(--ink-4);
  margin-top: 8px;
  justify-content: center;
  width: 100%;
}
.service-card.featured .stripe-badge { color: rgba(255,255,255,0.55); }
.service-card.featured .stripe-badge svg { stroke: rgba(255,255,255,0.55); }

.pay-or { font-size: var(--t-xs); color: var(--ink-4); text-align: center; margin: 8px 0; text-transform: uppercase; letter-spacing: 0.1em; }
.service-card.featured .pay-or { color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────────────────
   GUARANTEE STRIP
───────────────────────────────────────────────────── */
.guarantee-strip {
  display: flex;
  justify-content: center;
  gap: var(--s5);
  flex-wrap: wrap;
  padding: var(--s3) var(--s5);
  background: var(--green-pale);
  border-top: 1px solid rgba(22,163,74,0.12);
  border-bottom: 1px solid rgba(22,163,74,0.12);
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--green-dk);
}
.guarantee-item svg { flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   CONTACT — EXTRA
───────────────────────────────────────────────────── */
.contact-section-title {
  font-size: var(--t-lg);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--s4);
  letter-spacing: -0.02em;
}
.contact-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.contact-info-icon svg { stroke: var(--green); }
.contact-socials { margin-top: var(--s4); }
.contact-socials-title {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-socials-row { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-form-title { font-size: var(--t-lg); font-weight: 800; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.02em; }
.contact-form-sub { font-size: var(--t-base); color: var(--ink-3); margin-bottom: var(--s4); }
.contact-subject-label { font-size: var(--t-sm); font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.contact-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-top: 4px; }
.contact-checkbox input[type="checkbox"] { width: auto; margin-top: 4px; flex-shrink: 0; accent-color: var(--green); }
.contact-checkbox label { font-size: var(--t-sm); color: var(--ink-3); font-weight: 400; cursor: pointer; line-height: 1.6; }

.subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: var(--s3);
}
.subject-btn {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--ink-3);
  font-size: var(--t-sm);
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
  font-family: inherit;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.subject-btn svg { flex-shrink: 0; }
.subject-btn:hover,
.subject-btn.selected { border-color: var(--green); background: var(--green-pale); color: var(--green-dk); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s5);
  box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────────────
   BOOKING (RENDEZ-VOUS) PAGE
───────────────────────────────────────────────────── */
.rdv-note {
  background: var(--green-pale);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--r-lg);
  padding: var(--s3) var(--s4);
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: var(--s5);
}
.rdv-note strong { color: var(--green-dk); }

.rdv-steps {
  display: flex;
  gap: var(--s3);
  margin-bottom: var(--s6);
  flex-wrap: wrap;
}
.rdv-step {
  flex: 1;
  min-width: 180px;
  background: var(--canvas-2);
  border-radius: var(--r-lg);
  padding: var(--s3);
  text-align: center;
  border: 1px solid var(--border);
}
.step-number {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--t-base);
  margin: 0 auto var(--s2);
}
.rdv-step h4 { font-size: var(--t-sm); font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.rdv-step p  { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.6; }

.rdv-service-title { font-size: var(--t-lg); font-weight: 800; color: var(--ink); margin-bottom: var(--s3); letter-spacing: -0.02em; }
.service-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--s2);
  margin-bottom: var(--s4);
}
.service-option {
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s3);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  text-align: center;
}
.service-option:hover,
.service-option.selected { border-color: var(--green); background: var(--green-pale); }
.opt-icon { margin-bottom: 10px; display: flex; justify-content: center; }
.service-option h4 { font-size: var(--t-sm); font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.service-option p  { font-size: var(--t-xs); color: var(--ink-3); }
.opt-price { font-size: var(--t-base); font-weight: 800; color: var(--green); margin-top: 6px; }

.calendly-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.calendly-header {
  background: var(--green-pale);
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid rgba(22,163,74,0.15);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.calendly-header h3 { font-size: var(--t-base); font-weight: 800; color: var(--green-dk); }
.calendly-header p  { font-size: var(--t-sm); color: var(--ink-3); }
.cal-icon-wrap {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calendly-embed { min-height: 680px; display: block; }

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s3);
  margin-top: var(--s5);
}
.info-box {
  background: var(--canvas-2);
  border-radius: var(--r-lg);
  padding: var(--s3);
  border: 1px solid var(--border);
}
.info-box-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s2);
  box-shadow: var(--shadow-sm);
}
.info-box h4 { font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: var(--t-sm); }
.info-box p  { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.6; }

@media (max-width: 768px) {
  .calendly-header { padding: var(--s2) var(--s3); }
  .calendly-embed { min-height: 520px; }
  .calendly-inline-widget { height: 520px !important; }
  .rdv-steps { gap: 12px; }
  .rdv-step { min-width: unset; padding: var(--s2); }
  .contact-name-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .calendly-embed { min-height: 480px; }
  .calendly-inline-widget { height: 480px !important; }
}

/* ─────────────────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────────────────── */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s6) var(--s5);
}
.legal-updated {
  font-size: var(--t-sm);
  color: var(--ink-4);
  margin-bottom: var(--s5);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.legal-section {
  margin-bottom: var(--s5);
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--border-2);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: var(--t-lg);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}
.legal-section p  { color: var(--ink-2); line-height: 1.8; margin-bottom: var(--s2); font-size: var(--t-base); }
.legal-section ul { margin: var(--s2) 0 var(--s2) var(--s4); }
.legal-section li { list-style: disc; color: var(--ink-2); line-height: 1.7; margin-bottom: 6px; font-size: var(--t-base); }
.legal-section a  { color: var(--green); text-decoration: underline; }
.legal-section a:hover { color: var(--green-dk); }
.legal-highlight {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--s3) var(--s4);
  margin: var(--s3) 0;
}
.legal-highlight p { margin: 0; color: var(--ink-2); }

/* ─────────────────────────────────────────────────────
   PAYMENT PAGES (Confirmation & Annulation)
───────────────────────────────────────────────────── */
.confirmation-wrap,
.cancel-wrap {
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s5) var(--s3);
  padding-top: calc(var(--nav-h) + var(--s5));
  background: var(--canvas-2);
}
.confirmation-card,
.cancel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6) var(--s5);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.confirmation-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s4);
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.cancel-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s4);
}
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirmation-card h1,
.cancel-card h1 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--s2);
  letter-spacing: -0.025em;
}
.confirmation-card p,
.cancel-card p { font-size: var(--t-base); color: var(--ink-3); line-height: 1.75; margin-bottom: var(--s2); }
.confirmation-divider,
.cancel-divider { height: 1px; background: var(--border); margin: var(--s4) 0; }
.confirmation-steps { text-align: left; margin-bottom: var(--s4); }
.confirmation-step { display: flex; align-items: flex-start; gap: var(--s2); margin-bottom: var(--s3); }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--green-pale); color: var(--green-dk); font-size: var(--t-xs); font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step-text strong { font-size: var(--t-sm); color: var(--ink); display: block; margin-bottom: 2px; }
.step-text span { font-size: var(--t-sm); color: var(--ink-3); }
.confirmation-actions,
.cancel-actions { display: flex; flex-direction: column; gap: 10px; margin-top: var(--s4); }
.stripe-secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: var(--t-xs); color: var(--ink-4); margin-top: var(--s3); }
.cancel-fine { font-size: var(--t-xs); color: var(--ink-4); margin-top: var(--s2); }

@media (max-width: 480px) {
  .confirmation-card, .cancel-card { padding: var(--s4) var(--s3); }
}

/* ─────────────────────────────────────────────────────
   VIDEOS PAGE
───────────────────────────────────────────────────── */
.videos-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s4);
  align-items: start;
}
.video-main-feature {
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--s6);
}
.video-main-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-main-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-main-info {
  padding: var(--s3) var(--s4);
  color: white;
}
.video-main-info h2 { font-size: var(--t-lg); font-weight: 800; margin-bottom: 8px; }
.video-main-info p  { opacity: 0.75; font-size: var(--t-base); line-height: 1.7; }

.playlist-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.playlist-header {
  padding: var(--s2) var(--s3);
  background: var(--green-pale);
  border-bottom: 1px solid rgba(22,163,74,0.12);
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--green-dk);
  display: flex;
  align-items: center;
  gap: 8px;
}
.playlist-header svg { width: 16px; height: 16px; color: var(--green); }
.playlist-items { padding: 8px; max-height: 500px; overflow-y: auto; }

.video-playlist-item {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  padding: var(--s2);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}
.video-playlist-item:hover,
.video-playlist-item.active { background: var(--green-pale); border-color: rgba(22,163,74,0.2); }
.video-thumb {
  width: 120px; height: 68px;
  background: linear-gradient(135deg, var(--green-pale), #c8e6d4);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb svg { width: 28px; height: 28px; color: var(--green); }
.video-playlist-info h4 { font-size: var(--t-sm); font-weight: 700; color: var(--ink); margin-bottom: 4px; line-height: 1.4; }
.video-playlist-info p  { font-size: var(--t-xs); color: var(--ink-4); }

.yt-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0f0f0f;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.yt-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.yt-placeholder .yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  background: #FF0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast), background var(--t-fast);
}
.yt-placeholder:hover .yt-play { background: #cc0000; transform: translate(-50%, -50%) scale(1.1); }
.yt-placeholder .yt-label {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  color: white;
  font-size: var(--t-sm);
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .videos-layout { grid-template-columns: 1fr; padding: 0; }
  .playlist-sidebar { order: 2; }
  .playlist-items { max-height: none; overflow-y: visible; }
}

/* ── EPISODE FILTERS ── */
#ep-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }

/* ── BLOG PAGINATION ── */
#blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }

/* ── HOST SECTION ── */
.host-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 12px 0 32px;
}

/* ── CTA GHOST BUTTON ── */
.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ── VIDEO PLAYLIST EXTRAS ── */
.playlist-more { padding: 16px; text-align: center; }
.btn-sm { font-size: 13px; padding: 10px 20px; }
.section-header--mt { margin-top: 60px; }

/* ── VIDEO PROMO CARD ── */
.video-card--promo {
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.video-promo-inner { text-align: center; padding: 32px; }
.video-promo-icon {
  width: 72px; height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.video-promo-inner h3 { color: var(--green-dk); margin-bottom: 12px; }
.video-promo-inner p { color: var(--ink-3); font-size: 15px; margin-bottom: 20px; }

/* ── NEWSLETTER BAR (injected by cms.js on all pages) ── */
#nl-bar {
  background: #0f2d20;
  padding: 40px 24px;
}
#nl-bar .nl-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
#nl-bar .nl-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
#nl-bar .nl-text svg {
  width: 22px; height: 22px;
  stroke: #4ade80;
  flex-shrink: 0;
}
#nl-bar .nl-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 2px;
}
#nl-bar .nl-text span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
#nl-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
#nl-email {
  width: 200px;
  padding: 9px 14px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  transition: border-color 150ms, background 150ms;
}
#nl-email::placeholder { color: rgba(255,255,255,0.45); }
#nl-email:focus { border-color: rgba(74,222,128,0.6); background: rgba(255,255,255,0.14); }
#nl-form button {
  padding: 9px 20px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast);
  white-space: nowrap;
}
#nl-form button:hover { background: var(--green-dk); }
@media (max-width: 640px) {
  #nl-bar .nl-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  #nl-form { width: 100%; }
  #nl-email { flex: 1; width: auto; }
}

/* =====================================================
   DESIGN REFINEMENTS — Visual system upgrade
   Better typography, cards, spacing, and hierarchy
   ===================================================== */

/* ── GLOBAL TYPOGRAPHY ── */
body { font-size: 16px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--ink);
  margin: 0;
}

h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── IMPROVED SECTION SPACING ── */
.section { padding: 100px 0; }
.section--sm { padding: 72px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--sm { padding: 48px 0; }
}

/* ── IMPROVED SECTION HEAD ── */
.section-head { margin-bottom: 60px; }

.t-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dk);
  background: var(--green-pale);
  border: 1px solid rgba(22,163,74,0.22);
  padding: 5px 13px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 0;
}

/* ── IMPROVED PAGE HEROES ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) var(--s5) 64px;
}

.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-3);
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-4);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.breadcrumb a { color: var(--ink-4); }
.breadcrumb a:hover { color: var(--green); }

/* ── IMPROVED CARDS ── */
.ep-card {
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.04);
}

.ep-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 6px 24px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  transform: translateY(-4px);
}

.ep-card-body { padding: 24px 24px 20px; }
.ep-card-title { font-size: 15px; font-weight: 600; line-height: 1.5; }
.ep-card-tags { margin-bottom: 10px; }

.blog-card {
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.04);
}

.blog-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 6px 24px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  transform: translateY(-4px);
}

.blog-card-body { padding: 24px; }
.blog-card-title { font-size: 16px; font-weight: 700; line-height: 1.45; }
.blog-card-excerpt { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.video-card {
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.04);
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}

.video-card:hover {
  border-color: var(--border);
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

.video-card-body { padding: 20px 22px 22px; }
.video-card-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.video-card-body p { font-size: 13px; }

.testimonial-card {
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.04);
  padding: 36px 32px;
  background: var(--canvas);
}

.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-2px);
}

/* ── IMPROVED SECTION BACKGROUNDS ── */
.testimonials-section { background: var(--canvas-2); }
.faq-section { background: var(--canvas); }

/* ── IMPROVED FAQ ── */
.faq-list { gap: 8px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
}

.faq-item.open {
  border-color: rgba(22,163,74,.35);
  box-shadow: 0 0 0 3px rgba(22,163,74,.06);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  padding-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* ── TOPIC ITEMS ── */
.topics-grid { gap: 12px; }
.topic-item { padding: 28px 28px; border-radius: var(--r-lg); }
.topic-label { font-size: 15px; font-weight: 700; }
.topic-desc { font-size: 14px; }

/* ── IMPROVED FOOTER ── */
.site-footer {
  background: var(--canvas-2);
  border-top: 1px solid var(--border);
}

/* ── GLOBAL FORM INPUTS ── */
input[type="email"],
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 16px;
  outline: none;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}

input::placeholder,
textarea::placeholder { color: var(--ink-4); }

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

/* ── IMPROVED FEATURED ARTICLE (blog page) ── */
.featured-article {
  border-radius: var(--r-xl);
  padding: 52px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .featured-article { padding: 32px; border-radius: var(--r-lg); }
  .testimonial-card { padding: 28px 24px; }
  .ep-card-body { padding: 20px 20px 16px; }
  .blog-card-body { padding: 20px; }
  .faq-question { padding: 16px 20px; }
  .faq-answer-inner { padding: 0 20px 16px; padding-top: 12px; }
  .page-hero { padding: calc(var(--nav-h) + 40px) var(--s3) 40px; }
  .page-hero p { font-size: 16px; }
}

/* ── SERVICE BUTTONS + STRIPE WRAP ── */
.stripe-wrap {
  display: block;
  width: 100%;
  margin-top: var(--s2);
  text-align: center;
}
.stripe-wrap stripe-buy-button {
  display: block;
  width: 100%;
}
.stripe-badge {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.newsletter-form .btn,
.newsletter-form button {
  padding: 9px 20px;
  font-size: 13px;
}

/* ── PAGE HERO BACKGROUND IMAGES ── */

/* Base: any hero with a bg-image class */
[class*="page-hero--"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}

/* Dark green overlay replaces the radial gradient */
[class*="page-hero--"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,46,22,0.78) 0%, rgba(13,27,42,0.72) 100%);
  pointer-events: none;
  top: 0; right: 0;
  width: 100%; height: 100%;
  border-radius: 0;
}

/* White text over the image */
[class*="page-hero--"] h1 { color: #ffffff; }
[class*="page-hero--"] p  { color: rgba(255,255,255,0.75); }
[class*="page-hero--"] .breadcrumb,
[class*="page-hero--"] .breadcrumb a { color: rgba(255,255,255,0.55); }
[class*="page-hero--"] .breadcrumb a:hover { color: rgba(255,255,255,0.9); }

/* Per-page images — topic-matched from Unsplash */
.page-hero--about    { background-image: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=1400&q=80&fit=crop'); }
.page-hero--blog     { background-image: url('https://images.unsplash.com/photo-1455390582262-044cdead277a?w=1400&q=80&fit=crop'); }
.page-hero--videos   { background-image: url('https://images.unsplash.com/photo-1601506521937-0121a7fc2a6b?w=1400&q=80&fit=crop'); }
.page-hero--services { background-image: url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?w=1400&q=80&fit=crop'); }
.page-hero--contact  { background-image: url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?w=1400&q=80&fit=crop'); }
.page-hero--rdv      { background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80&fit=crop'); }
.page-hero--legal    { background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=80&fit=crop'); }
.page-hero--privacy  { background-image: url('https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?w=1400&q=80&fit=crop'); }

/* =====================================================
   DALA-INSPIRED REDESIGN
   Centered headers · Numbered cards · Cream alternating
   ===================================================== */

:root { --cream: #f5f0eb; }

/* ── SECTIONS: flush, no gap, border dividers ── */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section--sm { padding: 56px 0; }

/* ── SECTION HEADS: centered, structured ── */
.section-head {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head .t-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dk);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
}
/* accent bar for sections that have no t-label */
.section-head--center h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 16px;
}

/* ── ALTERNATING CREAM/WHITE BACKGROUNDS ── */
.episodes-section     { background: var(--canvas);  }
.topics-section       { background: var(--cream);   }
.host-section         { background: var(--canvas);  }
.testimonials-section { background: var(--cream);   }
.blog-section         { background: var(--canvas);  }
.videos-section       { background: var(--cream);   }
.faq-section          { background: var(--canvas);  }

/* ── EPISODE CARDS ── */
.ep-grid { gap: 20px; }
.ep-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.ep-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: var(--green-mid);
}
.ep-card-body { padding: 20px; }
.ep-card-title { font-size: 14px; font-weight: 700; line-height: 1.45; }

/* ── TOPIC CARDS: Dala numbered style ── */
.topics-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: topic-counter;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.topic-item {
  counter-increment: topic-counter;
  background: var(--canvas);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  padding: 32px 28px;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.topic-item::before {
  content: counter(topic-counter, decimal-leading-zero);
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dk);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.topic-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.topic-icon { display: none; }
.topic-label { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.topic-desc { font-size: 14px; color: var(--ink-3); line-height: 1.65; }

/* ── BLOG CARDS ── */
.blog-grid { gap: 20px; }
.blog-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  overflow: hidden;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-4px); border-color: var(--green-mid); }
.blog-card-body { padding: 22px 24px 24px; }
.blog-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; }
.blog-card-excerpt { font-size: 14px; line-height: 1.65; }

/* ── TESTIMONIAL CARDS ── */
.testimonials-grid { gap: 20px; }
.testimonial-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--canvas);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  padding: 32px 28px;
}
.testimonial-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-2px); }
.testimonial-text { font-size: 15px; line-height: 1.75; }

/* ── HOST CARD ── */
.host-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* ── FAQ ITEMS ── */
.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item.open { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.07); }

/* ── FOOTER: white, Dala clean 4-col ── */
.site-footer { background: var(--canvas) !important; border-top: 1px solid var(--border); }
.footer-inner { padding: 64px var(--s5) 0; max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-nav-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-nav-col ul li a { font-size: 14px; color: var(--ink-3); transition: color var(--t-fast); }
.footer-nav-col ul li a:hover { color: var(--ink); }
.footer-tagline { font-size: 13px; color: var(--green-dk); font-weight: 600; margin: 6px 0 12px; }
.footer-desc { font-size: 14px; color: var(--ink-3); line-height: 1.65; margin-bottom: 16px; max-width: 280px; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-badges span {
  background: var(--canvas-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  padding: 3px 10px;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-copyright { font-size: 13px; color: var(--ink-4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--ink-4); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--ink); }

/* ── PLATFORM STRIP: flush ── */
.platform-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── STATS: tighter inner padding ── */
.stats-inner { padding: 52px var(--s5); }

/* ── FEATURED EPISODE: flush ── */
.featured-ep { padding: 80px 0; }

/* ── MARQUEE ── */
.ep-marquee { padding: 10px 0; }

/* ── HERO ── */
.hero { padding-bottom: 80px; }

/* ── CTA: flush into footer area ── */
.cta-section { border-top: none; }

/* Mobile ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(24px, 5vw, 36px); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   INNER PAGES — DALA-INSPIRED DESIGN SYSTEM (all sub-pages)
   ════════════════════════════════════════════════════════════ */

/* ── Shared inner-page section headings ── */
.section-header {
  margin-bottom: 48px;
}
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dk);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 540px;
  line-height: 1.65;
}
.section-header--center p { margin: 0 auto; }

/* ── bg-light alternating sections ── */
.bg-light { background: var(--cream); }

/* ── CTA inner-page block ── */
.cta-section {
  padding: 80px 0;
  background: var(--green);
  border-top: none;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 8px;
}
.cta-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════ A-PROPOS ════ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--s5);
}
.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.about-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-body {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 28px;
}
.about-callout {
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-top: 24px;
}
.about-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: 6px;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.value-icon {
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

/* ── Features grid (a-propos) ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}
.feature-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ── host-bio-card ── */
.host-bio-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ════ SERVICES ════ */
.guarantee-strip {
  background: var(--green-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--s5);
}
.guarantee-strip .container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dk);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}
.service-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.service-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.service-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(22,163,74,0.12);
}
.service-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}
.service-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0 4px;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-3);
}

/* ════ SERVICES PAGE — DALA REDESIGN ════ */
.sv-trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.sv-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sv-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 20px;
}
.sv-trust-icon {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.sv-trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.sv-featured-section { padding: 72px 0 80px; }

/* Featured hero card */
.sv-hero-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  background: var(--green-dk, #0f2d20);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 16px 56px rgba(15,45,32,0.25);
}
.sv-hero-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  width: fit-content;
}
.sv-hero-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-hero-left h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.sv-hero-price {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}
.sv-hero-price span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.sv-hero-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 440px;
}
.sv-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.sv-hero-left .sv-check-list li { color: rgba(255,255,255,0.8); }
.sv-hero-left .sv-check-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(74,222,128,0.15);
  border-radius: 50%;
  border: 1.5px solid rgba(74,222,128,0.45);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}
.sv-hero-right {
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.sv-hero-stripe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sv-stripe-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 0;
}
.sv-hero-right .stripe-badge { color: rgba(255,255,255,0.4); justify-content: center; }
.sv-discover-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--t-fast);
  text-align: center;
}
.sv-discover-link:hover { color: rgba(255,255,255,0.85); }

/* Other service cards */
.sv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.sv-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
.sv-card--muted { background: var(--cream); }
.sv-card-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.sv-card-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dk);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--r-full);
  width: fit-content;
}
.sv-card-tag--neutral { background: var(--canvas-2); color: var(--ink-3); }
.sv-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0; }
.sv-card p { font-size: 14px; color: var(--ink-3); line-height: 1.65; margin: 0; }
.sv-card .sv-check-list li { color: var(--ink-3); }
.sv-card .sv-check-list li::before {
  content: '';
  width: 16px; height: 16px;
  background-color: var(--green-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  flex-shrink: 0;
}
.sv-card-btn { margin-top: auto; padding-top: 8px; }

@media (max-width: 960px) {
  .sv-hero-card { grid-template-columns: 1fr; }
  .sv-hero-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .sv-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sv-trust-sep { display: none; }
  .sv-trust-items { justify-content: flex-start; }
  .sv-hero-left, .sv-hero-right { padding: 32px 24px; }
  .sv-cards-grid { grid-template-columns: 1fr; }
}

/* ════ CONTACT ════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}
.contact-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-form-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.subject-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.subject-btn {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--t-fast);
}
.subject-btn:hover,
.subject-btn.active {
  border-color: var(--green);
  color: var(--green-dk);
  background: var(--green-pale);
}
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
  background: var(--canvas);
  outline: none;
  transition: border-color var(--t-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}
.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}

/* ════ RENDEZ-VOUS ════ */
.rdv-note {
  background: var(--green-pale);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--green-dk);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rdv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: rdv-step-counter;
}
.rdv-step {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  counter-increment: rdv-step-counter;
  position: relative;
  transition: box-shadow var(--t-fast);
}
.rdv-step:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.step-number {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.rdv-service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.service-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.service-option {
  background: var(--canvas);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-option:hover,
.service-option.selected {
  border-color: var(--green);
  background: var(--green-pale);
}
.opt-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 6px;
}
.opt-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.calendly-section {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
}
.calendly-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.cal-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.info-box {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-box-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

/* ════ VIDEOS ════ */
.videos-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}
.video-main-feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-main-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.video-main-embed iframe { width: 100%; height: 100%; border: none; }
.video-main-info h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.video-main-info p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}
.playlist-sidebar {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.playlist-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.playlist-items {
  max-height: 520px;
  overflow-y: auto;
}
.video-playlist-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t-fast);
}
.video-playlist-item:hover { background: var(--canvas-2); }
.video-playlist-item.active { background: var(--green-pale); }
.video-thumb {
  width: 80px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--canvas-2);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-playlist-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.video-playlist-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.video-playlist-info span {
  font-size: 12px;
  color: var(--ink-4);
}
.section-header--mt { margin-top: 64px; }

/* ════ BLOG ════ */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green);
  color: var(--green-dk);
  background: var(--green-pale);
}
.blog-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* ════ LEGAL PAGES ════ */
.legal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px var(--s5) 80px;
}
.legal-updated {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dk);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 40px;
}
.legal-section {
  border-top: 1px solid var(--border);
  padding-top: 36px;
  margin-top: 36px;
}
.legal-section h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal-section p,
.legal-section li {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.75;
}
.legal-section ul {
  padding-left: 20px;
  margin-top: 8px;
}

/* ════ INNER PAGES — RESPONSIVE ════ */
@media (max-width: 960px) {
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .rdv-steps { grid-template-columns: repeat(2, 1fr); }
  /* Video layout: single col, remove inner padding (container already pads) */
  .videos-layout { grid-template-columns: 1fr; padding: 0; }
  .playlist-sidebar { position: static; }
  /* Playlist: remove max-height scroll — show all items when stacked */
  .playlist-items { max-height: none; overflow-y: visible; }
  .info-boxes { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-main { grid-template-columns: repeat(2, 1fr); }
  .featured-article { grid-template-columns: 1fr; }
}
/* Host section collapses at 800px (tablets), not 960px */
@media (max-width: 800px) {
  .host-layout { grid-template-columns: 1fr; gap: 28px; }
  .host-visual-col { flex-direction: column; align-items: stretch; }
  .host-photo-wrap { flex: none; }
}
@media (max-width: 640px) {
  /* A-propos: reduce padding on small screens */
  .about-content { padding: 0; gap: 28px; }
  .about-img-placeholder { aspect-ratio: 16 / 9; }
  .about-heading { font-size: clamp(22px, 7vw, 30px); }
  .about-callout { padding: 14px 16px; }
  .values-list li { align-items: flex-start; font-size: 14px; }
  /* Features */
  .features-grid { grid-template-columns: 1fr; padding: 0; }
  .feature-card { padding: 24px 20px; }
  /* Host section */
  .host-cta-row { flex-direction: column; }
  .host-cta-row .btn { text-align: center; justify-content: center; width: 100%; }
  .host-pull-quote { padding: 18px 20px; font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .rdv-steps { grid-template-columns: 1fr; }
  .contact-name-row { grid-template-columns: 1fr; }
  /* Playlist items: compact on small screens */
  .video-playlist-item { padding: 12px; gap: 10px; }
  .video-thumb { width: 88px; height: 50px; }
  .video-main-embed { border-radius: 10px; }
  .subject-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr; }
  .blog-grid-main { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .host-bio-card { flex-direction: column; }
}

/* ════ HOME HOST SECTION — DALA REDESIGN ════ */
.hm-host-section { padding: 80px 0; background: var(--cream); }

.hm-host-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left card */
.hm-host-card {
  background: linear-gradient(160deg, #0a2218 0%, #0f2d20 100%);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.hm-host-avatar {
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  border: 2px solid rgba(74,222,128,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.hm-host-name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.hm-host-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hm-host-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.hm-host-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 4px;
}
.hm-host-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  padding: 10px 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.hm-stat-val {
  font-size: 17px;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}
.hm-stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.3;
}
.hm-host-logo {
  margin-top: 4px;
  opacity: 0.35;
}
.hm-host-logo img { height: 28px; width: auto; }

/* Right content */
.hm-host-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
}
.hm-host-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  margin: 4px 0 0;
}
.hm-host-quote {
  background: var(--canvas);
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin: 4px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.7;
}
.hm-quote-mark {
  font-size: 44px;
  line-height: 1;
  color: var(--green);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -6px;
}
.hm-host-bio {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.75;
  margin: 0;
}
.hm-host-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}
.hm-host-tags span {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dk);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.hm-host-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

@media (max-width: 860px) {
  .hm-host-grid { grid-template-columns: 1fr; gap: 36px; }
  .hm-host-card { position: static; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; text-align: left; }
  .hm-host-stats { width: auto; }
}

/* ════════════════════════════════════════════════════
   FOOTER REDESIGN
   ════════════════════════════════════════════════════ */

/* Top dark band */
.ft { background: var(--canvas); }

.ft-top {
  background: linear-gradient(135deg, #071a10 0%, #0f2d20 100%);
  padding: 32px 0;
}
.ft-top-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ft-brand { display: flex; align-items: center; gap: 20px; }
.ft-logo img { height: 40px; width: auto; mix-blend-mode: screen; }
.ft-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.ft-socials { display: flex; gap: 8px; }
.ft-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--t-fast);
}
.ft-social:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

/* Main grid */
.ft-main {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.ft-main-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.ft-col-brand { display: flex; flex-direction: column; gap: 14px; }
.ft-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
  max-width: 300px;
}
.ft-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.ft-badges span {
  background: var(--canvas-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  padding: 3px 10px;
}
.ft-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.ft-email:hover { color: var(--green-dk); }

/* Nav columns */
.ft-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.ft-col ul li a:hover { color: var(--ink); }
.ft-col ul li a svg { flex-shrink: 0; opacity: 0.6; }

/* Bottom bar */
.ft-bottom {
  padding: 20px 0;
}
.ft-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom-inner > span {
  font-size: 13px;
  color: var(--ink-4);
}
.ft-legal-links { display: flex; gap: 20px; }
.ft-legal-links a {
  font-size: 13px;
  color: var(--ink-4);
  text-decoration: none;
  transition: color var(--t-fast);
}
.ft-legal-links a:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 960px) {
  .ft-main-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  /* ── Top band ── */
  .ft-top { padding: 36px 0 32px; }
  .ft-top-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 24px;
  }
  .ft-brand { flex-direction: column; align-items: center; gap: 10px; }
  .ft-logo img { height: 48px; }
  .ft-tagline { font-size: 13.5px; }
  .ft-socials { gap: 10px; justify-content: center; }
  .ft-social {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.13);
  }

  /* ── Main section: single column, clean dividers ── */
  .ft-main { padding: 0; border-bottom: none; }
  .ft-main-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  /* Brand block */
  .ft-col-brand {
    grid-column: 1;
    align-items: flex-start;
    text-align: left;
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
  }
  .ft-desc { max-width: 100%; font-size: 14px; line-height: 1.65; }
  .ft-badges { justify-content: flex-start; }
  .ft-email { font-size: 14px; }

  /* Nav columns: each gets its own row with divider */
  .ft-col {
    padding: 24px 24px;
    border-bottom: 1px solid var(--border);
  }
  .ft-col:last-child { border-bottom: none; }
  .ft-col h5 {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }
  .ft-col ul { gap: 0; }
  .ft-col ul li a {
    font-size: 15px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .ft-col ul li:last-child a { border-bottom: none; padding-bottom: 0; }

  /* ── Bottom bar ── */
  .ft-bottom { padding: 20px 0; }
  .ft-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0 24px;
  }
  .ft-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

/* ── MOBILE PERFORMANCE + UX ── */

/* Hide large decorative circles on mobile (saves paint) */
@media (max-width: 768px) {
  .hero::before, .hero::after { display: none; }
}

/* Smaller background images on mobile to save bandwidth */
@media (max-width: 768px) {
  .hero {
    background-image:
      linear-gradient(to bottom, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 100%),
      url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=800&q=70&fit=crop');
  }
  .page-hero--about    { background-image: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=800&q=70&fit=crop'); }
  .page-hero--blog     { background-image: url('https://images.unsplash.com/photo-1455390582262-044cdead277a?w=800&q=70&fit=crop'); }
  .page-hero--videos   { background-image: url('https://images.unsplash.com/photo-1601506521937-0121a7fc2a6b?w=800&q=70&fit=crop'); }
  .page-hero--services { background-image: url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?w=800&q=70&fit=crop'); }
  .page-hero--contact  { background-image: url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?w=800&q=70&fit=crop'); }
  .page-hero--rdv      { background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=800&q=70&fit=crop'); }
  .page-hero--legal    { background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&q=70&fit=crop'); }
  .page-hero--privacy  { background-image: url('https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?w=800&q=70&fit=crop'); }
}

/* Ensure all interactive elements meet 44px touch target */
@media (max-width: 768px) {
  .nav-links a,
  .btn,
  button:not(.t-dot) {
    min-height: 44px;
  }
  .subject-btn { min-height: 48px; }
  .nav-rdv { min-height: 40px; }
}
