/* ============================================================
   About page — page-specific styles
   ============================================================ */

/* --- Hero: type-led copy + single editorial photo --- */

.about-hero { position: relative; padding-top: 152px; padding-bottom: 96px; overflow: hidden; }

.about-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 60% at 80% -10%, rgba(0, 77, 48, 0.06), transparent 60%);
}

.about-hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.about-hero__copy { display: flex; flex-direction: column; gap: 24px; max-width: 540px; }

.about-hero h1 {
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.04em;
  color: var(--text-primary); margin: 0; text-wrap: balance;
}

.about-hero h1 .accent { color: var(--g-700); }

.about-hero__subhead {
  font-size: 18px; line-height: 1.55; letter-spacing: -0.02em;
  color: var(--text-secondary); margin: 0; max-width: 540px;
}

.about-hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-photo-glow);
}

.about-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1100px) {
  .about-hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   Section 2 — Founder story (narrative + 3-company callout)
   ============================================================ */

.founder-section {
  background: var(--surface-cream);
  padding-block: 96px;
  margin-block: 24px;
}

.founder-story {
  max-width: 880px;
  margin-inline: auto;
}

.founder-story .section-head { margin-bottom: 40px; }

.founder-story h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-wrap: balance;
}

.founder-narrative {
  font-size: clamp(17px, 1.9vw, 19px);
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 24px 0;
}

.founder-narrative--quote {
  border-left: 3px solid var(--g-700);
  padding-left: 24px;
  font-style: italic;
  color: var(--text-primary);
}

/* Three-company callout */
.three-cos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0;
}

.three-cos__card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card-dense);
  display: flex; flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--g-700);
}

.three-cos__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.three-cos__meta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-tertiary);
  margin: 0;
}

.three-cos__body {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin: 4px 0 0 0;
}

@media (max-width: 900px) {
  .three-cos { grid-template-columns: 1fr; gap: 12px; }
  .founder-section { padding-block: 64px; }
}

/* ============================================================
   Section 3 — Team
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card-dense);
  display: flex; flex-direction: column;
  gap: 10px;
}

.team-card__portrait {
  width: 80px; height: 80px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 6px;
  box-shadow: var(--shadow-photo-glow);
  background: var(--surface-alt);
}

.team-card__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.team-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.team-card__bio {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 4 — What we believe (4 principles)
   ============================================================ */

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.belief-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card-dense);
  display: flex; flex-direction: column;
  gap: 12px;
  border-top: 3px solid var(--g-700);
}

.belief-card h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  text-wrap: pretty;
}

.belief-card p {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 720px) {
  .beliefs-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 5 — Closing link section (3-up cards)
   ============================================================ */

.closing-links {
  background: var(--surface-cream);
  padding-block: 96px;
}

.closing-links__head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
}

.closing-links h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-wrap: balance;
}

.closing-links__lede {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
  margin: 0;
}

.closing-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.closing-path {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card-dense);
  border-top: 3px solid var(--g-700);
  display: flex; flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-in-out);
}

.closing-path:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-lg);
}

.closing-path__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--g-700);
}

.closing-path h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-wrap: pretty;
}

.closing-path p {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}

.closing-path__cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--g-700);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.closing-path__cta .arrow {
  width: 14px; height: 14px;
  transition: transform var(--duration-base) var(--ease-out);
}

.closing-path:hover .closing-path__cta .arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .closing-links__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .closing-links { padding-block: 64px; }
}
