/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */

.about-hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-5);
  background:
    radial-gradient(ellipse at top right, rgba(200, 40, 60, 0.08), transparent 60%),
    var(--cream);
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-hero {
    padding: var(--space-7) 0 var(--space-5);
  }
}

.about-hero h1 {
  max-width: 800px;
  margin: 0 auto var(--space-3);
}

.about-hero h1 em {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.about-hero .lead {
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   FOUNDING STORY — Edie & Anne centrepiece
   ============================================================ */

.founding-story {
  padding: var(--space-6) 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.founding-story::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.founding-story-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.founding-header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.founding-header h2 {
  margin-bottom: var(--space-2);
}

/* Video / featured area */
.founding-video {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
  border: 1px solid var(--blush-deep);
  box-shadow: var(--shadow-card);
}

.founding-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--plum);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.founding-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.founding-video-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  font-style: italic;
}

/* Video placeholder for when Anne's video isn't ready */
.founding-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%),
    linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
  color: var(--blush);
}

.founding-video-placeholder-content {
  max-width: 460px;
}

.founding-video-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--pink);
  margin-bottom: var(--space-2);
}

.founding-video-placeholder h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.founding-video-placeholder p {
  color: var(--blush);
  font-size: 0.95rem;
  margin: 0 auto;
  opacity: 0.85;
}

/* Story body — the written story */
.story-body {
  max-width: 720px;
  margin: 0 auto;
}

.story-body p {
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}

.story-body p + p {
  margin-top: var(--space-2);
}

.story-pull-quote {
  margin: var(--space-4) 0;
  padding: var(--space-4) var(--space-3);
  border-left: 4px solid var(--pink);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--plum);
}

.story-pull-quote cite {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--charcoal-soft);
  font-style: normal;
  margin-top: var(--space-2);
  font-weight: 500;
}

.story-pull-quote cite::before {
  content: '— ';
}

/* ============================================================
   MISSION / VISION / VALUES
   ============================================================ */

.mission-values {
  padding: var(--space-6) 0;
  background: var(--cream);
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mvv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mvv-card {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.mvv-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  color: var(--pink-dark);
}

.mvv-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.mvv-card p {
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   TIMELINE — A decade of bigger hearts
   ============================================================ */

.timeline {
  padding: var(--space-6) 0;
  background: var(--white);
}

.timeline-list {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  list-style: none;
  padding: 0;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--blush-deep);
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  padding-bottom: var(--space-4);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 26px;
  height: 26px;
  background: var(--white);
  border: 3px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-marker::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: var(--space-1);
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-1);
  color: var(--plum);
}

.timeline-item p {
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   INITIATIVES — Past projects
   ============================================================ */

.initiatives {
  padding: var(--space-6) 0;
  background: var(--cream);
}

.initiatives-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.initiative-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: flex-start;
}

.initiative-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 12px;
  flex-shrink: 0;
}

.initiative-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.initiative-content p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.initiative-content a {
  color: var(--pink-dark);
  font-weight: 500;
}

/* ============================================================
   PARTNERS & ACKNOWLEDGEMENTS
   ============================================================ */

.acknowledgements {
  padding: var(--space-6) 0;
  background: var(--blush);
}

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

.acknowledgements h2 {
  margin-bottom: var(--space-3);
}

.acknowledgements-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.partner-pill {
  background: var(--white);
  color: var(--plum);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--blush-deep);
}

/* ============================================================
   CALL TO ACTION
   ============================================================ */

.about-cta {
  padding: var(--space-6) 0;
  background: var(--plum);
  color: var(--blush);
  text-align: center;
}

.about-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.about-cta p {
  color: var(--blush);
  max-width: 580px;
  margin: 0 auto var(--space-4);
  opacity: 0.9;
}

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

.about-cta .btn-outline {
  border-color: var(--blush);
  color: var(--white);
}

.about-cta .btn-outline:hover {
  background: var(--white);
  color: var(--plum);
}
