/* ─────────────────────────────────────────────────────────
   About page — extends styles.css
   ───────────────────────────────────────────────────────── */

/* Page hero */
.ab-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 168px var(--gutter) 64px;
}
.ab-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-mute);
  margin-bottom: 28px;
}
.ab-hero__title {
  margin: 0;
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--c-ink);
}
.ab-hero__title em { font-style: italic; font-weight: 400; }
.ab-hero__lead {
  margin: 36px 0 0;
  max-width: 640px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--c-secondary);
}

/* Intro split: portrait + meta */
.ab-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 860px) { .ab-intro { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .ab-hero { padding-top: 120px; padding-bottom: 32px; }
  .ab-intro { padding-bottom: 56px; }
  .ab-sec__head { margin-bottom: 36px; }
}
.ab-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-divide);
  aspect-ratio: 4/5;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.ab-portrait img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.ab-meta { display: flex; flex-direction: column; gap: 0; }
.ab-meta__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-divide);
  align-items: baseline;
}
.ab-meta__row:first-child { border-top: 1px solid var(--c-divide); }
.ab-meta__k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.ab-meta__v { font-size: 17px; color: var(--c-ink); line-height: 1.5; }
.ab-meta__v span { color: var(--c-mute); }

/* Story narrative */
.ab-story {
  background: var(--c-bg-soft);
  padding: var(--section-y) 0;
}
.ab-story__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.ab-story__inner p {
  margin: 0 0 26px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--c-body);
  text-wrap: pretty;
}
.ab-story__inner p:last-child { margin-bottom: 0; }
.ab-story__inner strong { color: var(--c-ink); font-weight: 600; }
.ab-beat {
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.25 !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--c-ink) !important;
  margin: 40px 0 !important;
}
.ab-pull {
  margin: 48px 0 !important;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--c-ink);
  font-size: clamp(22px, 2.4vw, 30px) !important;
  line-height: 1.35 !important;
  font-style: italic;
  font-weight: 400;
  color: var(--c-ink) !important;
}

/* Section scaffold reused */
.ab-sec { max-width: var(--max); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.ab-sec__head { max-width: 680px; margin-bottom: 56px; }
.ab-sec--soft { background: var(--c-bg-soft); max-width: none; padding-left: 0; padding-right: 0; }
.ab-sec--soft .ab-sec__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { /* matches main site */ }

/* Achievements */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.ach {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--c-divide);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s var(--ease-out), border-color .25s var(--ease);
}
.ach:hover { transform: translateY(-4px); border-color: var(--c-ink); }
.ach__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-ink);
}
.ach__ico svg { width: 22px; height: 22px; }
.ach__body { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.ach__title { font-size: 19px; font-weight: 500; letter-spacing: -0.02em; color: var(--c-ink); }
.ach__meta { font-size: 13px; color: var(--c-mute); }

/* Personal facts grid */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }
.fact {
  border: 1px solid var(--c-divide);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.fact__media { aspect-ratio: 4/3; background: var(--c-bg-soft); position: relative; }
.fact__media image-slot { width: 100%; height: 100%; display: block; }
.fact__media--plain {
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink);
}
.fact__media--plain svg { width: 54px; height: 54px; opacity: .9; }
.fact__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 5px; }
.fact__k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.fact__v { font-size: 19px; font-weight: 500; letter-spacing: -0.02em; color: var(--c-ink); }
.fact__sub { font-size: 13px; color: var(--c-mute); }

/* Talk-about topics */
.topics { display: flex; flex-wrap: wrap; gap: 10px; }
.topic {
  padding: 12px 20px;
  border: 1px solid var(--c-divide);
  border-radius: 999px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--c-secondary);
  background: #fff;
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease-out);
}
.topic:hover { border-color: var(--c-ink); color: var(--c-ink); transform: translateY(-2px); }

/* Learnings / writing list */
.notes { display: flex; flex-direction: column; border-top: 1px solid var(--c-divide); }
.note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 4px;
  border-bottom: 1px solid var(--c-divide);
  transition: padding .3s var(--ease), background-color .25s var(--ease);
}
.note:hover { padding-left: 16px; padding-right: 16px; background: var(--c-bg-soft); }
.note__main { display: flex; flex-direction: column; gap: 6px; }
.note__title { font-size: clamp(20px, 2vw, 26px); font-weight: 500; letter-spacing: -0.03em; color: var(--c-ink); }
.note__sub { font-size: 15px; color: var(--c-mute); line-height: 1.45; }
.note__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-divide);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-ink);
  flex: 0 0 auto;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .3s var(--ease-out);
}
.note:hover .note__arrow { background: var(--c-ink); color: #fff; transform: rotate(-45deg); }

/* Get in touch */
.touch {
  background: var(--c-ink);
  color: var(--c-bg-soft);
  padding: var(--section-y) var(--gutter);
}
.touch__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 860px) { .touch__inner { grid-template-columns: 1fr; gap: 36px; } }
.touch__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}
.touch__title em { font-style: normal; color: var(--c-mute); }
.touch__clock {
  margin: 24px 0 0;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--c-divide);
}
.touch__clock svg { width: 16px; height: 16px; opacity: .8; }
.touch__actions { display: flex; flex-direction: column; gap: 12px; }
.touch__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease-out);
  cursor: pointer;
  background: transparent;
  font-family: var(--font-sans);
  width: 100%;
  text-align: left;
}
.touch__btn:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.touch__btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.touch__btn .touch__hint { color: var(--c-mute); font-size: 13px; }

/* Back-to-work link */
.ab-back {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
