:root {
  --forest: #1a3a2a;
  --moss: #2d5a3d;
  --sage: #7aab8a;
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --gold: #c8982a;
  --gold-light: #e8b84b;
  --charcoal: #1e2420;
  --mid-gray: #6b7c73;
  --light-gray: #e8ede9;
  --accent-red: #c0392b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(8px);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(122,171,138,0.2);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--gold-light); }

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold-light); }

.btn-guide {
  background: var(--gold);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-guide:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(45,90,61,0.5) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,152,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 48%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(122,171,138,0.15), transparent);
  pointer-events: none;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10% 8% 10% 10%;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--sage);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.72);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,152,42,0.3); }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1.5px solid rgba(245,240,232,0.35);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--cream); background: rgba(245,240,232,0.07); }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 12% 8% 12% 6%;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-card {
  background: rgba(45,90,61,0.45);
  border: 1px solid rgba(122,171,138,0.25);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  max-width: 340px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.hero-card .big-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-card p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.hero-card .stat-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(122,171,138,0.2);
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
}
.stat-item span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── SECTIONS SHARED ── */
section { padding: 7rem 10%; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--sage);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--forest);
}

/* ── PROBLEM ── */
.problem {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.problem h2 { color: var(--forest); margin-bottom: 1rem; }

.problem-list { list-style: none; margin: 2rem 0; }
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(26,58,42,0.08);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}
.problem-list li::before {
  content: '→';
  color: var(--accent-red);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.problem-closing {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--moss);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,152,42,0.06);
  border-radius: 0 2px 2px 0;
}

.problem-visual { display: flex; flex-direction: column; gap: 1rem; }
.stat-block {
  background: var(--forest);
  color: var(--cream);
  padding: 1.75rem 2rem;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.stat-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.stat-block .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-block p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}

/* ── THE SHIFT ── */
.shift { background: var(--forest); text-align: center; }
.shift h2 { color: var(--cream); margin-bottom: 1rem; }
.shift .shift-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.65);
  max-width: 540px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(122,171,138,0.2);
  border-radius: 4px;
  overflow: hidden;
}

.shift-col { padding: 2.5rem 2.5rem; text-align: left; }
.shift-col.short-game { background: rgba(255,255,255,0.04); }
.shift-col.long-game { background: rgba(45,90,61,0.4); }

.shift-col-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(122,171,138,0.2);
}
.short-game .shift-col-head { color: rgba(245,240,232,0.45); }
.long-game .shift-col-head { color: var(--gold-light); }

.shift-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.75);
}
.shift-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.short-game .dot { background: rgba(192,57,43,0.7); }
.long-game .dot { background: var(--sage); }
.long-game .shift-item { color: rgba(245,240,232,0.9); }

.shift-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,152,42,0.1);
  border-left: 1px solid rgba(122,171,138,0.2);
  border-right: 1px solid rgba(122,171,138,0.2);
  padding: 0 1rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── PRINCIPLES ── */
.principles { background: var(--warm-white); }
.principles h2 { margin-bottom: 0.5rem; }
.principles > p {
  font-size: 1rem;
  color: var(--mid-gray);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.principle-card {
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--forest);
  padding: 2rem 1.5rem;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.principle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,42,0.1); }
.principle-card:nth-child(2) { border-top-color: var(--sage); }
.principle-card:nth-child(3) { border-top-color: var(--gold); }
.principle-card:nth-child(4) { border-top-color: var(--moss); }
.principle-card:nth-child(5) { border-top-color: var(--sage); }

.principle-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.principle-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.principle-card p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.6; }

/* ── WHO IT'S FOR ── */
.who { background: var(--forest); }
.who > .section-label { margin-bottom: 1rem; }
.who h2 { color: var(--cream); margin-bottom: 3.5rem; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(122,171,138,0.15);
  border: 1px solid rgba(122,171,138,0.15);
  border-radius: 3px;
  overflow: hidden;
}

.who-col {
  background: var(--forest);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.who-col:nth-child(2) { background: var(--moss); }

.who-col-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.who-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.who-col p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 2rem;
}
.btn-who {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,184,75,0.35);
  padding-bottom: 3px;
  transition: border-color 0.2s, color 0.2s;
  width: fit-content;
}
.btn-who:hover { border-color: var(--gold-light); color: var(--cream); }

/* ── MOMENTS ── */
.moments {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.moments h2 { margin-bottom: 1rem; }

.moments-list { list-style: none; margin-top: 2rem; }
.moments-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(26,58,42,0.08);
  font-size: 0.97rem;
  color: var(--charcoal);
}
.moments-list li .moment-icon {
  width: 36px; height: 36px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.moments-closing {
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--moss);
  font-weight: 700;
}

.moments-right {
  background: var(--forest);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
}
.moments-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.moments-right p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(200,152,42,0.2);
  line-height: 0.6;
  margin-bottom: 0.5rem;
}

/* ── LEAD MAGNET ── */
.lead { background: var(--warm-white); text-align: center; }
.lead h2 { margin-bottom: 0.75rem; }
.lead > p {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 480px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.guide-box {
  max-width: 580px;
  margin: 0 auto;
  background: var(--forest);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.guide-visual {
  background: var(--moss);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.guide-visual .guide-icon { font-size: 3rem; }
.guide-visual h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  text-align: center;
  line-height: 1.4;
}
.guide-visual .free-badge {
  background: var(--gold);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-top: 0.25rem;
}

.guide-copy {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.guide-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.guide-copy p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.btn-download {
  background: var(--gold);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.btn-download:hover { background: var(--gold-light); }

/* ── JOIN ── */
.join { background: var(--moss); text-align: center; padding: 7rem 10%; }
.join h2 { color: var(--cream); margin-bottom: 1rem; }
.join p {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  max-width: 500px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.join-options { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

.join-option {
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  text-align: center;
  width: 200px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.join-option:hover { background: rgba(245,240,232,0.14); transform: translateY(-3px); }
.join-option .jo-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.join-option h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.join-option p { font-size: 0.78rem; color: rgba(245,240,232,0.55); margin: 0; line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 10%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand .logo-foot {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand .logo-foot span { color: var(--gold-light); }
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
  max-width: 240px;
}
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  color: rgba(245,240,232,0.6);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--forest); }

footer h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--cream); }

.footer-bottom {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem, .moments { grid-template-columns: 1fr; gap: 3rem; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .shift-divider { display: none; }
  footer { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .guide-box { grid-template-columns: 1fr; }
  .guide-visual { padding: 2.5rem; }
}

/* ─────────────────────────────────────────────────────────
   WHAT WE BELIEVE / WHAT WE DELIVER
   ───────────────────────────────────────────────────────── */
.beliefs { background: var(--warm-white); padding: 7rem 10%; }
.beliefs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 4px; overflow: hidden; }
.beliefs-col { padding: 4rem; }
.beliefs-col--left { background: var(--cream); }
.beliefs-col--right { background: var(--forest); }
.beliefs-col--left h2 { color: var(--forest); margin-bottom: 2.5rem; }
.beliefs-list { list-style: none; }
.beliefs-list li { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(26,58,42,0.08); font-size: 0.95rem; color: var(--charcoal); line-height: 1.6; }
.beliefs-list li:last-child { border-bottom: none; }
.belief-marker { font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 900; color: var(--gold); min-width: 24px; padding-top: 0.1rem; flex-shrink: 0; }
.deliver-list { list-style: none; margin-top: 0.5rem; }
.deliver-list li { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(122,171,138,0.15); font-size: 0.95rem; color: rgba(245,240,232,0.82); line-height: 1.6; }
.deliver-list li:last-child { border-bottom: none; }
.deliver-icon { color: var(--gold-light); font-size: 0.9rem; font-weight: 700; min-width: 20px; padding-top: 0.1rem; flex-shrink: 0; }


/* ─────────────────────────────────────────────────────────
   FOUR STAKEHOLDER TRACKS
   ───────────────────────────────────────────────────────── */
.tracks { background: var(--forest); padding: 7rem 10%; }
.tracks > .section-label { color: var(--sage); }
.tracks h2 { color: var(--cream); margin-bottom: 1rem; }
.tracks-sub { font-size: 1rem; color: rgba(245,240,232,0.62); max-width: 620px; line-height: 1.75; margin-bottom: 4rem; font-weight: 300; }
.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(122,171,138,0.12); border: 1px solid rgba(122,171,138,0.12); border-radius: 4px; overflow: hidden; }
.track-card { background: var(--forest); padding: 3rem 2.75rem; display: flex; flex-direction: column; }
.track-card--alt { background: rgba(45,90,61,0.45); }
.track-header { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(122,171,138,0.18); }
.track-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; min-width: 32px; padding-top: 0.2rem; flex-shrink: 0; }
.track-header-text { flex: 1; }
.track-audience { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 0.3rem; line-height: 1.2; }
.track-tagline { font-size: 0.82rem; font-style: italic; color: var(--sage); line-height: 1.5; }
.track-desc { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.track-list { list-style: none; margin-bottom: 2rem; }
.track-list li { font-size: 0.85rem; color: rgba(245,240,232,0.72); padding: 0.55rem 0; border-bottom: 1px solid rgba(122,171,138,0.1); line-height: 1.5; display: flex; align-items: flex-start; gap: 0.75rem; }
.track-list li::before { content: '→'; color: var(--sage); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.15rem; }
.track-list li:last-child { border-bottom: none; }

/* ─────────────────────────────────────────────────────────
   PARTNERSHIP TIERS
   ───────────────────────────────────────────────────────── */
.tiers { background: var(--moss); padding: 7rem 10%; }
.tiers-sub { font-size: 1rem; color: rgba(245,240,232,0.65); max-width: 620px; margin: 1rem auto 4rem; text-align: center; line-height: 1.75; font-weight: 300; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.tier-card { background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.14); border-radius: 3px; padding: 2.5rem 2.25rem; display: flex; flex-direction: column; transition: background 0.2s, transform 0.2s; }
.tier-card:hover { background: rgba(245,240,232,0.1); transform: translateY(-4px); }
.tier-card--featured { background: var(--forest); border-color: var(--gold); position: relative; }
.tier-card--featured::before { content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--forest); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 0 0 3px 3px; }
.tier-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.tier-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); background: rgba(232,184,75,0.1); border: 1px solid rgba(232,184,75,0.25); padding: 0.25rem 0.6rem; border-radius: 2px; }
.tier-timeline { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; color: rgba(245,240,232,0.45); text-transform: uppercase; }
.tier-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--cream); margin-bottom: 0.4rem; }
.tier-tagline { font-size: 0.82rem; font-style: italic; color: var(--sage); margin-bottom: 1.25rem; line-height: 1.5; }
.tier-desc { font-size: 0.88rem; color: rgba(245,240,232,0.58); line-height: 1.7; margin-bottom: 1.75rem; flex: 1; }
.tier-list { list-style: none; margin-bottom: 2rem; }
.tier-list li { font-size: 0.83rem; color: rgba(245,240,232,0.7); padding: 0.55rem 0; border-bottom: 1px solid rgba(122,171,138,0.1); line-height: 1.5; display: flex; align-items: flex-start; gap: 0.75rem; }
.tier-list li::before { content: '✓'; color: var(--sage); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.1rem; }
.tier-list li:last-child { border-bottom: none; }
.btn-tier { display: inline-block; background: transparent; color: var(--cream); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.75rem 1.5rem; border: 1.5px solid rgba(245,240,232,0.3); border-radius: 2px; text-decoration: none; text-align: center; transition: border-color 0.2s, background 0.2s; margin-top: auto; }
.btn-tier:hover { border-color: var(--cream); background: rgba(245,240,232,0.07); }
.btn-tier--featured { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn-tier--featured:hover { background: var(--gold-light); border-color: var(--gold-light); }
.tiers-note { max-width: 600px; margin: 3.5rem auto 0; text-align: center; font-size: 0.88rem; color: rgba(245,240,232,0.45); line-height: 1.75; font-style: italic; padding-top: 3rem; border-top: 1px solid rgba(122,171,138,0.2); }

/* ─────────────────────────────────────────────────────────
   MOBILE ADDITIONS
   ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .beliefs-inner { grid-template-columns: 1fr; }
  .beliefs-col { padding: 3rem 2.5rem; }
  .tracks-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
}
