/* =========================================================
   Direct Results Consulting — Theme
   Olive green · Cream · Peach
   ========================================================= */

:root {
  /* Brand palette */
  --olive-900: #2f3a1c;
  --olive-700: #46562a;
  --olive-600: #5c6b3c;
  --olive-500: #6e7e45;
  --olive-300: #aab98a;
  --olive-100: #e7ecd8;

  --cream-50:  #fdfbf4;
  --cream-100: #fbf7ec;
  --cream-200: #f5efdf;
  --cream-300: #ece3cd;

  --peach-600: #e8895f;
  --peach-500: #f2a07a;
  --peach-300: #f8c4a6;
  --peach-200: #fbd9c4;
  --peach-100: #fdeadd;

  --ink:      #2c2a22;
  --ink-soft: #5b574a;
  --ink-mute: #837e6e;

  --white: #ffffff;

  /* Semantic tokens */
  --bg:            var(--cream-100);
  --surface:       var(--white);
  --surface-alt:   var(--cream-50);
  --text:          var(--ink);
  --text-soft:     var(--ink-soft);
  --text-mute:     var(--ink-mute);
  --primary:       var(--olive-600);
  --primary-dark:  var(--olive-700);
  --accent:        var(--peach-500);
  --accent-dark:   var(--peach-600);
  --border:        #e8e1cf;

  /* Effects */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(70, 86, 42, 0.06);
  --shadow:    0 14px 36px -18px rgba(70, 86, 42, 0.30);
  --shadow-lg: 0 30px 60px -28px rgba(47, 58, 28, 0.40);

  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

/* ----------------------- Buttons ----------------------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { flex: none; }

.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-dark); box-shadow: var(--shadow); transform: translateY(-2px); }

.btn--peach { background: var(--accent); color: #3a2417; }
.btn--peach:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--primary-dark); border-color: var(--olive-300); }
.btn--ghost:hover { background: var(--olive-100); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn--whatsapp { background: #25d366; color: #06351b; }
.btn--whatsapp:hover { background: #1ebe5d; color: #06351b; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--whatsapp svg { color: currentColor; }

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ----------------------- Navigation ----------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 236, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo {
  height: 46px;
  width: auto;
  display: block;
}
.brand__logo--mark { height: 42px; }
.brand__logo--footer {
  height: 52px;
  background: var(--cream-50);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}
.brand__text em {
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--text); }
.nav__links > a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------------------- Hero ----------------------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(1100px 540px at 88% -8%, var(--peach-100) 0%, transparent 58%),
    radial-gradient(900px 520px at 6% 18%, var(--olive-100) 0%, transparent 55%),
    var(--cream-100);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}
.hero__blob--1 { width: 220px; height: 220px; right: 8%; bottom: 12%; background: var(--peach-200); }
.hero__blob--2 { width: 140px; height: 140px; left: 4%; bottom: 8%; background: var(--olive-100); }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.badge svg { color: var(--accent-dark); }

.hero__copy h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  margin: 20px 0 18px;
}
.highlight {
  position: relative;
  color: var(--primary-dark);
  white-space: nowrap;
}
.highlight::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 6%;
  height: 32%;
  background: var(--peach-300);
  opacity: .55;
  border-radius: 6px;
  z-index: -1;
  transform: rotate(-1.2deg);
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-soft);
  max-width: 36ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 36px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 44px);
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats dt {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--primary-dark);
}
.hero__stats dd { margin: 0; font-size: 13.5px; color: var(--text-mute); }

/* Hero art / floating cards — clean aligned stack */
.hero__art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero__card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.hero__card > div { flex: 1 1 auto; min-width: 0; }
.hero__card strong { font-family: "Fraunces", serif; font-size: 16px; display: block; line-height: 1.2; }
.hero__card p { font-size: 13px; color: var(--text-mute); margin: 2px 0 0; }
.hero__card-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  flex: none;
  color: #fff;
}
.hero__card--lead  { animation: floaty 6s ease-in-out infinite; }
.hero__card--sales { animation: floaty 6s ease-in-out infinite .8s; }
.hero__card--comms { animation: floaty 6s ease-in-out infinite 1.6s; }
.hero__card--lead  .hero__card-icon { background: var(--olive-600); }
.hero__card--sales .hero__card-icon { background: var(--peach-500); color: #3a2417; }
.hero__card--comms .hero__card-icon { background: var(--olive-500); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.pill {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.pill--open { background: var(--olive-100); color: var(--olive-700); }
.pill--hot  { background: var(--peach-200); color: var(--accent-dark); }

/* ----------------------- Trust strip ----------------------- */
.trust { background: var(--olive-700); color: var(--cream-100); }
.trust__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 22px;
}
.trust__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive-300);
}
.trust__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.trust__list li {
  font-weight: 600;
  font-size: 15px;
  opacity: .92;
}

/* ----------------------- Client marquee ----------------------- */
.clients {
  background: var(--cream-50);
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients__label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 22px;
}
.marquee {
  position: relative;
  width: 100%;
  /* fade the edges so names enter/exit smoothly */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  list-style: none;
  margin: 0;
  padding: 0 clamp(18px, 3vw, 40px);
}
.client {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  color: var(--olive-700);
  white-space: nowrap;
  opacity: .72;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.client:hover { opacity: 1; color: var(--accent-dark); }

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

/* ----------------------- Sections ----------------------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }

.section__head { max-width: 660px; margin-bottom: 48px; }
.section__head.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--peach-200); }
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
.section__sub {
  margin-top: 16px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-soft);
}

/* ----------------------- About ----------------------- */
.about { background: var(--cream-50); }

.about__intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.about__copy .section__sub { margin-bottom: 22px; }
.about__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.about__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.about__points svg {
  flex: none;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  padding: 4px;
  width: 26px; height: 26px;
}

.about__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.2;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media-badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(253, 251, 244, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
}
.about__media-badge strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 15px;
  color: var(--olive-700);
}
.about__media-badge span { font-size: 12.5px; color: var(--text-mute); }

/* ----------------------- Gallery ----------------------- */
.gallery { background: var(--cream-100); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 18px 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  background: linear-gradient(transparent, rgba(47, 58, 28, 0.78));
}

/* ----------------------- About cards ----------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--olive-300); }
.card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 15px;
  margin-bottom: 20px;
  color: #fff;
}
.card__icon--olive { background: linear-gradient(140deg, var(--olive-500), var(--olive-700)); }
.card__icon--peach { background: linear-gradient(140deg, var(--peach-500), var(--peach-600)); color: #3a2417; }
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 15px; }

/* Mission band */
.mission {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: linear-gradient(150deg, var(--olive-700), var(--olive-900));
  color: var(--cream-100);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.mission__text h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  margin: 6px 0 14px;
}
.mission__text p { color: var(--olive-100); }
.mission__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.mission__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.mission__list span {
  display: grid; place-items: center;
  flex: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--peach-300);
  color: var(--olive-900);
  font-family: "Fraunces", serif;
  font-size: 14px;
}

/* ----------------------- Schedule ----------------------- */
.schedule { background: var(--cream-100); }
.schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.course {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.course:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--olive-300); }
.course__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.course h3 { font-size: 1.28rem; margin-bottom: 10px; }
.course > p { color: var(--text-soft); font-size: 14.5px; }
.course__meta {
  list-style: none;
  margin: 18px 0 22px;
  padding: 16px 0 0;
  border-top: 1px dashed var(--border);
  display: grid;
  gap: 10px;
}
.course__meta li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-soft);
}
.course__meta svg { color: var(--primary); flex: none; }
.course__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--primary-dark);
  align-self: flex-start;
}
.course__cta svg { transition: transform .2s var(--ease); }
.course__cta:hover svg { transform: translateX(4px); }

.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.tag--leadership { background: var(--olive-100); color: var(--olive-700); }
.tag--sales      { background: var(--peach-200); color: var(--accent-dark); }
.tag--comms      { background: #e3ecd9; color: var(--olive-700); }
.tag--service    { background: var(--peach-100); color: var(--accent-dark); }

.course--featured {
  border-color: var(--peach-300);
  box-shadow: 0 18px 40px -20px rgba(232, 137, 95, .45);
  background: linear-gradient(180deg, var(--peach-100) 0%, var(--surface) 34%);
}

.course--cta {
  background: linear-gradient(150deg, var(--olive-600), var(--olive-700));
  color: var(--cream-100);
  border-color: transparent;
  justify-content: center;
  text-align: center;
}
.course--cta h3 { color: #fff; font-size: 1.4rem; }
.course--cta p { color: var(--olive-100); margin: 12px 0 24px; font-size: 15px; }
.course--cta:hover { transform: translateY(-6px); }

/* ----------------------- History timeline ----------------------- */
.history { background: var(--cream-50); }
.timeline {
  list-style: none;
  margin: 0; padding: 0;
  position: relative;
  max-width: 820px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 90px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--olive-300), var(--peach-300));
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding-bottom: 38px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__year {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
  text-align: right;
  padding-top: 14px;
  padding-right: 12px;
}
.timeline__body {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease);
}
.timeline__body::before {
  content: "";
  position: absolute;
  left: -35px; top: 24px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--cream-50);
  box-shadow: 0 0 0 2px var(--peach-300);
}
.timeline__item:hover .timeline__body { transform: translateX(4px); box-shadow: var(--shadow); }
.timeline__body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.timeline__body p { color: var(--text-soft); font-size: 14.5px; }

/* ----------------------- CTA band ----------------------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 90% 10%, rgba(242,160,122,.22), transparent 60%),
    linear-gradient(150deg, var(--olive-700), var(--olive-900));
  color: var(--cream-100);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 52px);
}
.cta-band__text { max-width: 560px; }
.cta-band__text h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.cta-band__text p { color: var(--olive-100); margin-top: 12px; font-size: 1.05rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------------------- Footer ----------------------- */
.footer { background: var(--olive-900); color: var(--cream-200); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: clamp(48px, 6vw, 72px) 22px 40px;
}
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text em { color: var(--peach-300); }
.footer__brand > p { margin-top: 16px; color: var(--olive-300); max-width: 32ch; font-size: 14.5px; }
.footer__col h4 {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--peach-300);
  margin-bottom: 16px;
}
.footer__col a, .footer__loc {
  display: block;
  color: var(--cream-300);
  font-size: 14.5px;
  margin-bottom: 11px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: #fff; }
.footer__loc { color: var(--olive-300); margin-top: 4px; }
.footer__wa { display: inline-flex; align-items: center; gap: 7px; color: #6ee7a0 !important; font-weight: 600; }
.footer__wa:hover { color: #25d366 !important; }
.footer__wa svg { flex: none; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: var(--olive-300);
}

/* ----------------------- Reveal animation ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------- Responsive ----------------------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { min-height: 320px; margin-top: 16px; }
  .hero__lead { max-width: 48ch; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .schedule__grid { grid-template-columns: repeat(2, 1fr); }
  .mission { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__intro { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16 / 10; max-height: 380px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

@media (max-width: 900px) {
  /* Mobile nav */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--cream-50);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 16px 22px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; visibility: visible; }
  .nav__links > a:not(.btn) { padding: 12px 4px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 8px; }
}

@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .schedule__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__card { width: min(280px, 90%); }
  .timeline::before { left: 64px; }
  .timeline__item { grid-template-columns: 64px 1fr; gap: 20px; }
  .timeline__year { font-size: .98rem; padding-right: 10px; }
  .timeline__body::before { left: -27px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band__actions .btn { flex: 1; }
}

@media (max-width: 380px) {
  .hero__stats { gap: 16px; }
  .btn { padding: 13px 18px; }
}

/* ----------------------- Reduced motion ----------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   AUTH + RSVP (v2) — login, account menu, modals, toast
   ============================================================ */

/* ---- Nav auth control ---- */
.nav__auth { display: flex; align-items: center; }
.nav__auth[hidden] { display: none; }
.nav__auth[data-state="out"] .account { display: none; }
.nav__auth[data-state="in"]  #loginBtn { display: none; }

.account { position: relative; }
.account__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.account__btn:hover { box-shadow: var(--shadow-sm); border-color: var(--olive-300); }
.account__avatar {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.account__name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.account__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 120;
}
.account__menu.is-open { opacity: 1; visibility: visible; transform: none; }
.account__email {
  padding: 8px 10px;
  margin: 0 0 6px;
  font-size: 12.5px;
  color: var(--text-mute);
  border-bottom: 1px solid var(--border);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.account__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background-color .15s var(--ease);
}
.account__item:hover { background: var(--cream-100); }
.account__item--muted { color: var(--text-soft); font-weight: 500; }

/* ---- RSVP button states on course cards ---- */
.course__rsvp {
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.course__rsvp.is-full {
  margin-top: auto;
  align-self: flex-start;
  color: var(--text-mute);
  font-weight: 600;
  font-size: 14.5px;
  cursor: not-allowed;
}
.course__going {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.course__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--primary-dark);
}
.course__status svg { color: var(--primary); }
.course__cancel {
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mute);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.course__cancel:hover { color: var(--accent-dark); }

.course__seats {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}
.course__seats.is-low { color: var(--accent-dark); }
.course__seats.is-full { color: var(--text-mute); }

.schedule__notice {
  grid-column: 1 / -1;
  padding: 20px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-soft);
}

/* ---- Modal shell ---- */
body.modal-open { overflow: hidden; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 58, 28, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .22s var(--ease);
}
.modal__panel {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 30px 28px;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--text-soft);
  cursor: pointer;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.modal__close:hover { background: var(--cream-200); color: var(--text); }

/* ---- Auth form ---- */
.auth__head { text-align: center; margin-bottom: 18px; }
.auth__logo { height: 46px; width: auto; margin: 0 auto 12px; display: block; }
.auth__head h2 { font-size: 1.6rem; }
.auth__sub { margin-top: 8px; font-size: 14px; color: var(--text-soft); }

.auth__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--cream-200);
  border-radius: 999px;
  margin-bottom: 20px;
}
.auth__tab {
  padding: 9px 12px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.auth__tab.is-active { background: var(--white); color: var(--primary-dark); box-shadow: var(--shadow-sm); }

.auth__form { display: grid; gap: 14px; }
.auth__field { display: grid; gap: 6px; }
.auth__field > span { font-size: 13px; font-weight: 600; color: var(--text); }
.auth__field > span em { font-style: normal; font-weight: 400; color: var(--text-mute); }
.auth__field input {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.auth__field input:focus {
  outline: none;
  border-color: var(--olive-300);
  box-shadow: 0 0 0 3px var(--olive-100);
}
/* signup-only fields: hidden in login mode */
.auth[data-mode="login"] .auth__field--signup { display: none; }

.auth__msg {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent-dark);
  min-height: 0;
  display: none;
}
.auth__msg.is-shown { display: block; }
.auth__msg--ok { color: var(--primary-dark); }

.auth__form .btn { margin-top: 4px; }
.auth__fineprint { margin-top: 14px; text-align: center; font-size: 12.5px; color: var(--text-mute); }

/* ---- My events ---- */
.myevents h2 { font-size: 1.5rem; }
.myevents__sub { margin-top: 6px; margin-bottom: 18px; font-size: 14px; color: var(--text-soft); }
.myevents__list { display: grid; gap: 12px; }
.myevents__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.myevents__info { display: grid; gap: 4px; min-width: 0; }
.myevents__info strong { font-family: "Fraunces", serif; font-size: 15px; }
.myevents__info span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-mute);
}
.myevents__info svg { flex: none; color: var(--primary); }
.myevents__cancel {
  flex: none;
  padding: 8px 14px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: border-color .18s var(--ease), color .18s var(--ease), background-color .18s var(--ease);
}
.myevents__cancel:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--peach-100); }
.myevents__empty { padding: 8px 0; color: var(--text-soft); font-size: 14.5px; }

/* ---- Toast ---- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 300;
  transform: translate(-50%, 16px);
  max-width: min(420px, calc(100vw - 32px));
  padding: 13px 20px;
  background: var(--olive-900);
  color: var(--cream-100);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast--success { background: var(--olive-700); }
.toast--error { background: #8a3b22; }

/* ---- Auth responsive ---- */
@media (max-width: 900px) {
  /* Surface the auth control inside the mobile menu */
  .nav__auth { width: 100%; flex-direction: column; align-items: stretch; gap: 8px; margin-top: 8px; }
  .nav__auth #loginBtn { width: 100%; }
  .account { width: 100%; }
  .account__btn { width: 100%; justify-content: flex-start; }
  .account__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 0; min-width: 0; }
  .account__menu:not(.is-open) { display: none; }
}

/* Active nav item (e.g. Blog) */
.nav__links a.is-current { color: var(--text); }
.nav__links a.is-current::after { width: 100%; }

/* ============================================================
   BLOG (public) — listing + article
   ============================================================ */
.bloghero {
  padding: clamp(48px, 8vw, 90px) 0 clamp(28px, 4vw, 44px);
  background:
    radial-gradient(900px 460px at 88% -10%, var(--peach-100) 0%, transparent 58%),
    var(--cream-100);
}
.bloghero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 12px 0 14px; max-width: 16ch; }
.bloghero p { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--text-soft); max-width: 56ch; }

.postgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.postcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.postcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--olive-300); }
.postcard__img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-200); }
.postcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.postcard:hover .postcard__img img { transform: scale(1.05); }
.postcard__img--ph { background: linear-gradient(135deg, var(--olive-100), var(--peach-100)); }
.postcard__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 22px 24px; flex: 1; }
.postcard__date { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-dark); }
.postcard__body h2 { font-size: 1.32rem; line-height: 1.2; }
.postcard__body p { color: var(--text-soft); font-size: 14.5px; flex: 1; }
.postcard__more { margin-top: 6px; font-weight: 600; font-size: 14px; color: var(--primary-dark); }

/* Article */
.article { padding: clamp(36px, 6vw, 68px) 0 clamp(48px, 7vw, 90px); }
.article__head .container { max-width: 760px; }
.article__back { display: inline-block; margin-bottom: 18px; font-size: 14px; font-weight: 600; color: var(--text-soft); }
.article__back:hover { color: var(--primary-dark); }
.article__date { display: block; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.article__head h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; }
.article__lead { margin-top: 16px; font-size: 1.2rem; color: var(--text-soft); line-height: 1.6; }
.article__cover { max-width: 900px; margin: 32px auto 8px; }
.article__cover img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.article__body {
  max-width: 720px;
  margin-top: 32px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.article__body > * + * { margin-top: 1.1em; }
.article__body h2, .article__body h3 { font-family: "Fraunces", serif; color: var(--text); line-height: 1.2; margin-top: 1.6em; }
.article__body h2 { font-size: 1.7rem; } .article__body h3 { font-size: 1.32rem; }
.article__body a { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.article__body img { max-width: 100%; border-radius: var(--radius); margin: 1em 0; }
.article__body ul, .article__body ol { padding-left: 1.4em; }
.article__body li { margin: .4em 0; }
.article__body blockquote { border-left: 3px solid var(--peach-300); margin: 1.2em 0; padding: .4em 1.2em; color: var(--text-mute); font-style: italic; }
.article__body code { background: var(--cream-200); padding: .12em .42em; border-radius: 5px; font-size: .92em; }
.article__body pre { background: var(--olive-900); color: var(--cream-100); padding: 16px 18px; border-radius: var(--radius); overflow-x: auto; }
.article__body pre code { background: transparent; color: inherit; }
.article__foot { max-width: 720px; margin-top: 40px; }

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

/* ============================================================
   "Ask this article" — AI Q&A widget (public post page)
   ============================================================ */
.askai { padding: 0 0 clamp(48px, 7vw, 90px); }
.askai__card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--olive-100), var(--cream-50) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}
.askai__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.askai__badge {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  padding: 6px 12px; border-radius: 999px;
  background: var(--olive-700); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .03em;
}
.askai__head h3 { font-size: 1.3rem; }
.askai__head p { font-size: 14px; color: var(--text-soft); margin-top: 3px; }

.askai__log { display: grid; gap: 10px; margin-bottom: 14px; max-height: 420px; overflow-y: auto; }
.askai__log:empty { display: none; }
.askai__bubble {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 88%;
}
.askai__bubble--q { background: var(--olive-600); color: #fff; justify-self: end; border-bottom-right-radius: 6px; }
.askai__bubble--a { background: var(--white); border: 1px solid var(--border); color: var(--text); justify-self: start; border-bottom-left-radius: 6px; }
.askai__bubble--a > *:first-child { margin-top: 0; }
.askai__bubble--a > *:last-child { margin-bottom: 0; }
.askai__bubble--a p { margin: 0 0 .6em; }
.askai__bubble--a ul, .askai__bubble--a ol { margin: 0 0 .6em; padding-left: 1.3em; }
.askai__bubble--a a { color: var(--primary-dark); text-decoration: underline; }
.askai__bubble--error { background: #fbeee9; border-color: #e6c3b6; color: #8a3b22; }

.askai__form { display: flex; gap: 10px; }
.askai__form input {
  flex: 1;
  padding: 13px 16px;
  font: inherit; font-size: 15px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--text);
}
.askai__form input:focus { outline: none; border-color: var(--olive-300); box-shadow: 0 0 0 3px var(--olive-100); }
.askai__form .btn { flex: none; }
.askai__note { margin-top: 12px; font-size: 12px; color: var(--text-mute); }
.askai__note a { color: var(--primary-dark); text-decoration: underline; }

/* spinner reused from admin context — define here too for the public page */
.askai .spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2.5px solid var(--olive-300); border-top-color: var(--primary-dark);
  border-radius: 50%; animation: askspin .7s linear infinite; vertical-align: middle;
}
@keyframes askspin { to { transform: rotate(360deg); } }

@media (max-width: 520px) {
  .askai__form { flex-direction: column; }
  .askai__form .btn { width: 100%; }
  .askai__bubble { max-width: 100%; }
}

/* ============================================================
   DRAPC content sections — Who We Are / What We Do / Programmes / Why Us
   ============================================================ */

/* Forest Ecosystem + tagline band */
.ecoband {
  margin-top: clamp(28px, 5vw, 48px);
  text-align: center;
  background:
    radial-gradient(600px 240px at 50% -10%, rgba(242,160,122,.18), transparent 60%),
    linear-gradient(150deg, var(--olive-700), var(--olive-900));
  color: var(--cream-100);
  border-radius: var(--radius-xl);
  padding: clamp(34px, 5vw, 56px) clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.ecoband__icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--peach-300);
  margin-bottom: 14px;
}
.ecoband__eyebrow {
  display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--peach-300); margin-bottom: 14px;
}
.ecoband h3 {
  font-family: "Fraunces", serif; font-weight: 500; color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.25;
  max-width: 24ch; margin: 0 auto;
}
.ecoband__tagline {
  margin-top: 18px; font-family: "Fraunces", serif; font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--peach-200);
}

/* What We Do */
.whatwedo { background: var(--cream-100); }

/* Methodology numbered band — emphasise labels */
.mission__list li strong { color: #fff; font-weight: 700; }

/* Blended-learning method chips */
.methods { margin-top: clamp(28px, 4vw, 44px); text-align: center; }
.methods__title { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin-bottom: 18px; }
.methods__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.methods__list li {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 18px;
  font-size: 14px; font-weight: 600; color: var(--olive-700);
  box-shadow: var(--shadow-sm);
}

/* Why Us — 5 cards (3 + 2) */
.whyus { background: var(--cream-50); }
.cards--4 { grid-template-columns: repeat(3, 1fr); }

/* Programmes */
.programmes { background: var(--cream-100); }
.proggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prog {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.prog:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--olive-300); }
.prog__num { font-family: "Fraunces", serif; font-weight: 600; font-size: 1rem; color: var(--accent-dark); }
.prog h3 { font-size: 1.16rem; line-height: 1.25; margin: 8px 0; }
.prog p { color: var(--text-soft); font-size: 14px; }
.programmes__cta { margin-top: clamp(26px, 4vw, 40px); display: grid; gap: 14px; justify-items: center; text-align: center; }
.programmes__cta p { color: var(--text-soft); }

/* Footer tagline */
.footer__tagline { margin-top: 10px !important; font-family: "Fraunces", serif; font-style: italic; color: var(--peach-300) !important; }

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