/* ==========================================================================
   Amy Matsushima — personal site
   Editorial portfolio aesthetic, pastel-pink accent
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Black&family=JetBrains+Mono:wght@400;500;700&family=Libre+Barcode+39&display=swap');

:root {
  /* accent — pastel pink (swappable via tweaks) */
  --accent: #FF6FA5;
  --accent-deep: #E04E89;
  --accent-soft: #FFD6E6;
  --accent-block: #FFA5C3;

  --ink: #0A0A0C;
  --ink-2: #2A2A2E;
  --paper: #FAFAF7;
  --paper-warm: #F5F1EA;
  --mute: #8A8A93;
  --line: #E8E4DC;
  --black-bg: #0A0A0C;

  --font-display: "Archivo Black", "Archivo", system-ui, sans-serif;
  --font-ui: "Archivo", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-barcode: "Libre Barcode 39", monospace;

  --max-w: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ---------- top nav --------------------------------------------------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.topnav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topnav__brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.topnav__brand sup {
  font-size: 10px;
  vertical-align: super;
  margin-left: 2px;
}
.topnav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topnav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 200ms;
}
.topnav__links a:hover { color: var(--accent-deep); }
.topnav__links .sep { color: var(--mute); font-weight: 400; }
.topnav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 200ms;
}
.topnav__cta:hover { background: var(--accent-deep); }

/* ---------- shared section frame -------------------------------------- */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.section--tight { padding: 56px var(--gutter); }
.section--block {
  max-width: none;
  margin: 0;
  padding: 100px var(--gutter);
  background: var(--accent-block);
  color: var(--ink);
}
.section--black {
  max-width: none;
  margin: 0;
  padding: 80px var(--gutter) 0;
  background: var(--black-bg);
  color: var(--paper);
}

.eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow .idx { color: var(--ink); font-weight: 500; }
.eyebrow .label { font-weight: 500; }
.eyebrow--right {
  justify-content: flex-end;
  text-align: right;
}
.eyebrow--white { color: var(--paper); }
.eyebrow--white .idx { color: var(--paper); }

/* ---------- hero ------------------------------------------------------- */
.hero {
  position: relative;
  padding: 18px var(--gutter) 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
}

.hero__topbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  gap: 12px;
}
.hero__topbar-cell--center { text-align: center; }
.hero__topbar-cell--right { text-align: right; }

.hero__stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  min-height: clamp(420px, 60vh, 720px);
}

.hero__name {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: clamp(160px, 30vw, 460px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin: 0;
  position: relative;
  z-index: 1;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.04em;
  transform: translateX(8%);
}
.hero__letter {
  display: inline-block;
  line-height: 0.82;
}
.hero__letter:nth-child(2) {
  /* the M sits behind the photo */
  position: relative;
}

.hero__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(240px, 28vw, 380px);
  height: clamp(320px, 38vw, 500px);
  z-index: 2;
  filter: drop-shadow(0 24px 60px rgba(10,10,12,0.22));
}
.hero__photo image-slot {
  width: 100%;
  height: 100%;
}

.hero__figure {
  position: absolute;
  bottom: 0;
  left: 8%;
  transform: translateX(-50%);
  height: clamp(480px, 88%, 820px);
  width: auto;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
  filter: grayscale(15%) contrast(0.92) brightness(1.04) drop-shadow(0 30px 60px rgba(10,10,12,0.18));
  mix-blend-mode: multiply;
}

/* dashed accent ring behind hero */
.hero__stage::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(360px, 44vw, 620px);
  height: clamp(360px, 44vw, 620px);
  border-radius: 50%;
  border: 1px dashed var(--accent);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: hero-ring-spin 38s linear infinite;
}
@keyframes hero-ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__est {
  position: absolute;
  top: 6%;
  right: 4%;
  width: clamp(90px, 10vw, 130px);
  height: clamp(90px, 10vw, 130px);
  z-index: 4;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-spin 22s linear infinite;
}
.hero__est-ring { width: 100%; height: 100%; }
.hero__est-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--accent);
  animation: hero-spin-rev 22s linear infinite;
}
@keyframes hero-spin    { to { transform: rotate(360deg); } }
@keyframes hero-spin-rev{ to { transform: rotate(-360deg); } }

.hero__signature {
  position: absolute;
  bottom: 4%;
  left: 2%;
  font-family: "Snell Roundhand", "Brush Script MT", cursive;
  font-size: clamp(20px, 2.4vw, 36px);
  color: var(--ink);
  opacity: 0.55;
  transform: rotate(-4deg);
  z-index: 3;
  letter-spacing: 0.01em;
  user-select: none;
  pointer-events: none;
}

.hero__below {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}
.hero__below-l {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__below-l .barcode {
  font-family: var(--font-barcode);
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}
.hero__below-l .hero__stamp-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__tagline {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.15;
  max-width: 28ch;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 6px;
  color: var(--ink);
  transition: color 200ms, border-color 200ms, gap 200ms;
}
.hero__cta:hover { color: var(--accent-deep); border-color: var(--accent-deep); gap: 18px; }
.hero__diamond {
  width: 52px; height: 52px;
  background: var(--accent);
  transform: rotate(45deg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.hero__diamond::before {
  content: "↓";
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  transform: rotate(-45deg);
}

/* ---------- about ------------------------------------------------------ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  margin-top: 32px;
}
.about__media {
  position: relative;
}
.about__photo-sm {
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  margin-bottom: 18px;
}
.about__photo-sm image-slot { width: 100%; height: 100%; }
.about__photo-lg {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-top: 0;
  position: relative;
}
.about__photo-lg image-slot { width: 100%; height: 100%; }

/* pull quote under portrait */
.about__pull {
  position: relative;
  margin: 56px 0 0;
  padding: 0 0 0 44px;
}
.about__pull-mark {
  position: absolute;
  left: -6px;
  top: -34px;
  font-family: var(--font-display);
  font-size: 130px;
  line-height: 1;
  color: var(--accent);
  user-select: none;
}
.about__pull-body {
  font-family: var(--font-ui);
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 12px 0;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  text-wrap: pretty;
}
.about__pull-cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 20px;
}

/* tape strips on portrait corners */
.about__tape {
  position: absolute;
  width: 92px;
  height: 24px;
  background: rgba(255, 230, 200, 0.78);
  box-shadow: 0 2px 10px rgba(10,10,12,0.10);
  z-index: 3;
  pointer-events: none;
}
.about__tape::before,
.about__tape::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
      transparent 0 4px,
      rgba(0,0,0,0.04) 4px 5px);
}
.about__tape--tl {
  top: -10px;
  left: -22px;
  transform: rotate(-22deg);
}
.about__tape--br {
  bottom: -12px;
  right: -22px;
  transform: rotate(28deg);
}

/* rotating founder stamp */
.about__stamp {
  position: absolute;
  bottom: -38px;
  right: -38px;
  width: clamp(110px, 12vw, 150px);
  height: clamp(110px, 12vw, 150px);
  z-index: 4;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(10,10,12,0.18);
  animation: about-spin 28s linear infinite;
}
.about__stamp-ring { width: 88%; height: 88%; }
.about__stamp-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--accent);
  animation: about-spin-rev 28s linear infinite;
}
@keyframes about-spin    { to { transform: rotate(360deg); } }
@keyframes about-spin-rev{ to { transform: rotate(-360deg); } }

.about__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.about__title .pink { color: var(--accent); }
.about__quote {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  max-width: 38ch;
  text-wrap: pretty;
}
.about__text {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.about__text p { margin: 0 0 14px 0; }
.about__text p:last-child { margin-bottom: 0; }

.about__intro {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}

.about__blocks {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.about__block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.about__block-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: 2px;
}
.about__block-v {
  font-family: var(--font-ui);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.about__block-v strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 4px;
}
.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.skill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

/* ---------- by-the-numbers stats strip -------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: clamp(56px, 8vw, 100px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stats__item {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background 250ms;
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: var(--accent-soft); }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.stats__num .u {
  color: var(--accent);
  font-size: 0.62em;
  margin-left: 2px;
  letter-spacing: -0.02em;
}
.stats__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.45;
}

/* ---------- about: tape + stamp + stats -------------------------------- */
.about__photo-lg {
  position: relative;
  overflow: visible;
}
.about__tape {
  position: absolute;
  width: 110px;
  height: 28px;
  background: var(--accent-soft);
  border: 1px dashed rgba(10,10,12,0.2);
  z-index: 5;
  opacity: 0.92;
  box-shadow: 0 6px 14px rgba(10,10,12,0.08);
}
.about__tape::before,
.about__tape::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg,
    rgba(255,255,255,0.4) 0 2px,
    transparent 2px 8px);
  opacity: 0.5;
}
.about__tape--tl {
  top: -16px;
  left: -18px;
  transform: rotate(-14deg);
}
.about__tape--br {
  bottom: -18px;
  right: -22px;
  transform: rotate(8deg);
}

.about__stamp {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: clamp(96px, 11vw, 134px);
  height: clamp(96px, 11vw, 134px);
  z-index: 6;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 18px rgba(10,10,12,0.18));
}
.about__stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 0;
}
.about__stamp-ring {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: about-stamp-spin 18s linear infinite;
}
.about__stamp-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--paper);
  z-index: 2;
}
@keyframes about-stamp-spin { to { transform: rotate(360deg); } }

.stats {
  margin-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stats__item {
  padding: 28px 22px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  transition: background 220ms;
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: var(--accent-soft); }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.stats__num .u {
  color: var(--accent);
  font-size: 0.62em;
  margin-left: 2px;
}
.stats__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.45;
}

/* ---------- experience ------------------------------------------------- */
.exp-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.exp-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 12px 0 0;
  color: var(--ink);
}
.exp-head h2 .pink { color: var(--accent); }

.exp-list { display: flex; flex-direction: column; }
.exp-row {
  display: grid;
  grid-template-columns: 110px 120px 1fr 240px;
  gap: clamp(18px, 2.6vw, 42px);
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--ink);
  position: relative;
  transition: background 320ms ease;
}
.exp-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 480ms cubic-bezier(.22,.61,.36,1);
}
.exp-row:hover::before { width: 100%; }
.exp-row:hover .exp-row__chapter { color: var(--accent); }
.exp-row:last-child { border-bottom: 1px solid var(--ink); }

.exp-row__chapter {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-style: italic;
  font-weight: normal;
  opacity: 0.18;
  transition: color 320ms, opacity 320ms;
  margin-top: -10px;
  padding-right: 18px;
  user-select: none;
  white-space: nowrap;
}
.exp-row:hover .exp-row__chapter { opacity: 1; }
.exp-row__thumb {
  width: 120px;
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
}
.exp-row__thumb image-slot { width: 100%; height: 100%; }
.exp-row__main { display: flex; flex-direction: column; gap: 10px; }
.exp-row__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink);
}
.exp-row__title .pink { color: var(--accent); }
.exp-row__role {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 2px;
}

.exp-row__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 6px;
  max-width: 520px;
}
.exp-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background 220ms, border-color 220ms, transform 220ms;
}
.exp-row:hover .exp-metric { background: var(--accent-soft); border-color: var(--accent); }
.exp-metric__v {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.exp-metric__v .u {
  color: var(--accent);
  font-size: 0.6em;
  margin-left: 2px;
}
.exp-metric__k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.exp-row__desc {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 8px 0 0;
  max-width: 60ch;
  text-wrap: pretty;
}

.exp-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.exp-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.exp-row__bullets {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}
.exp-row__bullets li {
  position: relative;
  padding-left: 18px;
}
.exp-row__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.exp-row__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.exp-row__meta .k { color: var(--mute); display: block; margin-bottom: 3px; }
.exp-row__meta .v { color: var(--ink); }

.exp-row__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 9px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  width: fit-content;
  transition: background 220ms, color 220ms, gap 200ms;
}
.exp-row__link:hover {
  background: var(--ink);
  color: var(--paper);
  gap: 12px;
}
.exp-row__link span { font-size: 14px; }

/* ---------- featured / press (pink block) ----------------------------- */
.press-block {
  position: relative;
}
.press-block__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 48px;
  gap: 24px;
}
.press-block__head h2 {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  max-width: none;
  white-space: nowrap;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.press-grid .press-card { grid-column: span 2; }
.press-grid .press-card:nth-child(4) { grid-column: 2 / span 2; }
.press-grid .press-card:nth-child(5) { grid-column: 4 / span 2; }
.press-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.press-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(10,10,12,0.08);
  overflow: hidden;
  position: relative;
}
.press-card__media image-slot { width: 100%; height: 100%; }
.press-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.press-card__meta .label { font-weight: 700; }
.press-card__meta .date { color: var(--ink); opacity: 0.7; }
.press-card__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.press-card__caption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
}
.press-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  width: fit-content;
  color: var(--ink);
  transition: gap 200ms;
}
.press-card a:hover { gap: 12px; }

/* press marquee */
.press-marquee {
  margin: 0 calc(var(--gutter) * -1) 40px;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--accent-block);
  position: relative;
}
.press-marquee--bottom {
  margin-top: 64px;
  margin-bottom: 0;
}
.press-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 22px 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  animation: marquee-scroll 32s linear infinite;
}
.press-marquee__track--rev { animation-direction: reverse; }
.press-marquee__track .dot {
  color: var(--paper);
  font-size: 0.7em;
  transform: translateY(-0.08em);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* pull quote */
.press-quote {
  margin: 0 0 64px;
  max-width: 60ch;
  position: relative;
  padding-left: 80px;
}
.press-quote__open {
  position: absolute;
  top: -32px;
  left: -8px;
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 1;
  color: var(--paper);
  opacity: 0.85;
  user-select: none;
}
.press-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 14px 0;
  text-transform: none;
  text-wrap: balance;
}
.press-quote blockquote em {
  color: var(--paper);
  font-style: normal;
}
.press-quote figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

/* tilt + stamps on press cards */
.press-card {
  position: relative;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
  transform-origin: center bottom;
}
.press-card--t1 { transform: rotate(-1.6deg); }
.press-card--t2 { transform: rotate( 1.2deg); }
.press-card--t3 { transform: rotate(-0.8deg); }
.press-card--t4 { transform: rotate( 0.9deg); }
.press-card--t5 { transform: rotate(-1.1deg); }
.press-card:hover { transform: rotate(0deg) translateY(-6px); z-index: 4; }
.press-card__media {
  box-shadow: 0 12px 28px rgba(10,10,12,0.18);
  transition: box-shadow 320ms;
}
.press-card:hover .press-card__media {
  box-shadow: 0 22px 50px rgba(10,10,12,0.28);
}
.press-card__stamp {
  position: absolute;
  top: -14px;
  right: -10px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 6px 14px rgba(10,10,12,0.16);
  transform: rotate(-8deg);
  transition: transform 320ms;
}
.press-card:hover .press-card__stamp { transform: rotate(2deg) scale(1.06); }

/* ---------- education & awards row ------------------------------------ */
.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-top: 32px;
}
.creds-col h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 14px 0 28px;
  color: var(--ink);
}
.creds-col h3 .pink { color: var(--accent); }
.creds-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
}
.creds-col .creds-row:last-child { border-bottom: 1px solid var(--ink); }
.creds-row__main {
  font-family: var(--font-ui);
}
.creds-row__title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  color: var(--ink);
}
.creds-row__sub {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.creds-row__sub .inline-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.creds-row__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}

/* ---------- credentials (refined) -------------------------------------- */
.cred-section { padding-top: 96px; padding-bottom: 96px; }
.cred-head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.cred-head--cta {
  margin: 0 auto 40px;
}
.cred-head .eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}
.cred-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.cred-headline em {
  font-style: italic;
  font-family: "Times New Roman", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
}
.cred-lede {
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.cred-row-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 18px 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cred-row-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.cred-row-head--mt { margin-top: 72px; }

/* education card */
.edu-card {
  display: grid;
  grid-template-columns: 120px 1fr 220px;
  gap: 32px;
  align-items: start;
  padding: 32px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1), box-shadow 320ms, border-color 320ms;
}
.edu-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}
.edu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -22px rgba(10,10,12,0.22), 0 2px 4px rgba(10,10,12,0.04);
  border-color: rgba(10,10,12,0.18);
}
.edu-card:hover::before { transform: translateX(0); }
.edu-card__logo {
  width: 120px;
  height: 120px;
  border-radius: 22px;
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.edu-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.edu-card__body { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.edu-card__highlights {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.edu-card__highlights li {
  font-family: var(--font-ui);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: baseline;
}
.edu-card__highlights li span {
  color: var(--accent);
  font-weight: 800;
}
.edu-card__school {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.edu-card__degree {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-transform: none;
}
.edu-card__field {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 2px;
}
.edu-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}
.edu-card__tag {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
  padding: 5px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
}
.edu-card__year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.edu-card__loc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

/* honor cards */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.honor {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1), box-shadow 320ms, border-color 320ms, background 320ms;
  position: relative;
  overflow: hidden;
}
.honor::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent);
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}
.honor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 320px at 100% -20%, rgba(255,111,165,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 320ms;
  pointer-events: none;
}
.honor:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -22px rgba(10,10,12,0.22), 0 2px 4px rgba(10,10,12,0.04);
  border-color: rgba(10,10,12,0.2);
}
.honor:hover::before { transform: translateY(0); }
.honor:hover::after { opacity: 1; }

.honor__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.honor__pub {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.honor__year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.honor__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  margin: 4px 0 0;
}
.honor__quote {
  font-family: var(--font-ui);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.honor__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
  transition: gap 200ms;
}
.honor:hover .honor__cta { gap: 14px; }
.honor__cta--mute { color: var(--mute); }
.honor--static { cursor: default; }
.honor--static:hover { transform: none; box-shadow: none; border-color: var(--line); }
.honor--static:hover::before { transform: translateY(-100%); }
.honor--static:hover::after { opacity: 0; }

/* ---------- CTA section ------------------------------------------------ */
  text-align: center;
  position: relative;
  padding: 100px var(--gutter) 80px;
}
.cta-section__images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cta-section__img {
  position: absolute;
  width: clamp(110px, 12vw, 180px);
  aspect-ratio: 4 / 5;
}
.cta-section__img--1 { top: 30%; left: 18%; }
.cta-section__img--2 { top: 22%; right: 20%; }
.cta-section__img--3 { bottom: 18%; left: 28%; }
.cta-section__img image-slot { width: 100%; height: 100%; }
.cta-section h2 {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: clamp(48px, 7.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 16ch;
  position: relative;
  z-index: 2;
}
.cta-section p {
  max-width: 56ch;
  margin: 32px auto 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  position: relative;
  z-index: 2;
}
.cta-section .hero__cta {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* ---------- footer ----------------------------------------------------- */
.footer {
  background: var(--black-bg);
  color: var(--paper);
  padding-top: 80px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 64px;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer__contact a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-1px);
}
.footer__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer__meta .k { display: block; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.footer__meta .v { color: var(--paper); }
.footer__meta div:nth-child(2) { text-align: center; }
.footer__meta div:last-child { text-align: right; }
.footer__byline {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 28px 0 16px;
}
.footer__mark {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: clamp(48px, 10.5vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0 12px;
  white-space: nowrap;
  overflow: hidden;
}
.footer__mark sup {
  font-size: 0.22em;
  vertical-align: super;
  margin-left: 0.04em;
  color: var(--accent);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---------- tweaks panel ---------------------------------------------- */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(10,10,12,0.25);
  z-index: 100;
  font-family: var(--font-ui);
  display: none;
  flex-direction: column;
  gap: 14px;
}
.tweaks.is-open { display: flex; }
.tweaks__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.tweaks__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  color: var(--ink);
}
.tweak-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tweak-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.tweak-swatches {
  display: flex;
  gap: 8px;
}
.tweak-swatch {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: transform 150ms;
}
.tweak-swatch:hover { transform: scale(1.08); }
.tweak-swatch.is-active { border-color: var(--ink); }
.tweak-swatch.is-active::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 2px solid var(--paper);
}
.tweak-radio {
  display: flex;
  gap: 6px;
  background: var(--paper-warm);
  border-radius: 999px;
  padding: 4px;
}
.tweak-radio button {
  flex: 1;
  background: transparent;
  border: none;
  padding: 7px 10px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  color: var(--ink-2);
  transition: background 150ms, color 150ms;
}
.tweak-radio button.is-active {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- responsive ------------------------------------------------- */
@media (max-width: 980px) {
  .topnav__links { gap: 14px; font-size: 11px; }
  .topnav__links a:nth-child(n+6) { display: none; }
  .hero__topbar { grid-template-columns: 1fr; gap: 6px; text-align: left !important; }
  .hero__topbar-cell--center, .hero__topbar-cell--right { text-align: left; }
  .hero__photo { width: clamp(200px, 38vw, 320px); height: clamp(260px, 48vw, 400px); }
  .hero__figure { height: clamp(360px, 70vh, 620px); opacity: 0.5; }
  .hero__stage::after { width: 60vw; height: 60vw; }
  .hero__name { font-size: clamp(120px, 32vw, 260px); }
  .hero__est { width: 72px; height: 72px; top: 2%; right: 0%; }
  .hero__signature { font-size: clamp(18px, 4vw, 28px); }
  .hero__below { grid-template-columns: 1fr; gap: 18px; }
  .hero__cta-row { justify-content: flex-start; }
  .about { grid-template-columns: 1fr; }
  .about__photo-sm { display: none; }
  .about__stamp { width: 86px; height: 86px; bottom: -22px; right: -10px; }
  .about__block { grid-template-columns: 1fr; gap: 6px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item { border-bottom: 1px solid var(--ink); }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }
  .stats__item:nth-last-child(1):nth-child(odd) { grid-column: 1 / -1; border-bottom: none; }
  .press-quote { padding-left: 56px; }
  .press-quote__open { font-size: 140px; top: -22px; }
  .press-card { transform: none !important; }
  .exp-row { grid-template-columns: 68px 80px 1fr; }
  .exp-row__chapter { font-size: 34px; padding-right: 8px; }
  .exp-row__metrics { grid-template-columns: repeat(2, 1fr); }
  .exp-row__meta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 18px; padding-top: 8px; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .press-grid .press-card:nth-child(n) { grid-column: span 1 !important; }
  .creds { grid-template-columns: 1fr; }
  .edu-card { grid-template-columns: 80px 1fr; gap: 18px; }
  .edu-card__logo { width: 80px; height: 80px; }
  .edu-card__meta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: flex-start; text-align: left; padding-top: 14px; border-top: 1px solid var(--line); }
  .honor-grid { grid-template-columns: 1fr; }
  .footer__meta { grid-template-columns: 1fr; gap: 18px; }
  .footer__meta div:nth-child(2),
  .footer__meta div:last-child { text-align: left; }
  .cta-section__img--1, .cta-section__img--2, .cta-section__img--3 { display: none; }
}

@media (max-width: 640px) {
  .topnav__inner { flex-wrap: wrap; gap: 12px; }
  .topnav__links { width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero__name { font-size: 36vw; }
  .hero__photo { width: 50vw; height: 65vw; }
  .press-grid { grid-template-columns: 1fr; }
  .tweaks { left: 12px; right: 12px; width: auto; bottom: 12px; }
}

/* ============================================================ */
/* SCROLL REVEAL ANIMATIONS                                     */
/* ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(.22,.61,.36,1),
    transform 700ms cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="up"]   { transform: translateY(36px); }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"]{ transform: translateX(44px); }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal="blur"] { filter: blur(8px); transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease; }

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Stagger child reveals when parent has data-reveal-stagger */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 600ms cubic-bezier(.22,.61,.36,1);
}
[data-reveal-stagger].is-in > * {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 60ms; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 140ms; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 220ms; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 300ms; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 380ms; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 460ms; }
[data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: 540ms; }

/* Headline word-by-word reveal */
.reveal-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(2deg);
  transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 600ms cubic-bezier(.22,.61,.36,1);
}
.reveal-words.is-in .word {
  opacity: 1;
  transform: none;
}
.reveal-words .word + .word { margin-left: 0.2em; }

/* Subtle float for the hero stamps already use rotation; add gentle parallax breathing for marquees */
.press-marquee { transition: opacity 600ms ease; }

/* Hover lift on press cards already exists — add a soft float-in for media */
.press-card__media { transition: box-shadow 320ms, transform 320ms cubic-bezier(.22,.61,.36,1); }
.press-card:hover .press-card__media { transform: translateY(-4px); }

/* Stats item subtle bg shift on hover already exists; add count-up entry */
.stats__item [data-reveal] { transition-delay: 0ms; }

/* Honor cards: add a tiny scale on hover */
.honor { transition: transform 320ms cubic-bezier(.22,.61,.36,1), box-shadow 320ms, border-color 320ms, background 320ms; }
.honor:hover { transform: translateY(-4px); }

/* Smooth-scroll for anchor jumps */
html { scroll-behavior: smooth; }

/* ============================================================ */
/* HERO ENTRY ANIMATIONS                                        */
/* ============================================================ */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-down {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-letter-drop {
  0%   { opacity: 0; transform: translateY(-80px) rotate(-12deg) scale(0.7); }
  60%  { opacity: 1; transform: translateY(8px) rotate(2deg) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
@keyframes hero-stamp-pop {
  0%   { opacity: 0; transform: scale(0.4) rotate(-90deg); }
  70%  { opacity: 1; transform: scale(1.08) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes hero-signature-draw {
  from { opacity: 0; transform: translateX(-30px) rotate(-3deg); }
  to   { opacity: 1; transform: translateX(0) rotate(0); }
}
@keyframes hero-diamond-float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(-6px); }
}
@keyframes hero-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
@keyframes hero-barcode-flicker {
  0%, 100% { opacity: 1; }
  92%      { opacity: 1; }
  93%      { opacity: 0.4; }
  94%      { opacity: 1; }
  96%      { opacity: 0.6; }
  97%      { opacity: 1; }
}

.hero__topbar-cell {
  opacity: 0;
  animation: hero-fade-down 700ms cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__topbar-cell:nth-child(1) { animation-delay: 120ms; }
.hero__topbar-cell:nth-child(2) { animation-delay: 220ms; }
.hero__topbar-cell:nth-child(3) { animation-delay: 320ms; }

.hero__figure {
  animation: hero-figure-rise 1100ms cubic-bezier(.22,.61,.36,1) 250ms both;
}
@keyframes hero-figure-rise {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to   { opacity: 0.65; transform: translateX(-50%) translateY(0); }
}

.hero__letter {
  display: inline-block;
  opacity: 0;
  animation: hero-letter-drop 900ms cubic-bezier(.34,1.56,.64,1) forwards;
}
.hero__letter:nth-child(1) { animation-delay: 450ms; }
.hero__letter:nth-child(2) { animation-delay: 600ms; }
.hero__letter:nth-child(3) { animation-delay: 750ms; }

.hero__est {
  opacity: 0;
  animation: hero-stamp-pop 900ms cubic-bezier(.34,1.56,.64,1) 900ms forwards,
             hero-spin 22s linear 1.5s infinite;
}

.hero__signature {
  opacity: 0;
  animation: hero-signature-draw 800ms cubic-bezier(.22,.61,.36,1) 1050ms forwards;
}

.hero__below > * {
  opacity: 0;
  animation: hero-fade-up 700ms cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__below > *:nth-child(1) { animation-delay: 1100ms; }
.hero__below > *:nth-child(2) { animation-delay: 1220ms; }
.hero__below > *:nth-child(3) { animation-delay: 1340ms; }

.hero__diamond {
  animation: hero-diamond-float 4s ease-in-out infinite;
}

.hero__cta span {
  display: inline-block;
  animation: hero-arrow-nudge 1.8s ease-in-out infinite;
}

.barcode {
  animation: hero-barcode-flicker 6s ease-in-out infinite;
}

/* Letter hover: tiny tilt */
.hero__letter {
  transition: transform 300ms cubic-bezier(.34,1.56,.64,1), color 240ms;
  cursor: default;
}
.hero__name:hover .hero__letter { color: var(--accent-deep); }
.hero__letter:hover { transform: translateY(-8px) rotate(-3deg) scale(1.04); }

/* Hero CTA hover already moves gap; add subtle scale */
.hero__cta { transition: color 200ms, border-color 200ms, gap 200ms, transform 300ms cubic-bezier(.34,1.56,.64,1); }
.hero__cta:hover { transform: translateY(-2px); }

/* Tagline reveal — let it appear slightly later, with a soft slide */
.hero__tagline { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > *,
  .reveal-words .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero__topbar-cell,
  .hero__letter,
  .hero__est,
  .hero__signature,
  .hero__below > *,
  .barcode,
  .hero__cta span,
  .hero__diamond {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  .hero__figure {
    opacity: 0.65 !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}
