/* =============================================================================
   SHOBHA BAGRECHA — shobha.life
   style.css — v3 Rebuild
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');
/* Body typeface: DM Sans. Headings: Cormorant Garamond. */

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

/* CSS VARIABLES */
:root {
  --white: #FFFFFF;
  --charcoal: #2C2C2A;
  --terracotta: #47BAB3;
  --terracotta-dark: #35A09A;
  --terracotta-light: #E6F6F5;
  --sage: #9485C0;
  --sage-light: #F0EDF8;
  --gold: #B8AED9;
  --gold-light: #F5F3FB;
  --black: #1A1A18;
  --gray-100: #F7F7F7;
  --gray-200: #EEEEEE;
  --gray-400: #999999;
  --gray-600: #666666;

  --text-hero: clamp(40px, 2.8vw + 26px, 64px);
  --text-h1: clamp(36px, 4vw + 24px, 64px);
  --text-h2: clamp(28px, 3vw + 17px, 48px);
  --text-h3: clamp(20px, 1.2vw + 15px, 28px);
  --text-body: 17px;
  --text-small: 14px;
  --text-label: 11px;

  --section-padding: 120px 0;
  --container-max: 1180px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: var(--text-body);
  color: rgba(44, 44, 42, 0.85);
  background: var(--white);
  line-height: 1.7;
  opacity: 0;
  animation: bodyFadeIn 400ms ease forwards;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

h1 { line-height: 1.15; letter-spacing: -0.02em; }
h2 { line-height: 1.2; letter-spacing: -0.02em; }
h3 { line-height: 1.3; }

@keyframes bodyFadeIn {
  to { opacity: 1; }
}

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

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background: var(--terracotta);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.ph {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* CONTAINER */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-padding);
}

/* TYPOGRAPHY HELPERS */
.overline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: var(--text-label);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4A8C8C;
  display: block;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header .overline {
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  line-height: 1.15;
  color: var(--charcoal);
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 16px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--terracotta);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s ease;
}

.btn-ghost:hover {
  text-decoration: underline;
  gap: 10px;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  /* Logo and links grouped together on the left (with a fixed gap between
     them) instead of nav-links floating in the true center of the bar;
     nav-right still gets pushed to the far right below. */
  justify-content: flex-start;
  gap: 48px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

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

.nav.scrolled .nav-links a {
  color: #2C2C2C;
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: #4A8C8C;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-right .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
  background: #B5633A;
  color: var(--white);
}

.nav-right .btn-primary:hover {
  background: #9C5330;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 24px;
  padding: 4px;
  align-items: center;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-hamburger {
  color: var(--charcoal);
}

/* MOBILE OVERLAY */
.nav-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: #2C2C2C;
  transition: color 0.2s ease;
}

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

.nav-overlay a.active {
  color: #4A8C8C;
}

.nav-overlay .btn-primary {
  margin-top: 8px;
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 35% 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social-icon:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2.4;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-connect-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-connect-item .ph {
  font-size: 16px;
  color: var(--sage);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-connect-item span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-newsletter-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: 24px;
  margin-bottom: 10px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form button {
  background: var(--sage);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  background: #6a8e77;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

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

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

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

/* =============================================================================
   HERO — INDEX
   ============================================================================= */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--charcoal);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px max(48px, calc((100vw - var(--container-max)) / 2 + 48px)) 80px 64px;
  order: 2;
}

.hero-gold-line {
  display: none;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-hero);
  color: var(--white);
  line-height: 1.08;
}

.hero-h1 .emphasis {
  display: block;
  color: var(--terracotta);
  font-style: italic;
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 28px 0 40px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-secondary-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.trust-dot {
  color: var(--terracotta);
  font-weight: 700;
}

.hero-right {
  position: relative;
  overflow: hidden;
  order: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =============================================================================
   STATS SECTION
   ============================================================================= */

.stats-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--gray-200);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 64px;
  color: #C9A96E;
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  display: block;
}

.stat-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 4px;
}

/* =============================================================================
   PAIN POINTS SECTION
   ============================================================================= */

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

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

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
}

.pain-card:hover {
  border-color: var(--terracotta-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pain-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 80px;
  color: rgba(44, 44, 42, 0.06);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pain-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 16px;
}

.pain-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* =============================================================================
   ABOUT STRIP
   ============================================================================= */

.about-strip {
  background: var(--white);
  padding: var(--section-padding);
}

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

.about-strip-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-strip-img--round {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  object-position: center 15%;
  display: block;
  margin: 0 auto;
}

.about-strip-content {
  padding-left: 5vw;
}

.about-strip-content .overline {
  margin-bottom: 16px;
}

.about-strip-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  line-height: 1.2;
}

.about-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  color: #B5633A;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
  line-height: 1.4;
}

.about-strip-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 480px;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
}

.credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 6px;
}

/* =============================================================================
   PROGRAMS SECTION (homepage cards)
   ============================================================================= */

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

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

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.program-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.program-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.program-card:hover .program-card-img {
  transform: scale(1.04);
}

.program-card-body {
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.program-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.program-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 12px;
}

.program-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.program-cta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.program-card:hover .program-cta {
  gap: 9px;
}

/* =============================================================================
   SCIENCE SECTION
   ============================================================================= */

.science-section {
  background: var(--charcoal);
  padding: var(--section-padding);
}

.science-section .section-header h2 {
  color: var(--white);
}

.science-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.science-section .overline {
  color: rgba(255, 255, 255, 0.5);
}

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

.science-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.science-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.science-card .ph {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.science-source {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.science-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.science-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  padding-left: 4px;
}

.testimonial-quote::before {
  content: '\201C';
  color: var(--terracotta-light);
  font-size: 56px;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: -8px;
}

.testimonial-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage-light);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
}

.testimonial-role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Carousel controls — hidden on desktop (full grid), shown only where the grid
   becomes a swipeable single-card carousel (see the max-width: 768px block below). */
.testimonial-carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--charcoal);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.carousel-arrow-btn:hover:not(:disabled) {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.carousel-arrow-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: var(--terracotta);
  transform: scale(1.25);
}

/* =============================================================================
   SOCIAL IMPACT
   ============================================================================= */

.impact-section {
  background: var(--sage-light);
  padding: var(--section-padding);
}

.impact-featured-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 56px;
}

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

.impact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.impact-card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.impact-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.impact-card:hover .impact-card-image-wrap img {
  transform: scale(1.04);
}

.impact-card-icon-wrap {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: rgba(196, 113, 79, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-card-icon-wrap .ph {
  font-size: 20px;
  color: var(--white);
}

.impact-card-content {
  padding: 28px;
}

.impact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.impact-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================================================================
   LEAD CAPTURE
   ============================================================================= */

.lead-capture-section {
  background: var(--terracotta);
  padding: var(--section-padding);
}

.lead-capture-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.lead-capture-section .overline {
  color: rgba(255, 255, 255, 0.7);
}

.lead-capture-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--white);
  line-height: 1.2;
  margin-top: 12px;
}

.lead-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.lead-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.lead-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--white);
}

.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--white);
}

.lead-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.lead-form input[type="email"] {
  flex: 1;
  background: var(--white);
  color: var(--charcoal);
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
}

.lead-form input[type="email"]::placeholder {
  color: var(--gray-400);
}

.lead-form button {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.lead-form button:hover {
  background: var(--black);
}

.lead-fine-print {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* =============================================================================
   BOOKING / CTA SECTION
   ============================================================================= */

.booking-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: var(--section-padding);
}

.booking-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.booking-inner .overline {
  margin-bottom: 16px;
}

.booking-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
}

.booking-inner .booking-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--gray-600);
  margin-top: 16px;
  margin-bottom: 48px;
}

.booking-steps {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 56px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.booking-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.booking-step p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.5;
}

/* =============================================================================
   ABOUT PAGE
   ============================================================================= */

.page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--white);
}

.page-hero::before,
.page-hero-centered::before,
.coaching-hero::before,
.contact-hero-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-media {
  position: relative;
  overflow: hidden;
}

.page-hero-media img.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px max(48px, calc((100vw - var(--container-max)) / 2 + 48px)) 80px 64px;
}

/* Full-bleed variant (courses.html) — the photo spans the entire section edge to edge
   instead of sharing it with a text column, and the headline sits near the top of the
   photo instead of vertically centered in its own column. */
.page-hero-full {
  display: block;
}

.page-hero-full .page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-full .page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,16,16,0.85) 0%, rgba(8,16,16,0.6) 38%, rgba(8,16,16,0.3) 62%, rgba(8,16,16,0.05) 85%);
  z-index: 1;
  pointer-events: none;
}

/* Teal-tinted scrim variant for the Social Impact hero, so the photo reads as
   branded rather than a generic dark-overlay stock shot. */
.page-hero-full .page-hero-scrim-teal {
  background: linear-gradient(to bottom, rgba(9,38,36,0.88) 0%, rgba(20,70,66,0.62) 40%, rgba(35,95,89,0.32) 65%, rgba(53,160,154,0.08) 88%);
}

.page-hero-full .page-hero-content {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 140px max(48px, calc((100vw - var(--container-max)) / 2 + 48px)) 0;
}

.page-hero-full .page-hero-content h1 {
  max-width: none;
}

.page-hero-full .page-hero-content .body-lg {
  max-width: 640px;
}

.page-hero-full .page-hero-content .overline {
  color: var(--terracotta-light);
}

.page-hero-full .page-hero-content h1 {
  color: var(--white);
}

.page-hero-full .page-hero-content .body-lg {
  color: rgba(255,255,255,0.85);
}

.page-hero-content .overline {
  margin-bottom: 20px;
}

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h1);
  color: var(--charcoal);
  line-height: 1.1;
}

.page-hero-content .body-lg {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 24px;
}

.page-hero-content .body-lg + .body-lg {
  margin-top: 16px;
}

.credentials-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0;
}

.credentials-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
}

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

.bio-content {
  max-width: 780px;
  margin: 0 auto;
}

.bio-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.9;
}

.bio-content p + p {
  margin-top: 24px;
}

/* Big 9:16 portrait, kept at its native ratio (no crop) via the padding-percentage
   technique, next to a short note on lineage. */
.lineage-section {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  min-height: 90vh;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.lineage-media {
  position: relative;
  width: 100%;
  height: 0;
  /* Percentage padding is relative to this element's own (already-42%-of-viewport)
     width, so this is just the plain 16:9 ratio — matches the photo's native 9:16
     exactly, no crop. */
  padding-top: 177.78%;
  overflow: hidden;
}

.lineage-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lineage-content {
  padding: 64px max(48px, calc((100vw - var(--container-max)) / 2 + 48px)) 64px 64px;
}

.lineage-content .overline {
  margin-bottom: 16px;
}

.lineage-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lineage-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 520px;
}

.timeline-section {
  background: var(--white);
  padding: var(--section-padding);
  border-top: 1px solid var(--gray-200);
}

.timeline-inner {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  margin-bottom: 56px;
  text-align: center;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--sage);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -47px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--terracotta);
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  display: block;
  margin-bottom: 4px;
}

.timeline-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

.values-section {
  background: var(--sage-light);
  padding: var(--section-padding);
}

.values-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 56px;
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.value-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.gallery-section {
  background: var(--white);
  padding: var(--section-padding);
  overflow: hidden;
}

.gallery-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 48px;
}

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  cursor: grab;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-item {
  height: 320px;
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* =============================================================================
   PROGRAMS PAGE
   ============================================================================= */

.page-hero-centered {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--white);
  text-align: center;
}

.page-hero-centered h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h1);
  color: var(--charcoal);
  line-height: 1.1;
  margin-top: 16px;
}

.page-hero-centered p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--gray-600);
  margin-top: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.programs-expanded {
  padding: var(--section-padding);
  background: var(--white);
}

.programs-expanded-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-card-expanded {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-card-expanded:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-hover);
}

.program-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
}

.program-card-left .ph {
  font-size: 64px;
  color: var(--terracotta);
}

.program-card-left .program-label {
  margin-top: 16px;
}

.program-card-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.program-meta-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
  margin-top: 16px;
}

.program-meta-label:first-of-type {
  margin-top: 0;
}

.program-card-right p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.program-format-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-top: 16px;
}

.program-discover-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--terracotta);
  transition: gap 0.2s ease;
}

.program-discover-link:hover {
  gap: 10px;
  text-decoration: underline;
}

.faq-section {
  background: var(--gray-100);
  padding: 80px 0;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--charcoal);
  gap: 16px;
  user-select: none;
}

.faq-chevron {
  font-size: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* =============================================================================
   COACHING PAGE
   ============================================================================= */

.coaching-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--white);
}

.coaching-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px max(48px, calc((100vw - var(--container-max)) / 2 + 48px)) 80px 5vw;
}

.coaching-hero-left .overline {
  margin-bottom: 20px;
}

.coaching-hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h1);
  color: var(--charcoal);
  line-height: 1.1;
}

.coaching-hero-left .hero-sub {
  max-width: 480px;
  margin-top: 24px;
  margin-bottom: 40px;
  color: var(--gray-600);
}

.coaching-hero-right {
  overflow: hidden;
}

.coaching-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

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

.process-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.process-step p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.includes-section {
  background: var(--sage-light);
  padding: var(--section-padding);
}

.includes-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 56px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
  max-width: 760px;
  margin: 0 auto;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--charcoal);
}

.investment-section {
  background: var(--white);
  padding: var(--section-padding);
  text-align: center;
}

.investment-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.investment-section p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */

.contact-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--white);
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h1);
  color: var(--charcoal);
}

.contact-hero p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.contact-body {
  background: var(--white);
  padding: var(--section-padding);
  padding-top: 0;
}

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

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--charcoal);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item .ph {
  font-size: 20px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item-text strong {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
  display: block;
}

.contact-info-item-text span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray-600);
}

.contact-inquiry-types {
  margin-top: 40px;
}

.contact-inquiry-types h4,
.contact-social h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.contact-inquiry-types ul {
  list-style: none;
}

.contact-inquiry-types li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2.4;
  padding-left: 16px;
  position: relative;
}

.contact-inquiry-types li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sage);
}

.contact-social {
  margin-top: 40px;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.contact-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--charcoal);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-social-link:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 48px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--charcoal);
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--charcoal);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 135, 0.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--terracotta-dark);
}

.form-success {
  display: none;
  background: var(--sage);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.contact-booking {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.contact-booking h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  margin-bottom: 12px;
}

.contact-booking .booking-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

/* =============================================================================
   SCROLL MARGIN
   ============================================================================= */

section[id] {
  scroll-margin-top: 80px;
}

/* =============================================================================
   RESPONSIVE — TABLET
   ============================================================================= */

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .program-card-expanded {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

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

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
    --text-body: 16px;
  }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right { order: -1; }

  .hero-img {
    height: 60vw;
    clip-path: none;
  }

  .hero-left {
    padding: 48px 20px 60px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 24px 16px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-number { font-size: 48px; }

  /* Grids */
  .cards-grid-3,
  .programs-grid,
  .science-grid,
  .impact-grid,
  .values-grid,
  .includes-grid { grid-template-columns: 1fr; }

  /* Lineage photo — stacked, still full-width and tall (not a thumbnail). No max-height
     cap here (unlike desktop) — at mobile widths the natural 9:16 height is already
     reasonable, and capping it fought with the padding-percentage sizing and cropped
     the photo badly. */
  .lineage-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lineage-content {
    padding: 40px 24px 56px;
  }

  /* Testimonials — swipeable single-card carousel instead of a long vertical stack */
  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 4px 4px 8px;
    margin: 0 -4px 24px;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .testimonial-carousel-controls {
    display: flex;
  }

  /* About strip */
  .about-strip-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-strip-img { height: 320px; }
  .about-strip-img--round { width: 280px; height: 280px; }
  .about-strip-content { padding-left: 0; }

  /* Page heroes */
  .page-hero {
    display: block;
    min-height: auto;
  }

  .page-hero-media {
    position: relative;
    width: 100%;
    height: 0;
    /* These photos are ~2:3 portraits (3308x4962). A 150% padding-top box matches that ratio
       exactly, so object-fit: cover never needs to crop — her face and full body stay in frame
       at any viewport width or browser zoom, instead of being cut off by a short fixed height. */
    padding-top: 150%;
  }

  .page-hero-media img.page-hero-img {
    position: absolute;
    inset: 0;
  }

  .page-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 72px 24px 40px;
    /* Text sits on its own near-opaque panel instead of a solid block below the photo —
       keeps contrast without dimming the photo, and the fade (not a hard line) keeps the
       transition soft. */
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.98) 70%, rgba(255,255,255,0) 100%);
  }

  /* Full-bleed variant (courses.html) — the photo here is a wide room scene, not a
     portrait, so it uses a plain height instead of the 2:3 padding-trick, and the
     headline sits at the top like on desktop instead of a bottom panel. */
  .page-hero-full .page-hero-media {
    height: 60vh;
    min-height: 340px;
    padding-top: 0;
  }

  .page-hero-full .page-hero-media img.page-hero-img {
    object-position: center 40%;
  }

  .page-hero-full .page-hero-content {
    top: 0;
    bottom: auto;
    padding: 96px 24px 40px;
    background: none;
  }

  /* Coaching hero — same taller-photo + overlaid-panel treatment as the other page heroes */
  .coaching-hero {
    display: block;
    min-height: auto;
  }

  .coaching-hero-right {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 150%;
  }

  .coaching-hero-right img {
    position: absolute;
    inset: 0;
  }

  .coaching-hero-left {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 72px 24px 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.98) 70%, rgba(255,255,255,0) 100%);
  }

  /* Booking steps */
  .booking-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* Lead form */
  .lead-form { flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }

  /* Programs expanded */
  .program-card-expanded {
    padding: 32px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =============================================================================
   HOME HERO — full-bleed background photo (Shobha kept to the left), text
   sitting directly on the photo on the right — no panel/box behind it. A
   text-shadow carries the legibility instead of any background fill.
   ============================================================================= */

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--white);
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-bg picture { display: contents; }

.home-hero-bg img.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  /* Faint top vignette only — keeps the fixed nav legible over the photo, same treatment used on the other page heroes */
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 18%);
  z-index: 1;
  pointer-events: none;
}

.home-hero-left {
  position: relative;
  z-index: 2;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px max(48px, calc((100vw - var(--container-max)) / 2 + 48px)) 100px 8%;
  text-align: left;
  margin-left: auto;
}

.home-hero-left .overline {
  margin-bottom: 20px;
  color: var(--terracotta);
  letter-spacing: 4px;
}

.home-hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  /* Keeps scaling at wide/zoomed-out viewports instead of hitting its ceiling around
     1400px — the old clamp(40px, 1.7vw + 40px, 64px) was already maxed out there. */
  font-size: clamp(40px, 2.2vw + 32px, 80px);
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
  /* Legibility over the photo without a background panel behind it. */
  text-shadow: 0 2px 20px rgba(255,255,255,0.7), 0 1px 4px rgba(255,255,255,0.6);
}

.home-hero-left h1 .emphasis {
  color: var(--terracotta);
}

.hero-credential {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--terracotta-dark);
  letter-spacing: 2px;
  margin: 16px 0 28px;
  text-shadow: 0 1px 12px rgba(255,255,255,0.8);
}

.hero-title-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--terracotta);
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.home-hero-left .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(17px, 1vw, 18px);
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 36px;
  text-shadow: 0 1px 12px rgba(255,255,255,0.8);
}

.home-hero-left .hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.home-hero-left .btn-secondary-light {
  color: var(--charcoal);
  border-color: rgba(44,44,42,0.35);
}

.home-hero-left .btn-secondary-light:hover {
  border-color: var(--charcoal);
  background: rgba(44,44,42,0.06);
}

@media (max-width: 768px) {
  .home-hero-left .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-trust-line {
  margin-top: 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

.youth-age-badge {
  display: inline-block;
  background: #4A8C8C;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

/* =============================================================================
   STAT ICON IMAGE
   ============================================================================= */

.stat-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

/* =============================================================================
   OFFERINGS HUB (homepage)
   ============================================================================= */

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

.offerings-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.offerings-intro .overline {
  margin-bottom: 16px;
}

.offerings-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  line-height: 1.15;
}

.offerings-intro p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 16px;
}

.offerings-group {
  margin-bottom: 72px;
}

.offerings-group:last-child {
  margin-bottom: 0;
}

.offerings-group-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.offerings-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta-light);
  color: var(--terracotta);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.offerings-group-intro {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 700px;
  margin-top: 6px;
}

.offerings-group-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 4px;
}

.offering-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.offering-cards.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.offering-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.offering-card:hover {
  border-color: rgba(71,186,179,0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.offering-card:hover::before {
  transform: scaleX(1);
}

.offering-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--terracotta-light);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offering-card-icon .ph {
  font-size: 26px;
  color: var(--terracotta);
}

.offering-card-icon.icon-teal {
  background: var(--terracotta-light);
}
.offering-card-icon.icon-teal .ph {
  color: var(--terracotta);
}

.offering-card-icon.icon-purple {
  background: var(--sage-light);
}
.offering-card-icon.icon-purple .ph {
  color: var(--sage);
}

.offering-card-icon.icon-gold {
  background: var(--gold-light);
}
.offering-card-icon.icon-gold .ph {
  color: var(--gold);
}

.offering-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 4px;
}

.offering-card-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.offering-card-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 12px;
}

.offering-card-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.offering-card:hover .offering-card-link {
  gap: 8px;
}

/* =============================================================================
   SOCIAL IMPACT PREVIEW (homepage)
   ============================================================================= */

/* Full-bleed banner — the crowd photo spans the whole section, text overlaid on a dark
   teal scrim (needed here, unlike the portrait heroes, because this photo is busy/textured
   edge to edge with nowhere plain for text to sit on its own). */
.social-preview {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.social-preview-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.social-preview-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.social-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,32,32,0.88) 0%, rgba(12,32,32,0.62) 45%, rgba(12,32,32,0.2) 100%);
  z-index: 1;
}

.social-preview .container {
  position: relative;
  z-index: 2;
}

.social-preview-content {
  max-width: 560px;
}

.social-preview-content .overline {
  margin-bottom: 16px;
  color: var(--terracotta-light);
}

.social-preview-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.social-preview-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}

.social-preview-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.social-preview-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
}

/* =============================================================================
   CTA STRIP
   ============================================================================= */

.cta-strip {
  background: var(--terracotta);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-strip p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--terracotta);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
}

.btn-cta-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

/* =============================================================================
   CONTENT PAGE HERO (courses, wellbeing, social-impact)
   ============================================================================= */

.content-page-hero {
  padding: 160px 0 80px;
  background: var(--charcoal);
  text-align: center;
}

.content-page-hero .overline {
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.content-page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h1);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.content-page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: rgba(255,255,255,0.72);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* =============================================================================
   SCALE BANNER (courses.html) — a wide, lower-quality event photo, given a teal
   duotone treatment so the softness reads as a stylistic choice rather than a flaw.
   ============================================================================= */

.scale-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.scale-banner-media {
  position: absolute;
  inset: 0;
}

.scale-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(0.4) brightness(1.08) contrast(1.1);
  display: block;
}

.scale-banner-tint {
  position: absolute;
  inset: 0;
  background: var(--terracotta-dark);
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.scale-banner-caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--white);
  background: rgba(10,30,30,0.4);
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
}

/* =============================================================================
   CONTENT SECTIONS (courses.html, wellbeing.html)
   ============================================================================= */

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

.content-section.alt-bg {
  background: var(--gray-100);
}

.content-section-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 940px;
  margin: 0 auto;
}

.content-section-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  position: sticky;
  top: 100px;
}

.content-section-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.content-section-right .overline {
  margin-bottom: 12px;
}

.content-section-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 24px;
}

.content-section-right p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 32px;
}

.content-benefits-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.content-benefits {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.content-benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =============================================================================
   SOCIAL IMPACT PAGE
   ============================================================================= */

.impact-quote-section {
  padding: 80px 0;
  background: var(--sage-light);
  text-align: center;
}

.impact-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--terracotta);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
}

.impact-page-stats {
  padding: 72px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.impact-page-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.impact-page-stat {
  padding: 0 32px;
  border-right: 1px solid var(--gray-200);
}

.impact-page-stat:last-child {
  border-right: none;
}

.impact-page-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 52px;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}

.impact-page-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 10px;
  display: block;
}

.impact-feature-section {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.impact-feature-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.impact-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,44,42,0.4), transparent 60%);
  pointer-events: none;
}

.impact-service-banner {
  background: var(--charcoal);
  padding: 56px 0;
}

.impact-service-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.impact-service-svg {
  flex-shrink: 0;
  width: 340px;
  height: 130px;
}

.impact-service-text .overline {
  color: var(--terracotta);
  margin-bottom: 12px;
}

.impact-service-text p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  max-width: 480px;
}

.impact-areas-section {
  padding: var(--section-padding);
  background: var(--sage-light);
}

.impact-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.impact-area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.impact-area-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.impact-area-card-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-area-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.impact-area-card-img-wrap .ph {
  font-size: 48px;
  color: #4A8C8C;
}

/* CSS-only duotone for a softer/lower-res source photo — reads as a deliberate
   stylistic treatment rather than a quality flaw. */
.tinted-photo {
  filter: grayscale(0.5) sepia(0.35) hue-rotate(140deg) saturate(1.9) brightness(1.05);
}

.impact-area-card:hover .impact-area-card-img-wrap img {
  transform: scale(1.04);
}

.impact-area-card-content {
  padding: 28px;
}

.impact-area-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.impact-area-card-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* =============================================================================
   COACHING ANCHOR SECTIONS (coaching.html additions)
   ============================================================================= */

.coaching-area-section {
  padding: var(--section-padding);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.coaching-area-section.alt-bg {
  background: var(--gray-100);
}

.coaching-area-inner {
  max-width: 860px;
  margin: 0 auto;
}

.coaching-area-inner .overline {
  margin-bottom: 12px;
}

.coaching-area-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h2);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 24px;
}

.coaching-area-inner > p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 40px;
}

.coaching-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.coaching-outcome-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.3;
  position: relative;
}

.coaching-outcome-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* =============================================================================
   CONTACT PAGE — new expanded form
   ============================================================================= */

.contact-hero-new {
  position: relative;
  padding: 160px 0 64px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.contact-hero-new .overline {
  margin-bottom: 16px;
}

.contact-hero-new h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: var(--text-h1);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-hero-new p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.contact-form-wrap-centered {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 56px;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-radio-item {
  position: relative;
}

.form-radio-item input[type="radio"],
.form-radio-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-radio-item label {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.form-radio-item input[type="radio"]:checked + label,
.form-radio-item input[type="checkbox"]:checked + label {
  border-color: var(--terracotta);
  background: var(--terracotta-light);
  color: var(--terracotta);
}

.form-radio-item label:hover {
  border-color: var(--terracotta);
}

.form-fine-print {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.contact-direct-strip {
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.contact-direct-strip p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* =============================================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================================= */

@media (max-width: 1200px) {
  .offering-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .offering-cards.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-page-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-page-stat {
    padding: 24px 20px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .impact-page-stat:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }

  .impact-page-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .social-preview {
    min-height: 480px;
  }

  .social-preview-overlay {
    background: linear-gradient(to top, rgba(12,32,32,0.88) 0%, rgba(12,32,32,0.72) 55%, rgba(12,32,32,0.35) 100%);
  }

  .coaching-outcomes {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-section-grid {
    grid-template-columns: 140px 1fr;
    gap: 40px;
  }
}

/* Home hero switches to the tall mobile portrait photo below 1100px — wider than the
   site's usual 768px breakpoint, because the side-by-side desktop hero (text column next
   to a left-anchored cropped photo) runs out of room for text well before 768px: at
   squarer/shorter aspect ratios (a smaller browser window, or the effective viewport when
   zoomed in) the crop shows more of her, and the text can start overlapping. Handled by
   swapping to a purpose-shot vertical crop instead.

   The headline and CTA sit directly on the photo (no card, no background) in its two empty
   bands — above her head and below her clasped hands — same as the desktop treatment. */
@media (max-width: 1100px) {
  .home-hero {
    display: block;
    min-height: auto;
    height: auto;
  }

  .home-hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    /* Matches the mobile photo's own ratio (1080x1920) exactly, so the whole photo shows
       with zero cropping — the empty band above her head stays fully intact for the
       headline to sit in. */
    height: 0;
    padding-top: 177.78%;
  }

  .home-hero-bg img.home-hero-img {
    position: absolute;
    inset: 0;
  }

  .home-hero-left {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    display: block;
    /* In vw, not vh/px — this box's own height is set by padding-top on
       .home-hero-bg (a percentage of width), so vw is the unit that actually
       tracks it; vh drifts against the photo since it's keyed to the device's
       viewport height instead. Pushed down further than before so it clears
       the nav with real breathing room, while still landing inside the empty
       band above her head (see .home-hero-bg's comment for that math). */
    padding: 32vw 24px 0;
  }

  /* Headline stays in normal flow right under the top padding — lands in the empty
     band above her head. Smaller and tighter-leaded than the desktop size so three
     stacked phrases don't wrap into enough lines to run into her. */
  .home-hero-left h1 {
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.08;
    max-width: 100%;
  }

  .home-hero-left .hero-sub {
    display: none;
  }

  /* Compact, natural-width buttons (not stretched full-bleed) sitting higher, just
     below her clasped hands rather than crowding the very bottom edge. */
  .home-hero-left .hero-cta-row {
    position: absolute;
    left: 24px;
    bottom: 8%;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .offering-cards,
  .offering-cards.cols-4 {
    grid-template-columns: 1fr;
  }

  .content-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .content-section-left {
    position: static;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .content-section-icon {
    width: 64px;
    height: 64px;
  }

  .impact-areas-grid {
    grid-template-columns: 1fr;
  }

  .impact-page-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-feature-img {
    height: 260px;
  }

  .impact-service-banner-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
    text-align: center;
  }

  .impact-service-svg {
    width: 100%;
    max-width: 300px;
    height: 110px;
  }

  .contact-form-wrap-centered {
    padding: 28px 20px;
  }

  .coaching-outcomes {
    grid-template-columns: 1fr;
  }

  .coaching-area-inner {
    max-width: 100%;
  }
}
