:root {
  --paper: #f6f5f0;
  --paper-alt: #ece9df;
  --ink: #141412;
  --ink2: #0b0b0a;
  --red: #ff3300;
  --blue: #1b3bf0;
  --grey: #6e6d66;
  --grey-lt: #9c9a8f;
  --line: #cfccc0;
  --line-dark: #38372f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.display {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- masthead ---------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.masthead-id {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  display: flex;
  gap: 8px;
  align-items: center;
}
.masthead-id .dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.masthead-nav {
  display: flex;
  gap: 26px;
}
.masthead-nav a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.masthead-nav a:hover,
.masthead-nav a.active {
  color: var(--ink);
  border-color: var(--red);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  width: 36px;
  height: 36px;
  font-family: "IBM Plex Mono";
  font-size: 16px;
}

section {
  position: relative;
}
.folio {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 0 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-transform: uppercase;
}
.folio.on-dark {
  border-color: var(--line-dark);
  color: var(--grey-lt);
}

/* ---------------- ticker ---------------- */
.ticker-band {
  background: var(--ink2);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--ink2);
  border-bottom: 1px solid var(--ink2);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 26s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.ticker-track span::after {
  content: "—";
  color: var(--red);
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* ---------------- cover ---------------- */
/* ---------------- hero (poster composition) ---------------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 20px 0 32px;
}
.hero-gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    to right,
    var(--line) 0,
    var(--line) 1px,
    transparent 1px,
    transparent calc(100% / 6)
  );
  opacity: 0.4;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hshape {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  will-change: transform;
}
.hs-1 {
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  right: -10%;
  top: -8%;
  background: var(--red);
  opacity: 0.92;
}
.hs-2 {
  width: min(30vw, 360px);
  height: min(30vw, 360px);
  right: 14%;
  top: 20%;
  background: var(--ink);
  opacity: 0.9;
}
.hs-3 {
  width: min(20vw, 240px);
  height: min(20vw, 240px);
  right: 2%;
  top: 44%;
  mix-blend-mode: normal;
}
.hs-3-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  animation: spin-slow 46s linear infinite;
}
.hs-3-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed var(--grey);
}
.hs-4 {
  width: 14px;
  height: 14px;
  background: var(--blue);
  right: 32%;
  top: 12%;
  mix-blend-mode: normal;
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hbadge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--line);
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 245, 240, 0.7);
  backdrop-filter: blur(2px);
}
.hbadge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-center {
  position: relative;
  z-index: 2;
  padding-top: 6vh;
}
.hero-name {
  font-size: clamp(64px, 13vw, 196px);
  line-height: 0.86;
  text-transform: uppercase;
}
.hn-line {
  display: block;
  overflow: hidden;
}
.hn-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: rise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hn-line.l2 span {
  animation-delay: 0.12s;
  color: var(--red);
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-role {
  margin-top: 20px;
  font-size: 15px;
  max-width: 44ch;
  color: var(--grey);
}
.hero-role b {
  color: var(--ink);
  font-weight: 600;
}

.hero-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: 32px;
}
.hero-facts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-facts div {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--grey);
}
.hero-facts div span {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  margin-top: 3px;
}
.scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--ink);
  padding: 12px 18px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.scroll-btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.scroll-btn .bar {
  width: 1px;
  height: 18px;
  background: currentColor;
  position: relative;
  overflow: hidden;
  opacity: 0.5;
}

section.padded {
  padding: 100px 0 24px;
}
section.padded.tight {
  padding: 72px 0 24px;
}

/* ---------------- section head w/ ghost numeral ---------------- */
.sec-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}
.sec-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  color: var(--red);
  padding-top: 8px;
}
.sec-title {
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
  line-height: 0.98;
}
.sec-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}
.ghost-num {
  position: absolute;
  right: 0;
  top: -30px;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(90px, 14vw, 220px);
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  line-height: 1;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.on-dark .ghost-num {
  -webkit-text-stroke: 1px var(--line-dark);
}

/* ---------------- index / toc ---------------- */
.toc {
  margin-top: 36px;
  border-top: 1px solid var(--ink);
  position: relative;
  z-index: 2;
}
.toc-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    padding-left 0.25s ease,
    color 0.25s ease;
}
.toc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.toc-row:hover::before {
  transform: translateX(0);
}
.toc-row:hover {
  color: var(--paper);
  padding-left: 20px;
}
.toc-row:hover .toc-num {
  color: var(--red);
}
.toc-row:hover .toc-desc {
  color: var(--grey-lt);
}
.toc-num {
  font-family: "IBM Plex Mono", monospace;
  color: var(--red);
  font-size: 14px;
}
.toc-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.01em;
}
.toc-desc {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: none;
  transition: color 0.25s ease;
}
.toc-page {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--grey);
}
@media (min-width: 820px) {
  .toc-desc {
    display: block;
  }
}

/* ---------------- about ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.avatar-wrap {
  position: sticky;
  top: 100px;
}
.avatar-frame {
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--paper-alt);

  & img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.avatar-caption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.about-body p {
  margin-bottom: 18px;
  font-size: 17.5px;
  max-width: 64ch;
}
.about-body p:first-of-type::first-letter {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 68px;
  float: left;
  line-height: 0.75;
  padding-right: 10px;
  color: var(--red);
}
.pull-full {
  margin: 52px -32px;
  padding: 56px 32px;
  background: var(--ink2);
  color: var(--paper);
}
.pull-full blockquote {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.25;
  max-width: 1180px;
  margin: 0 auto;
}
.pull-full blockquote span {
  color: var(--red);
}

/* ---------------- stack (dark inverted) ---------------- */
.stack-section {
  background: var(--ink2);
  color: var(--paper);
}
.stack-section .grey {
  color: var(--grey-lt);
}
.meter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  z-index: 2;
}
@media (min-width: 760px) {
  .meter-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }
}
.meter {
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
}
.meter-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.meter-top h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.meter-top span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--grey-lt);
}
.meter-track {
  height: 8px;
  background: var(--line-dark);
  position: relative;
  overflow: hidden;
}
.meter-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.meter-fill.blue {
  background: var(--blue);
}
.meter-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.meter-tags span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  border: 1px solid var(--line-dark);
  color: var(--grey-lt);
  padding: 4px 9px;
  text-transform: uppercase;
}
.stack-note {
  max-width: 62ch;
  font-size: 15.5px;
  color: var(--grey-lt);
  margin-top: 44px;
  border-left: 2px solid var(--red);
  padding-left: 20px;
}

/* ---------------- process (horizontal timeline) ---------------- */
.timeline {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.timeline-line {
  position: relative;
  display: none;
}
@media (min-width: 900px) {
  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .timeline-line {
    display: block;
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
    z-index: 0;
  }
}
.tl-step {
  position: relative;
  z-index: 1;
  padding: 0 20px 0 0;
}
.tl-dot {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 22px;
  transition:
    background 0.2s,
    color 0.2s;
}
.tl-step:hover .tl-dot {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}
.tl-step h3 {
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tl-step p {
  font-size: 14px;
  color: var(--grey);
  max-width: 36ch;
}

/* ---------------- practice: bento ---------------- */

/*-------- New CSS ------*/
/* SECTION WRAPPER */
.practice-section {
  background-color: #f4f3ef; /* Off-white background matching your theme */
  color: #111111;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  padding: 60px 40px;
}

.section-header {
  margin-bottom: 40px;
}

.section-number {
  color: #d9534f;
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0;
  text-transform: uppercase;
}

.section-subtitle {
  color: #777;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-top: 5px;
  text-transform: uppercase;
}

/* CSS GRID LAYOUT */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; /* Creates crisp grid lines with background-color */
  background-color: #e0ded8; /* Border line color */
  border: 1px solid #e0ded8;
}

/* CARD COMMON STYLES */
.grid-card {
  background-color: #f4f3ef;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* GRID 1 SPANS 2 ROWS ON LEFT */
.card-large {
  grid-row: span 2;
  background-color: #edebe4; /* Slightly darker accent box */
}

/* CARD ELEMENTS */
.tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #d9534f;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #111;
}

.card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 25px 0;
}

/* BADGES FOR MAIN CARD */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  background-color: #e2e0d8;
  border: 1px solid #d0ceb8;
  color: #444;
}

/* ACTION LINKS */
.action-link {
  color: #d9534f;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.action-link:hover {
  opacity: 0.7;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .card-large {
    grid-row: auto;
  }
}

/*------ Ends the new css ---------------*/

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
@media (min-width: 760px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }
  .bento .b-feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento .b-small {
    grid-column: span 2;
  }
}
.bento > div {
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease;
}
.bento > div:hover {
  background: var(--paper-alt);
}
.bento h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 21px;
  margin-bottom: 10px;
}
.b-feature h3 {
  font-size: 28px;
}
.bento p {
  font-size: 14.5px;
  color: var(--grey);
  margin-bottom: 14px;
}
.bento a.link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  margin-top: auto;
  align-self: flex-start;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 12px;
}
.chip {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  border: 1px solid var(--line);
  padding: 4px 9px;
  color: var(--grey);
  text-transform: uppercase;
}
.b-feature .eyebrow {
  color: var(--red);
}

/* ---------------- services (color-blocked) ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-dark);
  position: relative;
  z-index: 2;
}
@media (min-width: 820px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service {
  background: var(--ink2);
  color: var(--paper);
  padding: 34px 26px;
  transition: background 0.25s ease;
}
.service:hover {
  background: var(--red);
}
.service:hover .num {
  color: var(--ink2);
}
.service .num {
  font-family: "IBM Plex Mono", monospace;
  color: var(--red);
  font-size: 12px;
  transition: color 0.25s ease;
}
.service h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 12px 0 10px;
}
.service p {
  font-size: 14px;
  color: var(--grey-lt);
}
.service:hover p {
  color: rgba(11, 11, 10, 0.75);
}

/* ---------------- contact ---------------- */
.contact-wrap {
  border-top: 2px solid var(--ink);
  padding-top: 40px;
  position: relative;
  z-index: 2;
}
.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
}
.contact-cta h2 {
  font-size: clamp(38px, 7.5vw, 90px);
  text-transform: uppercase;
  line-height: 0.95;
}
.contact-cta a.email {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  border: 1px solid var(--ink);
  padding: 14px 20px;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.contact-cta a.email:hover {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}
.colophon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 24px 0 48px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 760px) {
  .colophon {
    grid-template-columns: repeat(4, 1fr);
  }
}
.colophon a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.colophon a:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 760px) {
  .wrap {
    padding: 0 20px;
  }
  .masthead-inner {
    padding: 14px 20px;
  }
  .masthead-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero {
    min-height: 92svh;
  }
  .hero-facts {
    gap: 18px;
  }
  .hs-1 {
    width: 70vw;
    height: 70vw;
    right: -25%;
  }
  .hs-2 {
    width: 46vw;
    height: 46vw;
    right: 0;
    top: 10%;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .avatar-wrap {
    position: static;
    max-width: 220px;
  }
  .toc-row {
    grid-template-columns: 36px 1fr auto;
  }
  .contact-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .pull-full {
    margin: 40px -20px;
    padding: 40px 20px;
  }
  .ghost-num {
    display: none;
  }
}
