/* ========================================
   Nikki Levitan — CSS Design System
   ======================================== */

/* === FONTS (self-hosted) === */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* === CUSTOM PROPERTIES === */
:root {
  --warm: #FFF8F0;
  --warm-mid: #FFF0E2;
  --plum: #2D2438;
  --plum-70: rgba(45,36,56,0.72);
  --plum-50: rgba(45,36,56,0.5);
  --plum-20: rgba(45,36,56,0.2);
  --plum-10: rgba(45,36,56,0.1);
  --plum-05: rgba(45,36,56,0.05);
  --coral: #FF6B4A;
  --coral-soft: #FF8B70;
  --violet: #7C6BFF;
  --violet-soft: #B0A4FF;
  --sun: #FFD166;
  --sun-soft: #FFE4A0;
  --mint: #6BCB9B;
  --lav-bg: #F4F0FA;
  --display: 'Outfit', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* === BODY & SELECTION === */
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--warm);
  color: var(--plum);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--violet-soft); color: var(--plum); }

/* === HEADER === */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(255,248,240,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(45,36,56,0.06);
}
header .wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex; justify-content: space-between; align-items: center;
}

.logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--coral); }

nav { display: flex; align-items: center; gap: 1.75rem; }
nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--plum-70);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
nav a:hover { color: var(--plum); }
nav .nav-cta {
  background: var(--plum);
  color: var(--warm) !important;
  padding: 0.55em 1.3em;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: background 0.3s, transform 0.3s;
}
nav .nav-cta:hover { background: var(--coral); transform: translateY(-1px); }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 20px; position: relative; z-index: 110;
}
.burger span {
  display: block; width: 100%; height: 2px; background: var(--plum);
  position: absolute; left: 0; transition: all 0.3s; border-radius: 2px;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--warm);
  z-index: 105; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--display); font-size: 1.8rem; color: var(--plum);
  text-decoration: none; font-weight: 600;
}

/* === HERO === */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.shape-1 { width: 300px; height: 300px; background: var(--sun-soft); top: 8%; right: -4%; animation: drift 18s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; background: var(--violet-soft); bottom: 15%; left: -3%; animation: drift 22s ease-in-out infinite reverse; opacity: 0.35; }
.shape-3 { width: 150px; height: 150px; background: var(--coral-soft); top: 25%; left: 10%; animation: drift 15s ease-in-out infinite; opacity: 0.25; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -20px); }
  50% { transform: translate(-10px, 15px); }
  75% { transform: translate(20px, 10px); }
}

.hero-inner { position: relative; z-index: 1; max-width: 720px; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  opacity: 0; animation: pop 0.6s 0.2s forwards;
}
.hero-pill {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4em 0.9em;
  border-radius: 50px;
  background: var(--plum-05);
  color: var(--plum-70);
  border: 1px solid var(--plum-10);
}
.hero-pill.accent-v { background: rgba(124,107,255,0.1); color: var(--violet); border-color: rgba(124,107,255,0.2); }
.hero-pill.accent-c { background: rgba(255,107,74,0.1); color: var(--coral); border-color: rgba(255,107,74,0.2); }
.hero-pill.accent-m { background: rgba(107,203,155,0.1); color: var(--mint); border-color: rgba(107,203,155,0.2); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0; animation: pop 0.6s 0.35s forwards;
}

/* === HEADING HIGHLIGHT === */
.highlight {
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%; bottom: 5%;
  height: 35%;
  background: var(--sun);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--plum-70);
  letter-spacing: 0.02em;
  margin: 0.5rem auto 1.2rem;
  opacity: 0; animation: pop 0.6s 0.35s forwards;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--plum-70);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  opacity: 0; animation: pop 0.6s 0.5s forwards;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0; animation: pop 0.6s 0.65s forwards;
}

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

/* === MISSION === */
.mission {
  padding: 4rem 1.5rem;
  background: var(--cream);
}

.mission .section-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.mission-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--plum);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.mission-lead::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--coral);
  border-radius: 3px;
  margin: 0 auto 1.5rem;
}

.mission-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-body p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--plum-70);
  line-height: 1.7;
  text-align: center;
}

.mission-body strong {
  color: var(--plum);
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.8em 1.8em;
  border-radius: 50px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none; cursor: pointer;
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: #e85a3a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,74,0.3); }
.btn-ghost { background: transparent; color: var(--plum); border: 1.5px solid var(--plum-20); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--coral); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* === SECTIONS === */
.section { padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem); }
.section-wrap { max-width: 1200px; margin: 0 auto; }

/* === SECTION LABEL === */
.label {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* === SCROLL REVEAL === */
.sr { opacity: 0; transform: translateY(25px); transition: opacity 0.6s, transform 0.6s; }
.sr.vis { opacity: 1; transform: translateY(0); }
.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.16s; }
.sr-d3 { transition-delay: 0.24s; }
.sr-d4 { transition-delay: 0.32s; }

/* === ABOUT INTRO (two-column split) === */
.about-intro .section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--lav-bg), var(--warm-mid));
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.about-img:hover img { transform: scale(1.03); }

.sticker {
  position: absolute;
  bottom: -12px; right: -8px;
  background: var(--sun);
  color: var(--plum);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6em 1.1em;
  border-radius: 50px;
  transform: rotate(4deg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  white-space: nowrap;
}

.about-text .label { color: var(--violet); }
.about-text h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--plum-70);
  font-weight: 400;
  margin-bottom: 1rem;
}
.about-text p strong { font-weight: 600; color: var(--plum); }

.about-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.about-tags span {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4em 0.9em;
  border-radius: 50px;
  background: var(--lav-bg);
  color: var(--violet);
}

/* === BIG QUESTIONS (dark plum section) === */
.questions {
  background: var(--plum);
  color: var(--warm);
  border-radius: 32px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  margin: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.questions::before {
  content: '?';
  position: absolute;
  font-family: var(--display);
  font-size: clamp(15rem, 30vw, 25rem);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.questions .label {
  color: var(--coral-soft);
  margin-bottom: 1.5rem;
  position: relative;
}
.questions h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  position: relative;
}
.q-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}
.q-bubble {
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 600;
  padding: 0.7em 1.4em;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  transition: all 0.3s;
  cursor: default;
}
.q-bubble:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-3px) rotate(-1deg);
}
.q-bubble:nth-child(2):hover { background: var(--violet); border-color: var(--violet); }
.q-bubble:nth-child(3):hover { background: var(--mint); border-color: var(--mint); color: var(--plum); }
.q-bubble:nth-child(4):hover { background: var(--sun); border-color: var(--sun); color: var(--plum); }
.q-bubble:nth-child(5):hover { background: var(--coral-soft); border-color: var(--coral-soft); }

/* === OFFERINGS CARDS === */
.offerings .label { color: var(--coral); text-align: center; }
.offerings h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.offer-grid > :nth-child(4) { grid-column: 1 / 2; }
.offer-grid > :nth-child(5) { grid-column: 2 / 3; }
.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--plum-05);
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(45,36,56,0.08); }

.offer-emoji {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.offer-card:nth-child(1) .offer-emoji { background: rgba(255,107,74,0.12); }
.offer-card:nth-child(2) .offer-emoji { background: rgba(124,107,255,0.12); }
.offer-card:nth-child(3) .offer-emoji { background: rgba(107,203,155,0.12); }
.offer-card:nth-child(4) .offer-emoji { background: rgba(255,107,74,0.12); }
.offer-card:nth-child(5) .offer-emoji { background: rgba(124,107,255,0.12); }

.offer-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.offer-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--plum-70);
  font-weight: 400;
}

.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.offer-card:nth-child(1)::after { background: var(--coral); }
.offer-card:nth-child(2)::after { background: var(--violet); }
.offer-card:nth-child(3)::after { background: var(--mint); }
.offer-card:nth-child(4)::after { background: var(--coral); }
.offer-card:nth-child(5)::after { background: var(--violet); }
.offer-card:hover::after { transform: scaleX(1); }

.offer-links {
  margin-top: 0.5rem;
}
.offer-links a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}
.offer-links a:hover {
  text-decoration: underline;
}

/* === METHODS STRIP (lavender section) === */
.methods-strip {
  background: var(--lav-bg);
  border-radius: 24px;
  margin: 0 clamp(1.25rem, 4vw, 2.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
}
.methods-strip .section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.methods-strip .label { color: var(--violet); }
.methods-strip .section-wrap > .label,
.methods-strip .section-wrap > h2,
.methods-strip .programme-grid { grid-column: 1 / -1; }
.methods-strip h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.methods-strip p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--plum-70);
  font-weight: 400;
}
.methods-strip p strong { font-weight: 600; color: var(--plum); }

.methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.method-chip {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}
.method-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(45,36,56,0.06); }
.method-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.method-chip:nth-child(1) .method-dot { background: var(--coral); }
.method-chip:nth-child(2) .method-dot { background: var(--violet); }
.method-chip:nth-child(3) .method-dot { background: var(--mint); }
.method-chip:nth-child(4) .method-dot { background: var(--sun); }
.method-chip:nth-child(5) .method-dot { background: var(--coral-soft); }
.method-chip:nth-child(6) .method-dot { background: var(--violet-soft); }

/* === TESTIMONIAL === */
.testimonial {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
}
.testimonial-card {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  border: 1px solid var(--plum-05);
}
.testimonial-card::before {
  content: '\1F49B';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  background: var(--warm);
  padding: 0 0.5rem;
}
.testimonial-card blockquote p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--plum);
  margin-bottom: 1.25rem;
}
.testimonial-card cite {
  font-style: normal;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--violet);
}

/* === THRIVING (tinted cards) === */
.thriving .label { color: var(--coral); text-align: center; }
.thriving h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.thriving-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.thriving-card {
  border-radius: 20px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.3s;
  cursor: default;
}
.thriving-card:hover { transform: translateY(-4px); }
.thriving-card:nth-child(1) { background: rgba(255,107,74,0.08); }
.thriving-card:nth-child(2) { background: rgba(124,107,255,0.08); }
.thriving-card:nth-child(3) { background: rgba(107,203,155,0.08); }

.thriving-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.thriving-card:nth-child(1) h3 span { color: var(--coral); }
.thriving-card:nth-child(2) h3 span { color: var(--violet); }
.thriving-card:nth-child(3) h3 span { color: var(--mint); }

.thriving-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--plum-70);
  font-weight: 400;
}

/* === GALLERY === */
.gallery { padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid figure {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--lav-bg), var(--warm-mid));
  aspect-ratio: 4/3;
}
.gallery-grid figure:first-child { aspect-ratio: 3/4; grid-row: 1/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(45,36,56,0.65));
  color: var(--warm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s;
  border-radius: 0 0 20px 20px;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* === CTA BAND === */
.cta {
  margin: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--coral) 0%, #e85a3a 100%);
  border-radius: 32px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '\2726';
  position: absolute;
  font-size: 12rem;
  opacity: 0.08;
  top: -2rem; right: -1rem;
  pointer-events: none;
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta p {
  font-size: 1rem;
  opacity: 0.92;
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}
.cta .btn-white {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: #fff;
  color: var(--coral);
  padding: 0.85em 2em;
  border-radius: 50px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* === FOOTER === */
footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--plum-10);
}
footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--plum);
  text-decoration: none;
}
.footer-logo span { color: var(--coral); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.9rem; color: var(--plum-70);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--plum); }
.footer-extra { display: flex; gap: 1.5rem; align-items: center; }
.footer-extra a {
  font-size: 0.9rem; color: var(--plum-70);
  text-decoration: none; transition: color 0.3s;
}
.footer-extra a:hover { color: var(--coral); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: clamp(8rem, 15vw, 12rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-hero .label { color: var(--violet); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--plum-70);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* === OFFERINGS PAGE === */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.programme-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--plum-05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.programme-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(45,36,56,0.08); }
.programme-card .emoji-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.programme-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.programme-card .tag {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.3em 0.8em;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}
.programme-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--plum-70);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.programme-card ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.programme-card li {
  font-size: 0.9rem;
  color: var(--plum-70);
  font-weight: 400;
  padding: 0.35em 0;
  padding-left: 1.2em;
  position: relative;
}
.programme-card li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 0.65em;
}
.programme-card:nth-child(1) li::before { background: var(--coral); }
.programme-card:nth-child(2) li::before { background: var(--violet); }
.programme-card:nth-child(3) li::before { background: var(--mint); }
.programme-card:nth-child(4) li::before { background: var(--sun); }

.programme-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.programme-card:nth-child(1)::after { background: var(--coral); }
.programme-card:nth-child(2)::after { background: var(--violet); }
.programme-card:nth-child(3)::after { background: var(--mint); }
.programme-card:nth-child(4)::after { background: var(--sun); }
.programme-card:hover::after { transform: scaleX(1); }
.programme-card .card-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s;
}
.programme-card .card-link:hover { color: var(--violet); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.testimonial-grid .testimonial-card {
  max-width: none;
  text-align: left;
}
.testimonial-grid .testimonial-card blockquote p {
  font-size: 1rem;
}

.event-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.event-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lav-bg), var(--warm-mid));
}
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.event-img:hover img { transform: scale(1.03); }

/* === ABOUT PAGE === */
.story-section {
  max-width: 720px;
  margin: 0 auto;
}
.story-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--plum-70);
  font-weight: 400;
  margin-bottom: 1rem;
}
.story-section p strong { font-weight: 600; color: var(--plum); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.project-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--plum-05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(45,36,56,0.08); }
.project-card-logo {
  width: 48px; height: 48px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--lav-bg);
}
.project-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.project-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.project-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--plum-70);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.project-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  transition: color 0.3s;
}
.project-card a:hover { color: #e85a3a; }

.credential-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: #fff;
  border-radius: 50px;
  padding: 0.5em 1.2em 0.5em 0.5em;
  border: 1px solid var(--plum-05);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}
.credential-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(45,36,56,0.06); }
.credential-chip img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.audio-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--plum-05);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.audio-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.audio-card p {
  font-size: 0.925rem;
  color: var(--plum-70);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.audio-card audio {
  width: 100%;
}

/* === CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.75em 1em;
  border-radius: 12px;
  border: 1.5px solid var(--plum-10);
  background: #fff;
  color: var(--plum);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,107,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--plum-50);
  font-weight: 300;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D2438' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { align-self: flex-start; }

.form-status {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75em 1em;
  border-radius: 12px;
  line-height: 1.5;
}
.form-status-ok {
  background: #e8f5e9;
  color: #2e7d32;
}
.form-status-err {
  background: #fce4ec;
  color: #c62828;
}

.form-note {
  font-size: 0.85rem;
  color: var(--plum-50);
  font-weight: 400;
  line-height: 1.6;
}
.form-note a { color: var(--coral); text-decoration: none; font-weight: 500; }
.form-note a:hover { text-decoration: underline; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info-card {
  background: var(--lav-bg);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}
.contact-info-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.contact-info-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--plum-70);
  font-weight: 400;
}

/* === FAQ === */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--plum-05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 15px rgba(45,36,56,0.05); }
.faq-item[open] { box-shadow: 0 4px 15px rgba(45,36,56,0.05); }
.faq-item summary {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--plum);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--violet);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--violet); }
.faq-item p {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--plum-70);
  font-weight: 400;
  padding: 0 1.5rem 1.25rem;
}
.faq-item p a { color: var(--coral); text-decoration: none; font-weight: 500; }
.faq-item p a:hover { text-decoration: underline; }

/* === VIDEO EMBED === */
.video-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.video-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--plum);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* === SAFEGUARDING PAGE === */
.safeguarding-content {
  max-width: 720px;
  margin: 0 auto;
}
.safeguarding-content h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.safeguarding-content h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.safeguarding-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--plum-70);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.safeguarding-content p a { color: var(--coral); text-decoration: none; font-weight: 500; }
.safeguarding-content p a:hover { text-decoration: underline; }
.safeguarding-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.safeguarding-content li {
  font-size: 0.95rem;
  color: var(--plum-70);
  font-weight: 400;
  padding: 0.4em 0 0.4em 1.4em;
  position: relative;
  line-height: 1.65;
}
.safeguarding-content li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  position: absolute;
  left: 0; top: 0.75em;
}

/* === EVENTS PAGE === */
.event-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.event-feature-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45,36,56,0.1);
}
.event-feature-img img {
  width: 100%;
  height: auto;
  display: block;
}
.event-feature-info .label {
  margin-bottom: 0.5rem;
}
.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.event-detail {
  background: var(--lav-bg);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}
.event-detail strong {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--violet);
  display: block;
  margin-bottom: 0.2rem;
}
.event-detail span {
  font-size: 0.95rem;
  color: var(--plum);
  font-weight: 500;
}
.event-hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.event-host strong {
  font-family: var(--display);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.35rem;
  color: var(--plum);
}
.event-host p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--plum-70);
  margin: 0;
}
@media (max-width: 900px) {
  .event-feature { grid-template-columns: 1fr; }
  .event-feature-img { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .event-details { grid-template-columns: 1fr; }
  .event-hosts { grid-template-columns: 1fr; }
}

/* === RITES OF PASSAGE CARD === */
.rop-card {
  grid-column: 1 / -1;
}
.rop-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.rop-step {
  background: var(--lav-bg);
  border-radius: 14px;
  padding: 1rem;
}
.rop-step strong {
  font-family: var(--display);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.35rem;
  color: var(--plum);
}
.rop-step p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.rop-card ul ul {
  margin-top: 0.25rem;
  padding-left: 1em;
}
@media (max-width: 680px) {
  .rop-steps { grid-template-columns: 1fr; }
}

/* === RESPONSIVE: 900px === */
@media (max-width: 900px) {
  .about-intro .section-wrap { grid-template-columns: 1fr; }
  .offer-grid, .thriving-cards { grid-template-columns: 1fr; }
  .methods-strip .section-wrap { grid-template-columns: 1fr; }
  .gallery-grid figure:first-child { grid-row: auto; aspect-ratio: 4/3; }
  .programme-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .event-split { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { order: -1; }
}

/* === RESPONSIVE: 680px === */
@media (max-width: 680px) {
  nav:not(.mobile-nav) { display: none; }
  .burger { display: block; }
  .methods-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  footer .wrap { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
  .footer-links a { padding: 0.25rem 0; }
  .footer-extra { flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
  .footer-extra a { padding: 0.25rem 0; }
}

/* === ORGANISATIONS PAGE === */
.org-approach-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.org-approach-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 16px;
}
.org-approach-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1em;
}
.org-approach-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--plum-70);
  margin: 0;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .sr { opacity: 1; transform: none; transition: none; }
  .shape { animation: none; }
  .hero-pills, .hero h1, .hero-subtitle, .hero-sub { animation: none; opacity: 1; transform: none; }
}