/* =============================================
   RESOURCE ROOM — SHARED STYLES
   ============================================= */

/* Google Fonts imported in HTML head */

:root {
  --slate-deep:   #1A3A4A;   /* primary dark — headings, nav, dark sections */
  --green-leaf:   #C07B3A;   /* amber — CTA buttons, "Room" accent, highlights */
  --teal-deep:    #5A8A5A;   /* sage — links, secondary accents */
  --teal-pale:    #EAF3DE;   /* sage tint — tag backgrounds */
  --linen:        #E8DFD0;   /* linen — door arch fill, warm surface */
  --amber-tint:   #FAEEDA;   /* amber light surface */
  --white-warm:   #F7F3EC;   /* cream — page background */
  --white-pure:   #FFFFFF;
  --text-body:    #1A3A4A;
  --text-muted:   #888780;   /* stone — captions, muted text */
  --border-light: #D3D1C7;   /* pebble — borders, dividers */

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
}

/* =============================================
   RESET & BASE
   ============================================= */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  padding-top: 80px; /* fixed nav offset */
  background-color: var(--white-warm);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

/* Subtle paper grain — adds warmth without introducing colour */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.032;
  pointer-events: none;
  z-index: 9998;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-leaf);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  color: var(--slate-deep);
  line-height: 1.2;
  overflow-wrap: break-word;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  line-height: 1.8;
}

/* =============================================
   SHARED COMPONENTS
   ============================================= */

.btn-primary {
  display: inline-block;
  background: var(--green-leaf);
  color: var(--white-pure);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--teal-deep);
  color: var(--white-pure);
}

.btn-primary-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-leaf);
  margin-bottom: 16px;
  display: block;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--green-leaf);
  margin: 24px auto;
}

.divider-left {
  margin-left: 0;
}

.card {
  background: var(--white-pure);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(26, 58, 74, 0.06);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-medium {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero load animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo     { animation: fadeUp 0.6s ease forwards; }
.hero-label    { animation: fadeUp 0.5s ease 0.2s forwards; opacity: 0; }
.hero-headline { animation: fadeUp 0.6s ease 0.35s forwards; opacity: 0; }
.hero-subline  { animation: fadeUp 0.6s ease 0.5s forwards; opacity: 0; }
.hero-cta      { animation: fadeUp 0.6s ease 0.65s forwards; opacity: 0; }

/* ---- Hero logo (SVG image) ---- */
.hero-logo {
  margin: 0 auto 48px;
  text-align: center;
}

.hero-logo-img {
  display: block;
  margin: 0 auto;
  width: 400px;
  height: auto;
  max-width: 88vw;
}

@media (max-width: 639px) {
  .hero-logo-img {
    width: 300px;
  }
  .hero-logo {
    margin-bottom: 32px;
  }
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--slate-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.nav-logo-wordmark {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.nav-logo-wordmark .resource { color: var(--white-warm); }
.nav-logo-wordmark .room     { color: var(--green-leaf); }

.nav-logo-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-leaf);
}

.nav-right {
  display: none;
  align-items: center;
  gap: 32px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-warm);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white-warm);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 24px 40px; /* top offset clears the sticky nav */
  overflow-y: auto;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay a {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--slate-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-overlay a:hover {
  color: var(--green-leaf);
}

.nav-overlay .nav-overlay-cta {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-right {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--slate-deep);
  color: var(--white-warm);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-logo-wordmark {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}

.footer-logo-wordmark .resource { color: var(--white-warm); }
.footer-logo-wordmark .room     { color: var(--green-leaf); }

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-location {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(247, 244, 239, 0.7);
  margin-top: 12px;
  line-height: 1.8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--green-leaf);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-contact-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
  margin-bottom: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(221, 232, 229, 0.15);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(247, 244, 239, 0.4);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   SECTIONS — BACKGROUNDS
   ============================================= */

.section-warm    { background: var(--white-warm); }
.section-white   { background: var(--white-pure); }
.section-pale    { background: var(--teal-pale); }
.section-dark    { background: var(--slate-deep); }

.section-pad {
  padding: 80px 24px;
}

.section-pad-lg {
  padding: 100px 24px;
}

.section-pad-sm {
  padding: 56px 24px;
}

/* =============================================
   HOME — HERO
   ============================================= */

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 80px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: var(--text-4xl);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: var(--text-lg);
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 36px;
  text-align: center;
}

.hero-door-bg {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 639px) {
  .hero-door-bg {
    width: 200px;
    right: -50px;
    opacity: 0.05;
  }
}

.hero-decoration {
  display: none;
  justify-content: center;
  align-items: center;
}

.hero-decoration svg {
  opacity: 0.35;
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: var(--text-5xl);
  }
}

/* =============================================
   HOME — THE FEELING
   ============================================= */

.feeling-section {
  text-align: center;
}

.feeling-section p {
  font-weight: 300;
  font-size: var(--text-lg);
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}

.feeling-section p:last-of-type {
  margin-bottom: 0;
}

.feeling-accent {
  font-style: italic;
  color: var(--green-leaf) !important;
  font-weight: 400 !important;
  font-size: var(--text-lg) !important;
  margin-top: 28px !important;
}

/* =============================================
   HOME — WHAT LEARNNEST IS (3 columns)
   ============================================= */

.three-col-section h2 {
  text-align: center;
  margin-bottom: 56px;
}

.three-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.col-item {
  padding-top: 24px;
  border-top: 2px solid var(--green-leaf);
}

.col-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--teal-deep);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.col-item p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .three-col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   HOME — THREE STAGES CARDS
   ============================================= */

.stages-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.stages-intro {
  text-align: center;
  margin-bottom: 48px;
}

.stages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.stage-card {
  background: var(--white-pure);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(26, 58, 74, 0.06);
}

.stage-card-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--green-leaf);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.stage-card h4 {
  font-size: 20px;
  color: var(--slate-deep);
  margin-bottom: 14px;
}

.stage-card p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.stages-closing {
  text-align: center;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .stages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   HOME — NEURO THREAD
   ============================================= */

.neuro-section {
  text-align: center;
}

.neuro-section p {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-body);
}

/* =============================================
   HOME — WHO WE ARE
   ============================================= */

.who-section {
  color: var(--white-warm);
}

.who-section h2 {
  color: var(--white-warm);
  text-align: center;
  margin-bottom: 24px;
}

.who-intro {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(247, 244, 239, 0.85);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--green-leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  flex-shrink: 0;
}

/* Real founder photo — circular (home page) */
.photo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--green-leaf);
  flex-shrink: 0;
}

.founder-name {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--white-warm);
  margin-bottom: 4px;
}

.founder-role {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(247, 244, 239, 0.6);
  letter-spacing: 0.04em;
}

.who-link {
  text-align: center;
  margin-top: 8px;
}

.who-link a {
  color: var(--green-leaf);
  font-weight: 400;
  font-size: 15px;
}

@media (min-width: 640px) {
  .founders-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   HOME — CTA SECTION
   ============================================= */

.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-subline {
  font-weight: 300;
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* =============================================
   ABOUT — STORY
   ============================================= */

.story-section p {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 24px;
}

.story-section p:last-child {
  margin-bottom: 0;
}

.story-section h3 {
  margin-bottom: 32px;
  font-size: 28px;
}

/* =============================================
   ABOUT — BELIEFS
   ============================================= */

.beliefs-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 48px;
}

.belief-item {
  border-left: 4px solid var(--green-leaf);
  padding-left: 28px;
  margin-bottom: 40px;
}

.belief-item:last-child {
  margin-bottom: 0;
}

.belief-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.belief-item p {
  font-weight: 300;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
}

/* =============================================
   ABOUT — MEET US
   ============================================= */

.meet-section h2 {
  text-align: center;
  margin-bottom: 64px;
}

.founder-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 72px;
  align-items: start;
}

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

.founder-photo-wrap {
  display: flex;
  justify-content: center;
}

.photo-placeholder-lg {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: var(--teal-pale);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* Real founder photo — square with rounded corners (about page) */
.founder-photo {
  width: 200px;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-bio h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.founder-bio .founder-role-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-leaf);
  margin-bottom: 24px;
  display: block;
}

.founder-bio p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 18px;
}

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

@media (min-width: 1024px) {
  .founder-profile {
    grid-template-columns: 240px 1fr;
    gap: 56px;
  }

  .founder-profile.reverse {
    grid-template-columns: 1fr 240px;
  }

  .founder-profile.reverse .founder-photo-wrap {
    order: 2;
  }

  .founder-profile.reverse .founder-bio {
    order: 1;
  }
}

/* =============================================
   ABOUT — TOGETHER
   ============================================= */

.together-section {
  text-align: center;
}

.together-section h2 {
  color: var(--white-warm);
  margin-bottom: 32px;
}

.together-section p {
  font-weight: 300;
  font-size: 17px;
  color: rgba(247, 244, 239, 0.85);
  line-height: 1.9;
  margin-bottom: 20px;
}

.together-section p:last-child {
  margin-bottom: 0;
}

/* =============================================
   PROGRAM — OPENING
   ============================================= */

.program-opening p {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
  text-align: center;
}

.program-opening p:last-child {
  margin-bottom: 0;
}

/* =============================================
   PROGRAM — HOW WE WORK
   ============================================= */

.how-section h2 {
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.4;
}

/* =============================================
   PROGRAM — THREE STAGES FULL
   ============================================= */

.stages-full-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.stages-full-intro {
  text-align: center;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-body);
  max-width: 660px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.stage-block {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-light);
}

.stage-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.stage-number {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 80px;
  color: #C8DFE0;
  line-height: 1;
  margin-bottom: 8px;
}

.stage-block-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--green-leaf);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.stage-block h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.stage-block p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}

.stage-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stage-meta-item h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 8px;
}

.stage-meta-item p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .stage-meta {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   PROGRAM — APPROACH 2x2
   ============================================= */

.approach-section h2 {
  text-align: center;
  margin-bottom: 56px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.approach-item {
  padding: 36px 28px;
  border-bottom: 1px solid var(--border-light);
}

.approach-item:last-child {
  border-bottom: none;
}

.approach-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.approach-item p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

/* Approach grid goes 2×2 at tablet — no need to wait for full desktop */
@media (min-width: 640px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-item {
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .approach-item:nth-child(2),
  .approach-item:nth-child(4) {
    border-right: none;
  }

  .approach-item:nth-child(3),
  .approach-item:nth-child(4) {
    border-bottom: none;
  }

}

@media (min-width: 1024px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-item {
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .approach-item:nth-child(2),
  .approach-item:nth-child(4) {
    border-right: none;
  }

  .approach-item:nth-child(3),
  .approach-item:nth-child(4) {
    border-bottom: none;
  }
}

/* =============================================
   PROGRAM — SESSION
   ============================================= */

.session-section h3 {
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
}

.session-section p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}

.session-section p:last-child {
  margin-bottom: 0;
}

/* =============================================
   PROGRAM — WHERE + CTA
   ============================================= */

.where-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.where-block h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
  margin-bottom: 16px;
}

.where-block h3 {
  color: var(--white-warm);
  font-size: 22px;
  margin-bottom: 16px;
}

.where-block p {
  font-weight: 300;
  font-size: 15px;
  color: rgba(247, 244, 239, 0.75);
  line-height: 1.8;
  margin-bottom: 8px;
}

.cta-block h3 {
  color: var(--white-warm);
  font-size: 26px;
  margin-bottom: 16px;
}

.cta-block p {
  font-weight: 300;
  font-size: 15px;
  color: rgba(247, 244, 239, 0.75);
  margin-bottom: 28px;
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .where-cta {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   CONTACT — HERO
   ============================================= */

.contact-hero {
  padding: 120px 24px 80px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-hero .hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
}

.contact-hero .hero-inner {
  display: block;
}

.contact-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: 20px;
}

.contact-hero .hero-subline {
  font-size: var(--text-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   CONTACT — FORM SECTION
   ============================================= */

.contact-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-left p {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--slate-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px; /* 16px minimum prevents iOS auto-zoom on focus */
  color: var(--text-body);
  background: var(--white-pure);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

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

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

@media (min-width: 1024px) {
  .contact-main {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   CONTACT — OTHER WAYS
   ============================================= */

.other-ways {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.contact-method h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 10px;
}

.contact-method a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--slate-deep);
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.contact-method a:hover {
  color: var(--green-leaf);
}

.contact-method p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .other-ways {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   CONTACT — WHAT TO EXPECT
   ============================================= */

.expect-section h2 {
  text-align: center;
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.step-item {
  position: relative;
}

.step-number {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 64px;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.step-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--slate-deep);
  margin-bottom: 10px;
}

.step-item p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.expect-closing {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   CONTACT — QUIET REASSURANCE
   ============================================= */

.reassurance-section {
  text-align: center;
}

.reassurance-quote {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--white-warm);
  line-height: 1.85;
  max-width: 660px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .reassurance-quote {
    font-size: 26px;
  }
}

/* =============================================
   PAGE — INNER HERO (about, program)
   ============================================= */

.page-hero {
  padding: 120px 24px 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container,
.contact-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  line-height: 1.15;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 48px;
  }

  .contact-hero h1 {
    font-size: 48px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE OVERRIDES
   ============================================= */

@media (max-width: 639px) {
  .section-pad {
    padding: 64px 24px;
  }

  .section-pad-lg {
    padding: 72px 24px;
  }

  .page-hero h1,
  .hero h1 {
    font-size: 36px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .hero {
    min-height: auto;
    padding: 100px 24px 64px;
  }

  .page-hero {
    min-height: auto;
    padding: 100px 24px 64px;
  }

  .contact-hero {
    min-height: auto;
    padding: 100px 24px 64px;
  }

  .stage-number {
    font-size: 56px;
  }

  /* Cards — reduce padding on small screens */
  .card,
  .stage-card {
    padding: 24px 20px;
  }

  /* Approach items — tighter on mobile */
  .approach-item {
    padding: 28px 0;
  }

  /* Belief items — narrower left border indent */
  .belief-item {
    padding-left: 20px;
  }

  /* Stage blocks — tighter spacing */
  .stage-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  /* Founder profiles — closer gap when stacked */
  .founder-profile {
    gap: 28px;
  }

  /* Reassurance quote — smaller on narrow screens */
  .reassurance-quote {
    font-size: 20px;
    line-height: 1.75;
  }

  /* Dark section headings */
  .who-section h2,
  .together-section h2 {
    font-size: 28px;
  }

  /* Buttons — enforce 44px min touch target */
  .btn-primary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Full-width submit button — allow text to wrap cleanly */
  .btn-full {
    font-size: 14px;
    padding: 14px 16px;
  }

  /* Nav logo — slightly smaller on mobile */
  .nav-logo-wordmark {
    font-size: 26px;
  }

  body {
    padding-top: 68px;
  }

  /* Feeling section — scale down body text */
  .feeling-section p {
    font-size: 16px;
  }

  /* Who intro text */
  .who-intro {
    font-size: 15px;
  }

  /* Where-CTA spacing */
  .where-cta {
    gap: 40px;
  }

  /* Stages full intro */
  .stages-full-intro {
    font-size: 16px;
    margin-bottom: 48px;
  }

  /* Section heading spacing */
  .three-col-section h2 {
    margin-bottom: 36px;
  }

  /* Footer links — prevent overflow on very long emails */
  .footer-contact a {
    word-break: break-all;
  }

  /* Nav inner — ensure logo and hamburger don't crowd */
  .nav-inner {
    padding: 16px 20px;
  }
}

/* =============================================
   PROGRAM INFOGRAPHICS — HOOK LINE
   ============================================= */

.hook-line {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--slate-deep);
  line-height: 1.7;
}

@media (max-width: 639px) {
  .hook-line {
    font-size: 18px;
  }
}

/* =============================================
   PROGRAM INFOGRAPHICS — STAT ROW
   ============================================= */

.stat-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  padding: 8px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 52px;
  color: var(--slate-deep);
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.stat-divider {
  display: none;
  width: 1px;
  height: 56px;
  background: var(--border-light);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .stat-row {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .stat-item {
    padding: 0 48px;
  }

  .stat-divider {
    display: block;
  }
}

/* =============================================
   PROGRAM INFOGRAPHICS — STAGE CARDS
   ============================================= */

.stage-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1024px) {
  .stage-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.stage-info-card {
  background: var(--white-pure);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(26, 58, 74, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 3px solid var(--green-leaf);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.stage-num-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--green-leaf);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stage-info-card h3 {
  font-size: 22px;
  color: var(--slate-deep);
  margin: 0;
  line-height: 1.2;
}

.stage-tagline {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

/* Skill tag pills */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.skill-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid rgba(42, 107, 124, 0.15);
  line-height: 1.4;
}

.who-for-block {
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  margin-top: 2px;
}

.who-for-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-leaf);
  margin-bottom: 5px;
}

.who-for-block p {
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.stages-note {
  text-align: center;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-top: 40px;
}

/* =============================================
   PROGRAM INFOGRAPHICS — APPROACH COMPACT
   ============================================= */

.approach-compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .approach-compact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
}

.approach-compact-item {
  padding: 28px 32px;
  border-left: 4px solid var(--green-leaf);
  background: var(--white-pure);
  margin: 2px;
}

.approach-compact-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--slate-deep);
  margin-bottom: 8px;
}

.approach-compact-item p {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   PROGRAM INFOGRAPHICS — SESSION FLOW
   ============================================= */

.session-flow {
  max-width: 580px;
  margin: 0 auto;
}

.flow-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-leaf);
  color: var(--white-pure);
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: var(--border-light);
  margin: 6px 0 0;
}

.flow-body {
  padding-bottom: 28px;
  padding-top: 7px;
}

.flow-step:last-child .flow-body {
  padding-bottom: 0;
}

.flow-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--slate-deep);
  margin-bottom: 5px;
}

.flow-body p {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   ABOUT — DARK STAT ROW VARIANT
   ============================================= */

.stat-row-dark .stat-number {
  color: var(--white-warm);
}

.stat-row-dark .stat-label {
  color: rgba(247, 244, 239, 0.55);
}

.stat-row-dark .stat-divider {
  background: rgba(247, 244, 239, 0.15);
}

/* =============================================
   ABOUT — FOUNDER EXTRAS
   ============================================= */

.founder-question {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: var(--teal-deep);
  line-height: 1.65;
  margin-top: 8px !important;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* =============================================
   ABOUT — TOGETHER SECTION TEXT
   ============================================= */

.together-hook {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(247, 244, 239, 0.6);
  margin-bottom: 0;
}

.together-closing {
  text-align: center;
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: rgba(247, 244, 239, 0.85);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 639px) {
  .together-closing {
    font-size: 18px;
  }
  .stat-row-dark .stat-number {
    font-size: 36px;
  }
}

/* =============================================
   CONTENT PHOTOS — INLINE IMAGE BLOCKS
   ============================================= */

/* Below-text photo block */
.content-photo-wrap {
  margin-top: 44px;
}

.content-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-height: 360px;
}

/* Wide photo inside a full-width container section */
.section-photo-banner {
  margin-bottom: 48px;
}

.section-photo-banner img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
  display: block;
  max-height: 420px;
}

/* Small inset photo inside a flow step */
.flow-step-photo {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-height: 220px;
  margin-top: 14px;
}

@media (max-width: 639px) {
  .content-photo {
    max-height: 240px;
    border-radius: 12px;
  }
  .section-photo-banner img {
    max-height: 240px;
    border-radius: 12px;
  }
  .flow-step-photo {
    max-height: 180px;
  }
}

/* =============================================
   HOME — PARENT VOICES
   ============================================= */

.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}

@media (min-width: 640px) {
  .voices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.voice-card {
  background: var(--white-pure);
  padding: 36px;
  border-radius: 12px;
  border-top: 4px solid var(--green-leaf);
  box-shadow: 0 2px 16px rgba(26, 58, 74, 0.07);
}

.voice-heading {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 16px;
}

.voice-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65;
  color: var(--slate-deep);
  margin: 0 0 24px;
}

.voice-quote::before { content: '\201C'; }
.voice-quote::after  { content: '\201D'; }

.voice-works-on {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.voice-works-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-leaf);
  margin-bottom: 6px;
}

.voice-works-topics {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.voices-closing {
  text-align: center;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-top: 44px;
}

@media (max-width: 639px) {
  .voice-card {
    padding: 28px 22px;
  }
  .voice-quote {
    font-size: 18px;
  }
}

/* =============================================
   PROGRAM PAGE — TWO PROGRAMS
   ============================================= */

.program-card {
  background: var(--white-pure);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 20px rgba(26, 58, 74, 0.07);
}

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

.program-card-header {
  background: var(--slate-deep);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.program-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-number {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-leaf);
}

.program-title {
  color: var(--white-warm);
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.program-age-badge {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(247, 244, 239, 0.65);
  border: 1px solid rgba(247, 244, 239, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.program-card-body {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .program-card-body {
    grid-template-columns: 1fr 1fr;
  }
}

.program-col {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .program-col {
    border-bottom: none;
  }
  .program-col:first-child {
    border-right: 1px solid var(--border-light);
  }
}

.program-col-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-leaf);
  margin-bottom: 12px;
}

.program-col p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin: 0;
}

.program-card-footer {
  padding: 18px 40px;
  background: var(--teal-pale);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--teal-deep);
  border-top: 1px solid rgba(42, 107, 124, 0.15);
}

.program-areas-block {
  padding: 28px 40px;
  background: var(--teal-pale);
  border-top: 1px solid rgba(42, 107, 124, 0.15);
}

.program-areas-list {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0 0 10px;
}

.program-areas-note {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

@media (max-width: 639px) {
  .program-card-header {
    padding: 22px 24px;
  }
  .program-title {
    font-size: 22px;
  }
  .program-col {
    padding: 24px;
  }
  .program-card-footer,
  .program-areas-block {
    padding: 18px 24px;
  }
}
