/* About page — 5 sections matching screenshot */

/* ── 1. Hero (light, two-column: text + portrait photo) ── */
.hero-about {
  padding-top: 80px;
  padding-bottom: 64px;
}
.hero-about .hero-inner {
  display: grid;
  /* Equal columns so the image lines up exactly with the body text in
     the "Why we exist" section below — both end up at 50% of the
     container minus the gap. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gap-l);
  align-items: center;
}
.hero-about .hero-text {
  max-width: 560px;
}
.hero-about h1 {
  margin-bottom: 28px;
  font-size: 64px;
  line-height: 1.05;
}
.hero-about h1 .accent-phrase {
  color: var(--accent);
  display: block;
}
.hero-about .hero-lead {
  color: var(--inkSoft);
  max-width: 520px;
}
.hero-about .hero-image {
  /* Explicit width + aspect-ratio on the WRAPPER so it deterministically
     fills its grid column (matching the body-text column below).
     1:1 square (was 4:5 portrait) — 20% shorter height at the same
     width. object-fit: cover crops the photo without distortion. */
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  background: var(--paperAlt);
}
.hero-about .hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── 2. Why we exist (light, 2-col) ── */
/* Spacing rule for white-bg content sections on About: the outer
   <section> contributes no padding so the gap between sections is
   single-sourced from .section-container's padding (reduced to 64px
   below). Previously the outer + inner stacked to 192-384px gaps. */
.exist-section { padding: 0; }
.exist-section > .section-container {
  padding-top: 64px;
  padding-bottom: 64px;
}
.exist-inner {
  display: grid;
  /* Same 1:1 columns as the hero above so the body text lines up
     under the hero image with matching width on the right. */
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-l);
  align-items: start;
}
.exist-left h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.exist-left h2 .accent-phrase { color: var(--accent); }
.exist-body p {
  color: var(--inkSoft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.exist-body p:last-child { margin-bottom: 0; }

/* ── 3. Four principles (dark) ── */
.principles-section { padding: 0; }
.principles-section > .section-container {
  padding-top: 72px;
  padding-bottom: 72px;
}
.principles-section h2 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.principles-section .principles-sub {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 48px;
  max-width: 460px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.principle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.principle-card .pc-num {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-s);
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.principle-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.principle-card p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

/* ── 4. Independent vs captive (light, 2-col compare) ── */
.compare-section { padding: 0; }
.compare-section > .section-container {
  padding-top: 72px;
  padding-bottom: 72px;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-l);
}
.compare-col h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 32px;
  margin-top: 8px;
}
.compare-col .col-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
}
.col-good .col-eyebrow { color: var(--accent); }
.col-bad  .col-eyebrow { color: var(--muted); }

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.compare-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.compare-col li:last-child { border-bottom: 1px solid var(--line); }
.col-good .mark {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.col-bad .mark {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}
.col-bad li .item-text {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(107, 114, 128, 0.5);
}

/* ── 5. Final CTA banner (dark) ── */
.final-cta {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.final-cta .eyebrow { margin-bottom: 18px; }
.final-cta h2 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 auto 22px;
  max-width: 760px;
}
.final-cta h2 .accent-phrase { color: var(--accent); display: block; }
.final-cta p {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  margin: 0 auto 32px;
  max-width: 460px;
  line-height: 1.55;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .hero-about h1 { font-size: 52px; }
  .principles-section h2 { font-size: 36px; }
  .compare-col h3 { font-size: 26px; }
  .final-cta h2 { font-size: 40px; }
}
@media (max-width: 1100px) {
  .principles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hero-about h1 { font-size: 44px; }
}
@media (max-width: 900px) {
  .compare { grid-template-columns: 1fr; }
  .exist-left h2 { font-size: 24px; }
}
/* Hero + Why-we-exist both stay two-column down to ~720px so laptops
   and tablets in landscape keep the side-by-side layout, with the
   image and the body text below it sharing the same right column. */
@media (max-width: 720px) {
  .hero-about .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-about .hero-text  { max-width: 720px; }
  .hero-about .hero-image { max-width: 560px; margin: 0 auto; aspect-ratio: 5 / 4; }
  .hero-about h1 { font-size: 40px; }
  .exist-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .hero-about     { padding-top: 56px; padding-bottom: 48px; }
  .exist-section > .section-container,
  .principles-section > .section-container,
  .compare-section > .section-container {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero-about h1  { font-size: 36px; }
  .hero-about .hero-image { aspect-ratio: 4 / 3; }
  .principles     { grid-template-columns: 1fr; }
  .final-cta h2   { font-size: 28px; }
}
