html.founder-story-root,
html.founder-story-root body.founder-story-page {
  margin: 0;
  min-height: 100%;
}

body.founder-story-page {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  color: var(--charcoal, #2B2B2B);
  background: var(--lightwood, #F9F7F4);
}

.founder-story-page__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--lightwood, #F9F7F4), #EEF0EA);
  pointer-events: none;
}

.founder-story-page__bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(107, 143, 113, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(168, 191, 169, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(249, 247, 244, 0.9), transparent 70%),
    linear-gradient(180deg, var(--lightwood, #F9F7F4), #ECF1E7);
  filter: blur(30px);
  animation: founderStoryBreathe 14s ease-in-out infinite;
}

@keyframes founderStoryBreathe {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
  50% { transform: scale(1.06) translate(-1.5%, 0.8%); opacity: 0.94; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-story-page__bg::before {
    animation: none;
  }
}

.founder-story-page__main {
  position: relative;
  z-index: 1;
  padding:
    calc(5.5rem + env(safe-area-inset-top, 0px))
    clamp(1.1rem, 4vw, 2rem)
    calc(3rem + env(safe-area-inset-bottom, 0px));
}

.founder-story {
  max-width: 42rem;
  margin: 0 auto;
}

.founder-story__hero {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.founder-story__portrait {
  width: min(11rem, 42vw);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 1.5rem;
  display: block;
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: 0 18px 40px -24px rgba(43, 43, 43, 0.22);
}

.founder-story__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--subtext, #5C5C5C);
}

.founder-story__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.founder-story__lead {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--subtext, #5C5C5C);
  max-width: 34ch;
  margin-inline: auto;
}

.founder-story__body {
  border-top: 1px solid var(--hairline, rgba(43, 43, 43, 0.1));
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
}

.founder-story__body p {
  margin: 0 0 1.35rem;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  color: var(--charcoal, #2B2B2B);
}

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

.founder-story__quote {
  margin: clamp(1.75rem, 4vw, 2.25rem) 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.5rem);
  border-left: 3px solid var(--sage, #6B8F71);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal, #2B2B2B);
}

.founder-story__highlight {
  margin: clamp(2rem, 5vw, 2.75rem) 0 0;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  text-align: center;
  border: 1px solid rgba(107, 143, 113, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.founder-story__highlight-label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage, #6B8F71);
}

.founder-story__highlight p {
  margin: 0;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  line-height: 1.45;
  font-weight: 400;
}

@media (max-width: 520px) {
  .founder-story-page__main {
    padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
  }

  .founder-story__body p {
    line-height: 1.68;
  }
}
