/* Kestrel Growth Partners — institutional one-pager */

:root {
  --paper: #F7F5F0;
  --paper-2: #EFEBE2;
  --line: #E0DACE;
  --ink: #0A0A0A;
  --ink-2: #46443E;
  --ink-3: #6E6B62;
  --accent: #FF3D12;
  --black: #0A0A0A;

  --display: 'Barlow Condensed', sans-serif;
  --body: 'Inter', sans-serif;

  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0;
}

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: var(--accent);
  margin: 0 0 18px;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-2);
  max-width: 56ch;
}

/* ---------- Section rhythm ---------- */

section { padding: clamp(56px, 7.5vw, 104px) 0; scroll-margin-top: 104px; }
.section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 60ch; }
.alt { background: var(--paper-2); }
.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.split-head .lede { margin: 0 0 4px; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.nav.scrolled {
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 86px;
}
.nav-brand { display: inline-flex; align-items: center; }
.nav-logo { height: 50px; width: auto; display: block; }
.nav-logo-dark { display: none; }
.nav.scrolled .nav-logo-light { display: none; }
.nav.scrolled .nav-logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  color: rgba(247, 245, 240, 0.82);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
  padding: 12px 22px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.nav-cta { padding: 10px 18px; }
.nav-cta-short { display: none; }
.nav .nav-cta { background: transparent; border-color: rgba(255, 255, 255, 0.75); color: #fff; }
.nav .nav-cta:hover { background: #fff; border-color: #fff; color: var(--ink); }
.nav.scrolled .nav-cta { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.nav.scrolled .nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 940px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.5) 30%, rgba(10,10,10,0.08) 58%, rgba(10,10,10,0) 80%);
}
.hero-scrim-b {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0) 26%);
}
.hero-body { position: relative; z-index: 2; width: 100%; }
.hero .eyebrow { color: var(--accent); font-size: 0.98rem; letter-spacing: 0.24em; margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--paper);
  max-width: 14ch;
}
.hero h1 .accent { color: var(--accent); }
.hero .lede { margin-top: 24px; font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: rgba(247,245,240,0.9); max-width: 42ch; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn { border-color: var(--accent); background: var(--accent); color: #fff; }
.hero .btn:hover { background: #e0330c; border-color: #e0330c; }
.hero .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.65); color: #fff; }
.hero .btn-ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }

.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(247,245,240,0.7);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}
.hero-cue svg { width: 18px; height: 18px; animation: cuebob 1.8s ease-in-out infinite; }
@keyframes cuebob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(247,245,240,0.18);
}
.hero-strip-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3.5vw, 52px);
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.hero-strip span {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: rgba(247,245,240,0.85);
}
.hero-strip b { color: var(--accent); font-weight: 700; }
.hero-strip .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); padding: 0; }

/* ---------- The model + Why Kestrel band ---------- */

.deal-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--accent);
  padding: clamp(28px, 3.8vw, 44px);
  box-shadow: 0 22px 52px rgba(10,10,10,0.16);
}
.deal-panel .eyebrow { margin: 0; color: var(--accent); }
.deal-panel .section-title {
  color: var(--paper);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}
.deal-panel p:not(.eyebrow) {
  margin: 0;
  color: #C9C5BC;
  font-size: 1.05rem;
  max-width: 64ch;
}
.deal-panel .btn {
  white-space: nowrap;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.model-grid p { color: var(--ink-2); font-size: 1.05rem; }
.model-grid p + p { margin-top: 18px; }

.whykestrel {
  margin-top: clamp(40px, 5vw, 64px);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  align-items: stretch;
  overflow: hidden;
}
.whykestrel-photo {
  width: 100%;
  height: 312px;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.whykestrel-copy { padding: clamp(28px, 3vw, 44px); align-self: center; }
.whykestrel h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}
.whykestrel p { margin: 0; color: #C9C5BC; font-size: 1.04rem; max-width: 62ch; }

/* ---------- Pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.alt .pillar { background: var(--paper-2); }
.pillar::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 3px; width: 0;
  background: var(--accent);
  transition: width 0.22s ease;
}
.pillar:hover {
  background: var(--paper);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10,10,10,0.10);
  z-index: 1;
}
.pillar:hover::before { width: 100%; }
.pillar .num {
  font-family: var(--display);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 14px 0 10px;
}
.pillar p { margin: 0; color: var(--ink-2); }

.owner-cta {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.15fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--accent);
  padding: clamp(28px, 3.8vw, 44px);
  box-shadow: 0 22px 52px rgba(10,10,10,0.16);
}
.owner-cta .eyebrow { margin-bottom: 10px; color: var(--accent); }
.owner-cta h3 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.owner-cta p {
  margin: 0;
  color: #C9C5BC;
  font-size: 1.02rem;
}
.owner-cta .btn {
  white-space: nowrap;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- Criteria ---------- */

.criteria-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.metrics { display: grid; gap: 22px; }
.metric { border-top: 2px solid var(--ink); padding-top: 16px; }
.metric .label {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--ink-3);
}
.metric .value {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.05;
  margin-top: 6px;
}
.metric .value .accent { color: var(--accent); }

.criteria-list { display: grid; gap: 18px; }
.criteria-list .item { display: grid; grid-template-columns: auto 1fr; gap: 16px; }
.criteria-list .tick {
  width: 22px; height: 22px; margin-top: 3px; flex: none;
  border: 1.5px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.criteria-list .item h4 {
  font-family: var(--body); font-weight: 600; font-size: 1.02rem; margin: 0 0 3px;
}
.criteria-list .item p { margin: 0; color: var(--ink-2); font-size: 0.97rem; }
.thesis-card {
  margin-top: clamp(44px, 6vw, 78px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: 0 18px 42px rgba(10,10,10,0.06);
}
.thesis-card .eyebrow { margin-bottom: 16px; }
.thesis-main {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.34;
  max-width: 44ch;
}
.thesis-note {
  margin: 22px 0 0;
  color: var(--ink-2);
  max-width: 66ch;
}
.process-notes span {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
}

/* ---------- Approach (process) ---------- */

.process-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  margin: calc(-1 * clamp(18px, 2.4vw, 30px)) 0 clamp(18px, 3vw, 32px);
}
.process-notes span {
  color: var(--ink);
  padding: 18px clamp(14px, 2vw, 24px);
  border-right: 1px solid var(--line);
}
.process-notes span:first-child { padding-left: 0; }
.process-notes span:last-child { border-right: 0; }
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: clamp(16px, 3vw, 36px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.step:first-child { border-top: 0; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
}
.step h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.step p { margin: 0; color: var(--ink-2); max-width: 62ch; }

/* ---------- Comparison table ---------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  table-layout: fixed;
}
.compare th, .compare td {
  text-align: left;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare thead th {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
}
.compare thead th:first-child,
.compare tbody th[scope="row"] {
  width: 22%;
}
.compare thead th:nth-child(n+2),
.compare tbody td {
  width: 26%;
}
.compare thead th.us { background: var(--ink); color: var(--paper); }
.compare thead th.us .brand-name { color: var(--accent); }
.compare tbody td.us { background: rgba(255, 61, 18, 0.06); font-weight: 500; color: var(--ink); }
.compare tbody th[scope="row"] {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.compare td { color: var(--ink-2); font-size: 0.97rem; }
.compare .col-label { font-size: 0.78rem; letter-spacing: 0.16em; color: var(--ink-3); display: block; margin-bottom: 2px; }
.compare thead th.us .col-label { color: rgba(247,245,240,0.7); }

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.person-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: 430px auto;
}
.person-card .photo {
  position: relative;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(0.94) contrast(1.04);
}
.person-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 310px;
  height: 120px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, var(--ink) 100%);
}
.person-overlay {
  position: relative;
  z-index: 2;
  background: var(--ink);
  padding: clamp(28px, 3.4vw, 42px);
}
.person-overlay h3 {
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.person-overlay .role {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 4px 0 14px;
}
.person-overlay p {
  margin: 0;
  color: #E0DACE;
  font-size: 1rem;
  max-width: 42ch;
}
.person-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.person-link:hover { border-bottom-color: var(--accent); }

.partnership {
  margin-top: clamp(36px, 4.5vw, 60px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 2px solid var(--ink);
}
.partnership p { margin: 0; color: var(--ink-2); font-size: 1.08rem; line-height: 1.7; }
.partnership .signature {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1;
  color: var(--ink);
  text-align: right;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-right: clamp(24px, 7vw, 100px);
}

/* ---------- Contact ---------- */

.contact {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding-bottom: clamp(48px, 7vw, 96px);
}
.contact .section-title { margin-bottom: 18px; color: var(--paper); }
.contact .lede { margin: 0 auto 32px; color: #C9C5BC; }
.contact-email {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  letter-spacing: 0.01em;
  color: var(--paper);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.15s ease;
}
.contact-email:hover { color: var(--accent); }
.confidential {
  margin-top: 34px;
  font-size: 0.9rem;
  color: #807D74;
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */

.footer { background: var(--ink); color: #C9C5BC; padding: 56px 0 44px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 50px; width: auto; }
.footer small { font-size: 0.85rem; color: #807D74; }
.footer a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */

.reveal {
  transform: translateY(18px);
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: transform;
}
.reveal.is-visible { transform: none; }

.step.reveal:nth-of-type(2) { transition-delay: 0.06s; }
.step.reveal:nth-of-type(3) { transition-delay: 0.12s; }
.step.reveal:nth-of-type(4) { transition-delay: 0.18s; }
.step.reveal:nth-of-type(5) { transition-delay: 0.24s; }
.pillar.reveal:nth-of-type(2) { transition-delay: 0.07s; }
.pillar.reveal:nth-of-type(3) { transition-delay: 0.14s; }
.pillar.reveal:nth-of-type(4) { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-cue svg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  section { padding: 64px 0; }
  .split-head { grid-template-columns: 1fr; gap: 18px; }
  .nav-links { display: none; }
  .nav-inner { height: 76px; gap: 16px; }
  .nav-logo { height: 38px; }
  .nav-cta { padding: 10px 14px; font-size: 0.78rem; }
  .nav-cta-long { display: none; }
  .nav-cta-short { display: inline; }
  .hero-bg { object-position: 58% 38%; }
  .hero-scrim { background: linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.68) 50%, rgba(10,10,10,0.44) 100%); }
  .hero-cue { display: none; }
  .hero-strip-inner { gap: 12px 18px; }
  .hero-strip span { font-size: 0.74rem; }
  .deal-panel { grid-template-columns: 1fr; }
  .deal-panel .btn { justify-content: center; }
  .model-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .process-notes { grid-template-columns: 1fr; }
  .process-notes span {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-notes span:last-child { border-bottom: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .person-card { grid-template-rows: 440px auto; }
  .person-card .photo { height: 440px; }
  .person-card::after { top: 320px; }
  .whykestrel { grid-template-columns: 1fr; }
  .whykestrel-photo { min-height: 240px; max-height: 320px; }
  .owner-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .owner-cta .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 760px;
  }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.4rem); }
  .hero .lede { max-width: 30ch; }
  .hero-actions { display: grid; gap: 12px; }
  .hero-actions .btn { justify-content: center; }
  .step { grid-template-columns: 56px 1fr; }
  .table-scroll { overflow: visible; }
  .compare {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }
  .compare thead { display: none; }
  .compare,
  .compare tbody,
  .compare tr,
  .compare th,
  .compare td { display: block; width: 100%; }
  .compare thead th:first-child,
  .compare thead th:nth-child(n+2),
  .compare tbody th[scope="row"],
  .compare tbody td { width: 100%; }
  .compare tbody tr {
    padding: 22px 0;
    border-top: 2px solid var(--ink);
  }
  .compare tbody tr:last-child { border-bottom: 2px solid var(--ink); }
  .compare tbody th[scope="row"] {
    width: 100%;
    border: 0;
    padding: 0 0 12px;
    font-size: 1.02rem;
  }
  .compare td {
    border: 0;
    padding: 12px 0;
  }
  .compare td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-3);
    font-size: 0.72rem;
    margin-bottom: 3px;
  }
  .compare tbody td.us {
    background: transparent;
    border-left: 3px solid var(--accent);
    padding-left: 14px;
  }
  .person-card { grid-template-rows: 390px auto; }
  .person-card .photo { height: 390px; }
  .person-card::after { top: 270px; }
  .person-overlay { padding: 26px 22px; }
  .contact-email { font-size: clamp(1.25rem, 8.4vw, 1.8rem); }
}
