/* === FONTS === */
@font-face {
  font-family: 'Brygada 1918';
  src: url('../fonts/brygada1918.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Brygada 1918';
  src: url('../fonts/brygada1918.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
  font-style: italic;
}

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

:root {
  --page-bg: #181818;
  --helper: #202020;
  --lightest: #232323;
  --lighter: #2B2B2B;
  --light: #3C3C3C;
  --gray: #9D9D9D;
  --dark: #CECBCB;
  --color: #A64B2A;
  --color-hover: #C86844;
  --text-color: #BFBFBF;
  --headings-color: #EEEDED;
  --white: #FFFFFF;

  --bg: var(--page-bg);
  --surface: var(--lightest);
  --surface-mid: var(--lighter);
  --border: var(--light);
  --accent: var(--color);
  --accent-light: var(--color-hover);
  --heading: var(--headings-color);
  --body: var(--text-color);
  --muted: var(--gray);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 18px;
  line-height: 1.7;
}

/* === LAYOUT CONSTRAINT === */
/* Sections keep full-width backgrounds; content is constrained via dynamic padding */
/* Grid sections (hero, story, etc.) use max-width + auto margin instead */

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(24, 24, 24, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 max(2rem, calc((100% - 1200px) / 2));
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Brygada 1918', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.nav-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent-light); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-light) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* === SHARED COMPONENTS === */
.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gray);
  color: var(--heading);
}

.btn-gold {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-gold:hover { background: var(--accent-light); }

.btn-outline-light {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-light:hover {
  border-color: var(--gray);
  color: var(--heading);
}

/* === HOME: HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  background: var(--lightest);
  color: var(--body);
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(166, 75, 42, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 500px; height: 500px;
  border: 1px solid rgba(166, 75, 42, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body);
  max-width: 480px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

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

.hero-image-quote {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
  background: rgba(24, 24, 24, 0.82);
  backdrop-filter: blur(10px);
  color: var(--heading);
  font-family: 'Brygada 1918', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  border-left: 3px solid var(--accent);
}

.hero-image-quote-mark {
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 0.8;
  vertical-align: -0.15em;
  margin-right: 0.1em;
}

/* === HOME: TENSION === */
.tension {
  background: var(--helper);
  color: var(--body);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.tension-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.tension h2 {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--heading);
}

.tension-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.tension-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.tension-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.65rem;
}

.tension-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
}

.tension-item strong {
  color: var(--heading);
  font-weight: 600;
}

/* === HOME: WHO THIS IS FOR === */
.who {
  padding: 6rem 6rem;
  background: var(--page-bg);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--lighter);
  border: 2px solid var(--lighter);
  border-radius: 6px;
  overflow: hidden;
}

.who-card {
  background: var(--lightest);
  padding: 2rem 1.75rem;
}

.who-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.who-card h3 {
  font-family: 'Brygada 1918', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.6rem;
}

.who-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--body);
}

/* === HOME: JOURNEY === */
.journey {
  background: var(--lightest);
  color: var(--body);
  padding: 6rem 6rem;
}

.journey-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.journey-header .section-label { color: var(--accent); }

.journey-header .section-headline { color: var(--heading); }

.journey-header .section-sub { color: var(--body); margin-bottom: 0; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 1px;
  background: var(--border);
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.journey-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Brygada 1918', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--lightest);
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.journey-step-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.journey-step-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray);
}

.journey-note {
  margin-top: 3.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--body);
  max-width: 600px;
}

/* === HOME: ABOUT === */
.about {
  background: var(--helper);
  padding: 6rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.about-stat {
  background: var(--lightest);
  padding: 1.25rem 1.25rem;
  text-align: center;
}

.about-stat-num {
  font-family: 'Brygada 1918', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-transform: uppercase;
}

.about-content .section-sub { margin-bottom: 1.5rem; }

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 1rem;
}

.about-content p:last-of-type { margin-bottom: 1.75rem; }

.about-content em {
  font-style: italic;
  color: var(--heading);
}

/* === HOME: TESTIMONIALS === */
.testimonials {
  background: var(--page-bg);
  padding: 6rem 6rem;
}

.testimonials-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

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

.testimonial-card {
  background: var(--lightest);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--body);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.75rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: 'Brygada 1918', serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading);
}

.testimonial-role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  color: var(--gray);
}

/* === SHARED: TWO PATHS === */
.paths {
  background: var(--lightest);
  padding: 6rem 6rem;
}

.paths-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.paths-header .section-label { color: var(--accent); }

.paths-header .section-headline {
  color: var(--heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.path-card {
  padding: 3rem 2.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.path-card.coaching {
  background: var(--helper);
  border: 1px solid var(--accent);
}

.path-card.content {
  background: var(--helper);
  border: 1px solid var(--border);
}

.path-badge {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.path-card.coaching .path-badge {
  background: rgba(166, 75, 42, 0.15);
  color: var(--accent-light);
}

.path-card.content .path-badge {
  background: var(--lighter);
  color: var(--gray);
}

.path-title {
  font-family: 'Brygada 1918', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.path-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 2rem;
}

.path-card .btn-outline-light + .btn-outline-light {
  margin-left: 0.75rem;
}

.path-card.content .btn-outline-light {
  display: inline-block;
}

.path-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.path-list li {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.path-list li::before {
  content: '\2192';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* === HOME: SCRIPTURE === */
.scripture {
  background: var(--helper);
  padding: 4rem 6rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.scripture-text {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--heading);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.65;
}

.scripture-ref {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === HOME: CTA === */
.cta-section {
  background: var(--page-bg);
  padding: 6rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-section .section-label { color: var(--accent); }

.cta-section .section-headline {
  color: var(--heading);
  margin-bottom: 1.25rem;
}

.cta-section .section-sub {
  color: var(--body);
  margin-bottom: 0;
}

.cta-form-area {
  background: var(--lightest);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.cta-form-area h3 {
  font-family: 'Brygada 1918', serif;
  font-size: 1.3rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.cta-form-area p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-note {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.5rem;
}

/* === HOME (NEW): TENSION === */
.home-tension {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--helper);
}

.home-tension .section-headline {
  max-width: none;
}

.home-tension-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 1.25rem;
}

.home-tension-body p:last-child {
  margin-bottom: 0;
}

/* === HOME (NEW): TRAINING GROUND === */
.training-ground {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--page-bg);
}

.training-ground-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.training-ground-intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.training-ground-intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 1.25rem;
}

.training-ground-intro em {
  color: var(--heading);
  font-style: italic;
}

.training-ground-image {
  margin-bottom: 3rem;
  border-radius: 6px;
  overflow: hidden;
  height: 450px;
}

.training-ground-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.training-ground-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--lighter);
  border: 2px solid var(--lighter);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.training-pillar {
  background: var(--lightest);
  padding: 2rem 1.75rem;
}

.training-pillar-icon {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.training-pillar h3 {
  font-family: 'Brygada 1918', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.training-pillar p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body);
}

.training-ground-close {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--body);
  max-width: 720px;
  font-style: italic;
}

/* === PULLQUOTE INLINE (no bg, used within sections) === */
.pullquote-inline {
  background: transparent;
  padding: 2rem 0;
  margin-top: 2rem;
}

/* === HOME (NEW): WHO IS TIM === */
.who-is-tim {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: var(--lightest);
  padding: 0 max(0px, calc((100% - 1200px) / 2));
}

.who-is-tim-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.who-is-tim-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 80% center;
  display: block;
}

.who-is-tim-content {
  padding: 4rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-is-tim-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 1.25rem;
}

.who-is-tim-content em {
  color: var(--heading);
  font-style: italic;
}

.who-is-tim-content .btn-secondary {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* === HOME (NEW): CTA === */
.home-cta {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--helper);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-cta .section-headline {
  max-width: none;
}

.home-cta-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--body);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.home-cta .hero-actions {
  margin-bottom: 3rem;
}

.home-cta-coaching {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
}

.home-cta-coaching a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

.home-cta-coaching a:hover {
  color: var(--heading);
}

/* === IMAGE PLACEHOLDERS === */
.image-placeholder {
  background: var(--lighter);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  min-height: 300px;
  width: 100%;
  height: 100%;
}

/* === ABOUT: PAGE HERO === */
.page-hero {
  padding: 64px max(2rem, calc((100% - 1200px) / 2)) 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  min-height: 70vh;
  background: var(--lightest);
}

.page-hero-content {
  color: var(--body);
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-light);
}

.page-hero-content h1 {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.page-hero-content .hero-actions {
  margin-top: 1.75rem;
}

.page-hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body);
  max-width: 460px;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--lightest);
}

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

/* Home page hero image */
.home-hero .page-hero-image img {
  object-fit: cover;
  object-position: center 30%;
}

/* About page: show full family photo, section sized by image */
.page-hero.about-hero {
  min-height: 0;
}

.page-hero.about-hero .page-hero-image img {
  object-fit: cover;
  object-position: center;
}

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

/* Clarifier banner */
.coaching-clarifier-bar {
  background: var(--lighter);
  padding: calc(64px + 0.75rem) max(2rem, calc((100% - 1200px) / 2)) 0.75rem;
  width: 100%;
}

.coaching-clarifier-bar p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.coaching-clarifier-bar a {
  color: var(--accent-light);
  text-decoration: none;
}

.coaching-clarifier-bar a:hover {
  color: var(--heading);
}

/* Hero adjusts when clarifier bar is present */
.coaching-hero {
  grid-template-columns: 1.3fr 1fr;
  padding-top: 0;
}

.coaching-hero .page-hero-image img {
  object-position: 50% center;
}

/* Coaching: Mid-page CTA */
.coaching-mid-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Coaching: Audience */
.coaching-audience {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--lightest);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coaching-audience .section-label {
  align-self: center;
}

.coaching-audience .section-headline {
  max-width: none;
  text-align: center;
}

.coaching-audience-body {
}

.pain-points {
  margin: 1.5rem 0;
}

.pain-points p {
  margin-bottom: 1.25rem;
  color: var(--heading);
  font-weight: 400;
}

.coaching-audience-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 1.25rem;
}

.coaching-audience-body p:last-child {
  margin-bottom: 0;
}

/* Coaching: Process (reuses .mission + .eldership-steps) */
.coaching-process {
  background: var(--helper);
}

.coaching-process {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coaching-process .mission-header {
  max-width: none;
  text-align: center;
}

.coaching-process .eldership-steps {
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  max-width: 720px;
}

.coaching-process .eldership-step {
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2.5rem 3.5rem;
  background: transparent;
}

.coaching-process .eldership-step:last-child {
  border-bottom: none;
}

.coaching-process .eldership-step-num {
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.25;
  top: 1.5rem;
  right: auto;
  left: 0;
}

.coaching-process .eldership-step-icon {
  margin-bottom: 0.5rem;
}

.coaching-process .eldership-step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.coaching-process .eldership-step p {
  font-size: 1rem;
  line-height: 1.85;
}

/* Coaching: Credibility */
.coaching-credibility {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: var(--lightest);
  padding: 0 max(0px, calc((100% - 1200px) / 2));
}

.coaching-credibility-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.coaching-credibility-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  display: block;
}

.coaching-credibility-content {
  padding: 4rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coaching-credibility-content .section-label {
  margin-bottom: 1.5rem;
}

.coaching-credibility-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 1.25rem;
}

.coaching-credibility-content p:last-of-type {
  margin-bottom: 1.5rem;
}

.coaching-creds-compact {
  margin-top: 0.5rem;
}

.coaching-creds-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 1rem;
}

.coaching-creds-grid .cred-card {
  padding: 1rem 0.75rem;
}

.coaching-creds-grid .cred-num {
  font-size: 1.3rem;
}

.coaching-creds-grid .cred-label {
  font-size: 0.72rem;
}

/* Coaching: Testimonials */
.coaching-testimonials {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--helper);
}

.coaching-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--lightest);
  border-radius: 6px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

img.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

div.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lighter);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Brygada 1918', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonial-headline {
  font-family: 'Brygada 1918', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.coaching-testimonials .testimonial-quote::before {
  display: none;
}

.coaching-testimonials .testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body);
  font-style: italic;
}

/* Coaching: Secondary testimonials row */
.testimonials-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.testimonial-card-compact {
  background: var(--page-bg);
  border-radius: 6px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.testimonial-card-compact .testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-card-compact .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card-compact .testimonial-name {
  font-family: 'Brygada 1918', serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading);
}

.testimonial-card-compact .testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.testimonial-card-compact .testimonial-quote {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--body);
  font-style: italic;
}

.testimonial-card-compact .testimonial-quote::before {
  display: none;
}

/* Coaching: FAQ */
.coaching-faq {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--page-bg);
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: 'Brygada 1918', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  text-align: left;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s;
}

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

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body);
  padding-bottom: 1.25rem;
}

.faq-answer a {
  color: var(--accent-light);
  text-decoration: none;
}

.faq-answer a:hover {
  color: var(--heading);
}

/* Coaching: Apply CTA */
.coaching-apply {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--helper);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coaching-apply .section-headline {
  max-width: none;
}

.coaching-apply-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--body);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.coaching-apply .btn-primary {
  margin-bottom: 3rem;
}

.coaching-apply-alt {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
}

.coaching-apply-alt a {
  color: var(--accent-light);
  text-decoration: none;
}

.coaching-apply-alt a:hover {
  color: var(--heading);
}

/* === ABOUT: ORIGIN STORY === */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 max(0px, calc((100% - 1200px) / 2));
}

.story-image {
  order: -1;
}

.story-text {
  padding: 3.5rem 2rem 3.5rem 3.5rem;
  background: var(--bg);
}

.story-text .section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.story-text h2 {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 1.75rem;
}

.story-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 1.25rem;
}

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

.story-text em {
  font-style: italic;
  color: var(--heading);
}

.story-image {
  background: var(--lighter);
  position: relative;
  overflow: hidden;
}

.story-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* === ABOUT: PULLQUOTE === */
.pullquote {
  background: var(--lightest);
  padding: 4rem max(2rem, calc((100% - 1200px) / 2));
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.pullquote-bar {
  flex-shrink: 0;
  width: 4px;
  background: var(--accent);
  align-self: stretch;
  min-height: 80px;
}

.pullquote-text {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--heading);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pullquote-attribution {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* === ABOUT: CREDENTIALS === */
.credentials {
  padding: 5rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--lighter);
}

.credentials .section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.credentials h2 {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
  max-width: 600px;
}

.credentials-intro {
  font-size: 1rem;
  color: var(--body);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.cred-card {
  background: var(--lightest);
  padding: 2rem 1.5rem;
  text-align: center;
}

.cred-num {
  font-family: 'Brygada 1918', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.cred-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brands-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brands-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-pill {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--body);
  background: var(--bg);
  border: 1px solid var(--lighter);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

/* === ABOUT: MISSION / ELDERSHIP === */
.mission {
  padding: 6rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--lightest);
}

.mission-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.mission-header .section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.mission-header h2 {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.mission-header p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--body);
}

.eldership-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--lighter);
  border: 2px solid var(--lighter);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.eldership-step {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
}

.eldership-step-num {
  font-family: 'Brygada 1918', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--lighter);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.eldership-step-icon {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.eldership-step h3 {
  font-family: 'Brygada 1918', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.eldership-step p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 1rem;
}

.eldership-verse {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  border-left: 2px solid var(--lighter);
  padding-left: 0.75rem;
  line-height: 1.5;
}

.mission-body {
  max-width: 720px;
}

.mission-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 1.25rem;
}

.mission-body p strong {
  color: var(--heading);
  font-weight: 500;
}

.mission-body p:last-child { margin-bottom: 0; }

/* === ABOUT: PERSONAL === */
.personal {
  background: var(--lightest);
  padding: 5rem max(2rem, calc((100% - 1200px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.personal-image {
  overflow: hidden;
  border-radius: 2px;
}

.personal-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 75%;
  transform: scale(1.2);
  transform-origin: center 75%;
}

.personal-content .eyebrow { color: var(--accent-light); }

.personal-content h2 {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.personal-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.personal-fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.personal-fact-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.65rem;
}

.personal-fact p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--body);
}

.personal-fact p strong {
  color: var(--heading);
  font-weight: 500;
}

/* === ABOUT: PATHS CTA === */
.about-paths {
  padding: 5rem max(2rem, calc((100% - 1200px) / 2));
  background: var(--lighter);
}

.about-paths-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.about-paths-header .section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.about-paths-header h2 {
  font-family: 'Brygada 1918', serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
}

/* === FOOTER === */
footer {
  background: var(--lightest);
  border-top: 1px solid var(--border);
  color: var(--gray);
  padding: 3rem max(2rem, calc((100% - 1200px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Brygada 1918', serif;
  font-size: 1.1rem;
  color: var(--heading);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  /* Home page */
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 50vh; }
  .hero-content { padding: 3rem 2rem; }
  .tension { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
  .who { padding: 4rem 2rem; }
  .who-grid { grid-template-columns: 1fr; }
  .journey { padding: 4rem 2rem; }
  .journey-steps { grid-template-columns: 1fr; gap: 2rem; }
  .journey-steps::before { display: none; }
  .about { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .testimonials { padding: 4rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .paths { padding: 4rem 2rem; }
  .paths-grid { grid-template-columns: 1fr; }
  .path-card.content .btn-outline-light {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .path-card .btn-outline-light + .btn-outline-light {
    margin-left: auto;
    margin-top: 0.75rem;
  }
  .scripture { padding: 3rem 2rem; }
  .cta-section { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }

  /* New home page */
  .home-tension { padding: 4rem 2rem; }
  .training-ground { padding: 4rem 2rem; }
  .training-ground-pillars { grid-template-columns: 1fr; }
  .who-is-tim { grid-template-columns: 1fr; }
  .who-is-tim-image { min-height: 300px; }
  .who-is-tim-content { padding: 3rem 2rem; }
  .home-cta { padding: 4rem 2rem; }

  /* Coaching page */
  .coaching-clarifier-bar { padding-left: 2rem; padding-right: 2rem; }
  .coaching-audience { padding: 4rem 2rem; }
  .coaching-credibility { grid-template-columns: 1fr; }
  .coaching-credibility-image { min-height: 300px; }
  .coaching-credibility-content { padding: 3rem 2rem; }
  .coaching-creds-grid { grid-template-columns: 1fr 1fr; }
  .coaching-testimonials { padding: 4rem 2rem; }
  .coaching-testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-secondary-grid { grid-template-columns: 1fr; }
  .coaching-faq { padding: 4rem 2rem; }
  .coaching-apply { padding: 4rem 2rem; }

  /* About page */
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-image { height: 45vh; }
  .page-hero-content { padding: 3rem 2rem; }
  .story { grid-template-columns: 1fr; }
  .story-image { order: 0; min-height: 300px; }
  .story-text { padding: 3rem 2rem; }
  .pullquote { padding: 3rem 2rem; }
  .credentials { padding: 4rem 2rem; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .mission { padding: 4rem 2rem; }
  .eldership-steps { grid-template-columns: 1fr; }
  .personal { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .about-paths { padding: 4rem 2rem; }

  /* Mobile hero headline */
  .page-hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  /* Mobile hero family photo: show more family, less sky */
  .home-hero .page-hero-image img {
    object-position: center 80%;
  }

  /* Mobile CTA section: center buttons */
  .home-cta .hero-actions {
    justify-content: center;
  }

  /* Shared */
  footer { padding: 2.5rem 2rem; flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-direction: column; gap: 0.75rem; align-items: center; }
  .footer-links a { white-space: nowrap; }
  nav { padding: 0 1.5rem; }

  .nav-hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    background: #181818;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    padding-top: 64px;
    display: none;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }

  .nav-cta {
    margin-top: 0.5rem;
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
}
