/* ══════════════════════════════════════════════════════════════
   RealignHER — Shared Stylesheet
   Used by: index.html, resource-library.html, professional-network.html,
            events.html, community.html, thank-you.html
   ══════════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:      #F6F1E8;
  --cream-soft: #FBF8F2;
  --white:      #FFFFFF;
  --charcoal:   #2C2C2A;
  --charcoal-60:rgba(44,44,42,0.62);
  --charcoal-40:rgba(44,44,42,0.42);
  --black:      #1C1814;

  --gold:      #B8892D;
  --gold-lite: #D4AA55;
  --gold-pale: rgba(184,137,45,0.08);
  --gold-line: rgba(184,137,45,0.22);

  /* Pillar accents */
  --breakthrough: #1E2A3A;
  --ambition:     #1F4F4A;
  --embodied:     #9C4E2E;
  --inbetween:    #6F7A54;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

/* ─── BASE ───────────────────────────────────────────────── */
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.gold { color: var(--gold); }
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.divider { width: 40px; height: 1px; background: var(--gold); margin: 2.5rem auto; opacity: 0.7; }

/* ─── PHOTO FRAME (shared image treatment) ──────────────── */
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--gold-line);
  box-shadow: 0 18px 40px -20px rgba(44,44,42,0.35);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(184,137,45,0.22), rgba(44,44,42,0.06));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo-caption {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  margin-top: 0.85rem;
  text-align: center;
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-line);
}
.nav-left { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links > a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  transition: color 0.2s;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover, .nav-dropdown.open .nav-dropdown-trigger { color: var(--gold); }
.nav-dropdown-trigger svg { width: 9px; height: 9px; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  box-shadow: 0 20px 45px -18px rgba(44,44,42,0.3);
  padding: 0.6rem;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: block;
  font-size: 0.82rem;
  color: var(--charcoal);
  padding: 0.65rem 0.85rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-panel a:hover { background: var(--gold-pale); color: var(--gold); }
.nav-dropdown-panel a.active { background: var(--gold-pale); color: var(--gold); }
.nav-dropdown-panel a .dd-desc {
  display: block;
  font-size: 0.68rem;
  color: var(--charcoal-40);
  margin-top: 0.15rem;
  font-weight: 300;
}
.nav-dropdown-panel a:hover .dd-desc { color: var(--gold); opacity: 0.8; }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-lite); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-burger span { width: 20px; height: 1.5px; background: var(--charcoal); display: block; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--cream);
  display: none;
  flex-direction: column;
  padding: 6.5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gold-line);
}
.mobile-menu .mm-sub {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}
.mobile-menu .mm-sub a { font-size: 1.15rem; color: var(--charcoal-60); }
.mobile-menu .mm-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.5rem 0 0.25rem;
}
.mobile-menu .btn-primary { margin-top: 2rem; text-align: center; }

/* ─── PAGE HERO (for sub-pages) ──────────────────────────── */
.page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 9rem 2rem 4rem;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 25%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(184, 137, 45, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { font-size: 0.7rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  max-width: 780px;
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p.page-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--charcoal-60);
  max-width: 600px;
  line-height: 1.85;
}
.page-crumb {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  margin-bottom: 1.5rem;
}
.page-crumb a { color: var(--gold); }
.page-crumb a:hover { color: var(--gold-lite); }

/* ─── HERO (home) ────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 460px;
  background: radial-gradient(ellipse, rgba(184, 137, 45, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  max-width: 820px;
  margin-bottom: 0.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--charcoal-60);
  max-width: 640px;
  margin: 1.75rem auto 3rem;
  line-height: 1.85;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.75rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lite); transform: translateY(-1px); }

.hero-fundraiser-link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--charcoal-40);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-fundraiser-link:hover { color: var(--gold); border-color: var(--gold); }

.hero-band { max-width: 1120px; margin: 1rem auto 0; padding: 0 2rem; }
.hero-band .photo-frame { height: 360px; }

/* ─── STORY ──────────────────────────────────────────────── */
.story-section { padding: 6.5rem 2rem; }
.story-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 3.5rem; align-items: center;
}
.story-grid .photo-frame { height: 460px; }

/* Founder cutout photo — background removed, no box/frame, soft drop shadow
   that follows the silhouette instead of a rectangle. */
.founder-photo-wrap { position: relative; display: flex; justify-content: center; }
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(184,137,45,0.16) 0%, transparent 72%);
  pointer-events: none;
}
.founder-photo {
  position: relative;
  max-width: 360px;
  width: 100%;
}
.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(44,44,42,0.28));
}
.founder-caption {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  margin-top: 1.25rem;
}
.story-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.3; margin-bottom: 1.5rem; color: var(--charcoal);
}
.story-copy h2 em { font-style: italic; color: var(--gold); }
.story-copy p { font-size: 1rem; color: var(--charcoal-60); margin-bottom: 1.15rem; line-height: 1.85; }
.story-copy p strong { color: var(--charcoal); font-weight: 500; }

/* ─── STAGES STRIP ───────────────────────────────────────── */
.stages { padding: 5rem 2rem; background: var(--gold-pale); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }
.stages-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.stages-inner h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.stages-inner h2 em { font-style: italic; color: var(--gold); }
.stages-sub { font-size: 0.92rem; color: var(--charcoal-60); max-width: 560px; margin: 0 auto 3rem; line-height: 1.8; }
.stages-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.stage-item { background: var(--white); border: 1px solid var(--gold-line); border-radius: 4px; padding: 1.75rem 1.1rem; text-align: left; }
.stage-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; display: block; margin-bottom: 0.6rem; }
.stage-name { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.stage-desc { font-size: 0.78rem; color: var(--charcoal-60); line-height: 1.6; }

/* ─── PILLARS ────────────────────────────────────────────── */
.pillars { padding: 6rem 2rem; }
.pillars-inner { max-width: 1080px; margin: 0 auto; }
.pillars-header { text-align: center; margin-bottom: 3.5rem; }
.pillars-header h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 400; color: var(--charcoal); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.pillar-card { background: var(--white); border: 1px solid var(--gold-line); padding: 2rem 1.75rem; border-radius: 4px; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.pillar-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(44,44,42,0.28); }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 4px 4px 0 0; }
.pillar-card.breakthrough::before { background: var(--breakthrough); }
.pillar-card.embodied::before     { background: var(--embodied); }
.pillar-card.ambition::before     { background: var(--ambition); }
.pillar-card.inbetween::before    { background: var(--inbetween); }
.pillar-number { font-family: var(--serif); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.75rem; display: block; }
.pillar-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.35rem; }
.pillar-theme { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); opacity: 0.85; margin-bottom: 1rem; }
.pillar-desc { font-size: 0.88rem; color: var(--charcoal-60); line-height: 1.75; }

/* ─── APP FEATURES ───────────────────────────────────────── */
.app-features { padding: 6.5rem 2rem; background: var(--white); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }
.app-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.9fr; gap: 3.5rem; align-items: center; }
.app-grid.reverse { grid-template-columns: 0.9fr 1fr; }
.app-grid.reverse .photo-frame { order: 2; }
.app-grid .photo-frame { height: 420px; }
.app-copy h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; line-height: 1.3; margin-bottom: 1.25rem; color: var(--charcoal); }
.app-copy h2 em { font-style: italic; color: var(--gold); }
.app-copy > p { font-size: 0.95rem; color: var(--charcoal-60); line-height: 1.8; margin-bottom: 1.75rem; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 0.55rem; }
.feature-item strong { display: block; font-size: 0.92rem; color: var(--charcoal); font-weight: 500; margin-bottom: 0.15rem; }
.feature-item span { font-size: 0.85rem; color: var(--charcoal-60); line-height: 1.6; }

/* ─── ECOSYSTEM TEASER SECTIONS (home page) ─────────────── */
.eco-section { padding: 6.5rem 2rem; }
.eco-section.tint { background: var(--gold-pale); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }
.eco-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1fr; gap: 3.5rem; align-items: center; }
.eco-grid.reverse { grid-template-columns: 1fr 0.9fr; }
.eco-grid.reverse .photo-frame { order: 2; }
.eco-grid .photo-frame { height: 400px; }
.eco-copy .section-label { margin-bottom: 1rem; }
.eco-copy h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; line-height: 1.3; margin-bottom: 1.25rem; color: var(--charcoal); }
.eco-copy h2 em { font-style: italic; color: var(--gold); }
.eco-copy p { font-size: 0.95rem; color: var(--charcoal-60); line-height: 1.85; margin-bottom: 1.1rem; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 1.75rem; }
.eco-tag { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--charcoal); background: var(--white); border: 1px solid var(--gold-line); padding: 0.4rem 0.85rem; border-radius: 20px; }
.eco-grid.reverse .eco-tag { background: var(--gold-pale); }
.eco-mini-cta { display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold-line); padding-bottom: 3px; transition: color 0.2s, border-color 0.2s; }
.eco-mini-cta:hover { color: var(--gold-lite); border-color: var(--gold-lite); }

/* ─── SUB-PAGE SECTIONS ──────────────────────────────────── */
.sub-section { padding: 6rem 2rem; }
.sub-section.tint { background: var(--gold-pale); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }
.sub-section.white { background: var(--white); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }
.sub-inner { max-width: 1080px; margin: 0 auto; }
.sub-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.sub-header h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--charcoal); margin-bottom: 1rem; }
.sub-header h2 em { font-style: italic; color: var(--gold); }
.sub-header p { font-size: 0.92rem; color: var(--charcoal-60); line-height: 1.85; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-card { background: var(--white); border: 1px solid var(--gold-line); border-radius: 4px; padding: 2rem 1.75rem; transition: transform 0.25s, box-shadow 0.25s; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(44,44,42,0.28); }
.sub-section.tint .info-card, .sub-section.white .info-card.on-tint { background: var(--cream-soft); }
.info-card-icon { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; display: block; }
.info-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; }
.info-card p { font-size: 0.87rem; color: var(--charcoal-60); line-height: 1.7; }
.info-card .tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.info-card .tag-row span { font-size: 0.68rem; color: var(--gold); background: var(--gold-pale); padding: 0.25rem 0.6rem; border-radius: 12px; }

/* Category table (resource library) */
.category-block { border: 1px solid var(--gold-line); border-radius: 4px; overflow: hidden; background: var(--white); margin-bottom: 1.25rem; }
.category-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--gold-line); }
.category-head h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); }
.category-head span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.guide-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.guide-cell {
  display: block;
  padding: 1.25rem 1.75rem;
  border-right: 1px solid var(--gold-line);
  transition: background 0.2s;
}
.guide-cell:hover { background: var(--gold-pale); }
.guide-cell:last-child { border-right: none; }
.guide-cell .g-stage { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-40); margin-bottom: 0.3rem; }
.guide-cell .g-title { font-family: var(--serif); font-size: 1.02rem; color: var(--charcoal); font-style: italic; margin-bottom: 0.6rem; }
.guide-cell .g-download { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.guide-thumb { width: 100%; aspect-ratio: 3/4; max-width: 140px; border-radius: 3px; overflow: hidden; margin-bottom: 0.85rem; border: 1px solid var(--gold-line); }
.guide-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Empty-state placeholders (Professional Network / Events before data exists) */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px dashed var(--gold-line);
  border-radius: 6px;
  font-size: 0.92rem;
  font-style: italic;
  font-family: var(--serif);
  color: var(--charcoal-60);
}
.person-title { font-size: 0.75rem !important; letter-spacing: 0.04em; color: var(--gold) !important; font-style: normal; margin-bottom: 0.6rem !important; }

/* Quote callout (professional network) */
.quote-callout {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: 3rem 2.5rem; background: var(--white); border: 1px solid var(--gold-line); border-radius: 6px;
}
.quote-callout p { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-style: italic; color: var(--charcoal); line-height: 1.6; }
.quote-callout cite { display: block; margin-top: 1.25rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* Priority steps (professional network / process) */
.steps-row { display: flex; flex-direction: column; gap: 1.25rem; max-width: 700px; margin: 0 auto; }
.step-item { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--white); border: 1px solid var(--gold-line); border-radius: 4px; padding: 1.5rem 1.75rem; }
.step-num { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold); flex-shrink: 0; width: 2rem; }
.step-item h4 { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; margin-bottom: 0.3rem; }
.step-item p { font-size: 0.85rem; color: var(--charcoal-60); line-height: 1.65; }

/* ─── KILIMANJARO LAUNCH (dark accent moment) ───────────── */
.launch-section { background: var(--black); padding: 6rem 2rem; }
.launch-strip { text-align: center; max-width: 700px; margin: 0 auto; }
.launch-strip h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 400; color: var(--cream); margin-bottom: 1.25rem; }
.launch-strip h2 em { font-style: italic; color: var(--gold); }
.launch-strip p { font-size: 0.95rem; color: rgba(246, 241, 232, 0.65); line-height: 1.85; margin-bottom: 0.9rem; }
.launch-photo { margin: 2.5rem auto; max-width: 620px; }
.launch-photo .photo-frame { height: 300px; border-color: rgba(184,137,45,0.35); }
.launch-photo .photo-frame::after { background: linear-gradient(160deg, rgba(184,137,45,0.28), rgba(0,0,0,0.35)); }
.summit-stat { display: inline-block; margin-top: 1.5rem; font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gold); border-top: 1px solid rgba(184,137,45,0.35); padding-top: 1rem; }
.launch-strip .divider { background: var(--gold); opacity: 0.5; }

/* ─── WAITLIST SECTION ───────────────────────────────────── */
.waitlist { padding: 6rem 2rem; background: var(--white); border-bottom: 1px solid var(--gold-line); }
.waitlist-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.waitlist h2 { font-family: var(--serif); font-size: clamp(1.85rem, 3.5vw, 2.75rem); font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.waitlist h2 em { font-style: italic; color: var(--gold); }
.waitlist .sub { font-size: 0.92rem; color: var(--charcoal-60); margin-bottom: 2.5rem; line-height: 1.8; }
.form-note { font-size: 0.72rem; color: var(--charcoal-40); margin-top: 1.25rem; letter-spacing: 0.04em; }

/* Compact waitlist banner used on sub-pages */
.waitlist-band {
  padding: 4.5rem 2rem;
  text-align: center;
  background: linear-gradient(160deg, var(--gold-pale), var(--cream-soft));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.waitlist-band h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.waitlist-band h2 em { font-style: italic; color: var(--gold); }
.waitlist-band p { font-size: 0.9rem; color: var(--charcoal-60); max-width: 480px; margin: 0 auto 1.75rem; line-height: 1.75; }

/* ─── FUNDRAISER SECTION ─────────────────────────────────── */
.fundraiser { padding: 5.5rem 2rem; text-align: center; max-width: 640px; margin: 0 auto; }
.fundraiser h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 400; color: var(--charcoal); margin-bottom: 1.25rem; }
.fundraiser h2 em { font-style: italic; color: var(--gold); }
.fundraiser p { font-size: 0.92rem; color: var(--charcoal-60); line-height: 1.85; margin-bottom: 1.1rem; }
.btn-outline {
  display: inline-block; margin-top: 1.25rem; border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2.5rem; border-radius: 2px; transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { padding: 3.5rem 2rem; border-top: 1px solid var(--gold-line); text-align: center; background: var(--cream-soft); }
.footer-logo { margin-bottom: 1rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-60); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
footer p { font-size: 0.75rem; color: var(--charcoal-40); letter-spacing: 0.06em; line-height: 1.8; }
footer a.inline { color: var(--gold); border-bottom: 1px solid var(--gold-line); }
footer a.inline:hover { color: var(--gold-lite); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .story-grid, .app-grid, .app-grid.reverse, .eco-grid, .eco-grid.reverse {
    grid-template-columns: 1fr;
  }
  .app-grid .photo-frame, .app-grid.reverse .photo-frame,
  .eco-grid .photo-frame, .eco-grid.reverse .photo-frame,
  .story-grid .photo-frame { order: -1; height: 300px; }
  .stages-row { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .guide-row { grid-template-columns: 1fr; }
  .guide-cell { border-right: none; border-bottom: 1px solid var(--gold-line); }
  .guide-cell:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .hero { padding: 6.5rem 1.25rem 3.5rem; }
  .page-hero { padding: 7.5rem 1.25rem 3rem; }
  .hero-band { padding: 0 1.25rem; }
  .hero-band .photo-frame { height: 220px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .btn-primary { width: 100%; text-align: center; }
  .stages-row { grid-template-columns: 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr; }
}
