/* ============================================================
   JALIL LEWIS PORTFOLIO — styles.css
   Sage / Cream / Warm Earth Tone Theme
   ============================================================ */

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

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

:root {
  --cream:        #f5f0e8;
  --warm-white:   #faf8f3;
  --bark:         #2c2218;
  --sage-dark:    #3d5a45;
  --sage-mid:     #5a7a62;
  --sage-light:   #8aaa90;
  --sage-pale:    #c8d9c8;
  --blush:        #c4a882;
  --blush-light:  #d9c4a8;
  --gold:         #b8962e;
  --gold-light:   #d4b05a;
  --text-dark:    #1a1208;
  --text-mid:     #3d3228;
  --text-muted:   #7a6a58;
  --divider:      rgba(90,74,56,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --section-pad:  100px 48px;
  --max-w:        1200px;
  --radius:       12px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid var(--divider);
}
.nav-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--bark); letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--bark); border-radius: 1px; }

.mobile-nav {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--divider);
  padding: 20px 32px;
  z-index: 99;
  flex-direction: column;
}
.mobile-nav a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); padding: 14px 0; border-bottom: 1px solid var(--divider); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  max-width: var(--max-w); margin: 0 auto;
  gap: 80px;
}
.hero-text { display: flex; flex-direction: column; gap: 28px; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-mid); display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--sage-mid); }
.hero-name { font-size: clamp(3rem,6vw,5.5rem); font-weight: 300; color: var(--bark); letter-spacing: -0.01em; line-height: 1.05; }
.hero-name em { font-style: italic; color: var(--sage-dark); }
.hero-tagline { font-size: 1.05rem; color: var(--text-muted); max-width: 440px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary { display: inline-block; padding: 14px 32px; background: var(--sage-dark); color: var(--warm-white); font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background 0.25s, transform 0.2s; }
.btn-primary:hover { background: var(--bark); transform: translateY(-2px); }
.btn-secondary { display: inline-block; padding: 14px 32px; background: transparent; color: var(--bark); font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--blush-light); border-radius: 2px; cursor: pointer; transition: border-color 0.25s, color 0.25s, transform 0.2s; }
.btn-secondary:hover { border-color: var(--sage-mid); color: var(--sage-dark); transform: translateY(-2px); }

/* Hero photo — IMG_3776: face-forward portrait, short hair, glasses */
.hero-image { position: relative; }
.hero-image::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid var(--sage-pale); border-radius: var(--radius); z-index: 0; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 10%; /* keeps face centered, slight crop from bottom */
  border-radius: var(--radius);
  position: relative; z-index: 1;
  filter: saturate(0.9);
}
.hero-badge { position: absolute; bottom: -20px; right: -20px; background: var(--warm-white); border: 1px solid var(--divider); padding: 16px 20px; border-radius: var(--radius); z-index: 2; box-shadow: 0 8px 32px rgba(44,34,24,0.12); }
.hero-badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--sage-dark); line-height: 1; }
.hero-badge-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ── SPECIALTY BAND ───────────────────────────────────── */
.specialty-band { background: var(--bark); padding: 24px 0; overflow: hidden; }
.specialty-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 30s linear infinite; }
.specialty-item { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blush-light); display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.specialty-item::after { content: '◆'; color: var(--sage-light); font-size: 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMONS ─────────────────────────────────── */
.section-wrap { padding: var(--section-pad); max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--sage-mid); }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 300; color: var(--bark); margin-bottom: 24px; line-height: 1.15; }
.section-title em { font-style: italic; color: var(--sage-dark); }
.section-divider { width: 60px; height: 1px; background: var(--blush); margin-bottom: 48px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; line-height: 1.8; margin-bottom: 56px; }

/* ── ABOUT ───────────────────────────────────────────── */
.about-bg { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-body { display: flex; flex-direction: column; gap: 20px; }
.about-body p { color: var(--text-mid); line-height: 1.9; }
.about-body p strong { color: var(--sage-dark); font-weight: 600; }
.about-image-col { position: relative; }
/* IMG_3779: Jalil in Lumia scrubs, standing, arms on hips — crop to show full torso */
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: var(--radius); filter: saturate(0.88); }
.about-tag { display: inline-block; margin-top: 12px; padding: 10px 18px; background: var(--cream); border: 1px solid var(--divider); border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ── SKILLS ─────────────────────────────────────────── */
.skills-section { background: var(--cream); }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 80px; align-items: start; }
.skill-group-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blush); margin-bottom: 24px; }
.skill-bar-row { margin-bottom: 20px; }
.skill-bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 8px; font-weight: 500; }
.skill-bar-track { height: 4px; background: var(--divider); border-radius: 2px; overflow: hidden; }
.skill-bar-fill { height: 100%; background: linear-gradient(90deg, var(--sage-dark), var(--sage-light)); border-radius: 2px; width: 0; transition: width 1.2s cubic-bezier(0.22,1,0.36,1); }
.tools-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-chip { padding: 8px 16px; background: var(--warm-white); border: 1px solid var(--divider); border-radius: 999px; font-size: 0.78rem; font-weight: 500; color: var(--text-mid); transition: border-color 0.2s, color 0.2s; }
.tool-chip:hover { border-color: var(--sage-mid); color: var(--sage-dark); }

/* ── WHY ME ─────────────────────────────────────────── */
.why-bg { background: var(--bark); }
.why-bg .section-eyebrow { color: var(--sage-light); }
.why-bg .section-eyebrow::before { background: var(--sage-light); }
.why-bg .section-divider { background: var(--blush); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 36px 28px; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,217,200,0.25); transform: translateY(-4px); }
.why-card-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--sage-light); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: rgba(245,240,232,0.65); line-height: 1.8; }

/* ── TIMELINE ────────────────────────────────────────── */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: var(--divider); }
.timeline-item { position: relative; margin-bottom: 52px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.timeline-item.visible { opacity: 1; transform: none; }
.timeline-dot { position: absolute; left: -44px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--warm-white); border: 2px solid var(--sage-mid); }
.timeline-year { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 8px; }
.timeline-role { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--bark); margin-bottom: 4px; }
.timeline-org { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blush); margin-bottom: 12px; }
.timeline-desc { font-size: 0.9rem; color: var(--text-muted); max-width: 560px; line-height: 1.8; }

/* ── MEDRITE ─────────────────────────────────────────── */
.medrite-bg { background: var(--warm-white); }
.medrite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
/* MedRite team photo — masked faces, group in navy uniforms. Show full group. */
.medrite-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 15%; border-radius: var(--radius); filter: saturate(0.88); }
.role-progression { display: flex; flex-direction: column; gap: 28px; }
.role-card { padding: 24px 28px; background: var(--cream); border: 1px solid var(--divider); border-radius: var(--radius); border-left: 3px solid var(--sage-mid); opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.role-card.visible { opacity: 1; transform: none; }
.role-card-year { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 6px; }
.role-card-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--bark); margin-bottom: 8px; }
.role-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.8; }

/* ── LUMIA CASE STUDY ────────────────────────────────── */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.case-stat { padding: 24px 20px; background: var(--warm-white); border: 1px solid var(--divider); border-radius: var(--radius); }
.case-stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: var(--sage-dark); line-height: 1; margin-bottom: 6px; }
.case-stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.case-body p { color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }

.email-mockup { background: var(--warm-white); border: 1px solid var(--divider); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(44,34,24,0.06); }
.email-header { background: var(--cream); padding: 20px 24px; border-bottom: 1px solid var(--divider); }
.email-from { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.email-subject { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--bark); }
.email-body { padding: 28px 24px; }
.email-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.email-body p:last-child { margin-bottom: 0; }
.email-sig { font-weight: 600; color: var(--sage-dark) !important; }

/* ── APPROACH ────────────────────────────────────────── */
.approach-bg { background: var(--cream); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.approach-card { display: flex; gap: 24px; align-items: flex-start; padding: 36px 32px; background: var(--warm-white); border: 1px solid var(--divider); border-radius: var(--radius); transition: border-color 0.25s, transform 0.25s; }
.approach-card:hover { border-color: var(--sage-light); transform: translateY(-3px); }
.approach-step { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--sage-pale); line-height: 1; flex-shrink: 0; width: 56px; text-align: right; }
.approach-content h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--bark); margin-bottom: 12px; }
.approach-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }

/* ── RESULTS COUNTERS ────────────────────────────────── */
.data-bg { background: var(--warm-white); }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.counter-card { text-align: center; padding: 40px 24px; background: var(--cream); border: 1px solid var(--divider); border-radius: var(--radius); transition: transform 0.25s; }
.counter-card:hover { transform: translateY(-3px); }
.counter-num { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 300; color: var(--sage-dark); line-height: 1; margin-bottom: 8px; }
.counter-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* ── GROWTH CHART ────────────────────────────────────── */
.chart-section { background: var(--bark); padding: var(--section-pad); }
.chart-section .section-title { color: var(--cream); }
.chart-section .section-eyebrow { color: var(--sage-light); }
.chart-section .section-eyebrow::before { background: var(--sage-light); }
.chart-section .section-divider { background: var(--blush); }
.chart-section .section-subtitle { color: rgba(245,240,232,0.65); }

.vchart-wrap { position: relative; padding-bottom: 16px; }
.vchart-bars { display: flex; align-items: flex-end; gap: 20px; height: 280px; padding-bottom: 48px; }
.vchart-col { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; flex: 1; gap: 10px; height: 100%; }
.vchart-val { font-size: 0.72rem; font-weight: 600; color: rgba(245,240,232,0.55); letter-spacing: 0.04em; white-space: nowrap; text-align: center; }
.highlight-val { color: var(--gold-light); }
.vchart-bar-track { width: 100%; flex: 1; display: flex; align-items: flex-end; }
.vchart-bar-fill { width: 100%; height: 0; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--sage-light), var(--sage-dark)); transition: height 0.9s cubic-bezier(0.22,1,0.36,1); }
.vchart-bar-fill.highlight { background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.vchart-label { font-size: 0.7rem; font-weight: 500; color: rgba(245,240,232,0.5); text-align: center; letter-spacing: 0.05em; white-space: nowrap; }
.highlight-label { color: var(--gold-light); font-weight: 600; }
.vchart-baseline { height: 1px; background: rgba(255,255,255,0.1); }
.chart-note { font-size: 0.8rem; color: rgba(245,240,232,0.45); margin-top: 20px; font-style: italic; }

/* ── BACKGROUND / MENTOR ─────────────────────────────── */
.mentor-bg { background: var(--cream); }
.mentor-outer { padding: var(--section-pad); max-width: var(--max-w); margin: 0 auto; }

.mentor-person { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.mentor-divider { height: 1px; background: var(--divider); margin: 64px 0; }
.mentor-person-photo { display: flex; flex-direction: column; gap: 10px; }

/* Dr. Drummond: Lumia scrubs, square-ish crop, face at top */
.mentor-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  filter: saturate(0.88);
}
/* Annie: bouquet photo — she's on the right side, crop to show face + upper body */
.mentor-portrait-annie {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 65% top; /* right-biased to center Annie, not the bouquet */
  border-radius: var(--radius);
  filter: saturate(0.88);
}

.photo-caption { font-size: 0.73rem; color: var(--text-muted); font-style: italic; line-height: 1.5; }
.mentor-person-body { display: flex; flex-direction: column; gap: 20px; padding-top: 4px; }
.mentor-person-body p { color: var(--text-mid); line-height: 1.9; }
.mentor-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--bark); margin-bottom: 4px; }
.cred-list { display: flex; flex-direction: column; gap: 10px; margin: 4px 0; }
.cred-item { display: flex; align-items: center; gap: 12px; font-size: 0.87rem; color: var(--text-mid); }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-mid); flex-shrink: 0; }
.quote-block { padding: 24px 28px; border-left: 2px solid var(--sage-mid); background: var(--warm-white); border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--bark); line-height: 1.8; }

.mentor-group-photo-wrap { margin-top: 64px; }
/* Group selfie: Jalil left, Annie center, Dr Drummond right. Show all 3 faces. */
.mentor-group-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  filter: saturate(0.88);
}

/* ── COMMUNITY ───────────────────────────────────────── */
.community-bg { background: var(--warm-white); }
.community-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.comm-card { padding: 40px 32px; background: var(--cream); border: 1px solid var(--divider); border-radius: var(--radius); opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.comm-card.visible { opacity: 1; transform: none; }
.comm-icon { font-size: 2rem; margin-bottom: 20px; }
.comm-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--bark); margin-bottom: 14px; }
.comm-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; }
.community-story { margin-top: 48px; padding: 48px; background: var(--bark); border-radius: var(--radius); opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.community-story.visible { opacity: 1; transform: none; }
.community-story h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--cream); margin-bottom: 20px; line-height: 1.3; }
.community-story p { color: rgba(245,240,232,0.7); line-height: 1.9; margin-bottom: 16px; font-size: 0.93rem; }
.north-star { margin-top: 24px; padding: 24px 28px; border-left: 2px solid var(--sage-light); font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--cream); line-height: 1.8; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-bg { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { padding: 36px 28px; background: var(--warm-white); border: 1px solid var(--divider); border-radius: var(--radius); display: flex; flex-direction: column; gap: 20px; }
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--bark); line-height: 1.75; flex: 1; }
.review-author { display: flex; align-items: center; gap: 14px; }

/* Dr. Drummond review photo — square circle crop, head at top */
.review-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  filter: saturate(0.88);
}
/* Annie review photo — bouquet photo, she's on right side. Shift crop right to center her face */
.review-photo-annie {
  object-position: 70% top;
}

.review-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--sage-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--sage-dark); }
.review-name { font-size: 0.82rem; font-weight: 600; color: var(--bark); margin-bottom: 2px; }
.review-role { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-bg { background: var(--bark); padding: var(--section-pad); }
.contact-wrap { max-width: var(--max-w); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-bg .section-eyebrow { color: var(--sage-light); }
.contact-bg .section-eyebrow::before { background: var(--sage-light); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-light); }
.contact-item-value { font-size: 1rem; color: var(--cream); }
.contact-link { color: var(--cream); text-decoration: none; font-size: 1rem; transition: color 0.2s; }
.contact-link:hover { color: var(--sage-light); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.6); }
.form-field input,
.form-field textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 14px 16px; font-family: var(--font-body); font-size: 0.9rem; color: var(--cream); outline: none; transition: border-color 0.2s; resize: none; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245,240,232,0.3); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--sage-light); }
.form-submit { padding: 16px; background: var(--sage-dark); border: none; border-radius: 4px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-white); cursor: pointer; transition: background 0.25s, transform 0.2s; }
.form-submit:hover { background: var(--sage-mid); transform: translateY(-1px); }
.form-submit.sent { background: var(--sage-mid); }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--bark); border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 48px; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(245,240,232,0.5); }
.footer-note { font-size: 0.72rem; color: rgba(245,240,232,0.3); letter-spacing: 0.08em; }

/* ── APPROACH in mentor bg section ──────────────────── */
.mentor-bg .section-eyebrow { color: var(--sage-mid); }

/* ── ANIMATIONS ───────────────────────────────────────── */

/* Fade up — hero text stagger */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(90,122,98,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(90,122,98,0); }
}

/* Hero staggered entrance */
.hero-eyebrow  { animation: slideInLeft 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero-name     { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.hero-tagline  { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero-ctas     { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
.hero-image    { animation: scaleIn 1s cubic-bezier(0.22,1,0.36,1) 0.2s both; }

/* Badge float */
.hero-badge { animation: fadeIn 0.6s ease 0.9s both, floatBadge 4s ease-in-out 1.5s infinite; }

/* Timeline dots pulse on visible */
.timeline-item.visible .timeline-dot { animation: pulseDot 2s ease-in-out infinite; }

/* Nav link underline slide */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--sage-dark);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Tool chip lift on hover */
.tool-chip {
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tool-chip:hover {
  border-color: var(--sage-mid);
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61,90,69,0.12);
}

/* Counter cards subtle entrance */
.counter-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s;
}
.counter-card.visible { opacity: 1; transform: translateY(0); }
.counter-card:hover { box-shadow: 0 8px 28px rgba(44,34,24,0.1); }

/* Why card stagger */
.why-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.25s, border-color 0.25s;
}
.why-card.visible { opacity: 1; transform: translateY(0); }

/* Approach card stagger */
.approach-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s;
}
.approach-card.visible { opacity: 1; transform: translateY(0); }

/* Review card entrance */
.review-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.review-card.visible { opacity: 1; transform: translateY(0); }

/* Section title shimmer on eyebrow */
.section-eyebrow {
  background: linear-gradient(90deg, var(--sage-mid) 0%, var(--sage-light) 50%, var(--sage-mid) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
/* Eyebrow line needs to not inherit gradient text */
.section-eyebrow::before { background: var(--sage-mid) !important; -webkit-text-fill-color: initial; }

/* Dark-bg eyebrows */
.why-bg .section-eyebrow,
.chart-section .section-eyebrow,
.contact-bg .section-eyebrow {
  background: linear-gradient(90deg, var(--sage-light) 0%, var(--blush-light) 50%, var(--sage-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
.why-bg .section-eyebrow::before,
.chart-section .section-eyebrow::before,
.contact-bg .section-eyebrow::before { background: var(--sage-light) !important; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-dark), var(--sage-light));
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1040px) {
  .mentor-person { grid-template-columns: 240px 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  :root { --section-pad: 80px 32px; }
  nav { padding: 18px 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; gap: 48px; padding: 100px 32px 64px; min-height: unset; }
  .hero-image { max-width: 380px; margin: 0 auto; }
  .hero-image::before { top: -10px; left: -10px; right: 10px; bottom: 10px; }
  .hero-badge { bottom: -14px; right: -8px; padding: 12px 16px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col { max-width: 360px; }
  .about-photo { aspect-ratio: 4/3; }

  .skills-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; gap: 48px; }

  .medrite-grid { grid-template-columns: 1fr; gap: 40px; }
  .medrite-photo { aspect-ratio: 16/9; object-position: center 10%; }

  .mentor-person { grid-template-columns: 1fr; gap: 32px; }
  .mentor-portrait,
  .mentor-portrait-annie { max-width: 280px; aspect-ratio: 4/3; }
  .mentor-portrait-annie { object-position: 65% center; }
  .mentor-group-photo { aspect-ratio: 4/3; }
  .mentor-group-photo-wrap { margin-top: 40px; }

  .community-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 28px 32px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px 20px; }
  nav { padding: 16px 20px; }
  .hero { padding: 86px 20px 52px; }
  .hero-image { max-width: 100%; }
  .hero-badge { padding: 10px 14px; }
  .hero-badge-num { font-size: 1.6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .counter-card { padding: 24px 14px; }
  .vchart-bars { gap: 8px; height: 200px; }
  .vchart-val { font-size: 0.62rem; }
  .vchart-label { font-size: 0.6rem; }
  .approach-card { flex-direction: column; gap: 12px; padding: 28px 20px; }
  .approach-step { width: auto; text-align: left; font-size: 2.4rem; }
  .case-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .case-stat { padding: 16px 12px; }
  .community-story { padding: 28px 20px; }
  footer { padding: 24px 20px; }
}
