/* ==========================================================================
   Shegx / Olusegun Adewole portfolio
   Neo-brutalist system: hard borders, offset shadows, Anton display type,
   with collage accents: scribbles, tape, torn-paper edges, tilted photos.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink: #101418;
  --ink-soft: #3a4048;
  --ink-muted: #6a7078;
  --paper: #ffffff;
  --paper-warm: #FAF9F4;
  --yellow: #F5D336;
  --blue: #1D5FD1;
  --blue-deep: #174FB5;
  --on-dark: #c9cdd3;
  --on-dark-strong: #e6e8ea;

  --font-display: "Anton", "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --tape: rgba(245, 211, 54, .68);
  --tape-edge: rgba(16, 20, 24, .18);

  --border: 3px solid var(--ink);
  --container: 1240px;
  --header-offset: 90px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

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

p { margin: 0; }

section { scroll-margin-top: var(--header-offset); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--yellow);
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Animations ---------- */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); } /* 4 identical copies: 1/4 is exact, no drift */
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.anim-up { animation: hero-up .7s cubic-bezier(.22, 1, .36, 1) var(--delay, 0s) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Shared: kickers, titles, chips, buttons ---------- */
.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.kicker--small { font-size: 10px; letter-spacing: .14em; }
.kicker--yellow { color: var(--yellow); }
.kicker--ink { color: var(--ink); }

.section-title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 760px;
}

.section-lede {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  text-wrap: pretty;
}

.chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(16, 20, 24, .07);
  color: var(--ink-soft);
  white-space: nowrap;
}
.chip--tiny { font-size: 10px; padding: 6px 13px; }
.chip--blue { background: rgba(29, 95, 209, .12); color: var(--blue); }
.chip--ghost { background: rgba(255, 255, 255, .14); color: var(--on-dark-strong); }
.chip--yellow { background: var(--yellow); color: var(--ink); }
.chip--ink { background: var(--ink); color: var(--yellow); }

.chip--sticker {
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 2px 3px 0 rgba(16, 20, 24, .3);
  transform: rotate(-2.5deg);
}

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn--small { font-size: 12px; padding: 10px 18px; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-deep); }
.btn--blue:focus-visible { outline-color: var(--yellow); }
.btn--white { background: #fff; color: var(--ink); }
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 3px 3px 0 rgba(16, 20, 24, .45);
}
.btn--outline:hover {
  background: #fff;
  color: var(--blue);
  box-shadow: 5px 5px 0 rgba(16, 20, 24, .45);
}
.btn--outline:focus-visible { outline-color: var(--yellow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
}
.site-header__logo span { color: var(--blue); }
.site-header__logo-mark { width: 28px; height: 28px; }

.site-nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 2px;
  white-space: nowrap;
  transition: color .16s ease;
}
.site-nav a:hover { color: var(--blue); }
.site-nav a:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* Scroll-spy: marker underline on the section currently in view */
.site-nav a.is-current { color: var(--blue); }
.site-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: -3px;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
  transform: rotate(-1.2deg);
}

/* Hamburger toggle: hidden on desktop, shown under 720px */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.nav-toggle:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.nav-toggle:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.progress { height: 5px; background: var(--ink); }
.progress__fill { height: 100%; width: 0; background: var(--yellow); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
}

.hero__copy {
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero__badges, .hero__tags { display: flex; gap: 10px; flex-wrap: wrap; }

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 96px);
  line-height: .92;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__scrawl {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: -10px 0 -6px 12px;
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  transform: rotate(-4deg);
}
.hero__scrawl svg { width: 40px; height: 30px; flex-shrink: 0; margin-top: -10px; }

.hero__lede {
  font-size: 19px;
  line-height: 1.5;
  max-width: 480px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.highlight {
  color: var(--ink);
  background: linear-gradient(transparent 55%, var(--yellow) 55%);
}

.hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero__media {
  position: relative;
  min-height: 580px;
  background: var(--blue);
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  animation: kenburns 16s ease-in-out infinite alternate;
}
.hero__slide.is-active { opacity: 1; }

.hero__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--yellow);
  z-index: 2;
}

.hero__number {
  position: absolute;
  right: 24px;
  top: 20px;
  font-family: var(--font-display);
  font-size: 130px;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--ink);
  z-index: 2;
}

.hero__dots {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero__dots button {
  width: 28px;
  height: 9px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease;
}
.hero__dots button.is-active { background: var(--yellow); }
.hero__dots button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.hero__note {
  position: absolute;
  left: 34px;
  bottom: 28px;
  background: #fff;
  border: var(--border);
  box-shadow: 6px 6px 0 var(--yellow);
  padding: 20px 22px;
  max-width: 320px;
  z-index: 2;
}
.hero__note::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 28px;
  width: 86px;
  height: 26px;
  background: var(--tape);
  border: 1px solid var(--tape-edge);
  transform: rotate(-4deg);
}

.hero__note-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero__note-title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.1;
}
.hero__note-body {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee__seq { display: flex; align-items: center; flex: none; }
.marquee__seq span,
.marquee__seq em {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  font-style: normal;
  white-space: nowrap;
  padding: 0 9px;
}
.marquee__seq em { color: var(--yellow); }

/* ---------- Metrics ---------- */
.metrics-wrap { padding-top: 40px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border);
}

.metric {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .18s ease;
}
.metric:not(:last-child) { border-right: var(--border); }
.metric:hover { background: var(--paper-warm); }

.metric__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--blue);
}
.metric__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.metric__body { font-size: 13px; line-height: 1.5; color: var(--ink-muted); }

.metric--dark { background: var(--ink); color: #fff; }
.metric--dark:hover { background: var(--ink); }
.metric--dark .metric__num, .metric--dark .metric__label { color: var(--yellow); }
.metric--dark .metric__body { color: var(--on-dark); }

/* ---------- Dual track ---------- */
.dual-track {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.dual-track__intro { display: flex; flex-direction: column; gap: 18px; }
.dual-track__intro .section-title, .dual-track__intro .section-lede { margin-top: 0; }

.dual-track__photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: var(--border);
  box-shadow: 8px 8px 0 var(--yellow);
}

.dual-track__lanes { display: flex; flex-direction: column; gap: 24px; }

.lane {
  border: var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lane:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--yellow); }
.lane p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); text-wrap: pretty; }

.lane__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
}
.lane__title--yellow { color: var(--yellow); }

.lane--dark { background: var(--ink); color: #fff; }
.lane--dark:hover { box-shadow: 8px 8px 0 var(--blue); }
.lane--dark p { color: var(--on-dark); }

/* ---------- Roles ---------- */
.roles {
  background: var(--yellow);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 80px 0;
}

.roles__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 28px;
}
.roles__head .section-title { max-width: 720px; }

.roles__cta {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 3px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s ease, border-color .16s ease;
}
.roles__cta:hover { color: var(--blue); border-color: var(--blue); }
.roles__cta:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.roles__filters { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }

.roles__filters button {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform .14s ease, background .14s ease, color .14s ease;
}
.roles__filters button:hover { transform: translateY(-2px); }
.roles__filters button:active { transform: translateY(0); }
.roles__filters button:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.roles__filters button.is-active { background: var(--ink); color: var(--yellow); }

.roles__feature {
  border: var(--border);
  background: var(--ink);
  color: #fff;
  padding: 32px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  box-shadow: 8px 8px 0 rgba(16, 20, 24, .25);
}

.roles__feature-num {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: .9;
  color: var(--yellow);
  text-transform: uppercase;
}

.roles__feature-copy { display: flex; flex-direction: column; gap: 10px; }

.roles__feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  text-transform: uppercase;
  line-height: 1;
}

.roles__feature-detail {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-dark);
  max-width: 560px;
  text-wrap: pretty;
}

.roles__feature-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.roles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* Long row cards: media pinned left, body defines the card height */
.role-card {
  position: relative;
  border: var(--border);
  background: #fff;
  display: block;
  min-height: 240px;
  padding: 0 0 0 320px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: transform .2s ease, box-shadow .2s ease;
}
.role-card:hover { transform: translate(-3px, -3px); }
.role-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.role-card.is-active { box-shadow: 8px 8px 0 var(--blue); }

.role-card__media {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  height: 100%;
  object-fit: cover;
  border-right: var(--border);
}

.role-card__media--logo {
  object-fit: cover;
  background: var(--ink);
}

.role-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.05;
  padding: 20px;
}

/* Handwritten "active" note, pinned to the card's top-right corner */
.role-card__status {
  position: absolute;
  top: -12px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 2px 2px 0 rgba(16, 20, 24, .3);
  font-family: var(--font-script);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  transform: rotate(2deg);
}
.role-card__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--ink);
}

.role-card__body {
  min-height: 240px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.role-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
}

.role-card__summary {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.role-card__focus {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}

/* ---------- Brands / Experience ---------- */
.brands {
  background: var(--paper-warm);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 72px 0;
}

.brands__head { margin-bottom: 36px; }
.brands__head .section-title { max-width: 640px; }
.brands__head .section-lede { margin-top: 14px; }

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Logo + name sticker cards: 2-col 1-row, logos shown whole */
.brand-sticker {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 16px 22px;
  background: #fff;
  border: var(--border);
  box-shadow: 3px 4px 0 rgba(16, 20, 24, .28);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand-sticker:nth-child(3n+1) { --tilt: -1.2deg; }
.brand-sticker:nth-child(3n+2) { --tilt: .9deg; }
.brand-sticker:nth-child(3n+3) { --tilt: -.7deg; }
.brand-sticker:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--yellow);
}

.brand-sticker__logo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-sticker__name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--ink);
}

/* ---------- Journey ---------- */
.journey {
  background: var(--paper-warm);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 80px 0;
}

.journey__steps {
  max-width: 980px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journey-step {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}
.journey-step:nth-of-type(even) .journey-step__media { order: 2; }

.journey-step__media {
  position: relative;
  background: #fff;
  border: var(--border);
  padding: 10px 10px 12px;
  box-shadow: 4px 5px 0 rgba(16, 20, 24, .18);
  transform: rotate(-1.4deg);
}
.journey-step:nth-of-type(even) .journey-step__media { transform: rotate(1.2deg); }
.journey-step__media::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 90px;
  height: 26px;
  background: var(--tape);
  border: 1px solid var(--tape-edge);
  transform: translateX(-50%) rotate(-3deg);
  z-index: 2;
}
.journey-step:nth-of-type(even) .journey-step__media::before { transform: translateX(-50%) rotate(3deg); }

.journey-step__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

/* Portrait exception: the captain photo's armband sits low in the frame, so a
   wide 260px crop can never show it. Let this one keep a taller 4/5 crop. */
.journey-step__media--portrait img {
  height: auto;
  aspect-ratio: 4 / 5;
}

.journey-step__copy { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.journey-step__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
}

.journey-step__copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
  text-wrap: pretty;
}

.journey__connector {
  width: 110px;
  height: 64px;
  margin: 2px auto;
  display: block;
  color: var(--blue);
}
.journey__connector--flip { transform: scaleX(-1); }
.journey__connector-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 6;
}
.journey__connector-head {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Match tapes ---------- */
.tapes {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.tapes__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: var(--border);
  margin-bottom: 32px;
}

.tapes__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
}

.tapes__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 22px;
}
@media (min-width: 600px) {
  .tapes__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
}

/* Viewfinder/screen-bezel treatment: thick ink frame, REC badge, caption as a film-strip bar. */
.tape-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: var(--border);
  background: var(--ink);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  box-shadow: 5px 5px 0 rgba(16, 20, 24, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tape-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--yellow);
  z-index: 3;
}
.tape-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.tape-card::before {
  content: "\25cf REC";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 4px 8px;
  z-index: 2;
}

.tape-card::after {
  content: "▶ Play";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 10px 16px;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  z-index: 10;
}
.tape-card:hover::after,
.tape-card:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tape-card__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.tape-card__info {
  display: none;
}

.tape-card__title {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-strong);
  background: rgba(16, 20, 24, .55);
  position: relative;
  z-index: 2;
}

.tape-card__detail {
  display: none;
}

/* ---------- Best fit ---------- */
.fit { padding-top: 80px; padding-bottom: 80px; }
.fit .section-title { margin-bottom: 36px; }

.fit__panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: var(--border);
}

.fit__tabs {
  display: flex;
  flex-direction: column;
  border-right: var(--border);
}

.fit__tabs button {
  font-family: var(--font-body);
  text-align: left;
  flex: 1;
  padding: 22px 24px;
  border: none;
  border-bottom: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  transition: background .16s ease, color .16s ease, padding-left .16s ease;
}
.fit__tabs button:hover { padding-left: 30px; }
.fit__tabs button:focus-visible { outline: 3px solid var(--blue); outline-offset: -4px; }
.fit__tabs button:last-child { border-bottom: none; }

.fit__tab-label {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.fit__tab-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}

.fit__tabs button.is-active { background: var(--blue); color: #fff; }
.fit__tabs button.is-active .fit__tab-kicker { color: var(--yellow); }

.fit__detail {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
}

.fit__detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.fit__label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
}

.fit__kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 6px;
}

.fit__brings {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  text-wrap: pretty;
}

.fit__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.fit__col { border-top: var(--border); padding-top: 14px; }
.fit__col .chip-row { margin-top: 10px; }

.fit__col-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Writing ---------- */
.writing {
  background: var(--paper-warm);
  border-top: var(--border);
  padding: 80px 0;
}

.writing__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}

.writing__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

/* Featured post as a press clipping: paper scrap, tape, torn bottom edge */
.post-featured {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transform: rotate(-.5deg);
  filter: drop-shadow(4px 5px 0 rgba(16, 20, 24, .22));
  clip-path: polygon(
    0 -28px, 100% -28px,
    100% calc(100% - 12px),
    96% 100%, 91% calc(100% - 10px), 86% calc(100% - 2px), 81% calc(100% - 13px),
    76% calc(100% - 4px), 71% calc(100% - 11px), 66% calc(100% - 2px), 61% calc(100% - 12px),
    56% calc(100% - 5px), 51% calc(100% - 13px), 46% calc(100% - 3px), 41% calc(100% - 10px),
    36% calc(100% - 2px), 31% calc(100% - 12px), 26% calc(100% - 4px), 21% calc(100% - 11px),
    16% calc(100% - 2px), 11% calc(100% - 13px), 6% calc(100% - 5px), 2% calc(100% - 10px),
    0 calc(100% - 3px)
  );
  transition: transform .2s ease, filter .2s ease;
}
.post-featured:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  filter: drop-shadow(8px 8px 0 var(--yellow));
}
.post-featured::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 26px;
  background: var(--tape);
  border: 1px solid var(--tape-edge);
  transform: translateX(-50%) rotate(-3deg);
  z-index: 2;
}

.post-featured__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: var(--border);
}

.post-featured__body {
  padding: 26px 26px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-featured__meta { display: flex; gap: 10px; align-items: center; }

.post-featured__badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
}

.post-date {
  font-family: var(--font-script);
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-muted);
}

.post-featured__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}

.post-featured__snippet {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.post-featured__link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}

.writing__list { display: flex; flex-direction: column; gap: 20px; }

.post-row {
  position: relative;
  border: var(--border);
  background: #fff;
  display: flex;
  text-decoration: none;
  color: var(--ink);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-row:hover { transform: rotate(0deg) translate(-3px, -3px); box-shadow: 6px 6px 0 var(--yellow); }
.writing__list .post-row:nth-child(odd) { --tilt: -.5deg; }
.writing__list .post-row:nth-child(even) { --tilt: .6deg; }
.post-row::after {
  content: "";
  position: absolute;
  top: -9px;
  left: -16px;
  width: 62px;
  height: 20px;
  background: var(--tape);
  border: 1px solid var(--tape-edge);
  transform: rotate(-35deg);
  z-index: 2;
}

.post-row__img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  object-fit: cover;
  border-right: var(--border);
}

.post-row__body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-width: 0;
}
.post-row__body .post-date { font-size: 17px; }

.post-row__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.writing__more {
  border: var(--border);
  background: var(--ink);
  color: #fff;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.writing__more-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--yellow);
}

.writing__more a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 3px;
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Philosophy ---------- */
.philosophy { background: var(--ink); color: #fff; }

.philosophy__inner {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.philosophy__photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 3px solid var(--yellow);
}

.philosophy__copy { display: flex; flex-direction: column; gap: 20px; }
.philosophy__copy p { font-size: 16px; line-height: 1.65; color: var(--on-dark); text-wrap: pretty; }

.philosophy__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--blue);
  color: #fff;
  border-top: var(--border);
}

.contact__inner {
  padding-top: 80px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

.contact__copy { display: flex; flex-direction: column; gap: 22px; }
.contact__copy p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255, 255, 255, .85);
  text-wrap: pretty;
}

.contact__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: .98;
  text-transform: uppercase;
  text-wrap: balance;
}
.contact__title span { color: var(--yellow); }

.contact__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.contact__scrawl {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: -4px 0 -8px 4px;
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  transform: rotate(-3deg);
}
.contact__scrawl svg { width: 38px; height: 32px; flex-shrink: 0; margin-top: 6px; }

/* Taped polaroid cluster: now the right-column visual of the contact block */
.contact__snaps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__snaps img {
  width: 244px;
  height: 234px;
  object-fit: cover;
  background: #fff;
  padding: 10px 10px 30px;
  border: 2px solid var(--ink);
  box-shadow: 6px 7px 0 rgba(16, 20, 24, .35);
}
.contact__snaps img:first-child { transform: rotate(-5deg); z-index: 1; }
.contact__snaps img:last-child { transform: rotate(4deg); margin: 34px 0 0 -44px; }
.contact__snaps::before,
.contact__snaps::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 24px;
  background: var(--tape);
  border: 1px solid var(--tape-edge);
  z-index: 2;
}
.contact__snaps::before { top: -4px; left: calc(50% - 120px); transform: rotate(-8deg); }
.contact__snaps::after { top: 22px; left: calc(50% + 46px); transform: rotate(6deg); }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper); border-top: var(--border); }

.site-footer__inner {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer__brand { display: flex; flex-direction: column; gap: 8px; }

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
}
.site-footer__logo span { color: var(--blue); }
.site-footer__logo-mark { width: 28px; height: 28px; }

.site-footer__tag { font-size: 13px; color: var(--ink-muted); max-width: 300px; }

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.site-footer__social a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--blue);
  color: #fff;
}
.site-footer__social a:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.site-footer__social a:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.site-footer__social svg { width: 20px; height: 20px; display: block; }

.site-footer__nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer__nav a { color: var(--ink); text-decoration: none; transition: color .16s ease; }
.site-footer__nav a:hover { color: var(--blue); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--ink);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  display: none;
}
.toast.is-visible {
  display: block;
  animation: toast-in .25s cubic-bezier(.22, 1, .36, 1) both;
}

/* ---------- Galleries (Big Ben, football highlights) ---------- */
.gallery { padding: 80px 0; }

/* Framed variant (football highlights): warm bg, torn top edge, landscape tiles */
.gallery--framed {
  background: var(--paper-warm);
  border-bottom: var(--border);
}
.gallery--framed .gallery__item img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.gallery__head { position: relative; margin-bottom: 36px; }
.gallery__head .section-lede { margin-top: 14px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 26px;
}

/* Taped polaroid treatment: white frame, slight tilt, tape strip on top */
.gallery__item {
  position: relative;
  display: block;
  padding: 12px 12px 16px;
  border: var(--border);
  background: #fff;
  cursor: pointer;
  overflow: visible;
  box-shadow: 4px 5px 0 rgba(16, 20, 24, .18);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery__item:nth-child(6n+1) { --tilt: -1.6deg; }
.gallery__item:nth-child(6n+2) { --tilt: 1.2deg; }
.gallery__item:nth-child(6n+3) { --tilt: -.8deg; }
.gallery__item:nth-child(6n+4) { --tilt: 1.7deg; }
.gallery__item:nth-child(6n+5) { --tilt: -1.1deg; }
.gallery__item:nth-child(6n+6) { --tilt: .9deg; }
.gallery__item:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--yellow);
  z-index: 3;
}
.gallery__item:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.gallery__item::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 96px;
  height: 28px;
  background: var(--tape);
  border: 1px solid var(--tape-edge);
  transform: translateX(-50%) rotate(var(--tape-tilt, -3deg));
  z-index: 2;
}
.gallery__item:nth-child(even)::before { --tape-tilt: 3deg; }

.gallery__item img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border: 2px solid var(--ink);
}

.gallery__caption,
.journey-step__caption {
  display: block;
  margin-top: 10px;
  font-family: var(--font-script);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-soft);
  text-align: center;
  transform: rotate(-1.2deg);
}

.gallery__item::after {
  content: "View";
  position: absolute;
  right: 22px;
  bottom: 60px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 6px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; transform: translateY(0); }

/* ---------- Collage accents: scribbles, doodles, torn edges ---------- */
.scribble-circle { position: relative; display: inline-block; }
.scribble-circle svg {
  position: absolute;
  left: -7%;
  top: -16%;
  width: 114%;
  height: 132%;
  overflow: visible;
  pointer-events: none;
}
.scribble-circle path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: .9;
}
.scribble-circle--num svg { left: -34%; top: -8%; width: 168%; height: 116%; }
.scribble-circle--num path { stroke: var(--ink); stroke-width: 4; opacity: .75; }

.gallery__doodle {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 72px;
  height: 72px;
  color: var(--blue);
  transform: rotate(12deg);
}
.gallery__doodle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.torn {
  display: block;
  height: 40px;
  margin-bottom: -1px; /* Overlap to remove gap */
  position: relative;
  z-index: 2;
  overflow: hidden; /* clip the displacement filter so it can't bleed into adjacent sections */
}
.torn svg { display: block; width: 100%; height: 100%; overflow: hidden; }
.torn--to-warm { background: var(--paper-warm); color: var(--paper); }
.torn--to-ink { background: var(--ink); color: var(--paper-warm); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(16, 20, 24, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; animation: fade-in .2s ease both; }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
  max-width: 80vw;
  max-height: 70vh;
  border: 3px solid var(--yellow);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .4);
}
.lightbox__img[hidden] { display: none; }

.lightbox__video {
  max-width: 80vw;
  max-height: 70vh;
  border: 3px solid var(--yellow);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .4);
  background: #000;
}
.lightbox__video[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.lightbox__close:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.lightbox__close:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-family: var(--font-body);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.lightbox__nav:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.lightbox__nav:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__nav[hidden] { display: none; }

.lightbox__thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 16px;
  overflow-x: auto;
  z-index: 2;
}
.lightbox__thumbs[hidden] { display: none; }

.lightbox__thumb {
  flex: 0 0 auto;
  width: 68px;
  height: 50px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .4);
  background: none;
  cursor: pointer;
  opacity: .55;
  transition: opacity .16s ease, border-color .16s ease;
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox__thumb:hover { opacity: .85; }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--yellow); }
.lightbox__thumb:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  /* Hamburger nav on tablet and below; logo left, CTA + burger hug right */
  .nav-toggle { display: flex; }
  .site-header__inner { gap: 12px; }
  .site-header__inner > .btn { margin-left: auto; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: var(--border);
    padding: 6px 20px 18px;
    box-shadow: 0 12px 0 rgba(16, 20, 24, .12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: .03em;
    padding: 13px 2px;
    border-bottom: 1px solid rgba(16, 20, 24, .12);
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a.is-current::after {
    left: 2px;
    right: auto;
    width: 46px;
    bottom: 9px;
  }

  .hero { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 320px 1fr; gap: 36px; }
  .hero__media { min-height: 480px; }
  .dual-track { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(-n+2) { border-bottom: var(--border); }
  .role-card { padding-left: 250px; }
  .role-card__media { width: 250px; }
  .roles__feature { grid-template-columns: 1fr; gap: 20px; }
  .roles__feature-tags { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
  .philosophy__inner, .contact__inner { grid-template-columns: 1fr; }
  .writing__grid { grid-template-columns: 1fr; }
  .fit__panel { grid-template-columns: 1fr; }
  .fit__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--ink);
    border-right: none;
    border-bottom: var(--border);
  }
  .fit__tabs button { flex: none; border: none; padding: 16px 18px; }
  .fit__tabs button:hover { padding-left: 18px; }
  .brands__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .hero__copy { padding: 44px 20px; }
  .hero__number { font-size: 84px; }
  .hero__note { left: 20px; right: 20px; max-width: none; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: none !important; }
  .metric:not(:last-child) { border-bottom: var(--border); }
  .roles__head, .writing__head { flex-direction: column; align-items: flex-start; }
  .role-card { padding-left: 0; min-height: 0; }
  .role-card__media {
    position: static;
    width: 100%;
    height: 220px;
    border-right: none;
    border-bottom: var(--border);
  }
  .role-card__body { min-height: 0; }
  .fit__columns { grid-template-columns: 1fr; }
  .fit__detail { padding: 22px; }
  .fit__detail-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fit__label { font-size: 34px; }
  .fit__tab-label { font-size: 20px; }
  /* Stickers hug their content and wrap like a real sticker sheet */
  .brands__grid { display: flex; flex-wrap: wrap; gap: 12px; }
  .brand-sticker { min-height: 0; padding: 10px 16px; gap: 12px; }
  .brand-sticker__logo { width: 44px; height: 44px; }
  .brand-sticker__name { font-size: 19px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item img { height: 400px; }
  .gallery__doodle { display: none; }
  .torn { height: 26px; }
  .hero__scrawl { margin-left: 4px; }
  .journey-step { grid-template-columns: 1fr; gap: 24px; }
  .journey-step:nth-of-type(even) .journey-step__media { order: 0; }
  .journey__connector { width: 80px; height: 48px; }
  .tapes { padding: 20px 18px 8px; }
  .tape-card__video { height: 190px; }
  .contact__snaps { margin-top: 8px; }
  .contact__snaps img { width: 190px; height: 184px; }
  .contact__snaps img:last-child { margin: 26px 0 0 -34px; }
  .contact__snaps::before { left: calc(50% - 96px); }
  .contact__snaps::after { left: calc(50% + 30px); }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__right { align-items: flex-start; }
  .site-footer__nav { justify-content: flex-start; }
}
