/* Pull quote — standalone attributed quote block */
.pull-quote {
  padding: 120px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pull-quote .pq-mark {
  margin: 0 auto 28px;
  display: block;
}
.pull-quote .pq-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 52px);
  line-height: 1.22;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
}
.pull-quote .pq-text em {
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}
.pull-quote .pq-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.pull-quote .pq-dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--pink);
}
.pull-quote .pq-name {
  color: var(--cream);
  font-weight: 500;
}
.pull-quote .pq-role {
  opacity: 0.65;
}
@media (max-width: 900px) {
  .pull-quote { padding: 80px 28px; }
  .pull-quote .pq-attr { flex-wrap: wrap; gap: 10px; row-gap: 6px; }
}

/* Flashcard slider — pinned section with horizontal reveal on vertical scroll */
.flashcard-section {
  position: relative;
  height: 540vh; /* 6 cards × 90vh each — generous dwell time so every card reads */
  background: transparent;
  padding: 0;
  max-width: none;
}
.flashcard-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  overflow: hidden;
  padding: 40px 0 30px;
  box-sizing: border-box;
}
.flashcard-head {
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  margin: 0 auto;
}
.flashcard-head .eyebrow { margin-bottom: 10px; }
.flashcard-head h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.08;
  margin: 0;
}
.flashcard-head h2 br { display: none; }
.flashcard-head .italic-pink { color: var(--pink); font-style: italic; }
.flashcard-head p {
  font-size: 14px;
  color: var(--cream-soft);
  margin-top: 10px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.75;
}
.flashcard-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 420px;
  margin: 0 auto;
}
.flashcard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 400px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transform: translate(-50%, -50%);
  transition: transform 0.6s cubic-bezier(.25,.9,.3,1), opacity 0.5s ease, filter 0.5s ease;
  will-change: transform, opacity;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.flashcard-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--muted);
}
.flashcard-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 14px;
}
.flashcard-chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}
.flashcard h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--cream);
  margin-top: auto;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.flashcard h3 em { font-style: italic; color: var(--pink); }
.flashcard p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream-soft);
}
.flashcard[data-color="teal"] .flashcard-chip { color: var(--teal); }
.flashcard[data-color="teal"] .flashcard-chip::before { background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.flashcard[data-color="teal"] h3 em { color: var(--teal); }
.flashcard[data-color="gold"] .flashcard-chip { color: var(--gold); }
.flashcard[data-color="gold"] .flashcard-chip::before { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.flashcard[data-color="gold"] h3 em { color: var(--gold); }
.flashcard[data-color="purple"] .flashcard-chip { color: var(--purple); }
.flashcard[data-color="purple"] .flashcard-chip::before { background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.flashcard[data-color="purple"] h3 em { color: var(--purple); }
.flashcard[data-color="coral"] .flashcard-chip { color: var(--coral); }
.flashcard[data-color="coral"] .flashcard-chip::before { background: var(--coral); box-shadow: 0 0 10px var(--coral); }
.flashcard[data-color="coral"] h3 em { color: var(--coral); }

.flashcard-progress {
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.fp-dot {
  width: 32px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.15);
  transition: background 0.4s, width 0.4s;
}
.fp-dot.active { background: var(--pink); width: 48px; }

/* Mission hero block */
.mission-hero {
  padding: 140px 40px;
  text-align: center;
  position: relative;
}
.mission-hero .eyebrow {
  display: inline-block; padding-left: 0;
}
.mission-hero .eyebrow::before { display: none; }
.mission-hero .mission-text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 6vw, 100px);
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin: 30px auto 0;
  text-wrap: balance;
}
.mission-hero .mission-text em { color: var(--pink); font-weight: 500; }
.mission-hero .mission-text .teal { color: var(--teal); font-weight: 500; font-style: italic; }
.mission-hero .mission-text .gold { color: var(--gold); font-weight: 500; font-style: italic; }

/* WOW teaser */
.wow-teaser {
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.wow-teaser .mascot-stage { aspect-ratio: 1; max-width: 520px; }
.wow-teaser h2 { font-size: clamp(44px, 6vw, 92px); }
.wow-teaser p { margin-top: 26px; max-width: 44ch; }
.wow-teaser .cta-row {
  display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap;
}

/* Story teaser */
.story-teaser {
  padding: 160px 40px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.story-teaser h2 { font-size: clamp(44px, 6vw, 92px); margin-bottom: 24px; }
.story-teaser .teaser-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--cream);
  line-height: 1.4;
  max-width: 28ch;
  margin: 30px auto 40px;
}
.story-teaser .teaser-quote em { color: var(--pink); font-weight: 500; }

/* Offerings strip on homepage */
.offerings-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.offerings-strip span {
  display: inline-flex; align-items: center; gap: 10px;
}
.offerings-strip span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 8px var(--pink);
}
.offerings-strip span:nth-child(2)::before { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.offerings-strip span:nth-child(3)::before { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.offerings-strip span:nth-child(4)::before { background: var(--purple); box-shadow: 0 0 8px var(--purple); }

@media (max-width: 900px) {
  .flashcard-section { height: 480vh; }
  .flashcard { width: 280px; height: 360px; padding: 24px; }
  .flashcard h3 { font-size: 30px; }
  .wow-teaser { grid-template-columns: 1fr; gap: 50px; }
  .offerings-strip { gap: 20px; font-size: 10px; }
}
