/* ==========================================================
   FOUNDING STORY page template
   Loaded only on pages using page-templates/founding-story.php
   ========================================================== */
.founding-story { padding-top: 0; }

.fs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 1.5rem 6rem;
}
.fs-hero-bg { position: absolute; inset: 0; z-index: 0; }
.fs-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.fs-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(43,31,18,0.55) 0%, rgba(43,31,18,0.35) 50%, var(--background) 100%);
}
.fs-hero-content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  text-align: center;
  color: #fff;
}
.fs-hero-content .eyebrow {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.fs-hero-content .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.18); }
.fs-hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.1;
}
.fs-hero-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  max-width: 36rem;
  margin: 0 auto;
}

.fs-narrative { padding: 5rem 1.5rem; }
.fs-narrative .inner-content {
  font-size: 1.1rem;
  line-height: 1.85;
}
.fs-narrative .inner-content p { color: var(--muted-foreground); }
.fs-narrative .inner-content p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  float: left;
  line-height: 0.9;
  margin: 0.35rem 0.6rem 0 0;
}

.fs-approach {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 6rem 1.5rem;
}
.fs-approach .section-head { margin-bottom: 4rem; }
.fs-approach h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.fs-approach .section-head p { color: var(--muted-foreground); max-width: 36rem; margin: 0 auto; }
