/* ---------- Tokens ---------- */
:root {
  --bg: #0B0B0F;
  --bg-2: #101016;
  --bg-3: #15151D;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --ink: #F5F5F2;
  --ink-2: rgba(245,245,242,0.72);
  --ink-3: rgba(245,245,242,0.5);
  --ink-4: rgba(245,245,242,0.32);
  --accent: #F5C518;
  --accent-ink: #1A1500;
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

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

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

::selection { background: var(--accent); color: var(--accent-ink); }

.page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(245,197,24,0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(245,197,24,0.05), transparent 60%),
    var(--bg);
  overflow: hidden;
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,11,15,0.7);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; }
.logo__mark { display: inline-flex; gap: 2px; }
.logo__mark span { width: 6px; height: 18px; border-radius: 2px; display: block; }
.logo__mark span:nth-child(2) { transform: translateY(3px); }
.logo__mark span:nth-child(3) { transform: translateY(-2px); }
.logo__txt { font-size: 15px; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { color: var(--ink-2); font-size: 14px; transition: color .2s; }
.nav a:hover { color: var(--ink); }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.avail {
  font-size: 12px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.dot--pulse { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); animation: pulse 2s ease-out infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,197,24,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,197,24,0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #FFD53A; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.28); }
.btn--text { background: transparent; color: var(--ink-2); padding-left: 4px; padding-right: 4px; }
.btn--text:hover { color: var(--ink); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 14px 22px; font-size: 15px; }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.link-cta--muted { color: var(--ink-2); border-color: var(--line-2); }

/* ---------- Hero shared ---------- */
.hero { padding: 56px 28px 80px; max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 22px;
}

.display {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 22px;
  text-wrap: balance;
}
.display__muted { color: var(--ink-3); font-weight: 500; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 0 28px;
  line-height: 1.55;
}

.yellow-mark {
  position: relative;
  display: inline-block;
  padding: 0 0.12em;
  isolation: isolate;
}
.yellow-mark__bg {
  position: absolute;
  inset: 0.18em -0.05em 0.05em -0.05em;
  background: var(--accent);
  border-radius: 6px;
  z-index: -1;
  transform: skew(-3deg) rotate(-1.2deg);
  animation: markIn 0.8s cubic-bezier(.2,.7,.2,1) both;
}
.yellow-mark__txt { color: var(--accent-ink); }
@keyframes markIn {
  from { transform: scaleX(0) skew(-3deg) rotate(-1.2deg); transform-origin: left; }
  to { transform: scaleX(1) skew(-3deg) rotate(-1.2deg); transform-origin: left; }
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Hero: split ---------- */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.hero__meta span { font-size: 13px; color: var(--ink-3); }

.hero__photo { position: relative; }
.hero__photoFrame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
  animation: floaty 8s ease-in-out infinite;
}
.hero__photoFrame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.05);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero__nameplate {
  position: absolute;
  bottom: 14px;
  background: rgba(11,11,15,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.hero__nameplate strong { display: block; font-size: 13px; }
.hero__nameplate span:not(.hero__nameplate__num) { color: var(--ink-3); }
.hero__nameplate__num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--accent);
  border-right: 1px solid var(--line-2);
  padding-right: 10px;
}
.hero__nameplate--left { left: 12px; }
.hero__nameplate--mid { left: 50%; transform: translateX(-50%); top: -16px; bottom: auto; }
.hero__nameplate--right { right: 12px; }

.hero__caption {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.02em;
}

/* ---------- Hero: full-bleed ---------- */
.hero--bleed {
  max-width: none;
  padding: 0;
  position: relative;
  height: clamp(620px, 92vh, 900px);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero__bleedImg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
.hero__bleedImg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero__bleedScrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(180deg, rgba(11,11,15,0.55) 0%, rgba(11,11,15,0.25) 35%, rgba(11,11,15,0.85) 100%),
    linear-gradient(90deg, rgba(11,11,15,0.55) 0%, transparent 60%);
}
.hero__bleedCopy {
  position: relative;
  align-self: end;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 64px 28px 28px;
}
.hero__bleedTags {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.hero__bleedTags span { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(11,11,15,0.5); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; backdrop-filter: blur(8px); }

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.ticker__track { display: inline-flex; gap: 36px; white-space: nowrap; animation: scroll 40s linear infinite; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.ticker__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Sections shared ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 28px;
  position: relative;
}
.section--alt { background: var(--bg-2); max-width: none; padding-left: 0; padding-right: 0; }
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }

.section__head { max-width: 760px; margin-bottom: 48px; }
.section__kicker {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
  text-wrap: balance;
}
.h2__muted { color: var(--ink-3); font-weight: 500; }
.h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; margin: 0 0 8px; font-weight: 600; }
.section__lead { font-size: 17px; color: var(--ink-2); max-width: 60ch; margin: 0; }

/* ---------- Team / Person cards ---------- */
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.person {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, border-color .2s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.person::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(245,197,24,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.person:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.35);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
}
.person:hover::before { opacity: 1; }
.person__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.person__num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.person__title h3 { margin: 0; font-size: 22px; letter-spacing: -0.01em; }
.person__title span { font-size: 13px; color: var(--ink-3); }
.person__avail { font-size: 11px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.person__pull { font-size: 18px; line-height: 1.4; margin: 0; letter-spacing: -0.01em; }
.person__skills { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.person__skills li { font-size: 14px; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; }
.check { width: 14px; height: 14px; border-radius: 50%; background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.45); flex-shrink: 0; margin-top: 4px; position: relative; }
.check::after {
  content: "";
  position: absolute;
  left: 3px; top: 1px;
  width: 4px; height: 7px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
}

.person__offers { padding-top: 14px; border-top: 1px dashed var(--line-2); display: flex; flex-direction: column; gap: 12px; }
.person__offersLabel { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.offer { padding: 12px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.02); border: 1px solid var(--line); }
.offer__row { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; margin-bottom: 4px; }
.offer__row strong { font-size: 14px; }
.offer__meta { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 11px; color: var(--ink-3); }
.offer p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.45; }

.person__cta { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

/* ---------- Bundle (full party) ---------- */
.bundle {
  margin-top: 28px;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), #FFD53A 60%, #FFE57A);
  color: var(--accent-ink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.bundle .section__kicker { color: rgba(26,21,0,0.7); }
.bundle h3 { color: var(--accent-ink); margin: 0 0 6px; }
.bundle p { margin: 0; max-width: 60ch; color: rgba(26,21,0,0.78); }
.bundle .btn--primary { background: var(--bg); color: var(--ink); }
.bundle .btn--primary:hover { background: #1c1c25; }

/* ---------- Process ---------- */
.process { list-style: none; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,0.015); position: relative; }
.step__n { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 12px; color: var(--accent); display: block; margin-bottom: 14px; letter-spacing: 0.06em; }
.step h4 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; font-weight: 600; }
.step p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ---------- Work grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-card {
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  transition: transform .25s ease, border-color .2s;
}
.work-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.work-card__thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.work-card__thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.work-card__placeholder {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-3);
}
.work-card__body { padding: 18px; display: flex; flex-direction: column; gap: 4px; }
.work-card__body strong { font-size: 17px; letter-spacing: -0.01em; }
.work-card__body span { font-size: 13px; color: var(--ink-3); }
.work-card__kind { margin-top: 6px; font-family: 'Geist Mono', ui-monospace, monospace; font-size: 11px; color: var(--accent) !important; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  position: relative;
}
.quote__open {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 64px;
  color: var(--accent);
  line-height: 0.6;
  position: absolute;
  top: 18px; left: 20px;
  opacity: 0.4;
}
.quote blockquote { margin: 24px 0 18px; font-size: 16px; line-height: 1.55; color: var(--ink); letter-spacing: -0.005em; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.quote figcaption strong { font-weight: 600; }
.quote figcaption span { color: var(--ink-3); }

/* ---------- Stack ---------- */
.stack { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stack__col { padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); }
.stack__col h4 { margin: 0 0 14px; font-size: 13px; color: var(--accent); font-family: 'Geist Mono', ui-monospace, monospace; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.stack__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.stack__col li {
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

/* ---------- Book section ---------- */
.book { padding-bottom: 80px; }
.book__grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.book__copy { position: sticky; top: 100px; }
.book__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.book-card--accent {
  grid-column: 1 / -1;
  background:
    radial-gradient(600px 300px at 90% -10%, rgba(245,197,24,0.18), transparent 60%),
    var(--bg-2);
  border-color: rgba(245,197,24,0.3);
}
.book-card__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.book-card__tag { font-size: 11px; font-family: 'Geist Mono', ui-monospace, monospace; padding: 4px 10px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); letter-spacing: 0.04em; text-transform: uppercase; }
.book-card__tag--soft { background: rgba(255,255,255,0.06); color: var(--ink-2); }
.book-card__time { font-size: 12px; color: var(--ink-3); font-family: 'Geist Mono', ui-monospace, monospace; }
.book-card h3 { font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.book-card p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }

.book-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.book-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  font-size: 13px;
  transition: border-color .2s, background .2s;
}
.book-card__list li:hover { border-color: var(--line-2); background: rgba(255,255,255,0.04); }
.book-card__list a { font-weight: 500; }
.book-card__list span { color: var(--ink-3); font-size: 12px; }
.book-card__list .all { background: rgba(245,197,24,0.08); border-color: rgba(245,197,24,0.3); }
.book-card__list .all a { color: var(--accent); }

.cal { border: 1px solid var(--line); border-radius: 14px; padding: 14px; background: var(--bg); }
.cal__head { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-2); margin-bottom: 10px; }
.cal__nav { font-family: 'Geist Mono', ui-monospace, monospace; color: var(--ink-3); letter-spacing: 0.4em; }
.cal__days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 10px; }
.cal__day {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 4px;
  display: flex; flex-direction: column;
  gap: 2px;
  color: var(--ink);
  font-size: 12px;
  transition: all .15s;
}
.cal__day strong { font-size: 16px; }
.cal__day span { color: var(--ink-3); font-size: 11px; }
.cal__day:hover { border-color: var(--line-2); }
.cal__day.is-active { background: rgba(245,197,24,0.12); border-color: var(--accent); color: var(--ink); }
.cal__day.is-active span { color: rgba(245,197,24,0.85); }
.cal__slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.cal__slot {
  padding: 8px 4px;
  font-size: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  color: var(--ink);
  font-family: 'Geist Mono', ui-monospace, monospace;
  transition: all .15s;
}
.cal__slot:hover { border-color: var(--line-2); }
.cal__slot.is-active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.triage { display: flex; flex-direction: column; gap: 12px; }
.triage textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color .2s;
}
.triage textarea:focus { border-color: var(--accent); }
.triage textarea::placeholder { color: var(--ink-4); }
.btn--primary:disabled { opacity: 0.5; cursor: not-allowed; }
.triage--sent { align-items: flex-start; }
.triage__check { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-weight: 700; }
.triage--sent strong { font-size: 17px; }
.triage--sent p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 56px 28px 28px; max-width: var(--maxw); margin: 0 auto; }
.foot__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.foot__top p { font-size: 17px; color: var(--ink-2); margin: 0; letter-spacing: -0.01em; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.foot__cols h5 { margin: 0 0 12px; font-size: 12px; font-family: 'Geist Mono', ui-monospace, monospace; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.foot__cols a, .foot__cols span { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 6px; }
.foot__cols a:hover { color: var(--ink); }
.foot__btm { padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; font-size: 12px; color: var(--ink-3); font-family: 'Geist Mono', ui-monospace, monospace; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .people, .work-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .stack { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .book__grid { grid-template-columns: 1fr; }
  .book__copy { position: static; }
}

@media (max-width: 800px) {
  .nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .people, .work-grid, .quotes, .stack, .process { grid-template-columns: 1fr; }
  .bundle { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; }
  .foot__top { flex-direction: column; align-items: flex-start; }
  .book__cards { grid-template-columns: 1fr; }
  .hero__nameplate--mid { display: none; }
  .topbar__right .avail { display: none; }

  /* Stack image above copy so the wide team photo isn't cropped to just the middle person */
  .hero--bleed { height: auto; display: block; }
  .hero__bleedImg { position: relative; aspect-ratio: 3 / 2; }
  .hero__bleedScrim {
    background: linear-gradient(180deg, rgba(11,11,15,0.15) 0%, rgba(11,11,15,0.55) 100%);
  }
  .hero__bleedCopy { padding-top: 32px; padding-bottom: 24px; }
  .hero__bleedTags { padding-bottom: 32px; }
}
