:root {
  --page: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #edf3f7;
  --surface-blue: #e4eef6;
  --ink: #17212b;
  --muted: #66727d;
  --line: #dce3e8;
  --blue: #3f6f97;
  --blue-deep: #284f70;
  --shadow: 0 18px 50px rgba(28, 48, 65, 0.08);
  --max: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --ease: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

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

figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.page-wrap {
  min-height: 100vh;
}

.page-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.js .rise {
  opacity: 1;
  transform: none;
}

.js .rise.is-seen {
  opacity: 1;
  transform: none;
}

.kicker,
.story-tag,
.eyebrow {
  color: var(--blue-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Header */
.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 227, 232, 0.9);
  background: rgba(246, 247, 249, 0.92);
  backdrop-filter: blur(16px);
}

.masthead__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.signature {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.chapter-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}

.chapter-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.chapter-nav a:hover,
.chapter-nav a:focus-visible,
.chapter-nav a[aria-current="page"] {
  color: var(--ink);
}

.chapter-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -0.58rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.menu-switch {
  display: none;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Shared actions */
.action-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

.action-link:hover,
.action-link:focus-visible {
  transform: translateY(-2px);
}

.action-link--solid {
  border-color: var(--blue-deep);
  color: #fff;
  background: var(--blue-deep);
}

.action-link--solid:hover,
.action-link--solid:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
}

.action-link--line {
  border-color: var(--line);
  background: var(--surface);
}

.action-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

/* Home hero */
.founder-biography {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 2.8vw, 2.6rem) 0 clamp(4rem, 7vw, 6.5rem);
  background:
    radial-gradient(ellipse 49% 76% at 27% 39%, rgba(255, 249, 240, 0.58) 0%, rgba(255, 251, 246, 0.24) 40%, rgba(255, 252, 248, 0) 72%),
    radial-gradient(ellipse 43% 74% at 77% 40%, rgba(198, 219, 234, 0.43) 0%, rgba(220, 232, 241, 0.2) 43%, rgba(231, 238, 242, 0) 73%),
    #f3f4f2;
}

.founder-biography::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 252, 247, 0.1) 28%, transparent 51%),
    radial-gradient(circle at 78% 37%, rgba(183, 209, 227, 0.14) 0%, rgba(213, 227, 237, 0.07) 31%, transparent 54%);
  content: "";
  filter: blur(38px);
  pointer-events: none;
}

.founder-biography > .page-shell {
  position: relative;
  z-index: 1;
}

.founder-biography-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(2.5rem, 4.5vw, 4rem);
}

.lead-panel__copy {
  min-width: 0;
}

.lead-panel__headline-block {
  display: grid;
  gap: 1.1rem;
}

.lead-panel__primary h1 {
  max-width: 720px;
  font-size: clamp(calc(3.3rem - 3px), calc(5vw - 3px), calc(4.8rem - 3px));
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.lead-panel__line {
  display: block;
}

.lead-panel__body {
  display: grid;
  max-width: 640px;
  gap: 0.75rem;
  margin-top: 2rem;
}

.lead-panel__deck {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.career-index {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.career-index__item {
  min-width: 0;
  padding: 1.15rem;
  background: var(--surface);
}

.career-index__item span {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.career-index__item p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.note-rail {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.note-rail p {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(63, 111, 151, 0.36);
  border-radius: 14px;
  color: #53616d;
  background: rgba(234, 244, 251, 0.95);
  box-shadow: 0 9px 24px rgba(40, 79, 112, 0.06);
  font-size: 0.83rem;
  line-height: 1.55;
}

.note-rail p span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.founder-biography-media {
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.lead-panel__image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #dfe6eb;
  box-shadow: var(--shadow);
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.lead-panel__image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

@media (hover: hover) {
  .founder-biography__image-wrapper:hover .lead-panel__image-frame {
    border-color: rgba(94, 142, 179, 0.44);
    box-shadow: 0 28px 58px rgba(48, 82, 107, 0.2);
    transform: translateY(-7px);
  }

  .founder-biography__image-wrapper:hover .lead-panel__image-frame img {
    filter: saturate(1.04) contrast(1.015);
    transform: scale(1.026);
  }
}

.lead-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

/* Current work */
.current-chapter-section {
  padding: clamp(4rem, 7vw, 6.5rem) var(--gutter);
  border-top: 1px solid rgba(63, 111, 151, 0.1);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #e9f2f8 0%, #e2edf5 100%);
}

.current-chapter-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.current-chapter-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.current-chapter-heading h2,
.year-ribbon__head h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.current-chapter-heading h2 {
  max-width: none;
  font-size: clamp(2.55rem, 4.25vw, 4.1rem);
  white-space: nowrap;
}

.current-chapter-heading h2 span,
.chapter-column__heading h2 span,
.chapter-2025-heading h2 span,
.chapter-dossier h2 span,
.resell-spread h2 span,
.chapter-band h2 span {
  display: block;
}

.current-chapter-intro {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
  color: var(--muted);
}

.current-chapter-intro p {
  max-width: none;
}

.current-chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.current-chapter-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 70px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0.42rem 1.15rem;
  align-items: start;
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
  border: 1px solid rgba(63, 111, 151, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(40, 79, 112, 0.055);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.current-chapter-card:hover {
  border-color: rgba(63, 111, 151, 0.38);
  box-shadow: 0 18px 38px rgba(40, 79, 112, 0.09);
  transform: translateY(-2px);
}

.current-chapter-card__brand {
  display: grid;
  width: 70px;
  height: 70px;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.72rem;
  border: 1px solid rgba(63, 111, 151, 0.16);
  border-radius: 17px;
  background: #edf5fa;
}

.current-chapter-card:nth-child(2) .current-chapter-card__brand {
  border-color: rgba(107, 70, 193, 0.16);
  background: #f3effb;
}

.current-chapter-card:nth-child(3) .current-chapter-card__brand {
  border-color: rgba(23, 33, 43, 0.12);
  background: #f1f2f3;
}

.current-chapter-card:nth-child(4) .current-chapter-card__brand {
  border-color: rgba(63, 111, 151, 0.18);
  background: linear-gradient(135deg, #f4faff 0%, #e7f2f9 100%);
}

.current-chapter-card__brand-link {
  transition: border-color var(--ease), transform var(--ease);
}

.current-chapter-card__brand-link:hover,
.current-chapter-card__brand-link:focus-visible {
  border-color: #a9bfce;
  transform: translateY(-2px);
}

.current-chapter-card__brand img {
  width: auto;
  max-width: 48px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: center;
}

.current-chapter-card__brand--tall img,
.current-chapter-card__brand--lpl img {
  width: auto;
  height: auto;
  max-height: 42px;
}

.current-chapter-card__brand--youtube {
  gap: 0;
}

.youtube-play-icon {
  width: 39px;
  height: 28px;
}

.current-chapter-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding-top: 0.12rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-transform: none;
}

.current-chapter-card p {
  grid-column: 2;
  grid-row: 2;
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

/* Timeline */
.year-ribbon {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--surface);
}

.year-ribbon__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.year-ribbon__head .kicker {
  margin-bottom: 0.7rem;
}

.year-ribbon__track {
  position: relative;
}

.moment-strip {
  display: grid;
  grid-auto-columns: minmax(260px, 31%);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.25rem 0.15rem 1.1rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.moment {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: 20px;
  color: #fff;
  background: #24333f;
  scroll-snap-align: start;
  isolation: isolate;
  transition: transform var(--ease);
}

.moment::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--moment-bg);
  background-position: var(--moment-position, center);
  background-size: cover;
  content: "";
  transition: transform 500ms ease;
}

.moment::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 28, 36, 0.05) 18%, rgba(18, 28, 36, 0.86) 100%);
  content: "";
}

.moment:hover,
.moment:focus-visible {
  transform: translateY(-3px);
}

.moment:hover::before,
.moment:focus-visible::before {
  transform: scale(1.025);
}

.moment__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moment h3 {
  max-width: 15ch;
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.moment > p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  line-height: 1.5;
}

.year-ribbon__control {
  position: absolute;
  right: 1rem;
  bottom: 2rem;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(23, 33, 43, 0.88);
  cursor: pointer;
}

.year-ribbon__control:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Journey */
.opening-spread {
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--surface-soft);
}

.opening-spread h1 {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.journey-page section[data-year] {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  scroll-margin-top: 74px;
}

.journey-page section[data-year]:nth-of-type(odd) {
  background: var(--surface);
}

.journey-page section[data-year]:nth-of-type(even) {
  background: var(--page);
}

.journey-page section[data-year] h2 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 4.7vw, 4.35rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.journey-page section[data-year] p:not(.kicker):not(.story-tag):not(.year-mark__year) {
  color: var(--muted);
}

.journey-page section[data-year] p + p {
  margin-top: 0.9rem;
}

.journey-anchor {
  position: absolute;
  top: 0;
  scroll-margin-top: 74px;
}

.year-mark__year {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.chapter-entry-title {
  display: grid;
  gap: 0.45rem;
}

.chapter-entry-title__age {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-shelf__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  grid-template-rows: auto auto 1fr;
  gap: 1.25rem clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.chapter-shelf__grid > .year-mark,
.chapter-shelf__grid > .chapter-entry-title,
.chapter-shelf__grid > .chapter-shelf__copy {
  grid-column: 1;
}

.chapter-shelf__grid > .archive-card,
.chapter-shelf__grid > .chapter-2023-media {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.archive-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #dfe5e9;
  box-shadow: 0 12px 36px rgba(28, 48, 65, 0.07);
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card--natural,
.archive-card--portrait {
  aspect-ratio: 4 / 5;
}

.archive-card--landscape,
.archive-card--wide {
  aspect-ratio: 16 / 10;
}

.archive-card--square {
  aspect-ratio: 1;
}

.resell-spread,
.chapter-column__grid,
.chapter-split__grid,
.chapter-band__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.resell-spread__intro,
.chapter-column__body,
.chapter-split__essay,
.chapter-band__lead-copy,
.chapter-2025-copy,
.chapter-dossier__body {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.resell-spread__intro .kicker,
.chapter-column__body > .kicker,
.chapter-split__essay > .kicker,
.chapter-band__lead-copy > .kicker,
.chapter-2025-heading > .kicker,
.chapter-dossier__title > .kicker {
  margin-bottom: 0.25rem;
}

.resell-spread__intro h2,
.chapter-column__body h2,
.chapter-split__essay h2,
.chapter-band__lead-copy h2,
.chapter-2025-heading h2,
.chapter-dossier__title h2 {
  margin-bottom: 0.75rem;
}

.resell-spread__photo-group {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.resell-spread__hero {
  grid-row: 1 / span 2;
}

.resell-spread__support {
  min-height: 0;
  aspect-ratio: auto;
}

.resell-spread__notes,
.annotation-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.annotation-panel,
.annotation-row__item,
.fact-line {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.annotation-panel p,
.annotation-row__item p,
.fact-line p {
  font-size: 0.86rem;
  line-height: 1.55;
}

.story-tag,
.fact-line > span {
  display: block;
  margin-bottom: 0.45rem;
}

.fact-line > span {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-column__markers {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.archive-stack,
.chapter-split__stack {
  display: grid;
  gap: 0.85rem;
}

.chapter-split__stack .annotation-row {
  margin-top: 0;
}

.chapter-band__inline-note {
  margin-top: 0.75rem;
}

.chapter-2023-gallery,
.chapter-2024-gallery,
.chapter-2025-gallery,
.chapter-2026-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.chapter-2023-gallery__hero,
.chapter-2024-gallery__hero,
.chapter-2025-gallery__wide,
.chapter-2026-media__hero {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.chapter-2023-gallery__support,
.chapter-2024-gallery__support,
.chapter-2025-gallery__support,
.chapter-2026-media__support {
  aspect-ratio: 1;
}

.chapter-2024-graduation {
  width: min(100%, 430px);
  margin: 1rem 0;
  aspect-ratio: 16 / 10;
}

.chapter-column__text {
  display: grid;
  gap: 0.85rem;
}

.chapter-column__text p + p {
  margin-top: 0 !important;
}

#year-2025 .chapter-split__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
}

.chapter-2025-heading,
.chapter-2025-copy {
  grid-column: 1;
}

.chapter-2025-media {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 0.8rem;
}

.chapter-2025-essay-image {
  aspect-ratio: 16 / 10;
}

.chapter-2025-notes {
  grid-column: 1 / -1;
}

.chapter-dossier__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 1.15fr);
  gap: 1.25rem clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.chapter-dossier__title,
.chapter-dossier__body {
  grid-column: 1;
}

.chapter-2026-media {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.chapter-2026-monogram {
  display: none;
}

/* Tools */
.tools-page {
  position: relative;
  isolation: isolate;
  background: #f4f6f8;
}

.tools-page::before {
  position: fixed;
  z-index: 0;
  inset: -16vh -10vw;
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0.3), rgba(244, 247, 249, 0.48)),
    url("assets/tools/london-leffler-banner.webp") center 24% / cover no-repeat;
  content: "";
  filter: blur(92px) saturate(0.92) brightness(1.2);
  opacity: 0.68;
  pointer-events: none;
  transform: scale(1.12);
}

.tools-page::after {
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 251, 244, 0.38), rgba(247, 249, 251, 0.1) 48%, rgba(238, 239, 255, 0.2)),
    linear-gradient(180deg, rgba(246, 248, 250, 0.28), rgba(246, 248, 250, 0.58));
  content: "";
  pointer-events: none;
}

.tools-page .page-wrap {
  position: relative;
  z-index: 1;
}

.tools-page .masthead {
  background: rgba(247, 249, 250, 0.84);
}

.tools-page main {
  width: min(calc(100% - 2rem), 760px);
  margin: clamp(1.25rem, 3vw, 2.2rem) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 34px 90px rgba(31, 42, 68, 0.16),
    0 8px 30px rgba(31, 42, 68, 0.08);
  backdrop-filter: blur(28px);
}

.tools-hero {
  padding: clamp(1.1rem, 2.4vw, 1.6rem) 0 clamp(1.15rem, 2vw, 1.6rem);
}

.tools-hero__grid {
  display: grid;
  max-width: 640px;
}

.creator-profile {
  color: var(--ink);
}

.creator-profile__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 181, 202, 0.52);
  border-radius: clamp(16px, 2.2vw, 23px);
  background: #10141b;
  box-shadow: 0 24px 60px rgba(32, 69, 96, 0.16);
}

.creator-profile__banner {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}

.creator-profile__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(7, 9, 12, 0.38));
  content: "";
  pointer-events: none;
}

.creator-subscribe {
  position: absolute;
  z-index: 2;
  top: clamp(0.8rem, 2vw, 1.25rem);
  left: clamp(0.8rem, 2vw, 1.25rem);
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: #151a20;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(4, 11, 20, 0.22);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.creator-subscribe span {
  color: #ff0033;
  font-size: 0.7rem;
}

.creator-subscribe:hover,
.creator-subscribe:focus-visible {
  background: #fff;
  box-shadow: 0 12px 32px rgba(4, 11, 20, 0.3);
  transform: translateY(-2px);
}

.creator-profile__identity {
  display: grid;
  justify-items: center;
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.creator-profile__avatar {
  position: relative;
  z-index: 2;
  width: clamp(88px, 10vw, 108px);
  height: clamp(88px, 10vw, 108px);
  margin-top: clamp(-54px, -5vw, -42px);
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: clamp(15px, 2vw, 20px);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.creator-profile__identity h1 {
  margin-top: 0.75rem;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.creator-profile__identity p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.7vw, 0.98rem);
}

.creator-youtube {
  display: grid;
  width: 124px;
  height: 42px;
  margin-top: 0.75rem;
  place-items: center;
  border: 1px solid rgba(195, 208, 217, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(31, 65, 89, 0.1);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.creator-youtube:hover,
.creator-youtube:focus-visible {
  border-color: rgba(103, 147, 180, 0.72);
  background: #fff;
  transform: translateY(-2px);
}

.creator-youtube__mark {
  display: block;
  width: 94px;
  height: 21px;
}

.creator-youtube__mark img {
  display: block;
  width: 94px;
  height: auto;
}

.tools-directory {
  padding: 0 0 clamp(1.7rem, 4vw, 2.5rem);
}

.tools-grid {
  display: grid;
  max-width: 640px;
  gap: 0.55rem;
}

.tool-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 0.85rem;
  min-height: 88px;
  padding: 0.5rem 0.7rem 0.5rem 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(200, 211, 219, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(28, 48, 65, 0.06);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.tool-card:hover,
.tool-card:focus-visible {
  border-color: #a9c1d2;
  box-shadow: 0 18px 40px rgba(28, 48, 65, 0.11);
  transform: translateY(-3px);
}

.tool-card__image {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 232, 0.85);
  border-radius: 13px;
  background: #fff;
}

.tool-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-card--shopify .tool-card__image img {
  object-fit: contain;
}

.tool-card__body {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
}

.tool-card__type {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-card__body strong {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.tool-card__body > span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.tool-card__arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--surface-soft);
  font-size: 0.92rem;
}

.tools-note {
  display: flex;
  max-width: 640px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.tools-note a {
  color: var(--blue-deep);
  font-weight: 650;
}

.tools-page .tailnote {
  border-top-color: rgba(255, 255, 255, 0.62);
  background: rgba(247, 249, 250, 0.68);
  backdrop-filter: blur(22px);
}

/* Contact */
.contact-sheet {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.contact-sheet__frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-sheet__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--surface-soft);
}

.contact-sheet__intro h1 {
  margin-top: 0.75rem;
  font-size: clamp(3rem, 6.4vw, 5.9rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.contact-sheet__headline-line {
  display: block;
}

.contact-sheet__deck {
  max-width: 540px;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-sheet__rule,
.contact-sheet__monogram {
  display: none;
}

.contact-portrait {
  overflow: hidden;
  border: 2px solid rgba(40, 79, 112, 0.34);
  border-radius: 22px;
  background: #dfe6eb;
}

.contact-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.contact-portrait figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.contact-inquiry {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  color: var(--ink);
  background: var(--page);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 0.9rem;
}

.contact-form textarea {
  min-height: 170px;
  padding: 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #91afc4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(63, 111, 151, 0.1);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.4rem;
}

.contact-form__direct {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.contact-form__mail-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--surface-soft);
  font-weight: 700;
}

.contact-form__direct p {
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-form__direct a {
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 650;
  word-break: break-word;
}

/* Footer */
.tailnote {
  padding: 3.2rem 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.tailnote__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.tailnote__copy {
  max-width: 370px;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.tailnote__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.tailnote__links a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tailnote__links a:hover,
.tailnote__links a:focus-visible {
  color: var(--ink);
}

@media (min-width: 901px) {
  .lead-panel__line {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .founder-biography-grid,
  .current-chapter-top,
  .contact-sheet__top,
  .chapter-shelf__grid,
  .resell-spread,
  .chapter-column__grid,
  .chapter-split__grid,
  .chapter-band__top,
  #year-2025 .chapter-split__grid,
  .chapter-dossier__lead {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-biography-grid {
    gap: 2.5rem;
  }

  .founder-biography-media {
    max-width: 540px;
    justify-self: start;
  }

  .current-chapter-top {
    align-items: start;
  }

  .current-chapter-heading h2 {
    white-space: normal;
  }

  .chapter-shelf__grid > *,
  .chapter-2025-heading,
  .chapter-2025-copy,
  .chapter-2025-media,
  .chapter-2025-notes,
  .chapter-dossier__title,
  .chapter-dossier__body,
  .chapter-2026-media {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .chapter-shelf__grid > .archive-card,
  .chapter-shelf__grid > .chapter-2023-media,
  .chapter-2025-media,
  .chapter-2026-media {
    margin-top: 1rem;
  }

  .chapter-2026-media {
    grid-row: 2 !important;
  }

  .chapter-dossier__body {
    grid-row: 3 !important;
  }

  .moment-strip {
    grid-auto-columns: minmax(270px, 72%);
  }

  .contact-sheet__media {
    width: min(100%, 430px);
  }
}

@media (max-width: 780px) {
  .masthead__inner {
    position: relative;
    min-height: 68px;
  }

  .menu-switch {
    display: inline-flex;
    align-items: center;
  }

  .chapter-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .chapter-nav.is-open {
    display: grid;
  }

  .chapter-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 11px;
  }

  .chapter-nav a:hover,
  .chapter-nav a:focus-visible,
  .chapter-nav a[aria-current="page"] {
    background: var(--surface-soft);
  }

  .chapter-nav a[aria-current="page"]::after {
    display: none;
  }

  .current-chapter-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .year-ribbon__head,
  .tools-note,
  .contact-form__footer,
  .tailnote__grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .year-ribbon__head {
    display: flex;
  }

  .year-ribbon__control {
    display: none;
  }

  .tool-card {
    grid-template-columns: 76px minmax(0, 1fr) 32px;
    gap: 0.85rem;
    min-height: 94px;
  }

  .tool-card__image {
    width: 76px;
    height: 76px;
    border-radius: 13px;
  }

  .tool-card__arrow {
    width: 30px;
    height: 30px;
  }

  .tailnote__links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1.1rem;
  }

  .founder-biography {
    padding-top: 3rem;
  }

  .lead-panel__primary h1 {
    font-size: clamp(calc(2.2rem - 3px), calc(9.4vw - 3px), calc(2.5rem - 3px));
  }

  .lead-panel__line {
    white-space: nowrap;
  }

  .career-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-index__item {
    padding: 0.9rem 0.72rem;
  }

  .career-index__item p {
    font-size: 0.55rem;
  }

  .note-rail,
  .current-chapter-intro,
  .annotation-row,
  .resell-spread__notes,
  .contact-form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-panel__actions .action-link {
    flex: 1 1 100%;
  }

  .current-chapter-section {
    padding-inline: var(--gutter);
  }

  .current-chapter-heading h2,
  .year-ribbon__head h2,
  .journey-page section[data-year] h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .current-chapter-heading h2 {
    font-size: clamp(2rem, 8.8vw, 2.35rem);
  }

  .current-chapter-card {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 0.9rem;
    padding: 1.1rem;
  }

  .current-chapter-card__brand {
    width: 62px;
    height: 62px;
    padding: 0.65rem;
    border-radius: 15px;
  }

  .current-chapter-card__brand img {
    max-width: 100%;
    max-height: 40px;
  }

  .moment-strip {
    grid-auto-columns: 88%;
  }

  .moment {
    min-height: 360px;
  }

  .resell-spread__photo-group,
  .chapter-2023-gallery,
  .chapter-2024-gallery,
  .chapter-2025-gallery,
  .chapter-2026-media {
    grid-template-columns: minmax(0, 1fr);
  }

  .resell-spread__hero,
  .chapter-2023-gallery__hero,
  .chapter-2024-gallery__hero,
  .chapter-2025-gallery__wide,
  .chapter-2026-media__hero {
    grid-column: 1;
    grid-row: auto;
  }

  .resell-spread__support,
  .chapter-2023-gallery__support,
  .chapter-2024-gallery__support,
  .chapter-2025-gallery__support,
  .chapter-2026-media__support {
    aspect-ratio: 16 / 10;
  }

  .tool-card {
    grid-template-columns: 70px minmax(0, 1fr) 28px;
    gap: 0.8rem;
    min-height: 88px;
    padding: 0.6rem 0.7rem 0.6rem 0.6rem;
    border-radius: 18px;
  }

  .tool-card__image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
  }

  .tool-card__body strong {
    font-size: 1.02rem;
  }

  .tool-card__body > span:last-child {
    font-size: 0.79rem;
  }

  .tool-card__type {
    font-size: 0.57rem;
  }

  .tool-card__arrow {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }

  .contact-sheet__frame {
    border-radius: 22px;
  }

  .contact-sheet__top,
  .contact-inquiry {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
