/* About Us — editorial mission page with a real desktop layout. */

.about-body {
  background:
    radial-gradient(1100px 520px at 12% -12%, rgba(47, 63, 52, 0.07), transparent 58%),
    linear-gradient(180deg, #f7f6f3 0%, var(--canvas) 38%, #efece6 100%);
}

.about-header.landing-header {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-bottom-color: var(--line);
  backdrop-filter: saturate(1.05) blur(10px);
  -webkit-backdrop-filter: saturate(1.05) blur(10px);
}

.about-main {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 56px) 0 88px;
}

.about-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.about-intro {
  margin: 0;
  animation: about-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-intro h1 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--ink);
  max-width: 11ch;
}

.about-essay {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 38ch;
  animation: about-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.about-essay p {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18.5px);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
}

.about-lede {
  color: var(--ink) !important;
  font-size: clamp(18px, 1.55vw, 21px) !important;
  line-height: 1.45 !important;
  font-weight: 500;
}

.about-turn {
  font-weight: 650;
  color: var(--ink) !important;
  font-size: clamp(18px, 1.6vw, 22px) !important;
  line-height: 1.35 !important;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.about-photo {
  margin: 0;
  animation: about-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  background: #1a1f1b;
}

.about-photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.about-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  margin-bottom: 8px;
}

.about-beliefs,
.about-note {
  margin: 0;
  animation: about-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.about-beliefs h2,
.about-note h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-beliefs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid var(--line);
}

.about-beliefs li {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
}

.about-beliefs li strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
  max-width: 36ch;
}

.about-end-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
  animation: about-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.about-end-cta a {
  color: var(--accent);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.about-end-cta a:hover {
  color: var(--accent-deep);
  border-bottom-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

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

@media (prefers-reduced-motion: reduce) {
  .about-intro,
  .about-essay,
  .about-photo,
  .about-beliefs,
  .about-note,
  .about-end-cta {
    animation: none !important;
  }
}

@media (max-width: 960px) {
  .about-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro h1 {
    max-width: 14ch;
  }

  .about-essay {
    max-width: 48ch;
  }

  .about-photo img {
    aspect-ratio: 16 / 10;
  }

  .about-lower {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-beliefs ol {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-beliefs li {
    padding: 18px 0;
  }
}

@media (max-width: 720px) {
  .about-main {
    width: min(100% - 32px, 720px);
    padding-top: calc(var(--header-h) + 36px);
    padding-bottom: 56px;
  }

  .about-intro h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .about-photo img {
    aspect-ratio: 4 / 3;
  }
}
