/* KeepersNook — Brand Pages (About + Editorial Policy) */
/* Styled hero, founder card, stats bar, callouts. No cramped grids — stacked or 2-col max. */

/* ═══ BASE ═══ */

.kn-brand-page {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: #1C2926;
  line-height: 1.75;
}

.kn-brand-page h2 {
  font-family: 'Literata', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 48px 0 14px;
  color: #1C2926;
}

.kn-brand-page p {
  font-size: 16.5px;
  color: #3B4845;
  margin-bottom: 16px;
}

.kn-brand-page ul,
.kn-brand-page ol {
  margin: 14px 0 24px 20px;
  color: #3B4845;
}

.kn-brand-page li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.65;
}

.kn-brand-page a {
  color: #2A7B6F;
  text-decoration: none;
  border-bottom: 1px solid rgba(42,123,111,.3);
  transition: border-color .2s;
}

.kn-brand-page a:hover {
  border-bottom-color: #2A7B6F;
}

/* Eyebrow label */
.kn-brand-page .kn-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #D08B3A;
  display: block;
  margin-bottom: 8px;
}

/* ═══ HERO ═══ */

.kn-page-hero {
  background: #1E5C53;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(42,123,111,.4) 0%, transparent 60%),
    linear-gradient(165deg, #142e29 0%, #1E5C53 40%, #1a4a42 100%);
  padding: 64px 24px 56px;
  text-align: center;
  margin-bottom: 40px;
}

.kn-page-hero h1 {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.kn-page-hero .kn-eyebrow {
  color: rgba(228,173,94,.85);
}

.kn-page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══ FOUNDER CARD ═══ */

.kn-founder {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #F2F6F4;
  padding: 32px;
  border-radius: 10px;
  margin: 28px 0 32px;
  border: 1px solid rgba(0,0,0,.04);
}

.kn-founder-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2A7B6F, #3A9B8C, #D08B3A);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Literata', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(42,123,111,.15);
}

.kn-founder-info p {
  margin-bottom: 6px;
}

.kn-founder-info .kn-founder-name {
  font-family: 'Literata', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2926;
  margin-bottom: 2px;
}

.kn-founder-info .kn-founder-role {
  font-size: 13px;
  font-weight: 600;
  color: #2A7B6F;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
}

/* ═══ CALLOUT BOX ═══ */

.kn-callout {
  border-left: 4px solid #D08B3A;
  background: #FDF3E0;
  padding: 22px 26px;
  border-radius: 6px;
  margin: 28px 0;
}

.kn-callout p {
  margin-bottom: 8px;
  font-size: 15.5px;
}

.kn-callout p:last-child {
  margin-bottom: 0;
}

/* Teal callout variant */
.kn-callout--teal {
  border-left-color: #2A7B6F;
  background: #E6F3F0;
}

/* ═══ STATS ROW ═══ */

.kn-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #1E5C53;
  background-image: linear-gradient(135deg, #142e29, #1E5C53);
  padding: 28px 32px;
  border-radius: 10px;
  margin: 36px 0;
}

.kn-stats-row .kn-stat {
  flex: 1;
  min-width: 110px;
  text-align: center;
}

.kn-stats-row .kn-stat strong {
  display: block;
  font-family: 'Literata', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.kn-stats-row .kn-stat span {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══ STEP LIST (stacked, not grid) ═══ */

.kn-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.kn-step-item:last-child {
  border-bottom: none;
}

.kn-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2A7B6F;
  color: #fff;
  font-family: 'Literata', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(42,123,111,.2);
}

.kn-step-content strong {
  display: block;
  font-family: 'Literata', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.kn-step-content p {
  font-size: 15px;
  color: #6B7572;
  margin-bottom: 0;
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 600px) {
  .kn-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .kn-stats-row {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .kn-stats-row .kn-stat {
    min-width: auto;
  }

  .kn-page-hero {
    padding: 48px 20px 40px;
  }
}

@media print {
  .kn-page-hero {
    background: #444 !important;
    padding: 24px;
  }
}
