/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Cinzel:wght@400;500;600&display=swap');

/* ─── VARIABLES ─── */
:root {
  --indigo: #4B2086;
  --indigo-deep: #280F54;
  --white: #FFFFFF;
  --blush: #FCE6ED;
  --teal: #005A5E;
  --lilac: #B19DBE;
  --pink: #F564BD;
  --strawberry: #EA4686;
  --dark: #1a1a2e;
  --text: #2d2d2d;
  --light-text: #6b6b80;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
.kit-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 56px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(75,32,134,0.08);
  transition: all 0.3s ease;
}
.kit-nav.scrolled {
  height: 62px;
  box-shadow: 0 4px 32px rgba(75,32,134,0.08);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--indigo);
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
}
.nav-logo .nav-logo-name { display: block; }
.nav-logo .nav-logo-tag {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--lilac);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--strawberry);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--indigo); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--indigo);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: white;
  padding: 32px 56px;
  border-top: 1px solid rgba(75,32,134,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
  cursor: pointer;
}

/* ─── PAGE WRAPPER ─── */
.page-wrapper { padding-top: 76px; min-height: 100vh; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: var(--indigo);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--indigo);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--teal); border-color: var(--teal); }
.btn-outline {
  display: inline-block;
  padding: 14px 44px;
  background: transparent;
  color: var(--indigo);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--indigo);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--indigo); color: var(--white); }
.btn-light {
  display: inline-block;
  padding: 14px 44px;
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-light:hover { background: white; color: var(--indigo); border-color: white; }

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--strawberry);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--strawberry);
  flex-shrink: 0;
}
.section-label.light { color: var(--pink); }
.section-label.light::before { background: var(--pink); }
.section-label.center { justify-content: center; }
.fl-hero .section-label { justify-content: flex-start; }

/* ─── SECTION TITLE ─── */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--strawberry); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.85s ease both; }
.fade-up-2 { animation: fadeUp 0.85s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.85s 0.3s ease both; }

/* ─── EMAIL SIGNUP STRIP ─── */
.signup-strip {
  padding: 88px 80px;
  background: var(--indigo);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup-strip::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(245,100,189,0.09);
  pointer-events: none;
}
.signup-strip::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(0,90,94,0.25);
  pointer-events: none;
}
.signup-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.signup-strip h2 em { font-style: italic; color: var(--pink); }
.signup-strip p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.signup-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.signup-form input {
  flex: 1;
  padding: 18px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.38); }
.signup-form input:focus { border-color: rgba(255,255,255,0.5); }
.signup-form button {
  padding: 18px 32px;
  background: var(--strawberry);
  color: white;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.signup-form button:hover { background: var(--pink); }

/* ─── FOOTER ─── */
.kit-footer {
  background: var(--dark);
  padding: 48px 80px 28px;
  position: relative;
}
.kit-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--pink), var(--teal));
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.38);
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 22px;
}
.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.footer-nav-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--pink); color: var(--pink); }

/* ═══════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(150deg, var(--blush) 0%, #f5d8e9 60%, var(--blush) 100%);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-scripture {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(75,32,134,0.12);
  max-width: 400px;
}
.hero-scripture-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--indigo);
  opacity: 0.75;
  max-width: 380px;
  margin-bottom: 6px;
}
.hero-scripture-ref {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--strawberry);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 48px 80px 80px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 10vw, 132px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--indigo);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--strawberry); }
.hero-ministry-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 8px;
}
.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light-text);
  max-width: 430px;
  margin-bottom: 32px;
}
.hero-tagline em { font-style: italic; color: var(--indigo); font-weight: 400; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}
.hero-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: none;
}
.hero-portrait-tag {
  position: absolute;
  bottom: 0;
  left: -28px;
  background: linear-gradient(140deg, var(--indigo) 0%, #6b31a8 60%, var(--strawberry) 100%);
  color: var(--white);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  box-shadow: 0 24px 48px rgba(75,32,134,0.28);
  max-width: 220px;
}
.hero-portrait-tag .hpt-top {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-portrait-tag strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
}
.hero-portrait-tag .hpt-bottom {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* PILLARS */
.pillars {
  background: var(--dark);
  padding: 108px 0 0;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--pink), var(--teal));
}
.pillars-inner { padding: 0 80px; }
.pillars-header { margin-bottom: 40px; }
.pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}
.pillars-title em { font-style: italic; color: var(--pink); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pillar-card {
  padding: 56px 44px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s;
  overflow: hidden;
}
.pillar-card:last-child { border-right: none; }
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover { background: rgba(255,255,255,0.05); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.pillar-icon { width: 44px; height: 44px; margin-bottom: 28px; }
.pillar-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar-text {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
}

/* MEET TARA */
.meet-tara {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 88px;
  padding: 120px 80px;
  align-items: center;
  background: var(--white);
}
.meet-tara-image { position: relative; }
.meet-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, #f0d8e8 0%, var(--blush) 60%, #fff0f5 100%);
  overflow: hidden;
  position: relative;
}
.meet-accent-bar {
  position: absolute;
  bottom: 32px; left: -16px;
  width: 32px; height: 180px;
  background: linear-gradient(180deg, var(--strawberry), var(--indigo));
}
.meet-tara-text { max-width: 520px; }
.meet-tara-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.05;
  margin-bottom: 28px;
}
.meet-tara-title em { font-style: italic; color: var(--strawberry); }
.meet-tara-text p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--light-text);
  margin-bottom: 18px;
}
.meet-tara-text .meet-italic {
  font-style: italic;
  color: var(--indigo);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.meet-tara-cta { margin-top: 28px; }

/* EVENTS */
.events-preview { padding: 108px 80px; }
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.event-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid rgba(75,32,134,0.1);
  border-bottom: 1px solid rgba(75,32,134,0.1);
  transition: padding-left 0.3s;
}
.event-item:hover { padding-left: 8px; }
.event-date-block { text-align: center; }
.e-month {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--strawberry);
  margin-bottom: 4px;
}
.e-day {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
}
.e-year {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--light-text);
  margin-top: 4px;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.event-meta {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--light-text);
  margin-bottom: 8px;
}
.event-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-text);
  max-width: 680px;
  margin-bottom: 16px;
}
.event-tag {
  display: inline-block;
  padding: 5px 16px;
  background: var(--blush);
  color: var(--strawberry);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 80px;
  background: var(--blush);
  gap: 0;
}
.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 48px;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-text);
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(75,32,134,0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */
.about-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 88px 80px 80px;
  align-items: center;
  background: linear-gradient(180deg, var(--blush) 0%, white 100%);
}
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 0.95;
  margin-bottom: 20px;
}
.about-hero-title em { font-style: italic; color: var(--strawberry); }
.about-hero-lead {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light-text);
  max-width: 460px;
  margin-bottom: 8px;
}
.about-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.pillar-line {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--teal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar-line::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}
.about-hero-image { position: relative; }
.about-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #f0d8e8 0%, var(--blush) 100%);
  overflow: hidden;
  position: relative;
}
.about-img-frame--formal {
  background: linear-gradient(160deg, #f4f1f7 0%, #ffffff 60%, #f8f4fa 100%);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-accent-bar {
  position: absolute;
  top: 48px; right: -16px;
  width: 32px; height: 180px;
  background: linear-gradient(180deg, var(--indigo), var(--strawberry));
}
.bio-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 88px 80px;
}
.bio-body p {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
}
.bio-quote {
  margin: 48px 0 52px;
  padding: 32px 40px;
  border-left: 3px solid var(--strawberry);
  background: var(--blush);
}
.bio-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.6;
  margin-bottom: 12px;
}
.bio-quote cite {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--strawberry);
  text-transform: uppercase;
  font-style: normal;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(75,32,134,0.1);
  border-bottom: 1px solid rgba(75,32,134,0.1);
}
.about-stat {
  padding: 64px 48px;
  text-align: center;
  border-right: 1px solid rgba(75,32,134,0.1);
}
.about-stat:last-child { border-right: none; }
.astat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 12px;
}
.astat-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-text);
}

/* ═══════════════════════════════════════════════════
   FLOURISH PAGE
═══════════════════════════════════════════════════ */
.fl-hero {
  background: linear-gradient(140deg, var(--indigo) 0%, #2e0f5e 45%, var(--teal) 100%);
  padding: 112px 80px 120px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.fl-hero-bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.fl-hero-flowers {
  position: absolute;
  width: 520px;
  max-width: 44vw;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.95;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}
.fl-hero-flowers--tr { top: -40px; right: -40px; }
.fl-hero-flowers--bl { bottom: -40px; left: -40px; transform: rotate(180deg); }
.fl-hero-content { position: relative; z-index: 1; max-width: 560px; }

.fl-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 0.95;
  margin: 24px 0 32px;
  text-align: left;
}
.fl-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin: 0 0 48px;
  text-align: left;
}
.fl-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 108px 80px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.fl-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.1;
  margin-bottom: 32px;
}
.fl-intro-title em { font-style: italic; color: var(--strawberry); }
.fl-intro-text p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}
.fl-intro-text { position: relative; z-index: 1; }
.fl-intro-pullquote { display: flex; flex-direction: column; gap: 32px; position: relative; z-index: 1; }
.fl-quote-box {
  background: var(--blush);
  padding: 52px 48px;
  position: relative;
}
.fl-quote-box::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(75,32,134,0.12);
  pointer-events: none;
}
.fl-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--strawberry);
  line-height: 0.7;
  margin-bottom: 16px;
  opacity: 0.5;
}
.fl-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.3;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}
.fl-quote-source {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.fl-intro-tag {
  background: var(--indigo);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.fl-intro-tag span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}
.fl-intro-tag strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--pink);
}
/* ─── FLOURISH FLOWER DESIGN ELEMENTS ─── */
.fl-peony-hero {
  position: absolute;
  top: -100px;
  right: -280px;
  width: 500px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
}
.fl-peony-hero-bl { display: none; }
.fl-orchid-left {
  position: absolute;
  left: -30px;
  bottom: -60px;
  transform: rotate(25deg);
  width: 320px;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}
.fl-orchid-right {
  position: absolute;
  right: -20px;
  top: 40px;
  transform: scaleX(-1) rotate(-35deg);
  width: 200px;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}
@media (max-width: 900px) {
  .fl-peony-hero { width: 220px; right: 10px; bottom: -20px; }
  .fl-orchid-left, .fl-orchid-right { display: none; }
}


  max-width: 1000px;
  margin: 48px auto 0;
  width: 100%;
  background: #000;
}
.fl-who-video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.fl-who {
  padding: 100px 80px 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fl-who::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--pink), var(--teal));
}
.fl-who-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--white);
  margin: 20px 0 16px;
  line-height: 1.1;
}
.fl-who-title em { font-style: italic; color: var(--pink); }
.fl-who-sub {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin: 0 auto 64px;
}
.fl-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}
.fl-who-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 36px;
  text-align: left;
  transition: background 0.3s;
}
.fl-who-card:hover { background: rgba(255,255,255,0.07); }
.fl-who-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--strawberry);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.fl-who-card-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fl-who-card p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
}
.fl-recap {
  background: linear-gradient(135deg, var(--indigo) 0%, #3d1575 60%, var(--teal) 130%);
  padding: 108px 80px;
  position: relative;
  overflow: hidden;
}
.fl-recap-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.fl-recap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin: 18px 0 24px;
}
.fl-recap-title em { font-style: italic; color: var(--pink); }
.fl-recap-desc {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
}
.fl-recap-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 8px 20px rgba(0,0,0,0.3);
}
.fl-recap-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fl-recap-video-frame {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   RESOURCES PAGE
═══════════════════════════════════════════════════ */
.res-hero {
  padding: 88px 80px 80px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--white) 100%);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.res-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 0.95;
  margin-bottom: 28px;
}
.res-hero-title em { font-style: italic; color: var(--strawberry); }
.res-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light-text);
  max-width: 480px;
}
.res-hero-accent {
  position: relative;
  height: 280px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: linear-gradient(145deg, var(--indigo) 0%, var(--strawberry) 100%);
  clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.res-hero-accent::before {
  content: 'PRAYER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-38%, -50%);
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
}
.res-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 80px 100px;
}
.res-card {
  padding: 52px 44px;
  border: 1px solid rgba(75,32,134,0.1);
  border-top: 3px solid var(--indigo);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.res-card:hover {
  border-top-color: var(--strawberry);
  box-shadow: 0 16px 56px rgba(75,32,134,0.1);
  transform: translateY(-4px);
}
.res-card.res-coming { border-top-color: var(--lilac); opacity: 0.75; }
.res-card.res-coming:hover { border-top-color: var(--lilac); opacity: 0.9; transform: translateY(-2px); }
.res-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.res-type {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--strawberry);
  padding: 5px 14px;
  background: var(--blush);
}
.res-type.coming { color: var(--lilac); background: rgba(177,157,190,0.12); }
.res-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--indigo);
  margin-bottom: 16px;
  line-height: 1.1;
}
.res-desc {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 28px;
}
.res-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  flex: 1;
}
.res-features li {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.res-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--strawberry);
  font-size: 12px;
}
.res-btn { text-align: center; }
.res-notify-note {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--lilac);
  font-style: italic;
  padding: 14px 0;
  border-top: 1px solid rgba(75,32,134,0.08);
}
.res-scripture {
  background: var(--dark);
  padding: 88px 80px;
  position: relative;
}
.res-scripture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--pink), var(--teal));
}
.res-scripture-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.res-scripture-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}
.res-scripture-text cite {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--pink);
  text-transform: uppercase;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 76px);
}
.contact-left {
  background: linear-gradient(148deg, var(--indigo) 0%, #280f54 55%, #1a3a3a 100%);
  padding: 88px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-left::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,100,189,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.contact-left::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,32,134,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.contact-left::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(245,100,189,0.08);
  pointer-events: none;
}
.contact-left::after {
  content: '';
  position: absolute;
  top: -60px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(0,90,94,0.2);
  pointer-events: none;
}
.contact-left-inner { position: relative; z-index: 1; }
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 113.6px;
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
}
.contact-title em { font-style: italic; color: var(--pink); }
.contact-intro {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.62);
  max-width: 400px;
  margin-bottom: 52px;
}
.contact-portrait {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
}
.contact-left-inner {
  position: relative;
  z-index: 1;
}
.contact-quote {
  padding: 28px 32px;
  border-left: 2px solid var(--pink);
  background: rgba(255,255,255,0.04);
}
.contact-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 10px;
}
.contact-quote cite {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--pink);
  text-transform: uppercase;
  font-style: normal;
}
.contact-right {
  background: var(--white);
  padding: 88px 72px;
  display: flex;
  align-items: center;
}
.contact-form-wrap { width: 100%; }
.form-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--strawberry);
  margin-bottom: 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(75,32,134,0.03);
  border: 1px solid rgba(75,32,134,0.14);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--indigo); background: rgba(75,32,134,0.05); }
.form-group textarea { height: 136px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B2086' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-color: rgba(75,32,134,0.03);
  padding-right: 44px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit-btn {
  width: 100%;
  padding: 18px;
  margin-top: 8px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  transition: background 0.3s, transform 0.2s;
}
.form-submit-btn:hover { transform: translateY(-1px); }
.form-submit-btn:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .kit-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 32px 24px; top: 76px; }

  /* HOME HERO */
  .hero { grid-template-columns: 1fr; padding: 48px 24px 0; text-align: center; align-items: start; }
  .hero-bg-shape { display: none; }
  .section-label { justify-content: center; }
  .hero-content { padding: 0 0 40px; }
  .hero-scripture { margin-left: auto; margin-right: auto; text-align: left; }
  .hero-tagline { margin-left: auto; margin-right: auto; font-size: 16px; }
  .hero-btns { justify-content: center; }
  .hero-visual { min-height: 340px; }
  .hero-portrait img { object-position: center top; }
  .hero-title { font-size: clamp(56px, 14vw, 80px); }
  .fl-hero .section-label { justify-content: center; }
  .fl-hero-content { max-width: 100%; text-align: center; }
  .fl-hero-title { text-align: center; }
  .fl-hero-sub { text-align: center; margin: 0 auto 48px; }

  /* PILLARS */
  .pillars-inner { padding: 0 24px; }
  .pillars-grid { grid-template-columns: 1fr; border-top: none; }
  .pillar-card { border-right: none; border-top: 1px solid rgba(255,255,255,0.06); }

  /* EVENTS */
  .events-preview { padding: 64px 24px; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .event-item { grid-template-columns: 80px 1fr; gap: 24px; padding: 32px 0; }

  /* STATS */
  .stats-bar { flex-direction: column; padding: 56px 24px; gap: 32px; }
  .stat-divider { width: 64px; height: 1px; }
  .stat-item { padding: 0; }

  /* FOOTER */
  .signup-strip { padding: 60px 24px; }
  .signup-form { flex-direction: column; }
  .signup-form input { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: none; }
  .kit-footer { padding: 52px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* ABOUT */
  .about-page-hero { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .about-hero-image { display: block; width: 100%; max-width: 420px; margin: 0 auto; }
  .about-hero-title { font-size: clamp(48px, 12vw, 80px) !important; }
  .bio-section { padding: 56px 24px; }
  .bio-section .bio-text { padding: 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(75,32,134,0.1); padding: 40px 16px; }

  /* FLOURISH */
  .fl-hero { padding: 80px 24px 100px; }
  .fl-peony-hero { width: 180px; right: -60px; top: -40px; }
  .fl-peony-hero-bl { display: none; }
  .fl-orchid-left, .fl-orchid-right { width: 140px; }
  .fl-intro { grid-template-columns: 1fr; padding: 64px 24px; gap: 48px; }
  .fl-who { padding: 64px 24px; }
  .fl-who-grid { grid-template-columns: 1fr; }
  .fl-who-video-wrap { margin-top: 32px; }

  /* RESOURCES */
  .res-hero { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .res-hero-accent { display: none; }
  .res-grid-section { grid-template-columns: 1fr; padding: 0 24px 64px; }
  .res-scripture { padding: 64px 24px; }

  /* CONTACT */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 64px 24px 80px; min-height: 320px; }
  .contact-title { font-size: clamp(56px, 14vw, 80px) !important; }
  .contact-title em { font-size: clamp(56px, 14vw, 80px) !important; }
  .contact-right { padding: 56px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 52px; }
  .about-hero-title { font-size: 48px !important; }
  .contact-title { font-size: 52px !important; }
  .contact-title em { font-size: 52px !important; }
  .fl-hero-title { font-size: 64px; }
  .about-stats { grid-template-columns: 1fr; }
  .fl-who-grid { gap: 16px; }
  .pillars-grid { gap: 0; }
  .event-item { grid-template-columns: 1fr; gap: 16px; }
  .e-month, .e-day, .e-year { display: inline; }
  .event-date-block { display: flex; gap: 6px; align-items: baseline; }
}
