/* ============================================================
   THE GHOST — homepage (theghost.house)
   Layout layer. All color + type tokens from colors_and_type.css.
   White is the ground. Magenta is the weapon, cyan the rare counter.
   No gradients, no transparency, no em-dashes.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font-body); }
img { max-width: 100%; display: block; }
::selection { background: var(--ghost-magenta); color: var(--fg-on-magenta); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 64px; }
.wrap--narrow { max-width: 720px; }
.wrap--mid { max-width: 920px; }

/* ---------- TYPE HELPERS ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: var(--t-mono);
  letter-spacing: var(--tr-allcaps); text-transform: uppercase; color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 10px; margin: 0; white-space: nowrap;
}
.h-serif {
  font-family: var(--font-display); font-weight: 900; text-transform: none;
  line-height: 0.98; letter-spacing: var(--tr-display); margin: 0; text-wrap: balance;
}
.h-xl { font-size: clamp(46px, 7.4vw, 108px); line-height: 1.22; }
.h-l  { font-size: clamp(34px, 4.8vw, 66px); }
.h-m  { font-size: clamp(28px, 3.4vw, 46px); }
.lede { font-family: var(--font-body); font-weight: 500; font-size: clamp(19px, 2.1vw, 26px); line-height: 1.45; margin: 0; text-wrap: pretty; }
.body { font-family: var(--font-body); font-weight: 500; font-size: 18px; line-height: 1.62; margin: 0; text-wrap: pretty; }
.body--s { font-size: 16px; line-height: 1.55; }
.muted { color: var(--fg-muted); }
mark, .mark { background: var(--ghost-magenta); color: var(--fg-on-magenta); padding: 0 0.1em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.mark--cyan { background: var(--ghost-cyan); color: var(--fg-on-cyan); }
.hammer { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: var(--tr-hammer); line-height: 1.0; }
.serif-it { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-sub);
  text-transform: uppercase; font-size: 15px; letter-spacing: 0.04em; padding: 18px 28px;
  cursor: pointer; border: var(--rule-bold) solid var(--ghost-ink);
  background: var(--ghost-ink); color: var(--fg-on-ink); text-decoration: none;
  transition: background var(--dur-fast) var(--ease-snap), color var(--dur-fast) var(--ease-snap),
              border-color var(--dur-fast) var(--ease-snap);
}
.btn:hover { background: var(--ghost-paper); color: var(--ghost-ink); }
.btn .arr { transition: transform var(--dur-fast) var(--ease-snap); }
.btn:hover .arr { transform: translateX(4px); }
.btn--magenta { background: var(--ghost-magenta); border-color: var(--ghost-magenta); color: var(--fg-on-magenta); }
.btn--magenta:hover { background: var(--ghost-ink); border-color: var(--ghost-ink); color: var(--fg-on-ink); }
.btn--cyan { background: var(--ghost-cyan); border-color: var(--ghost-cyan); color: var(--fg-on-cyan); }
.btn--cyan:hover { background: var(--ghost-ink); border-color: var(--ghost-ink); color: var(--fg-on-ink); }
.btn--ghost { background: var(--ghost-paper); color: var(--ghost-ink); }
.btn--ghost:hover { background: var(--ghost-ink); color: var(--fg-on-ink); }
.btn--lg { font-size: 17px; padding: 21px 36px; }

/* ---------- SITE HEADER ---------- */
.siteheader { position: sticky; top: 0; z-index: 40; background: var(--ghost-paper);
  border-bottom: var(--rule-hair) solid var(--ghost-ink); }
.siteheader__in { max-width: 1120px; margin: 0 auto; padding: 14px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: 7px; text-decoration: none; color: var(--ghost-ink); }
.brand .the { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 21px; line-height: 1; }
.brand .ghost { font-family: var(--font-sub); text-transform: uppercase; font-size: 22px; letter-spacing: 0.01em; line-height: 1; }
.siteheader .btn { padding: 11px 18px; font-size: 12px; gap: 0; }

/* ---------- STICKY CTA ---------- */
.stickycta { position: fixed; right: 24px; bottom: 24px; z-index: 50; opacity: 0;
  transform: translateY(14px); pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-snap), transform var(--dur-base) var(--ease-snap); }
.stickycta.is-on { opacity: 1; transform: none; pointer-events: auto; }
.stickycta .btn { box-shadow: var(--shadow-offset-ink); }

/* ---------- SECTION RHYTHM ---------- */
.sec { padding: clamp(64px, 9vw, 124px) 0; position: relative; }
.sec--rule { border-top: var(--rule-hair) solid var(--ghost-ink); }
.sec--brute { border-top: var(--rule-brutal) solid var(--ghost-ink); }
.sec-eyebrow { margin-bottom: 18px; }

/* ============================================================
   S1 — HERO
   ============================================================ */
.hero { padding: clamp(56px, 9vw, 120px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.hero__in { position: relative; }
.hero h1 { max-width: 15ch; margin: 18px 0 0; }
.hero__sub { max-width: 40ch; margin-top: 30px; color: var(--fg); }
.hero__cta { margin-top: 40px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__note { font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--fg-subtle); }
.hero__ghost { position: absolute; right: -8px; bottom: -40px; width: clamp(118px, 17vw, 224px);
  pointer-events: none; user-select: none; }

/* ============================================================
   S2 — RECOGNITION (letter, narrow, centred)
   ============================================================ */
.recog { text-align: center; }
.recog h2 { margin: 0 auto; max-width: 16ch; }
.recog__body { margin-top: 44px; display: flex; flex-direction: column; gap: 30px; }
.recog__body p { margin: 0 auto; max-width: 30ch; font-size: clamp(19px, 2vw, 24px); line-height: 1.5; color: var(--fg); }
.recog__body p.dim { color: var(--fg-muted); }

/* ============================================================
   S3 — WHY NOW (3 columns)
   ============================================================ */
.whynow h2 { max-width: 18ch; }
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px;
  border-top: var(--rule-bold) solid var(--ghost-ink); }
.col3 { padding: 30px 30px 8px; border-right: var(--rule-hair) solid var(--ghost-ink); }
.col3:last-child { border-right: 0; }
.col3__n { font-family: var(--font-mono); font-size: var(--t-mono); letter-spacing: 0.08em; color: var(--ghost-magenta); }
.col3__label { font-family: var(--font-sub); text-transform: uppercase; font-size: 21px;
  letter-spacing: -0.005em; margin: 16px 0 12px; }
.col3__line { font-size: 16px; line-height: 1.55; color: var(--fg); }

/* ============================================================
   BAND — full-bleed inverse photographic moment
   ============================================================ */
.band { background: var(--bg-inverse); color: var(--fg-on-ink); display: grid;
  grid-template-columns: 1fr 1fr; align-items: stretch; }
.band__img { position: relative; min-height: 460px; background: #000; }
.band__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.band__cap { position: absolute; left: 0; bottom: 0; background: var(--ghost-ink); color: var(--fg-on-ink);
  font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; padding: 9px 14px; white-space: nowrap; }
.band__text { padding: clamp(44px, 6vw, 92px) clamp(32px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center; }
.band__text .eyebrow { color: var(--ghost-cyan); margin-bottom: 20px; }
.band__text h2 { color: var(--fg-on-ink); max-width: 16ch; }
.band__text .sub { margin-top: 24px; color: #cfcfcf; max-width: 44ch; }

/* ============================================================
   S4 — THIRD VOICE definition block (white, centred)
   ============================================================ */
.tvdef { text-align: center; }
.tvdef .def { margin: 0 auto; max-width: 26ch; }
.tvdef .def .mark, .tvdef .def mark { white-space: normal; }
.tvdef .pos { margin: 38px auto 0; max-width: 64ch; color: var(--fg-muted); text-align: left; }
.tvdef .pos strong { color: var(--fg); font-weight: 700; }

/* ============================================================
   S5 — OFFER (give/get + steps)
   ============================================================ */
.offer h2 { max-width: 16ch; }
.givekeep { display: grid; grid-template-columns: 1fr 1fr; margin-top: 48px;
  border: var(--rule-bold) solid var(--ghost-ink); }
.gk { padding: 34px 36px 38px; }
.gk--bring { border-right: var(--rule-bold) solid var(--ghost-ink); }
.gk--keep { background: var(--ghost-magenta); color: var(--fg-on-magenta); }
.gk__h { font-family: var(--font-mono); font-size: var(--t-mono); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; margin: 0 0 6px; }
.gk--keep .gk__h { color: var(--fg-on-magenta); }
.gk ul { list-style: none; padding: 0; margin: 14px 0 0; }
.gk li { font-size: 17px; line-height: 1.45; font-weight: 600; padding: 18px 0;
  border-top: var(--rule-hair) solid var(--ghost-ink); }
.gk--keep li { border-top-color: rgba(255,255,255,0.55); }
.gk li:first-child { border-top: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr);
  border: var(--rule-bold) solid var(--ghost-ink); border-top: 0; }
.step { padding: 28px 28px 30px; border-right: var(--rule-hair) solid var(--ghost-ink); }
.step:last-child { border-right: 0; }
.step__n { font-family: var(--font-mono); font-size: var(--t-mono); color: var(--ghost-magenta); letter-spacing: 0.08em; }
.step__t { font-family: var(--font-display); font-weight: 900; font-size: 26px; letter-spacing: -0.01em; margin: 10px 0 8px; }
.step__d { font-size: 15px; line-height: 1.5; color: var(--fg-muted); }
.step__p { font-family: var(--font-mono); font-size: var(--t-mono); letter-spacing: 0.04em; margin-top: 12px; color: var(--fg); }
.offer__cta { margin-top: 44px; }

/* ============================================================
   S6 — SECRET SAUCE (image + beats)
   ============================================================ */
.sauce h2 { max-width: 20ch; }
.sauce__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: start; margin-top: 52px; }
.sauce__fig { position: relative; margin: 0; border: var(--rule-bold) solid var(--ghost-ink);
  box-shadow: var(--shadow-offset-ink); aspect-ratio: 3 / 4; overflow: hidden; background: var(--ghost-ink); }
.sauce__fig img { width: 100%; height: 100%; object-fit: cover; }
.sauce__fig figcaption { position: absolute; left: 0; bottom: 0; background: var(--ghost-ink); color: var(--fg-on-ink);
  font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; padding: 8px 13px; }
.beat { padding: 26px 0; border-top: var(--rule-hair) solid var(--ghost-ink); }
.beat:first-child { border-top: 0; padding-top: 0; }
.beat__lead { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 10px; }
.beat__sub { font-size: 16px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* ============================================================
   S7 — PROOF (testimonial cards)
   ============================================================ */
.proof h2 { max-width: 18ch; }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.tcard { display: flex; flex-direction: column; background: var(--ghost-paper);
  border: var(--rule-bold) solid var(--ghost-ink); padding: 30px 28px 28px; }
.tcard:first-child { box-shadow: var(--shadow-offset-magenta); }
.tcard__q { font-size: 16.5px; line-height: 1.55; color: var(--fg); margin: 0 0 24px; flex: 1; }
.tcard__q q { quotes: "\201C" "\201D"; }
.tcard__who { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center;
  padding-top: 20px; border-top: var(--rule-hair) solid var(--ghost-ink); }
.tcard__av { width: 52px; height: 52px; border-radius: var(--r-pill); overflow: hidden;
  border: var(--rule-bold) solid var(--ghost-ink); background: var(--ghost-paper); }
.tcard__av img { width: 100%; height: 100%; object-fit: cover; }
.av--lea img { object-position: center 16%; }
.av--kris img { object-position: center 20%; }
.av--michelle img { object-position: center 28%; }
.tcard__name { font-weight: 800; font-size: 16px; line-height: 1.1; }
.tcard__role { font-size: 12.5px; line-height: 1.3; color: var(--fg-muted); margin-top: 3px; }
.tcard__rel { font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; color: var(--fg-subtle); margin-top: 8px; }
.proof__close { margin-top: 40px; padding-top: 26px; border-top: var(--rule-hair) solid var(--ghost-ink);
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: baseline; }
.proof__close .t { font-family: var(--font-mono); font-size: var(--t-mono); color: var(--fg-subtle); letter-spacing: var(--tr-allcaps); }
.proof__close p { color: var(--fg-muted); font-size: 17px; line-height: 1.5; max-width: 62ch; }

/* ============================================================
   S8 — WHO RUNS THIS
   ============================================================ */
.who__grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 56px; align-items: center; }
.who__portrait { position: relative; border: var(--rule-bold) solid var(--ghost-ink);
  box-shadow: var(--shadow-offset-ink); background: var(--ghost-magenta); aspect-ratio: 4 / 5;
  overflow: hidden; }
.who__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.who__cap { position: absolute; left: 0; top: 0; background: var(--ghost-ink); color: var(--fg-on-ink);
  font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; padding: 8px 13px; }
.who h2 { max-width: 20ch; }
.who__body { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.who__body p { color: var(--fg); max-width: 52ch; }

/* ============================================================
   S9 — OBJECTIONS (accordion)
   ============================================================ */
.qa { border-top: var(--rule-bold) solid var(--ghost-ink); margin-top: 44px; }
.qa details { border-bottom: var(--rule-hair) solid var(--ghost-ink); }
.qa summary { list-style: none; cursor: pointer; padding: 26px 0; display: flex; gap: 24px;
  align-items: baseline; justify-content: space-between; }
.qa summary::-webkit-details-marker { display: none; }
.qa__q { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.15; letter-spacing: -0.01em; }
.qa__pm { font-family: var(--font-mono); font-size: 22px; color: var(--ghost-magenta); transition: transform var(--dur-base) var(--ease-snap); flex: none; }
.qa details[open] .qa__pm { transform: rotate(45deg); }
.qa__a { font-size: 17px; line-height: 1.55; color: var(--fg-muted); max-width: 72ch; padding: 0 0 28px; margin: 0; }

/* ============================================================
   S10 — INTRIGUE
   ============================================================ */
.intrigue { text-align: left; }
.intrigue__kicker { font-family: var(--font-mono); font-size: var(--t-mono); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; color: var(--ghost-magenta); margin: 0 0 28px; }
.intrigue__q { font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.8vw, 50px); line-height: 1.12; letter-spacing: -0.015em; margin: 0; }
.intrigue__attr { font-family: var(--font-mono); font-size: var(--t-mono); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-muted); margin: 26px 0 0; }
.intrigue__line { margin: 44px 0 0; font-size: clamp(19px, 2vw, 23px); line-height: 1.45; font-weight: 600; max-width: 40ch; }

/* ============================================================
   S11 — PRIZE
   ============================================================ */
.prize { text-align: center; }
.prize h2 { margin: 0 auto; max-width: 18ch; }
.prize__body { margin: 28px auto 0; max-width: 52ch; color: var(--fg-muted); }
.prize__cta { margin-top: 38px; }

/* ============================================================
   S12 — WHAT THIS ISN'T
   ============================================================ */
.notlist h2 { max-width: 14ch; }
.notlist ul { list-style: none; padding: 0; margin: 36px 0 0; border-top: var(--rule-hair) solid var(--ghost-ink); }
.notlist li { display: flex; gap: 16px; align-items: baseline; padding: 16px 0;
  border-bottom: var(--rule-hair) solid var(--ghost-ink); font-size: 17px; }
.notlist li .x { font-family: var(--font-mono); color: var(--ghost-magenta); font-size: 15px; flex: none; }
.notlist li s { text-decoration-thickness: 0.06em; color: var(--fg-muted); }

/* ============================================================
   S13 — FINAL CTA (full-bleed magenta)
   ============================================================ */
.final { background: var(--ghost-magenta); color: var(--fg-on-magenta); text-align: center;
  padding: clamp(80px, 13vw, 168px) 0; }
.final h2 { color: var(--fg-on-magenta); margin: 0 auto; max-width: 18ch; }
.final__cta { margin-top: 40px; }

/* ---------- FOOTER ---------- */
.foot { background: var(--ghost-ink); color: var(--fg-on-ink); padding: 40px 0; }
.foot__in { max-width: 1120px; margin: 0 auto; padding: 0 64px; display: flex;
  align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot .brand { color: var(--fg-on-ink); }
.foot__meta { font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: 0.1em;
  text-transform: uppercase; color: #9a9a9a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .eyebrow { white-space: normal; }
  .siteheader__in { padding: 12px 24px; }
  .foot__in { padding: 0 24px; }
  .hero__ghost { width: 110px; right: 0; bottom: -24px; opacity: 0.96; }
  .cols3 { grid-template-columns: 1fr; }
  .col3 { border-right: 0; border-bottom: var(--rule-hair) solid var(--ghost-ink); padding: 26px 0 22px; }
  .col3:last-child { border-bottom: 0; }
  .band { grid-template-columns: 1fr; }
  .band__img { min-height: 280px; }
  .givekeep { grid-template-columns: 1fr; }
  .gk--bring { border-right: 0; border-bottom: var(--rule-bold) solid var(--ghost-ink); }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: var(--rule-hair) solid var(--ghost-ink); }
  .step:last-child { border-bottom: 0; }
  .sauce__grid { grid-template-columns: 1fr; gap: 32px; }
  .sauce__fig { aspect-ratio: 16 / 10; max-width: 460px; }
  .proof__grid { grid-template-columns: 1fr; gap: 18px; }
  .tcard:first-child { box-shadow: 5px 5px 0 0 var(--ghost-magenta); }
  .who__grid { grid-template-columns: 1fr; gap: 32px; }
  .who__portrait { max-width: 320px; }
  .proof__close { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 560px) {
  .siteheader .btn span.lbl { display: none; }
  .hero__ghost { position: static; width: 120px; margin: 28px 0 0; }
  .hero__in { display: block; }
}

/* ============================================================
   REVISION ADDITIONS
   ============================================================ */

/* ---- full-stop accent dots (contextual) ---- */
.fs-pink  { color: var(--ghost-magenta); }
.fs-cyan  { color: var(--ghost-cyan); }
.fs-white { color: var(--ghost-paper); }
.fs-ink   { color: var(--ghost-ink); }

/* ---- hero: marker-swipe highlight (ink text, no line crossover) ---- */
.h-xl { line-height: 1.1; }
.h-xl mark, .h-xl .mark {
  background: none; padding: 0; color: var(--ghost-magenta);
}
.h-xl mark.mark--cyan {
  background: none; color: var(--ghost-cyan);
}

/* ---- hero note (+60%) + ghost alignment ---- */
.hero__note { font-size: 17px; line-height: 1.4; max-width: 22ch; }
.hero__in { display: block; }
.hero__top { display: grid; grid-template-columns: 1fr clamp(260px, 33vw, 440px); gap: 36px; align-items: center; }
.hero__head h1 { margin-top: 16px; font-size: clamp(38px, 5.4vw, 84px); }
.hero__ghost { position: static; right: auto; bottom: auto; width: 100%; max-width: 440px;
  justify-self: end; margin: 0; pointer-events: none; }
.who__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
@media (max-width: 720px) {
  .hero__top { grid-template-columns: 1fr; gap: 4px; }
  .hero__ghost { max-width: 140px; justify-self: start; margin-top: 12px; }
}

/* ============================================================
   S2 — RECOGNITION (background image + letter card)
   ============================================================ */
.recog--bg { position: relative; background-image: url('images/horses.png');
  background-size: cover; background-position: center; }
.recog__card { background: var(--ghost-paper); border: var(--rule-bold) solid var(--ghost-ink);
  box-shadow: var(--shadow-offset-ink); padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 64px);
  max-width: 640px; margin: 0 auto; text-align: center; }

/* ============================================================
   AI, HANDLED RIGHT  +  NOT JUST LINKEDIN
   ============================================================ */
.aibeats { margin-top: 40px; }

.notjust__line { margin-top: 22px; color: var(--fg-muted); max-width: 42ch; }
.surfaces { display: grid; grid-template-columns: 1fr 1fr; margin-top: 44px;
  border-top: var(--rule-bold) solid var(--ghost-ink); }
.surface { display: flex; gap: 14px; align-items: baseline; padding: 20px 0;
  border-bottom: var(--rule-hair) solid var(--ghost-ink);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2vw, 27px);
  letter-spacing: -0.01em; line-height: 1.1; }
.surface:nth-child(odd) { border-right: var(--rule-hair) solid var(--ghost-ink); padding-right: 32px; }
.surface:nth-child(even) { padding-left: 32px; }
.surface .m { font-family: var(--font-mono); font-size: 13px; color: var(--ghost-magenta); flex: none; }
.notjust__close { margin-top: 36px; font-family: var(--font-display); font-style: italic;
  font-weight: 500; font-size: clamp(21px, 2.4vw, 30px); line-height: 1.2; }

/* ============================================================
   REVIEWS (full recommendations — featured + stack)
   ============================================================ */
.reviews h2 { max-width: 18ch; }
.reviews__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 22px;
  margin-top: 52px; align-items: stretch; }
.reviews__stack { display: flex; flex-direction: column; gap: 22px; }
.rev { position: relative; display: flex; flex-direction: column; background: var(--ghost-paper);
  border: var(--rule-bold) solid var(--ghost-ink); padding: 32px 32px 26px; text-decoration: none;
  color: var(--fg); transition: transform var(--dur-fast) var(--ease-snap), box-shadow var(--dur-fast) var(--ease-snap); }
.rev--feature { box-shadow: var(--shadow-offset-magenta); }
.rev:hover { transform: translate(-2px, -2px); }
.rev--feature:hover { box-shadow: 9px 9px 0 0 var(--ghost-magenta); }
.rev:not(.rev--feature):hover { box-shadow: var(--shadow-offset-ink); }
.rev__top { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center; }
.rev--feature .rev__top { grid-template-columns: 64px 1fr; }
.rev__av { width: 56px; height: 56px; border-radius: var(--r-pill); overflow: hidden;
  border: var(--rule-bold) solid var(--ghost-ink); flex: none; }
.rev--feature .rev__av { width: 64px; height: 64px; }
.rev__av img { width: 100%; height: 100%; object-fit: cover; }
.rev__name { font-weight: 800; font-size: 18px; line-height: 1.1; }
.rev--feature .rev__name { font-size: 21px; }
.rev__role { font-size: 13px; line-height: 1.3; color: var(--fg-muted); margin-top: 3px; }
.rev__rel { font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; color: var(--fg-subtle); margin: 18px 0 0; padding-top: 14px;
  border-top: var(--rule-hair) solid var(--ghost-ink); }
.rev__q { font-size: 15.5px; line-height: 1.6; margin: 14px 0 0; }
.rev--feature .rev__q { font-size: 18px; line-height: 1.6; }
.rev__q q { quotes: "\201C" "\201D"; }
.rev__more { display: flex; align-items: center; gap: 10px; margin-top: 22px; white-space: nowrap;
  font-family: var(--font-mono); font-size: var(--t-mono-s); letter-spacing: var(--tr-allcaps);
  text-transform: uppercase; color: var(--fg); }
.rev--feature .rev__more { margin-top: auto; padding-top: 24px; }
.rev__more .ar { transition: transform var(--dur-fast) var(--ease-snap); }
.rev:hover .rev__more .ar { transform: translate(3px, -3px); }
.rev::after { content: ""; position: absolute; inset: 0; }

/* ---- who: portrait caption ---- */
.who__portcap { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.03em;
  color: var(--fg-muted); margin-top: 14px; text-transform: none; }

/* ---- revision responsive ---- */
@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 18px; }
  .rev--feature { box-shadow: 5px 5px 0 0 var(--ghost-magenta); }
  .surfaces { grid-template-columns: 1fr; }
  .surface { border-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .recog__card { padding: 32px 24px; }
  .hero__note { max-width: none; }
}
