/* About page — narrative layout (extends site-theme.css) */

/* ── Hero ── */
.about-hero {
  text-align: center;
}

.about-hero-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.about-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 28px;
}

.about-anchor {
  position: relative;
  padding: 28px 32px;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-anchor::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(15, 122, 61, 0.18);
  font-family: Georgia, serif;
}

.about-anchor p {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 28ch;
  margin: 0 auto;
}

.about-anchor p strong { color: var(--primary); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  list-style: none;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.about-tag svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}

/* ── Sections ── */
/* section-label + section-head: site-theme.css */

/* ── Origin story ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.story-narrative {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.story-narrative p {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

.story-narrative strong { color: var(--text); }

.story-pull {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  color: white;
  box-shadow: var(--shadow);
}

.story-pull-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 16px;
}

.story-pull blockquote {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  border: none;
}

.story-pull-note {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.88;
}

.story-pull-note strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 12px;
  opacity: 1;
}

/* ── Mission & Vision ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}

.mv-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.mv-icon svg { width: 24px; height: 24px; }

.mv-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.mv-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Beliefs ── */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.belief-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s, transform 0.2s;
}

.belief-card:hover {
  border-color: rgba(15, 122, 61, 0.25);
  transform: translateY(-1px);
}

.belief-card:nth-child(4),
.belief-card:nth-child(5) {
  grid-column: span 3;
}

.belief-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.belief-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text);
}

.belief-card strong { color: var(--primary-dark); }

/* ── What we are / are not ── */
.clarity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.clarity-card {
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--border);
}

.clarity-card.is {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.clarity-card.is-not {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.clarity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.clarity-card.is .clarity-badge {
  background: rgba(15, 122, 61, 0.12);
  color: var(--primary-dark);
}

.clarity-card.is-not .clarity-badge {
  background: #F1F5F9;
  color: var(--muted);
}

.clarity-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.clarity-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 0.75rem;
}

.clarity-card p:last-child { margin-bottom: 0; }

/* ── CTA band ── */
/* about-cta → use .pre-footer-cta in site-theme.css */

/* ── Entrance (subtle) ── */
@media (prefers-reduced-motion: no-preference) {
  .about-hero-inner,
  .story-grid,
  .mv-grid,
  .beliefs-grid,
  .clarity-grid,
  .cta-band {
    animation: about-rise 0.6s ease both;
  }

  .story-grid { animation-delay: 0.05s; }
  .mv-grid { animation-delay: 0.08s; }
}

@keyframes about-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .story-grid,
  .mv-grid,
  .clarity-grid {
    grid-template-columns: 1fr;
  }

  .beliefs-grid {
    grid-template-columns: 1fr;
  }

  .belief-card,
  .belief-card:nth-child(4),
  .belief-card:nth-child(5) {
    grid-column: span 1;
  }

  .about-hero { padding: 56px 0 40px; }
  .about-section { padding: calc(var(--space-section-y) - 8px) 0; }
}

@media (max-width: 520px) {
  .about-anchor { padding: 24px 20px; }

  .about-tags {
    flex-direction: column;
    align-items: stretch;
  }

  .about-tag {
    justify-content: center;
  }

  .cta-band { padding: 32px 22px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
