/* North & Co. — landing page styles */

:root {
  --bg: #FAFAF7;
  --bg-2: #F4F2EC;
  --ink: #14130F;
  --ink-2: #2A2823;
  --muted: rgba(20, 19, 15, 0.58);
  --line: rgba(20, 19, 15, 0.10);
  --line-2: rgba(20, 19, 15, 0.06);
  --accent: #3D5A40;
  --space-scale: 1;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: calc(72px * var(--space-scale));

  --shadow-card: 0 1px 0 rgba(255,255,255,.6) inset, 0 1px 2px rgba(20,19,15,.04), 0 24px 60px -30px rgba(20,19,15,.18);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,.6) inset, 0 1px 2px rgba(20,19,15,.04), 0 38px 80px -30px rgba(20,19,15,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.serif {
  font-family: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.no-serif .serif { font-family: inherit; font-style: normal; font-weight: 500; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
}
.kicker--light {
  color: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.muted { color: var(--muted); }

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), background .25s, color .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { font-size: 15px; padding: 14px 22px; gap: 10px; }
.btn--sm { font-size: 13px; padding: 8px 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: rgba(20,19,15,.04); border-color: rgba(20,19,15,.18); }
.btn--ghost-light {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.22);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline {
  color: var(--ink);
  background: rgba(255,255,255,.6);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--ink); }
.btn--accent {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px var(--pad-x);
  transition: background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(250, 250, 247, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; letter-spacing: -0.02em; font-size: 16px; }
.logo__mark { display: inline-flex; color: var(--ink); }
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: inline-flex; }
.nav__burger { display: none; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex; flex-direction: column; gap: 4px;
    background: transparent; border: 0; padding: 8px; cursor: pointer;
  }
  .nav__burger span {
    display: block; width: 18px; height: 1.4px; background: var(--ink); border-radius: 2px;
  }
  .nav__sheet {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250,250,247,.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 18px var(--pad-x) 24px;
    display: flex; flex-direction: column; gap: 14px;
    font-size: 17px;
  }
}

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(48px, 9vw, 110px) var(--pad-x) clamp(60px, 9vw, 120px);
  max-width: 1240px; margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--muted);
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
  animation: pulse 2.6s ease-in-out infinite;
}
.dot--green { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.22); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 6%, transparent); }
}

.hero__h {
  font-size: clamp(44px, 7.6vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 auto;
  max-width: 14ch;
}
.hero__h .hero__line { display: block; }
.hero__h .serif { font-size: 1.06em; line-height: 0.9; color: var(--accent); }

.hero__sub {
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__ctas {
  margin-top: 36px;
  display: inline-flex; gap: 10px;
  justify-content: center; flex-wrap: wrap;
}

.hero__meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta {
  padding: 18px 12px;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  border-right: 1px solid var(--line);
}
.meta:last-child { border-right: 0; }
.meta__num {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink);
}
.meta__suf { color: var(--muted); font-size: 0.65em; margin-left: 1px; font-weight: 400; }
.meta__lbl { font-size: 11.5px; color: var(--muted); letter-spacing: 0.02em; }

@media (max-width: 640px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .meta:nth-child(2) { border-right: 0; }
  .meta:nth-child(1), .meta:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.hero__stage {
  margin: 80px auto 0;
  max-width: 1080px;
  perspective: 1600px;
}

/* ─── Browser mock ────────────────────────────────────────────────────── */
.bm {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 2px 4px rgba(20,19,15,.04),
    0 50px 110px -40px rgba(20,19,15,.32),
    0 20px 40px -20px rgba(20,19,15,.18);
  transform: rotateX(2deg);
  transform-origin: top center;
  text-align: left;
}
.bm__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(#fdfdfb, #f7f5f0);
}
.bm__dot { width: 11px; height: 11px; border-radius: 50%; }
.bm__url {
  flex: 1; margin: 0 0 0 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
  background: #fff;
  border: 1px solid var(--line-2);
  padding: 5px 12px; border-radius: 999px;
  max-width: 320px; justify-content: center;
}
.bm__body {
  padding: 26px clamp(20px, 4vw, 44px) 32px;
  background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}
.bm__nav {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  padding-bottom: 22px;
}
.bm__brand { font-weight: 600; letter-spacing: -0.01em; }
.bm__links { display: inline-flex; gap: 18px; color: var(--muted); align-items: center; }
.bm__cta { color: var(--ink); padding: 5px 11px; background: #f1ede4; border-radius: 999px; }
.bm__hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
  padding: 14px 0 24px;
}
.bm__col { display: flex; flex-direction: column; gap: 10px; }
.bm__eye { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.bm__h {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.bm__h em { font-style: italic; }
.bm__p { font-size: 13px; color: var(--muted); max-width: 36ch; }
.bm__btnrow { display: inline-flex; gap: 8px; margin-top: 8px; }
.bm__btn {
  font-size: 12px; padding: 8px 13px; border-radius: 999px;
  border: 1px solid var(--line);
}
.bm__btn--p { background: var(--ink); color: #fff; border-color: var(--ink); }
.bm__img {
  height: 240px; border-radius: 14px;
  background: linear-gradient(135deg, #d8c7a8 0%, #b89c74 80%);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 12px;
}
.bm__img-grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 8px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.4), transparent 60%);
}
.bm__img-tag {
  position: relative;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px; color: rgba(255,255,255,.85);
  background: rgba(20,19,15,.35); padding: 4px 8px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.bm__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding-top: 18px;
}
.bm__card {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 12px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.bm__card-a { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; }
.bm__card-b { font-size: 11.5px; color: var(--muted); }

@media (max-width: 720px) {
  .bm__hero { grid-template-columns: 1fr; }
  .bm__img { height: 180px; }
  .bm__cards { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Section heads (shared) ──────────────────────────────────────────── */
.section-head {
  max-width: 1240px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  margin-bottom: 56px;
}
.section-head--center { align-items: center; text-align: center; }
.section-h {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 22ch;
}
.section-h .serif { font-size: 1.04em; }

/* ─── Values ──────────────────────────────────────────────────────────── */
.values { padding: var(--section-y) 0; overflow: hidden; }
.values__wrap {
  max-width: 1240px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}
.values__photo-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}
.values__photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.values__content-col {
  display: flex; flex-direction: column; gap: 32px;
}
.values__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.vitem {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.vitem:first-child { border-top: 1px solid var(--line); }
.vitem__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-top: 9px; flex: none;
}
.vitem__t {
  display: block;
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.vitem__d {
  display: block;
  font-size: 14px; color: var(--muted); line-height: 1.55;
}

@media (max-width: 880px) {
  .values__wrap { grid-template-columns: 1fr; gap: 40px; }
  .values__photo-col { aspect-ratio: 16 / 9; }
}

/* ─── Portfolio ───────────────────────────────────────────────────────── */
.work { padding: var(--section-y) 0; max-width: 1240px; margin: 0 auto; }
.work__list {
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; gap: 28px;
}
.pcard {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s, border-color .35s;
}
.pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(20,19,15,.16);
}
.pcard--rev { grid-template-columns: 1fr 1.25fr; }
.pcard--rev .pcard__art { order: 2; }
.pcard--dark { background: #1a1a18; color: #f3efe6; border-color: rgba(255,255,255,.06); }
.pcard--dark .pcard__d { color: rgba(255,255,255,.65); }
.pcard--dark .tag { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.08); }
.pcard--dark .pcard__head { color: rgba(255,255,255,.6); }
.pcard--dark .pcard__link { color: #fff; }
.pcard__art {
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pcard__art .parr { width: 100%; height: 100%; max-width: 520px; }
.pcard__meta {
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
}
.pcard__head {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em;
}
.pcard__sep { width: 14px; height: 1px; background: currentColor; opacity: .4; }
.pcard__name {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1.05;
}
.pcard__d { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.55; max-width: 42ch; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag {
  font-size: 11.5px;
  background: rgba(20,19,15,.04);
  color: var(--ink-2);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.pcard__link {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: gap .25s;
}
.pcard__link:hover { gap: 10px; }

@media (max-width: 880px) {
  .pcard, .pcard--rev { grid-template-columns: 1fr; }
  .pcard--rev .pcard__art { order: 0; }
  .pcard__art { min-height: 240px; }
}

/* ─── Process ─────────────────────────────────────────────────────────── */
.process { padding: var(--section-y) 0; max-width: 1240px; margin: 0 auto; }
.process__list {
  padding: 0 var(--pad-x);
  list-style: none; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 32px 28px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fbf9f4 100%);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 260px;
}
.step__n {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.no-serif .step__n { font-family: inherit; font-style: normal; font-weight: 500; font-size: 56px; }
.step__t {
  margin: 0;
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
}
.step__d { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

@media (max-width: 880px) {
  .process__list { grid-template-columns: 1fr; }
}

/* ─── Pricing ─────────────────────────────────────────────────────────── */
.price { padding: var(--section-y) 0; max-width: 1240px; margin: 0 auto; }
.price__toggle {
  position: relative;
  margin: 0 auto 40px;
  width: fit-content;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  display: flex; align-items: center;
  font-size: 13.5px;
}
.price__toggle button {
  position: relative; z-index: 2;
  background: transparent; border: 0; cursor: pointer;
  padding: 9px 18px; border-radius: 999px;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s;
}
.price__toggle button.is-on { color: var(--ink); }
.price__pill {
  position: absolute; top: 4px; left: 4px;
  width: calc(50% - 4px); height: calc(100% - 8px);
  background: rgba(20,19,15,.06);
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  z-index: 1;
}
.badge {
  font-size: 10px; font-weight: 500;
  background: var(--accent); color: #fff;
  padding: 2px 6px; border-radius: 999px;
}

.price__grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px; margin: 0 auto;
}
.plan {
  position: relative;
  padding: 32px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: flex; flex-direction: column; gap: 16px;
}
.plan--featured {
  background: var(--ink);
  color: #f3efe6;
  border-color: var(--ink);
}
.plan--featured .plan__tag,
.plan--featured .plan__per { color: rgba(255,255,255,.55); }
.plan--featured .plan__perks li { color: rgba(255,255,255,.85); }
.plan--featured .plan__perks svg { color: var(--accent); }
.plan--featured .btn--primary { background: #fff; color: var(--ink); }
.plan--featured .btn--primary:hover { background: var(--accent); color: #fff; }

.plan__badge {
  position: absolute; top: 16px; right: 18px;
  font-size: 11px; padding: 4px 10px;
  background: var(--accent); color: #fff;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.plan__name { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.plan__tag { margin: 0; font-size: 14px; color: var(--muted); max-width: 38ch; }
.plan__price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 8px 0;
  border-top: 1px dashed currentColor;
  border-bottom: 1px dashed currentColor;
  border-color: rgba(20,19,15,.12);
}
.plan--featured .plan__price { border-color: rgba(255,255,255,.18); }
.plan__num {
  font-size: 44px; font-weight: 500; letter-spacing: -0.035em;
  font-feature-settings: "tnum";
}
.plan__per { font-size: 14px; color: var(--muted); }
.plan__perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan__perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan__perks svg { flex: none; color: var(--accent); }
.plan .btn { margin-top: auto; }

.price__maintenance {
  padding: 0 var(--pad-x);
  max-width: 920px; margin: 18px auto 0;
}
.maintenance {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.6);
}
.maintenance__left { display: flex; flex-direction: column; gap: 3px; }
.maintenance__name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.maintenance__desc { font-size: 13px; color: var(--muted); max-width: 46ch; }
.maintenance__price {
  font-size: 26px; font-weight: 500; letter-spacing: -0.03em;
  white-space: nowrap; flex: none;
}
.maintenance__price span { font-size: 14px; font-weight: 400; color: var(--muted); margin-left: 2px; }

.price__foot {
  text-align: center; margin-top: 28px;
  font-size: 14px; color: var(--muted);
}
.price__foot a { color: var(--ink); border-bottom: 1px solid var(--line); }
.price__foot a:hover { border-bottom-color: var(--ink); }

@media (max-width: 760px) {
  .price__grid { grid-template-columns: 1fr; }
}

/* ─── About ───────────────────────────────────────────────────────────── */
.about { padding: var(--section-y) var(--pad-x); max-width: 1240px; margin: 0 auto; }
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__copy { display: flex; flex-direction: column; gap: 18px; }
.about__copy .section-h { max-width: 24ch; }
.about__p { margin: 0; font-size: 15.5px; color: var(--ink-2); line-height: 1.65; max-width: 52ch; }
.about__p b { font-weight: 600; color: var(--ink); }
.about__people {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px;
  background: linear-gradient(180deg, #fff 0%, #fbf9f4 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.person { display: flex; align-items: center; gap: 16px; }
.person__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 26px; color: rgba(255,255,255,.92);
  flex: none;
}
.person__meta { display: flex; flex-direction: column; }
.person__name { font-weight: 500; letter-spacing: -0.01em; }
.person__role { font-size: 13px; color: var(--muted); }
.about__stat {
  display: flex; flex-direction: column;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.about__stat-n {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 60px; line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.no-serif .about__stat-n { font-family: inherit; font-style: normal; font-weight: 500; }
.about__stat-l { font-size: 13px; color: var(--muted); margin-top: 4px; }

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── Final CTA ───────────────────────────────────────────────────────── */
.final {
  margin: var(--section-y) var(--pad-x);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #f3efe6;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 110%, color-mix(in oklab, var(--accent) 40%, transparent) 0%, transparent 60%),
    radial-gradient(50% 60% at 0% -10%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.final__inner {
  position: relative;
  max-width: 1140px; margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(28px, 6vw, 80px);
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}
.final__h {
  margin: 0;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 16ch;
}
.final__p {
  margin: 0; max-width: 50ch;
  color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.6;
}
.final__ctas { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.final .btn--primary { background: #fff; color: var(--ink); }
.final .btn--primary:hover { background: var(--accent); color: #fff; }
.final__avail {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ─── Footer ──────────────────────────────────────────────────────────── */
.foot {
  padding: 56px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
}
.foot__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px 60px;
  align-items: start;
}
.foot__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.foot__links {
  display: flex; gap: 22px; justify-content: flex-end; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
.foot__links a { transition: color .2s; }
.foot__links a:hover { color: var(--ink); }
.foot__base {
  grid-column: 1 / -1;
  display: flex; justify-content: center;
  font-size: 12.5px; color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; }
  .foot__links { justify-content: flex-start; }
  .foot__base { flex-direction: column; gap: 6px; }
}
