/* ════════════════════════════════════════════
   Printable Smiles — Global Styles
   ════════════════════════════════════════════ */

:root {
  --navy:  #22223B;
  --slate: #4A4E69;
  --mauve: #9A8C98;
  --cream: #F2E9E4;
  --white: #FFFFFF;
  --max-w: 1100px;
  --nav-h: 72px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.45s ease,
    left 0.45s ease,
    right 0.45s ease,
    border-radius 0.45s ease,
    padding 0.45s ease;
}

/* At the top of the home page — blends into the hero gradient */
nav.transparent {
  background: transparent;
  box-shadow: none;
}
nav.transparent .nav-links a { color: rgba(255,255,255,0.82); }
nav.transparent .nav-links a:hover { color: var(--cream); }

/* Floating bubble — scrolled state or inner pages */
nav.solid,
nav.floating,
nav.scrolled {
  top: 12px;
  left: 16px;
  right: 16px;
  padding: 0 32px;
  border-radius: 14px;
  background: rgba(28,29,50,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 28px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.07);
}

nav.solid .nav-links a,
nav.floating .nav-links a,
nav.scrolled .nav-links a { color: rgba(255,255,255,0.75); }
nav.solid .nav-links a:hover,
nav.floating .nav-links a:hover,
nav.scrolled .nav-links a:hover { color: var(--cream); }

/* Slide up out of view */
nav.hidden {
  transform: translateY(calc(-100% - 28px));
}

.nav-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a.active { color: var(--cream) !important; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 100px) 52px 80px;
  background: linear-gradient(150deg, #22223B 0%, #2e2f4a 40%, #4A4E69 75%, #7a6f78 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  position: relative; z-index: 1;
}

/* ── Sections ── */
.section { padding: 96px 52px; }
.section-sm { padding: 72px 52px; }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.section-title.light { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  border-radius: 10px;
}

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--slate); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.6);
}

/* ── Gradient Section (shared wrapper for CTA band + footer) ── */
.gradient-section {
  background: linear-gradient(150deg, #22223B 0%, #2e2f4a 40%, #4A4E69 75%, #7a6f78 100%);
  position: relative;
  overflow: hidden;
}

/* ── CTA Band ── */
.cta-band {
  background: transparent;
  text-align: center;
  padding: 120px 52px 80px;
  position: relative;
}

.cta-band .section-label { color: var(--mauve); }
.cta-band p.sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin: 20px 0 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Section Dividers ── */
.section-divider {
  width: 560px;
  max-width: 88%;
  height: 1px;
  background: rgba(34,34,59,0.1);
  margin: 0 auto;
}
.section-divider--light {
  background: rgba(255,255,255,0.14);
}

/* ── Footer ── */
footer {
  background: transparent;
  padding: 32px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
}

.footer-logo img { height: 30px; opacity: 1; filter: brightness(0) invert(1); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gradient orb animations */
@keyframes orbPulse {
  0%, 100% { opacity: 0.18; transform: translate(-50%, -55%) scale(1); }
  50%       { opacity: 0.28; transform: translate(-50%, -59%) scale(1.13); }
}
@keyframes orbFloat {
  0%, 100% { opacity: 0.20; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.28; transform: translate(-52%, -54%) scale(1.1); }
}
@keyframes orbDrift {
  0%,  100% { opacity: 0.14; transform: translate(0, 0) scale(1); }
  40%        { opacity: 0.22; transform: translate(-4%, 6%) scale(1.07); }
  80%        { opacity: 0.16; transform: translate(5%, -3%) scale(0.95); }
}
@keyframes orbDriftAlt {
  0%,  100% { opacity: 0.12; transform: translate(0, 0) scale(1); }
  40%        { opacity: 0.18; transform: translate(5%, -5%) scale(1.05); }
  80%        { opacity: 0.14; transform: translate(-3%, 4%) scale(0.97); }
}

/* Hero additional orbs (index.html) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 70vw; height: 70vw;
  bottom: -20%; right: -15%;
  background: radial-gradient(circle, rgba(180,150,165,0.22) 0%, transparent 60%);
  animation: orbDrift 13s ease-in-out infinite;
}
.hero-orb-2 {
  width: 38vw; height: 38vw;
  top: 2%; left: -6%;
  background: radial-gradient(circle, rgba(74,78,105,0.28) 0%, transparent 60%);
  animation: orbDriftAlt 17s ease-in-out infinite;
}

/* Page hero + CTA orbs (injected via main.js) */
.page-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-orb-1 {
  width: 65vw; height: 65vw;
  top: 50%; left: 50%;
  background: radial-gradient(circle, rgba(154,140,152,0.20) 0%, transparent 65%);
  animation: orbFloat 9s ease-in-out infinite;
}
.page-orb-2 {
  width: 50vw; height: 50vw;
  bottom: -25%; right: -15%;
  background: radial-gradient(circle, rgba(180,150,165,0.16) 0%, transparent 60%);
  animation: orbDrift 12s ease-in-out infinite;
}
.cta-orb-1 {
  width: 55vw; height: 55vw;
  top: 50%; right: -18%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(154,140,152,0.17) 0%, transparent 65%);
  animation: orbDrift 11s ease-in-out infinite;
}
.cta-orb-2 {
  width: 38vw; height: 38vw;
  bottom: -15%; left: -8%;
  background: radial-gradient(circle, rgba(74,78,105,0.30) 0%, transparent 60%);
  animation: orbDriftAlt 15s ease-in-out infinite;
}

/* ── Scroll Fade-Up ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: 0.12s; }
.fade-up[data-delay="2"] { transition-delay: 0.24s; }
.fade-up[data-delay="3"] { transition-delay: 0.36s; }
.fade-up[data-delay="4"] { transition-delay: 0.48s; }

/* ── Centering fixes ── */
.team-header { text-align: center; }
.pillar { align-items: center; text-align: center; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  nav.solid,
  nav.floating,
  nav.scrolled { left: 10px; right: 10px; padding: 0 20px; border-radius: 12px; }
  .section, .section-sm { padding: 64px 24px; }
  .page-hero { padding: calc(var(--nav-h) + 56px) 24px 56px; }
  .cta-band { padding: 80px 24px; }
  footer { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ════════════════════════════════════════════
   Index Page
   ════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #22223B 0%, #2e2f4a 40%, #4A4E69 75%, #7a6f78 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 70vw; height: 70vw;
  top: 50%; left: 50%;
  background: radial-gradient(circle, rgba(154,140,152,0.18) 0%, transparent 65%);
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.45s;
}

.hero-title em {
  font-style: normal;
  color: rgba(242,233,228,0.85);
}

.hero-sub {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.65s;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.85s;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.1s;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollLine 1.8s ease-in-out infinite 1.5s;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.7; transform: scaleY(1.2); }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .section-title { margin-top: 12px; margin-bottom: 24px; }

.intro-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
}

.intro-text .btn { margin-top: 40px; }

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  display: block;
}



.pillars-header {
  text-align: center;
  margin-bottom: 72px;
}
.pillars-header .section-title { margin-top: 10px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  opacity: 0.55;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.pillar p {
  font-size: 0.91rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
}

/* ════════════════════════════════════════════
   About Page
   ════════════════════════════════════════════ */

.mission { background: var(--white); text-align: center; }
.mission .section-title { margin-top: 12px; margin-bottom: 24px; }
.mission p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--slate);
  max-width: 680px;
  margin: 0 auto;
}

.team-section { background: var(--white); }
.team-header { margin-bottom: 72px; }
.team-header .section-title { margin-top: 10px; }

.team-lead {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(34,34,59,0.08);
}

.team-lead-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 140px;
  height: 168px;
  flex-shrink: 0;
}

.team-lead-image img {
  width: 140px;
  height: 168px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
}

.team-lead-image::before {
  display: none;
}

.team-lead-text .member-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 10px;
}

.team-lead-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}

.team-lead-text .member-school {
  font-size: 0.83rem;
  color: var(--slate);
  margin-bottom: 24px;
}

.team-lead-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--slate);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
}

.team-member {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: flex-start;
}

.team-member-image {
  overflow: hidden;
  border-radius: 10px;
  width: 140px;
  height: 168px;
  flex-shrink: 0;
}

.team-member-image img {
  width: 140px;
  height: 168px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
}

.member-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.1;
}

.member-role {
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 4px;
}

.member-school {
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 14px;
}

.member-bio {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
}

/* ════════════════════════════════════════════
   Contact Page
   ════════════════════════════════════════════ */

.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

.contact-info .section-title { margin-top: 12px; margin-bottom: 28px; }

.contact-info p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 40px;
}

.contact-links { display: flex; flex-direction: column; gap: 20px; }

.contact-link-item { display: flex; align-items: center; gap: 16px; }

.contact-link-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  width: 80px;
  flex-shrink: 0;
}

.contact-link-item a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.contact-link-item a:hover { color: var(--slate); }

.contact-form {
  background: rgba(34,34,59,0.05);
  padding: 52px 48px;
  border-radius: 12px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 36px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(34,34,59,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--mauve); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--slate);
  margin-top: 4px;
}

.form-note--meta {
  margin-top: 20px;
  font-size: 0.73rem;
  color: var(--mauve);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-disclaimer { font-size: 0.77rem; font-weight: 300; color: var(--mauve); }

/* ════════════════════════════════════════════
   Surveys Page
   ════════════════════════════════════════════ */

.surveys-intro { background: var(--white); text-align: center; }
.surveys-intro .section-title { margin-top: 12px; }
.surveys-intro p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  max-width: 600px;
  margin: 20px auto 0;
}

.surveys-section { background: var(--white); }

.surveys-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.survey-card {
  background: rgba(34,34,59,0.04);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.25s;
}

.survey-card:hover { border-color: rgba(154,140,152,0.3); }

.survey-card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
}

.survey-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
}

.survey-card p {
  font-size: 0.91rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
  flex: 1;
}

.survey-card-links { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.survey-card-links .btn { text-align: center; width: fit-content; }

.survey-card.inactive { opacity: 0.5; pointer-events: none; }
.survey-card.inactive .survey-card-tag::after { content: ' · Coming Soon'; }

.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-title { margin-top: 10px; margin-bottom: 24px; }

.why-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
}

.why-stat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.stat-card { background: rgba(34,34,59,0.05); padding: 32px 28px; border-radius: 12px; }

.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .label { font-size: 0.82rem; font-weight: 300; color: var(--slate); line-height: 1.5; }

/* ════════════════════════════════════════════
   Sponsors Page
   ════════════════════════════════════════════ */

.what-we-do { background: var(--white); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-text .section-title { margin-top: 12px; }

.what-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
}

.what-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--mauve);
  margin-top: 12px;
}

.what-image {
  overflow: hidden;
  border-radius: 12px;
}

.what-image img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  object-position: center center;
  background: rgba(34,34,59,0.04);
  padding: 32px;
  border-radius: 12px;
  display: block;
}

.funding-section { background: var(--white); }

.funding-header { text-align: center; margin-bottom: 64px; }
.funding-header .section-title { margin-top: 10px; }

.funding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.funding-item {
  background: rgba(34,34,59,0.04);
  padding: 40px 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.funding-item-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

.funding-item h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--navy); }

.funding-item p { font-size: 0.86rem; font-weight: 300; line-height: 1.75; color: var(--slate); }

.return-section { background: var(--white); }

.return-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.return-text .section-title { margin-top: 12px; margin-bottom: 28px; }

.return-cards { display: flex; flex-direction: column; gap: 16px; }

.return-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: rgba(34,34,59,0.05);
  border-radius: 12px;
}

.return-card-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.return-card-text h4 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.return-card-text p { font-size: 0.87rem; font-weight: 300; line-height: 1.7; color: var(--slate); }

.return-quote {
  padding: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.return-quote p {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.return-quote span {
  display: block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
}

.sponsor-contact { background: transparent; text-align: center; }
.sponsor-contact .section-title { margin-top: 10px; margin-bottom: 20px; }
.sponsor-contact .sponsor-sub { color: rgba(255,255,255,0.55); }
.sponsor-contact .email-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.sponsor-contact .email-link:hover { opacity: 0.7; }

/* ── Extra button variant ── */
.btn-outline-mauve {
  background: transparent;
  border: 1px solid var(--mauve);
  color: var(--mauve);
}

/* ════════════════════════════════════════════
   Page-specific responsive overrides
   ════════════════════════════════════════════ */

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image { order: -1; }
  .intro-image img { height: 300px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-lead { grid-template-columns: 100px 1fr; gap: 20px; }
  .team-lead-image { width: 100px; height: 120px; }
  .team-lead-image img { width: 100px; height: 120px; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-member { grid-template-columns: 100px 1fr; gap: 20px; }
  .team-member-image { width: 100px; height: 120px; }
  .team-member-image img { width: 100px; height: 120px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .surveys-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .what-grid,
  .return-grid { grid-template-columns: 1fr; gap: 48px; }
  .funding-grid { grid-template-columns: 1fr 1fr; }
  .what-image img { height: 260px; }
}

@media (max-width: 600px) {
  .funding-grid { grid-template-columns: 1fr; }
}
