*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fbfaf9;
  --bg-subtle: #f3f1ec;
  --text: #2c2b28;
  --text-muted: #666666;
  --text-faint: #999999;
  --border: rgba(0, 0, 0, 0.08);
  --display: "Crimson Pro", Georgia, "Times New Roman", serif;
  --serif: var(--display);
  --sans: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --mono: var(--sans);
  --max-width: var(--canvas-max);
  --page-padding: var(--page-gutter);
  --content-padding: var(--page-gutter);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --motion-smooth: cubic-bezier(0.22, 1.28, 0.36, 1);
  --motion-snap: step-end;
  --ease-smooth: var(--motion-smooth);
  --blue: #3b95ff;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: clip;
}

.about-page {
  --section-space: clamp(3.75rem, 9vh, 6.5rem);
  --section-space-tight: clamp(2rem, 4.5vh, 3.25rem);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  opacity: 0;
  animation: aboutPageIn 0.7s var(--motion-smooth) 0.05s forwards;
}

@keyframes aboutPageIn {
  to { opacity: 1; }
}

/* Hero — scrub a little with scroll, then finish expand from center */

@property --hero-p {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

.about-hero {
  position: relative;
  /* Short runway for the scrub phase only — collapsed on expand */
  height: calc(100svh + 22vh);
}

.about-hero.is-expanded {
  height: 100svh;
}

.about-hero__sticky {
  --hero-start-w: min(42vw, 220px);
  --hero-start-h: min(54vw, 280px);
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 0;
}

.about-hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

/* Fixed name plates — stay put while the frame grows over them */
.about-hero__name {
  --title-start: 0.12s;
  --title-stagger: 0.07s;
  --title-duration: 0.9s;
  position: absolute;
  inset: 0;
  /* No z-index here — each line stacks against the frame itself */
  margin: 0;
  pointer-events: none;
}

.about-hero__name-line {
  position: absolute;
  left: 50%;
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: center;
}

.about-hero__name-line--andy {
  top: calc(50% - (var(--hero-start-h) / 2) + 0.18em);
  transform: translate(-50%, -100%);
  padding-bottom: 0;
  /* Above the frame until scroll / expand begins */
  z-index: 3;
}

.about-hero__name-line--cabindol {
  /* Overlap the bottom of the portrait */
  top: calc(50% + (var(--hero-start-h) / 2) - 1.55em);
  transform: translate(-50%, 0);
  padding-top: 0;
  /* Above the frame until scroll / expand begins */
  z-index: 3;
}

.about-hero.is-scrubbing .about-hero__name-line--andy,
.about-hero.is-scrubbing .about-hero__name-line--cabindol,
.about-hero.is-expanding .about-hero__name-line--andy,
.about-hero.is-expanding .about-hero__name-line--cabindol,
.about-hero.is-expanded .about-hero__name-line--andy,
.about-hero.is-expanded .about-hero__name-line--cabindol {
  z-index: 1;
}

.about-hero__name-word {
  --dx1: -0.28em;
  --dy1: 0em;
  --rot1: 0deg;
  --dx2: -0.18em;
  --dy2: 0em;
  --rot2: 0deg;
  --dx3: -0.1em;
  --dy3: 0em;
  --rot3: 0deg;
  --dx4: -0.05em;
  --dy4: 0em;
  --rot4: 0deg;
  --word-delay: calc(var(--title-start) + var(--i) * var(--title-stagger));
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(3.25rem, 11vw, 6.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--blue);
  opacity: 0;
  transform-origin: center center;
  transform: translate(var(--dx1), var(--dy1)) rotate(var(--rot1));
  animation:
    aboutHeroNameFade var(--title-duration) var(--motion-smooth) forwards,
    aboutHeroNameMove var(--title-duration) forwards;
  animation-delay: var(--word-delay), var(--word-delay);
}

.about-hero__name.is-settled .about-hero__name-word {
  opacity: 1;
  color: var(--text);
  animation: none !important;
  transform: translate(0, 0) rotate(0deg);
}

@keyframes aboutHeroNameFade {
  0% {
    opacity: 0;
    color: var(--blue);
  }
  45% {
    opacity: 1;
    color: var(--blue);
  }
  60% {
    opacity: 1;
    color: var(--blue);
  }
  100% {
    opacity: 1;
    color: var(--text);
  }
}

@keyframes aboutHeroNameMove {
  0% {
    transform: translate(var(--dx1), var(--dy1)) rotate(var(--rot1));
    animation-timing-function: step-end;
  }
  18% {
    transform: translate(var(--dx2), var(--dy2)) rotate(var(--rot2));
    animation-timing-function: step-end;
  }
  36% {
    transform: translate(var(--dx3), var(--dy3)) rotate(var(--rot3));
    animation-timing-function: step-end;
  }
  54% {
    transform: translate(var(--dx4), var(--dy4)) rotate(var(--rot4));
    animation-timing-function: step-end;
  }
  72%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.about-hero__frame {
  --hero-p: 0;
  position: relative;
  z-index: 2;
  width: calc(
    var(--hero-start-w) + (100% - var(--hero-start-w)) * var(--hero-p)
  );
  height: calc(
    var(--hero-start-h) + (100% - var(--hero-start-h)) * var(--hero-p)
  );
  overflow: hidden;
  border-radius: calc(8px + 6px * var(--hero-p));
  background: #e8e4df;
  will-change: width, height, border-radius;
  transition: none;
}

.about-hero__frame.media-skeleton {
  --skeleton-base: #e8e4df;
}

.about-hero__frame.media-skeleton.is-loaded {
  background: #e8e4df;
}

.about-hero__stack {
  position: absolute;
  inset: 0;
}

.about-hero__stack img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: none;
}

/* Show first frame before JS; once cycling starts, only .is-active */
.about-hero__stack:not(:has(.is-active)) img:first-child,
.about-hero__stack img.is-active {
  opacity: 1;
}

.about-hero__stack img.is-active {
  z-index: 1;
}

.about-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  color: var(--text-muted);
  pointer-events: none;
  transform: translateX(-50%);
  opacity: calc(1 - var(--hero-scroll-fade, 0));
  transition: opacity 0.35s var(--motion-smooth);
}

.about-hero.is-expanding .about-hero__scroll,
.about-hero.is-expanded .about-hero__scroll {
  opacity: 0;
}

.about-hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero__scroll-arrow {
  width: 16px;
  height: 16px;
  animation: aboutScrollNudge 1.6s var(--motion-smooth) infinite;
}

@keyframes aboutScrollNudge {
  0%,
  100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* Intro appears only after hero is fully expanded */

.about-intro[hidden] {
  display: none !important;
}

.about-intro:not([hidden]) {
  display: block;
}

/* Shared section chrome */

.about-intro,
.about-quotes,
.about-awards,
.about-chapter,
.about-speaking,
.about-learning {
  width: 100%;
  margin-inline: auto;
  padding-block: var(--section-space);
}

/* Text / list blocks share the project content measure */
.about-chapter,
.about-speaking,
.about-learning {
  max-width: var(--content-max);
}

.about-kicker {
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.7s var(--motion-smooth),
    transform 0.7s var(--motion-smooth);
}

.about-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Intro */

.about-intro {
  padding-top: var(--section-space-tight);
  padding-bottom: 0;
  text-align: center;
}

.about-intro__title {
  margin-inline: auto;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

/* Quotes — scrolling marquee */

.about-quotes {
  overflow: visible;
}

.about-quotes__marquee {
  position: relative;
  width: 100%;
  margin-inline: 0;
  margin-top: 0;
  /* Room for scale/rotate (transform-origin: bottom) so cards aren’t clipped */
  padding-block: clamp(2.75rem, 7vh, 4.5rem) clamp(1.5rem, 4vh, 2.5rem);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.about-quotes__marquee.is-scrubbing {
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
}

.about-quotes__marquee.is-scrubbing [data-quote-selectable],
.about-quotes__marquee.is-scrubbing [data-quote-selectable] * {
  user-select: none;
  -webkit-user-select: none;
  cursor: grabbing;
}

.about-quotes__track {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  width: max-content;
  margin: 0;
  padding: 0.5rem 0 0;
  min-height: clamp(18rem, 42vw, 22rem);
  will-change: transform;
}

.about-quote {
  --quote-scale: 0.84;
  --quote-y: 0px;
  --quote-rot: 0deg;
  --quote-opacity: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  width: 17rem;
  height: 16rem;
  margin: 0;
  padding: 1.25rem 1.3rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--border),
    0 10px 28px rgba(44, 43, 40, 0.06);
  opacity: var(--quote-opacity);
  transform: translateY(var(--quote-y)) rotate(var(--quote-rot)) scale(var(--quote-scale));
  transform-origin: center bottom;
  transition: box-shadow 0.35s var(--ease);
  cursor: grab;
}

.about-quote.is-center {
  box-shadow:
    0 0 0 1px var(--border),
    0 16px 36px rgba(44, 43, 40, 0.1);
}

.about-quote [data-quote-selectable] {
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}

.about-quote blockquote {
  flex: 1;
  overflow: hidden;
}

.about-quote blockquote p {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.32;
  text-wrap: pretty;
}

.about-quote__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  flex-shrink: 0;
  min-width: 0;
  width: 100%;
  text-align: left;
}

.about-quote__avatar {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  max-width: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--bg-subtle);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.about-quote__meta > div {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.about-quote__meta cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-quote__meta span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-quotes__lede {
  max-width: 34rem;
  margin-block: var(--section-space) 0;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

/* Awards — polishable seals */

.about-awards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 2vw, 1.1rem);
  cursor: default;
}

.about-awards.is-touch {
  cursor: auto;
}

.about-awards__hint {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0;
  transform: translateY(0.6rem);
  transition:
    opacity 0.55s var(--motion-smooth),
    transform 0.55s var(--motion-smooth),
    color 0.45s var(--ease);
  transition-delay: calc(12 * 48ms);
}

.about-awards.is-in .about-awards__hint {
  opacity: 1;
  transform: translateY(0);
}

.about-awards__hint.is-dim {
  opacity: 0.45;
}

.about-awards__hint.is-shine {
  color: var(--blue);
  opacity: 1;
}

.about-awards__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.35rem);
  margin: 0;
  padding: 0;
}

.about-awards__badges--top {
  transform: translateX(clamp(-1.75rem, -3.5vw, -0.75rem));
}

.about-awards__badges--bottom {
  transform: translateX(clamp(0.75rem, 3.5vw, 1.75rem));
}

.about-awards__badges li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  line-height: 0;
  opacity: 0;
  transform: translateY(1.35rem) scale(0.88);
  transition:
    opacity 0.65s var(--motion-smooth),
    transform 0.7s var(--motion-smooth);
  transition-delay: calc(var(--i, 0) * 48ms);
  will-change: opacity, transform;
}

.about-awards.is-in .about-awards__badges li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-awards.is-in .about-awards__badges li.is-settled {
  will-change: auto;
}

.about-awards__badges--top li:nth-child(1) { --i: 0; }
.about-awards__badges--top li:nth-child(2) { --i: 1; }
.about-awards__badges--top li:nth-child(3) { --i: 2; }
.about-awards__badges--top li:nth-child(4) { --i: 3; }
.about-awards__badges--top li:nth-child(5) { --i: 4; }
.about-awards__badges--top li:nth-child(6) { --i: 5; }
.about-awards__badges--bottom li:nth-child(1) { --i: 6; }
.about-awards__badges--bottom li:nth-child(2) { --i: 7; }
.about-awards__badges--bottom li:nth-child(3) { --i: 8; }
.about-awards__badges--bottom li:nth-child(4) { --i: 9; }
.about-awards__badges--bottom li:nth-child(5) { --i: 10; }
.about-awards__badges--bottom li:nth-child(6) { --i: 11; }

.about-award-seal {
  --shine: 0;
  --wipe-x: 50%;
  --wipe-y: 50%;
  --seal-ink: var(--text);
  --seal-bg: #e4e5e7;
  --seal-bg-shine: var(--blue);
  appearance: none;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  width: clamp(6.5rem, 16vw, 9.1rem);
  aspect-ratio: 1;
  color: var(--seal-ink);
  cursor: default;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.about-awards.is-touch .about-award-seal {
  cursor: grab;
}

.about-awards.is-touch .about-award-seal:active {
  cursor: grabbing;
}

.about-award-seal__stage {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
  transform: scale(calc(0.98 + (var(--shine) * 0.04)));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(20, 18, 16, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.45s var(--ease);
}

.about-award-seal.is-complete .about-award-seal__stage {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(20, 18, 16, 0.1),
    0 0 16px rgba(59, 149, 255, 0.22);
}

.about-award-seal__art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.about-award-seal__disk {
  fill: var(--seal-bg);
}

.about-award-seal__disk-shine {
  fill: var(--seal-bg-shine);
  opacity: var(--shine);
  pointer-events: none;
}

.about-award-seal__arc {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-award-seal__arc--bot {
  font-size: 13.5px;
  letter-spacing: 0.06em;
}

.about-award-seal__wreath {
  pointer-events: none;
}

/* Dotted grain — always visible */
.about-award-seal__texture {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) 0.6px, transparent 0.7px),
    radial-gradient(rgba(30, 32, 36, 0.38) 0.5px, transparent 0.6px);
  background-size: 5px 5px, 7px 7px;
  background-position: 0 0, 2px 3px;
}

.about-award-seal__dull {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: calc(1 - var(--shine));
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 70% 75%, rgba(28, 30, 34, 0.2), transparent 50%),
    linear-gradient(
      135deg,
      rgba(72, 76, 82, 0.4) 0%,
      rgba(140, 144, 150, 0.26) 40%,
      rgba(58, 62, 68, 0.36) 100%
    );
  transition: opacity 0.2s linear;
}

.about-award-seal.is-complete .about-award-seal__dull {
  opacity: 0;
  visibility: hidden;
}

.about-award-seal__gleam {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at var(--wipe-x) var(--wipe-y),
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.28) 16%,
    transparent 40%
  );
  transition: opacity 0.15s ease;
}

.about-award-seal.is-polishing .about-award-seal__gleam {
  opacity: 1;
}

/* Diagonal shine — transform-only, no blend modes */
.about-award-seal__sheen {
  position: absolute;
  inset: -60%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    125deg,
    transparent 44%,
    rgba(255, 255, 255, 0.12) 47%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.12) 53%,
    transparent 56%
  );
  will-change: transform;
}

.about-award-seal.is-complete .about-award-seal__sheen {
  opacity: 0.85;
  animation: award-sheen-sweep 2.4s linear infinite;
}

.about-awards.is-offscreen .about-award-seal.is-complete .about-award-seal__sheen,
.about-awards.is-offscreen .about-award-seal.is-complete .about-award-seal__burst {
  animation-play-state: paused;
}

@keyframes award-sheen-sweep {
  0% { transform: translate3d(-42%, -42%, 0); }
  100% { transform: translate3d(42%, 42%, 0); }
}

/* Four-point star bursts */
.about-award-seal__bursts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-award-seal__burst {
  position: absolute;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background: #fff;
  clip-path: polygon(
    50% 0%,
    58% 42%,
    100% 50%,
    58% 58%,
    50% 100%,
    42% 58%,
    0% 50%,
    42% 42%
  );
  opacity: 0;
  transform: scale(0);
  will-change: transform, opacity;
}

.about-award-seal.is-complete .about-award-seal__burst {
  animation: award-burst 3.2s ease-in-out infinite;
}

@keyframes award-burst {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  28%, 72% {
    opacity: 1;
    transform: scale(1) rotate(12deg);
  }
}

.about-award-seal.is-just-shined .about-award-seal__stage {
  animation: award-shine-pop 0.65s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes award-shine-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.1); }
  65% { transform: scale(1.04); }
  100% { transform: scale(calc(0.98 + (var(--shine) * 0.04))); }
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.about-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.about-list strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.about-list span {
  color: var(--text-muted);
  font-size: 12px;
}

/* Speaking + learning */

.about-learning {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

.about-learning span {
  color: var(--blue);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15em;
}

.about-chapter {
  text-align: center;
}

.about-chapter--lift,
.about-chapter--beat {
  max-width: none;
}

.about-chapter--lift .about-bento,
.about-chapter--lift .about-press,
.about-chapter--beat .about-bento {
  max-width: var(--content-max);
  margin-inline: auto;
}

.about-chapter--beat .about-bento {
  margin-bottom: 0;
}

.about-chapter__title {
  margin: 0 0 clamp(2.25rem, 5.5vh, 3.75rem);
  font-family: var(--display);
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

/* Powerlifting bento — irregular collage, not a tidy grid */

.about-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(3.25rem, 6.2vw, 4.75rem);
  gap: 0.65rem;
  width: 100%;
  margin-bottom: calc(var(--section-space) * 1.75);
  text-align: left;
}

.about-bento__cell {
  position: relative;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg-subtle);
}

/* Tall portrait anchor */
.about-bento__cell--hero {
  grid-column: 1 / 6;
  grid-row: 1 / span 8;
  border-radius: 10px 7px 14px 9px;
}

/* Short-to-mid tile at the top of the middle column */
.about-bento__cell--medal {
  grid-column: 6 / 10;
  grid-row: 1 / span 3;
  border-radius: 14px 10px 8px 12px;
}

/* Medium-tall on the right */
.about-bento__cell--bench {
  grid-column: 10 / 13;
  grid-row: 1 / span 5;
  border-radius: 8px 12px 10px 7px;
}

/* Fills the rest of the middle column under the medal */
.about-bento__cell--pull {
  grid-column: 6 / 10;
  grid-row: 4 / span 5;
  border-radius: 7px 11px 13px 8px;
}

/* Fills the rest of the right column under the bench */
.about-bento__cell--focus {
  grid-column: 10 / 13;
  grid-row: 6 / span 3;
  border-radius: 12px 8px 14px 10px;
}

.about-bento__cell img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.about-bento__cell:hover img {
  transform: scale(1.04);
}

.about-bento__cell--brand:hover .about-bento__brand-logo {
  transform: none;
}

/* Beatboxer bento — denser collage with Vocollision brand tile */

.about-bento--beat {
  /* Smaller row unit → span differences read as bigger height swings */
  grid-auto-rows: clamp(2.15rem, 4vw, 3.1rem);
}

.about-bento--beat .about-bento__cell--hero {
  grid-column: 1 / 5;
  grid-row: 1 / span 9;
}

.about-bento--beat .about-bento__cell--spain {
  grid-column: 5 / 9;
  grid-row: 1 / span 2;
  border-radius: 14px 10px 8px 12px;
}

.about-bento--beat .about-bento__cell--flash {
  grid-column: 9 / 13;
  grid-row: 1 / span 6;
  border-radius: 8px 12px 10px 7px;
}

.about-bento--beat .about-bento__cell--brand {
  grid-column: 5 / 9;
  grid-row: 3 / span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 12px;
  background: #141414;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.3s var(--ease),
    transform 0.35s var(--motion-smooth);
}

.about-bento--beat .about-bento__cell--brand:hover {
  background: #1c1c1c;
  transform: translateY(-2px);
}

.about-bento--beat .about-bento__brand-logo {
  position: static;
  width: min(100%, 11.5rem);
  height: auto;
  object-fit: contain;
  color: #fff;
}

.about-bento--beat .about-bento__brand-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-bento--beat .about-bento__cell--ensemble {
  grid-column: 9 / 13;
  grid-row: 7 / span 2;
  border-radius: 7px 11px 13px 8px;
}

.about-bento--beat .about-bento__cell--cut {
  grid-column: 5 / 9;
  grid-row: 6 / span 5;
  border-radius: 10px 8px 12px 9px;
}

.about-bento--beat .about-bento__cell--stage-a {
  grid-column: 1 / 5;
  grid-row: 10 / span 2;
  border-radius: 9px 12px 8px 11px;
}

.about-bento--beat .about-bento__cell--stage-b {
  grid-column: 9 / 13;
  grid-row: 9 / span 4;
  border-radius: 11px 8px 10px 12px;
}

.about-bento--beat .about-bento__cell--uxc {
  grid-column: 1 / 5;
  grid-row: 12 / span 4;
  border-radius: 12px 8px 14px 10px;
}

.about-bento--beat .about-bento__cell--stage-c {
  grid-column: 5 / 9;
  grid-row: 11 / span 5;
  border-radius: 8px 14px 9px 11px;
}

.about-bento--beat .about-bento__cell--stage-d {
  grid-column: 9 / 13;
  grid-row: 13 / span 3;
  border-radius: 10px 9px 12px 8px;
}

/* Press — list with site thumbnails */

.about-press {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  text-align: left;
}

.about-press__link {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.about-press__link:hover {
  color: var(--blue);
}

.about-press__thumb {
  display: block;
  width: 4.5rem;
  height: 3rem;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  background: var(--bg-subtle);
  box-shadow: 0 0 0 1px var(--border);
}

.about-press__title {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-wrap: pretty;
}

.about-press__source {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.35s var(--motion-smooth);
}

.about-press__link:hover .about-press__source {
  transform: translateX(4px);
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
  font-size: 13px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(1rem) scale(0.96);
  z-index: 200;
}

.toast--visible {
  visibility: visible;
  animation: toastIn 0.36s forwards;
}

.toast--leaving {
  visibility: visible;
  animation: toastOut 0.24s forwards;
}

@keyframes toastIn {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(1rem) scale(0.96);
    animation-timing-function: step-end;
  }
  33% {
    opacity: 1;
    transform: translateX(-50%) translateY(-0.15rem) scale(1.14);
    animation-timing-function: step-end;
  }
  66% {
    opacity: 1;
    transform: translateX(-50%) translateY(0.12rem) scale(0.98);
    animation-timing-function: step-end;
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes toastOut {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    animation-timing-function: step-end;
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(0.35rem) scale(0.97);
    animation-timing-function: step-end;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0.7rem) scale(0.94);
  }
}

.cursor-bubble {
  display: none;
}

@media (max-width: 720px) {
  .about-awards__badges--top,
  .about-awards__badges--bottom {
    transform: none;
  }

  .about-quote {
    width: 15rem;
    height: 15rem;
  }

  .about-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(3.5rem, 11vw, 5rem);
    gap: 0.55rem;
  }

  .about-bento__cell--hero {
    grid-column: 1 / 5;
    grid-row: 1 / span 5;
  }

  .about-bento__cell--medal {
    grid-column: 5 / 7;
    grid-row: 1 / span 4;
  }

  .about-bento__cell--pull {
    grid-column: 1 / 4;
    grid-row: 6 / span 3;
  }

  .about-bento__cell--bench {
    grid-column: 4 / 7;
    grid-row: 6 / span 4;
  }

  .about-bento__cell--focus {
    grid-column: 1 / 7;
    grid-row: 10 / span 2;
  }

  .about-bento--beat {
    grid-auto-rows: clamp(2.5rem, 8.5vw, 3.75rem);
  }

  .about-bento--beat .about-bento__cell--hero {
    grid-column: 1 / 4;
    grid-row: 1 / span 6;
  }

  .about-bento--beat .about-bento__cell--spain {
    grid-column: 4 / 7;
    grid-row: 1 / span 2;
  }

  .about-bento--beat .about-bento__cell--flash {
    grid-column: 4 / 7;
    grid-row: 3 / span 5;
  }

  .about-bento--beat .about-bento__cell--brand {
    grid-column: 1 / 4;
    grid-row: 7 / span 2;
  }

  .about-bento--beat .about-bento__cell--ensemble {
    grid-column: 1 / 7;
    grid-row: 9 / span 2;
  }

  .about-bento--beat .about-bento__cell--cut {
    grid-column: 1 / 4;
    grid-row: 11 / span 5;
  }

  .about-bento--beat .about-bento__cell--stage-a {
    grid-column: 4 / 7;
    grid-row: 11 / span 2;
  }

  .about-bento--beat .about-bento__cell--stage-b {
    grid-column: 4 / 7;
    grid-row: 13 / span 4;
  }

  .about-bento--beat .about-bento__cell--uxc {
    grid-column: 1 / 4;
    grid-row: 16 / span 2;
  }

  .about-bento--beat .about-bento__cell--stage-c {
    grid-column: 4 / 7;
    grid-row: 17 / span 3;
  }

  .about-bento--beat .about-bento__cell--stage-d {
    grid-column: 1 / 4;
    grid-row: 18 / span 2;
  }

  .about-press__link {
    grid-template-columns: 3.75rem 1fr;
    gap: 0.75rem 1rem;
  }

  .about-press__thumb {
    width: 3.75rem;
    height: 2.5rem;
  }

  .about-press__source {
    grid-column: 2;
  }

  .about-hero__sticky {
    --hero-start-w: min(48vw, 180px);
    --hero-start-h: min(62vw, 230px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-bento__cell:hover img,
  .about-bento--beat .about-bento__cell--brand:hover {
    transform: none;
  }

  .about-page,
  .about-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .about-hero {
    height: auto;
    min-height: auto;
  }

  .about-hero.is-expanded {
    height: auto;
  }

  .about-hero__sticky {
    position: relative;
    height: auto;
    min-height: 70svh;
  }

  .about-hero__frame {
    --hero-p: 1;
    width: 100%;
    height: min(70svh, 640px);
    border-radius: 14px;
    transition: none;
  }

  .about-hero__name-word {
    animation: none !important;
    opacity: 1 !important;
    color: var(--text) !important;
    transform: none !important;
  }

  .about-hero__scroll,
  .about-hero__scroll-arrow {
    animation: none !important;
    opacity: 0 !important;
  }

  .about-quote {
    opacity: 1 !important;
    transform: translateY(var(--quote-y, 0px)) rotate(var(--quote-rot, 0deg)) scale(var(--quote-scale, 1)) !important;
    transition: none !important;
  }

  .about-reveal {
    opacity: 1;
    transform: none;
  }

  .about-awards__badges li,
  .about-awards__hint {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .about-award-seal.is-complete .about-award-seal__sheen,
  .about-award-seal.is-complete .about-award-seal__burst,
  .about-award-seal.is-just-shined .about-award-seal__stage {
    animation: none !important;
  }

  .about-awards {
    cursor: auto;
  }

  .about-award-seal {
    cursor: grab;
  }
}
