/* ── FONT IMPORT ── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap");
/* ===== PAGE BANNER — smaller version of .welcome-band, for a page (not the homepage hero) ===== */
.page-banner {
  background: linear-gradient(
    160deg,
    var(--brand-primary) 0%,
    var(--brand-primary-light) 100%
  );
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 5%,
    rgba(184, 134, 63, 0.22),
    transparent 55%
  );
}

.page-banner .content {
  position: relative;
  z-index: 1;
}

.page-banner .welcome-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-accent-light);
  font-weight: 700;
  margin-bottom: 14px;
}

.page-banner h1 {
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 14px;
  color: #b9c4d6;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOUNDER ===== */
.founder {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 46px;
  align-items: start;
}

.founder-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--brand-accent);
  box-shadow: 0 20px 40px rgba(13, 21, 38, 0.15);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-body .eyebrow {
  color: var(--brand-accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.founder-body h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--brand-primary);
  margin: 8px 0 4px;
  line-height: 1.25;
}

.founder-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.founder-roles {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.founder-roles span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-primary);
  background: var(--bg-muted);
  border-radius: 20px;
  padding: 6px 14px;
  width: fit-content;
}

.founder-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.founder-body p:last-child {
  margin-bottom: 0;
}

/* ===== MISSION CARDS — emoji icon variant of .prog-icon ===== */
.prog-icon.emoji {
  font-size: 22px;
  background: var(--bg-muted);
}

.mission-grid .prog-card p {
  min-height: 0;
}

/* ===== ANTHEM CARD ===== */
.anthem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 46px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.anthem-card p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.9;
  color: var(--brand-primary);
  margin-bottom: 22px;
}

.anthem-card p:last-child {
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .founder {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    max-width: 260px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }

  .founder-body {
    text-align: center;
  }

  .founder-roles {
    align-items: center;
  }

  .founder-roles span {
    margin: 0 auto;
  }

  .page-banner h1 {
    font-size: 28px;
  }

  .anthem-card {
    padding: 30px 24px;
  }

  .anthem-card p {
    font-size: 16px;
  }
}

.mission-section {
  padding: 20px 30px 0;
}
/* ── FADE-IN ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
  margin-bottom: 28px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-2 {
  animation-delay: 0.25s;
}

/* ── SECTION HEADING ── */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  text-align: center;
  color: var(--brand-primary);
  margin-bottom: 14px;
}

/* ── MISSION GRID ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* ── MISSION CARD ── */
.mission-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px 14px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: var(--brand-accent) transparent;

  height: 150px;
}

.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 21, 38, 0.1);
}

/* ── MISSION ICON ── */
.mission-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* ── MISSION TITLE ── */
.mission-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

/* ── MISSION DESCRIPTION ── */
.mission-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.mission-desc strong {
  color: var(--text-main);
  font-weight: 700;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    height: 150px;
  }

  .section-title {
    font-size: 1.45rem;
  }
}
