/* ==========================================================================
   Supply Media, agency site
   Design language carried over from builtbysupply.com:
   black canvas, white type, Inter Display + Libre Caslon Text italic accents,
   full-bleed editorial photography, hairline rules, oversized display type.
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  --bg:            #000;
  --bg-raised:     #0d0d0d;
  --bg-raised-2:   #141414;
  --fg:            #fff;
  --fg-muted:      #b0b0b0;
  --fg-dim:        #888;
  --line:          rgba(255,255,255,.14);
  --line-strong:   rgba(255,255,255,.32);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: "Libre Caslon Text", "Times New Roman", Georgia, serif;

  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --max: 1600px;
  --section-y: clamp(5rem, 11vw, 11rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .6s;
}

/* --- Base ----------------------------------------------------------------- */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-size: clamp(1rem, .95rem + .2vw, 1.0625rem);
  line-height: 1.55;
  overflow-x: hidden;
}
::selection { background: #fff; color: #000; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.rule { height: 1px; background: var(--line); border: 0; }

/* --- Typography ----------------------------------------------------------- */
.display {
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.display em, .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
}
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.03em; line-height: 1.05; text-wrap: balance; }

.h-xl { font-size: clamp(2.75rem, 7.5vw, 7rem); line-height: .9; letter-spacing: -.045em; }
.h-lg { font-size: clamp(2.25rem, 5.2vw, 4.5rem); line-height: .95; letter-spacing: -.04em; }
.h-md { font-size: clamp(1.75rem, 3.2vw, 2.75rem); line-height: 1.05; }
.h-sm { font-size: clamp(1.25rem, 1.8vw, 1.625rem); line-height: 1.2; }

.lede { font-size: clamp(1.125rem, 1.6vw, 1.5rem); line-height: 1.45; color: var(--fg); letter-spacing: -.015em; }
.body-muted { color: var(--fg-muted); }
.small { font-size: .875rem; line-height: 1.5; }

.eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.eyebrow--rule { display: flex; align-items: center; gap: 1rem; }
.eyebrow--rule::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* --- Links & buttons ------------------------------------------------------ */
.link-u {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: .12em;
  transition: border-color .3s var(--ease), opacity .3s var(--ease);
}
.link-u:hover { border-color: #fff; }

.btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: #fff; color: #000; border-color: #fff; }
.btn--solid { background: #fff; color: #000; border-color: #fff; }
.btn--solid:hover { background: transparent; color: #fff; border-color: var(--line-strong); }
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* --- Nav ------------------------------------------------------------------ */
/* The original places the navbar AFTER the hero in the document and sticks it to
   the top: it sits under the opening section and pins once you scroll to it. */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem var(--gutter);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* Logo is the real wordmark asset at the original site's size (135px wide),
   not type set in CSS — the kerning of the actual mark can't be reproduced. */
.nav__logo { display: block; flex: 0 0 auto; line-height: 0; }
.nav__logo img { width: 135px; height: auto; display: block; }
@media (max-width: 860px) { .nav__logo img { width: 124px; } }

.nav__links { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.5rem); }
.nav__links a {
  font-size: 1.25rem; font-weight: 500; letter-spacing: -.4px; line-height: 1.2;
  opacity: .82; transition: opacity .25s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { opacity: 1; }
.nav__right { display: flex; align-items: center; gap: 1.25rem; }

/* The nav call to action is a pill button; it steps down a little so it does not
   outweigh the 20px nav links beside it. */
.nav__cta { padding: .7rem 1.25rem; font-size: .75rem; }
@media (max-width: 40rem) { .nav__cta { display: none; } }   /* the drawer carries it below this */

/* Footer keeps the same mark, a touch larger */
.footer__brand .nav__logo img { width: 150px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer;
}
.nav__toggle span { display: block; width: 16px; height: 1px; background: #fff; position: relative; transition: background .2s; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1px; background: #fff;
  transition: transform .3s var(--ease);
}
.nav__toggle span::before { top: -5px; }
.nav__toggle span::after  { top: 5px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.menu {
  position: fixed; inset: 0; z-index: 99;
  background: #000;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-size: clamp(2rem, 9vw, 3.25rem); font-weight: 700; letter-spacing: -.04em;
  padding-block: .35em; border-bottom: 1px solid var(--line);
}
.menu a:last-of-type { border-bottom: 0; }
.menu__foot { margin-top: 2.5rem; color: var(--fg-dim); }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; will-change: transform; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 32%, rgba(0,0,0,.12) 60%, rgba(0,0,0,.85) 100%),
    linear-gradient(to right, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 55%);
}
/* The original does NOT scale the wordmark with the viewport. It is a fixed size
   inside a 1440px centred container, so past 1440px the whole hero shifts right
   with the container rather than growing. Measured: "Supply" is 761px wide at
   every width from 992px up, and its left edge is (viewport - 1440)/2 + 29. */
.hero__type {
  position: relative; z-index: 2;
  width: 100%; max-width: 1440px; margin-inline: auto;
  padding: 43px 20px 0;
  flex: 1; display: flex; align-items: flex-start;
}
.hero__wordmark { font-size: 16rem; line-height: .78; }
/* 'Media' sits left of 'Supply' and bleeds toward the edge, as on the original */
.hero__wordmark .l2 { display: block; margin-left: -.125em; margin-top: .155em; }

.hero__foot {
  position: relative; z-index: 2;
  width: 100%; max-width: 1440px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr minmax(0, 26.5rem) 1fr;
  align-items: center; gap: 2rem;
  padding: 0 21px clamp(1.25rem, 2.2vw, 1.75rem);
}
/* The hero foot is set white and tight, unlike the grey eyebrows used elsewhere */
.hero__foot .eyebrow {
  color: #fff; font-size: 1rem; font-weight: 600; letter-spacing: 0; line-height: 1.2;
  text-align: left;
}
.hero__foot .hero__blurb {
  font-size: 1rem; line-height: 1.35; font-weight: 600; color: #fff;
  text-align: center;
}
.hero__scroll {
  justify-self: end;
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1rem; letter-spacing: 0; white-space: nowrap;
}
.hero__scroll svg { animation: nudge 2.2s var(--ease) infinite; }
/* Step sizes, matching the original's breakpoints rather than scaling fluidly */
@media (max-width: 991px) { .hero__wordmark { font-size: 12.8rem; } .hero__type { padding-top: 46px; } }
@media (max-width: 600px) { .hero__wordmark { font-size: 8.25rem; } .hero__type { padding-top: 37px; } }
@media (max-width: 479px) { .hero__wordmark { font-size: 6.5rem; } }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* --- Client logo wall ------------------------------------------------------ */
/* Flex rather than grid: the roster is an odd number, and a centred final row
   reads better than a ragged one. */
.logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  border-block: 1px solid var(--line);
}
.logos__cell {
  flex: 0 0 50%;
  display: grid; place-items: center;
  min-height: clamp(6rem, 8vw, 8.5rem);
  padding: 1.5rem clamp(1rem, 2vw, 2.25rem);
}
@media (min-width: 40rem) { .logos__cell { flex-basis: 33.3333%; } }
@media (min-width: 64rem) { .logos__cell { flex-basis: 20%; } }
.logos__cell img {
  max-height: clamp(1.5rem, 2.3vw, 2.25rem);
  width: auto; max-width: 100%;
  opacity: .72;
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.logos:hover .logos__cell img { opacity: .4; }
.logos__cell:hover img { opacity: 1; transform: scale(1.04); }
/* Tall or square marks need more height to read at the same optical size. */
.logos__cell--tall img { max-height: clamp(2.5rem, 3.8vw, 3.5rem); }

/* --- Two-column intro ----------------------------------------------------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.split--top { align-items: start; }
.stack-lg > * + * { margin-top: 1.5rem; }
.stack > * + * { margin-top: 1rem; }

/* --- Full-bleed image break ------------------------------------------------ */
.bleed {
  position: relative;
  height: clamp(24rem, 72vh, 46rem);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.bleed--tall { height: clamp(30rem, 92vh, 58rem); }
.bleed__media { position: absolute; inset: -12% 0; }
.bleed__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.bleed__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.2) 45%, rgba(0,0,0,.75));
}
/* A bleed carrying headline type needs a guaranteed-legible scrim over the
   middle of the frame, not just top-and-tail darkening. */
.bleed--type .bleed__media::after {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,.62), rgba(0,0,0,.25) 70%, rgba(0,0,0,.15)),
    linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.25) 45%, rgba(0,0,0,.8));
}
.bleed__type {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max);
  padding-inline: var(--gutter);
  text-align: center;
}
.bleed__type h2 { font-size: clamp(2.5rem, 8.5vw, 8rem); line-height: .88; letter-spacing: -.05em; text-shadow: 0 2px 40px rgba(0,0,0,.5); }
.bleed__type p { margin-top: 1.5rem; color: #fff; max-width: 46ch; margin-inline: auto; text-shadow: 0 1px 24px rgba(0,0,0,.7); }
/* A band separating two text sections. Shorter than a statement bleed, and its
   scrim is deliberately light so the photograph still reads as a photograph —
   just enough contrast under the line of type. */
.bleed--buffer { height: clamp(22rem, 74vh, 46rem); }
.bleed--buffer .bleed__media::after {
  background:
    radial-gradient(ellipse 78% 62% at 50% 50%, rgba(0,0,0,.42), rgba(0,0,0,.12) 72%, rgba(0,0,0,0)),
    linear-gradient(to bottom, rgba(0,0,0,.34), rgba(0,0,0,.06) 40%, rgba(0,0,0,.06) 62%, rgba(0,0,0,.46));
}
.bleed--buffer .bleed__media img { object-position: 50% 34%; }
.bleed--buffer .bleed__type { align-self: end; padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.bleed--buffer .bleed__type h2 {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  line-height: 1.04;
  max-width: 20ch; margin-inline: auto;
}

/* A proof plate shows a client deliverable, so it stays bright and legible , 
   only the bottom is darkened, enough to carry the caption. */
.bleed--proof { height: clamp(20rem, 60vh, 38rem); }
.bleed--proof .bleed__media::after {
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,0) 28%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.92));
}
/* caption pinned to a bleed with no overlaid type */
.bleed__caption {
  position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter);
  bottom: clamp(1.25rem, 2.5vw, 2.25rem);
  display: flex; align-items: center; gap: 1rem;
  color: #fff;                                  /* .eyebrow's grey loses on busy art */
  text-shadow: 0 1px 18px rgba(0,0,0,.95), 0 0 4px rgba(0,0,0,.8);
}
.bleed__caption::before { content: ""; flex: 0 0 auto; width: clamp(2rem, 5vw, 5rem); height: 1px; background: #fff; opacity: .8; }

/* --- Services grid -------------------------------------------------------- */
/* Fixed column counts (1 / 2 / 4) so the eight cards always fill whole rows , 
   auto-fill left a ragged rule above a short last row. */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 40rem)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 85rem)  { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
/* Nine services divide evenly into three, so the capability grids run 3 across
   while the eight-item work grid keeps its four. */
@media (min-width: 62rem)  { .svc-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 85rem)  { .svc-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  display: flex; flex-direction: column;
  gap: 1.125rem;
  padding: clamp(1.5rem, 2.2vw, 2rem) clamp(1.5rem, 2.2vw, 2.25rem) clamp(1.75rem, 2.6vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
}
.svc-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: .375rem;
  background: var(--bg-raised);
}
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .9s var(--ease);
}
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__num { font-size: .75rem; font-weight: 600; letter-spacing: .14em; color: var(--fg-dim); }
.svc-card__title { font-size: clamp(1.375rem, 2.1vw, 1.875rem); letter-spacing: -.035em; display: flex; align-items: baseline; gap: .6rem; }
.svc-card__title .arw { font-size: .8em; opacity: 0; transform: translateX(-6px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.svc-card:hover .svc-card__title .arw { opacity: 1; transform: translateX(0); }
.svc-card p { color: var(--fg-muted); font-size: .9375rem; line-height: 1.55; flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  font-size: .6875rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .4rem .75rem;
}

/* --- Process / numbered pillars ------------------------------------------- */
.grid-lines { display: grid; }
.grid-lines > * { border: 1px solid var(--line); margin: 0 -1px -1px 0; background: var(--bg); }

.steps { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.step { padding: clamp(1.75rem, 2.6vw, 2.5rem); display: flex; flex-direction: column; gap: .875rem; transition: background .4s var(--ease); }
.step:hover { background: var(--bg-raised); }
.step__n { font-family: var(--serif); font-style: italic; font-size: 2.25rem; line-height: 1; color: var(--fg-dim); }
.step h3 { font-size: 1.25rem; }
.step p { color: var(--fg-muted); font-size: .9375rem; }

/* --- Stance block -----------------------------------------------------------
   A centred statement, used where the page needs to argue a position rather
   than list a capability. Deliberately unlike the split and feature blocks. */
.stance { max-width: 62rem; margin-inline: auto; text-align: center; }
.stance > * + * { margin-top: 1.5rem; }
.stance .eyebrow { display: inline-block; }
.stance h2 { margin-inline: auto; max-width: 18ch; }
.stance p { margin-inline: auto; max-width: 60ch; }
.stance .btn { margin-top: 2.25rem; }
/* the position row reads as statements, not numbered steps */
.stance + .steps .step__n {
  font-family: var(--sans); font-style: normal; font-size: .6875rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-dim);
}

/* --- Case study asset plates ------------------------------------------------ */
.plates { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 1.8vw, 1.75rem); }
@media (min-width: 48rem) { .plates { grid-template-columns: repeat(2, 1fr); } }
.plate { margin: 0; overflow: hidden; background: var(--bg-raised); }
.plate img { width: 100%; height: auto; display: block; transition: transform .9s var(--ease); }
.plate:hover img { transform: scale(1.02); }
/* every third plate runs full width, keeps the gallery from reading as a slab */
@media (min-width: 48rem) {
  .plates > .plate:nth-child(3n+1) { grid-column: 1 / -1; }
}

/* Tag that links somewhere gets an affordance */
a.tag { transition: color .3s var(--ease), border-color .3s var(--ease); }
a.tag:hover { color: #fff; border-color: var(--line-strong); }

/* --- Vision / video block --------------------------------------------------
   Matched to the original: a 926x805 stage holding a 454x680 portrait video,
   with the two display lines absolutely placed either side of it. Type is a
   fixed 170px/176px, stepping down at the original's breakpoints.            */
.vision { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 7rem); }
.vision__stage {
  position: relative;
  width: 100%; max-width: 926px; height: 805px;
  margin-inline: auto;
  display: flex; justify-content: center; align-items: flex-end;
}
.vision__title {
  position: absolute;
  width: 100%; max-width: 511px;
  margin: 0;
  font-size: 170px; line-height: 176px; letter-spacing: -3.4px; font-weight: 700;
}
.vision__title em {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1em; line-height: inherit; letter-spacing: -3.4px;
}
.vision__title--a { inset: 0 auto auto 0; }                                  /* Fueled by */
.vision__title--b { z-index: 2; text-align: right; inset: 50% 0 auto auto; transform: translateY(-50%); }

.vision__media {
  z-index: 1;
  width: 100%; max-width: 454px; height: 680px;
  position: relative; overflow: hidden;
  background: var(--bg-raised);
}
.vision__media video, .vision__media img { width: 100%; height: 100%; object-fit: cover; }
.vision__play {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 2;
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(0,0,0,.55); border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px); cursor: pointer;
}
.vision__body { position: relative; z-index: 1; margin-top: clamp(2.5rem, 5vw, 4.5rem); }

@media (max-width: 991px) {
  .vision__title, .vision__title em { font-size: 120px; line-height: 120px; letter-spacing: -2.4px; }
}
@media (max-width: 767px) {
  .vision__stage {
    flex-flow: column; justify-content: flex-start; align-items: center;
    height: auto; gap: 40px;
  }
  .vision__title { position: static; transform: none; text-align: center; max-width: none; }
  .vision__title, .vision__title em { font-size: 80px; line-height: 86px; letter-spacing: -1.6px; }
  .vision__media { height: 560px; }
}
@media (max-width: 479px) {
  .vision__stage { gap: 30px; }
  .vision__title, .vision__title em { font-size: 60px; line-height: 68px; letter-spacing: -1.2px; }
  .vision__media { height: 340px; }
}

/* --- Engagement cards ------------------------------------------------------ */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); gap: clamp(1rem, 1.6vw, 1.5rem); }
.card {
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.card:hover { border-color: var(--line-strong); background: var(--bg-raised); }
.card h3 { font-size: 1.5rem; }
.card p { color: var(--fg-muted); font-size: .9375rem; flex: 1; }
.card ul { display: grid; gap: .6rem; }
.card li { position: relative; padding-left: 1.35rem; font-size: .9375rem; color: var(--fg-muted); }
.card li::before { content: ""; position: absolute; left: 0; top: .62em; width: .5rem; height: 1px; background: var(--line-strong); }

/* --- Feature rows (image + text) ------------------------------------------- */
.feature { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.feature--flip > .feature__media { order: 2; }
.feature__media { overflow: hidden; aspect-ratio: 4 / 5; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.feature:hover .feature__media img,
.feature__media:hover img { transform: scale(1.03); }

/* Media tile used on its own (e.g. related work) */
.media-tile { display: block; }
.media-tile__frame { overflow: hidden; aspect-ratio: 4 / 3; }
.media-tile__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.media-tile:hover .media-tile__frame img { transform: scale(1.03); }
.media-tile__label { display: flex; justify-content: space-between; gap: 1rem; margin-top: .875rem; font-size: .875rem; }
.media-tile__label span:last-child { color: var(--fg-dim); }

/* Four-up tile row, used for the homepage work teaser */
.tiles-4 { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 1.6vw, 1.5rem); }
@media (min-width: 40rem) { .tiles-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .tiles-4 { grid-template-columns: repeat(4, 1fr); } }

/* --- Quotes ----------------------------------------------------------------
   Client and industry recommendations, set as pull quotes rather than cards so
   the words carry rather than the container.                                 */
.quotes { grid-template-columns: 1fr; }
@media (min-width: 52rem) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  padding: clamp(1.75rem, 2.8vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: background .4s var(--ease);
}
.quote:hover { background: var(--bg-raised); }
.quote blockquote {
  margin: 0; flex: 1;
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  line-height: 1.5; letter-spacing: -.015em;
  color: var(--fg);
  text-wrap: pretty;
}
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after  { content: "\201D"; }
.quote figcaption { display: flex; align-items: center; gap: .875rem; }
.quote figcaption > div { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.quote figcaption b { font-size: .9375rem; font-weight: 600; letter-spacing: -.01em; }
.quote figcaption span {
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-dim); line-height: 1.5;
}
/* Avatar: initials until a real headshot exists. Swap the <span> for an <img>
   with the same class and it inherits the size, circle and border. */
.quote__avatar {
  flex: 0 0 auto;
  width: 2.75rem; height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: .8125rem; font-weight: 600; letter-spacing: .02em;
  color: var(--fg-muted); background: var(--bg-raised);
  object-fit: cover;
}

/* Slider variant: a scroll-snap rail, so the set can grow without eating page.
   Works with touch, trackpad and keyboard even if the JS never runs.         */
.quotes__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.quotes__nav { display: flex; gap: .625rem; flex: 0 0 auto; }
.quotes__btn {
  width: 3rem; height: 3rem; border-radius: 999px;
  border: 1px solid var(--line-strong); background: none; color: #fff;
  display: grid; place-items: center; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.quotes__btn:hover:not(:disabled) { background: #fff; color: #000; }
.quotes__btn:disabled { opacity: .3; cursor: default; }

.quotes--slider {
  display: flex; gap: 0;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  border: 1px solid var(--line);
  scrollbar-width: none;
}
.quotes--slider::-webkit-scrollbar { display: none; }
.quotes--slider .quote {
  flex: 0 0 min(86vw, 27rem);
  scroll-snap-align: start;
  border-right: 1px solid var(--line);
}
.quotes--slider .quote:last-child { border-right: 0; }
@media (prefers-reduced-motion: reduce) { .quotes--slider { scroll-behavior: auto; } }

/* --- Name grid --------------------------------------------------------------
   Long lists of brands or agencies, set as a dense column-flowed list rather
   than a table, so it reads as a body of work instead of a spreadsheet.      */
.namegrid ul {
  columns: 2; column-gap: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
}
@media (min-width: 40rem) { .namegrid ul { columns: 3; } }
@media (min-width: 64rem) { .namegrid ul { columns: 4; } }
.namegrid li {
  break-inside: avoid;
  font-size: clamp(.9375rem, 1.05vw, 1.0625rem);
  line-height: 1.9;
  color: var(--fg-muted);
  transition: color .25s var(--ease);
}
.namegrid li:hover { color: #fff; }
.namegrid--dim li { font-size: .875rem; color: var(--fg-dim); }

/* --- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding-block: clamp(1.25rem, 2vw, 1.75rem);
  text-align: left;
  font-size: clamp(1.0625rem, 1.7vw, 1.375rem); font-weight: 600; letter-spacing: -.025em;
}
.faq__q .sign { position: relative; flex: 0 0 16px; height: 16px; }
.faq__q .sign::before, .faq__q .sign::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1px; background: #fff;
  transition: transform .35s var(--ease);
}
.faq__q .sign::after { transform: rotate(90deg); }
.faq__item.is-open .sign::after { transform: rotate(0deg); }
.faq__a { overflow: hidden; height: 0; transition: height .45s var(--ease); }
.faq__a > div { padding-bottom: clamp(1.25rem, 2vw, 1.75rem); max-width: 62ch; color: var(--fg-muted); }

/* --- CTA ------------------------------------------------------------------ */
.cta { text-align: center; padding-block: clamp(5rem, 12vw, 12rem); }
.cta__mail {
  display: inline-block; margin-top: 2rem;
  font-size: clamp(1.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -.04em;
  border-bottom: 1px solid var(--line-strong); padding-bottom: .06em;
  transition: border-color .35s var(--ease);
  word-break: break-word;
}
.cta__mail:hover { border-color: #fff; }

/* --- Footer --------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); gap: clamp(2rem, 4vw, 3rem); }
.footer__brand { grid-column: span 1; }
.footer h4 { font-size: .6875rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 1.25rem; }
.footer li + li { margin-top: .65rem; }
.footer li a { font-size: .9375rem; color: var(--fg-muted); transition: color .25s var(--ease); }
.footer li a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .8125rem; color: var(--fg-dim);
}

/* --- Page hero (interior pages) -------------------------------------------- */
.page-hero { padding-top: clamp(8rem, 16vw, 14rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.page-hero--media { padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: .75rem 2rem; margin-top: 2rem; }
.crumbs { display: flex; gap: .6rem; align-items: center; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 2rem; }
.crumbs a:hover { color: #fff; }

/* --- Deliverables list ----------------------------------------------------- */
.deliverables { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.deliverable { padding: clamp(1.5rem, 2.2vw, 2rem); display: flex; gap: 1rem; align-items: flex-start; transition: background .4s var(--ease); }
.deliverable:hover { background: var(--bg-raised); }
.deliverable__n { font-size: .6875rem; color: var(--fg-dim); letter-spacing: .12em; padding-top: .35em; }
.deliverable h3 { font-size: 1.0625rem; letter-spacing: -.02em; }
.deliverable p { font-size: .875rem; color: var(--fg-muted); margin-top: .4rem; }

/* --- Prev / next ----------------------------------------------------------- */
.pager { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.pager a { padding: clamp(1.5rem, 2.4vw, 2.25rem); transition: background .4s var(--ease); }
.pager a:hover { background: var(--bg-raised); }
.pager span { display: block; font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: .75rem; }
.pager strong { font-size: clamp(1.25rem, 2.2vw, 1.75rem); font-weight: 700; letter-spacing: -.03em; }
.pager .to-next { text-align: right; }

/* --- Scroll reveal --------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .feature--flip > .feature__media { order: 0; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__foot { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero__scroll { display: none; }
}

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

/* --- Contact form --------------------------------------------------------- */
/* The form is the primary conversion path. A mailto asks a stranger to compose
   a cold email from a blank window; these fields ask for the same information
   in a shape they can fill in without deciding how to open. */
.form { max-width: 46rem; margin-inline: auto; text-align: left; }
.form__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 1.75rem; }
@media (min-width: 40rem) { .form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: .55rem; }
.field label {
  font-size: .6875rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--fg-dim);
}
.field label .req { color: var(--fg-muted); }

.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: #fff;
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: .35rem 0 .7rem; border-radius: 0; appearance: none;
  transition: border-color .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 7rem; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dim); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-strong); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #fff; }

/* Native select menus render their options on the OS layer, which is light on
   most platforms. Force readable option colors rather than white on white. */
.field select { cursor: pointer; padding-right: 1.75rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-muted) 50%), linear-gradient(135deg, var(--fg-muted) 50%, transparent 50%);
  background-position: right .7rem center, right .375rem center;
  background-size: .35rem .35rem, .35rem .35rem; background-repeat: no-repeat; }
.field select option { background: #111; color: #fff; }

.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: #ff6b5e; }
.field__err { font-size: .8125rem; color: #ff6b5e; min-height: 0; }

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form__foot {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem 1.5rem;
}
.form__status { font-size: .9375rem; color: var(--fg-muted); margin: 0; }
.form__status[data-state="error"] { color: #ff6b5e; }
.form[data-sent="true"] .form__grid, .form[data-sent="true"] .form__foot .btn { display: none; }
.form button[disabled] { opacity: .5; pointer-events: none; }

.form__sent { display: none; }
.form[data-sent="true"] .form__sent { display: block; text-align: center; }
.form__sent h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -.02em; }
.form__sent p { color: var(--fg-muted); margin-top: .75rem; }

/* --- CTA blocks: two paths plus a quiet email fallback -------------------- */
.cta__actions {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center;
}
.cta__alt { margin-top: 1.75rem; font-size: .9375rem; color: var(--fg-dim); }
.cta__alt a { color: var(--fg-muted); border-bottom: 1px solid var(--line); transition: color .25s var(--ease), border-color .25s var(--ease); }
.cta__alt a:hover { color: #fff; border-color: #fff; }
.cta--form { text-align: center; }
.cta--form .form { margin-top: clamp(2.5rem, 5vw, 4rem); }
/* On the homepage the form sits under a centered heading, so the action
   centers with it. On the contact page the form is left-aligned and the
   button stays on the field grid's left edge. */
.cta--form .form__foot { justify-content: center; }

/* --- Insights: index cards ------------------------------------------------ */
.ins-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
@media (min-width: 52rem) { .ins-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 80rem) { .ins-grid { grid-template-columns: repeat(3, 1fr); } }
.ins-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.ins-card:hover { background: var(--bg-raised); }
.ins-card h2 {
  margin-top: 1rem; font-size: clamp(1.375rem, 2.1vw, 1.75rem);
  line-height: 1.15; letter-spacing: -.03em; font-weight: 700;
}
.ins-card > .body-muted { margin-top: .875rem; font-size: .9375rem; line-height: 1.6; }
.ins-card__meta {
  margin-top: 1.25rem; font-size: .75rem; letter-spacing: .06em;
  color: var(--fg-dim); display: flex; gap: .6rem; flex-wrap: wrap;
}
.ins-card .link-u { margin-top: auto; padding-top: 1.75rem; }

/* --- Insights: article ---------------------------------------------------- */
/* A measure of roughly 68 characters. Long-form is the one place on this site
   where the full 1600px container actively hurts readability. */
.wrap--prose { max-width: 52rem; }
.article__meta {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem;
  font-size: .8125rem; letter-spacing: .04em; color: var(--fg-dim);
}

.prose { font-size: clamp(1.0625rem, 1.15vw, 1.1875rem); line-height: 1.72; color: var(--fg-muted); }
.prose > * + * { margin-top: 1.5rem; }
.prose strong { color: #fff; font-weight: 600; }
.prose a { color: #fff; border-bottom: 1px solid var(--line-strong); }
.prose a:hover { border-color: #fff; }

.prose__h2 {
  color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1.12; letter-spacing: -.03em; font-weight: 700;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}
.prose__h3 {
  color: #fff; font-size: clamp(1.125rem, 1.7vw, 1.375rem);
  line-height: 1.25; letter-spacing: -.02em; font-weight: 600;
  margin-top: clamp(2.25rem, 3.5vw, 3rem);
}

/* The short answer block. Placed high on purpose: retrieval systems lift
   self-contained passages, and a buried answer is an uncited one. */
.prose__answer {
  border: 1px solid var(--line); border-left: 2px solid var(--fg-muted);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: var(--bg-raised);
}
.prose__answer p { color: #fff; }
.prose__answer-label {
  font-size: .6875rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--fg-dim); margin-bottom: .875rem;
}
.prose__answer > p + p { margin-top: 0; }

.prose__quote {
  margin-block: clamp(2.5rem, 4vw, 3.5rem); padding-left: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid var(--line-strong);
}
.prose__quote p {
  font-family: var(--serif); font-style: italic; color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.35; letter-spacing: -.01em;
}

.prose__list { padding-left: 1.5rem; }
.prose__list li + li { margin-top: .875rem; }
.prose__list li::marker { color: var(--fg-dim); }
.prose__list { list-style: disc; }
.prose__list--num { list-style: decimal; }

.prose__dl { border-top: 1px solid var(--line); }
.prose__dl dt {
  color: #fff; font-weight: 600; font-size: 1rem;
  letter-spacing: -.01em; padding-top: 1.25rem;
}
.prose__dl dd { margin: .5rem 0 0; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }

/* --- Timeline brand marks -------------------------------------------------- */
/* The five businesses have wordmarks of very different proportions, from a 2.4:1
   badge to an 11.3:1 lockup. A shared height would make the wide one overflow a
   narrow column, so they are capped on both axes and given a fixed slot, which
   keeps the copy beneath them on a common baseline. */
.step__brand { display: flex; align-items: center; min-height: 2.75rem; margin-block: .25rem; }
.step__logo { max-height: 2rem; max-width: 100%; width: auto; opacity: .92; }
/* A compact or outlined mark needs more height to read at the same optical
   weight as a wide lockup, and thin outline strokes need the size to survive. */
.step__logo--compact { max-height: 2.5rem; }
/* Niki Productions predates having a mark, so it sits as type in the same slot. */
.step__brand--text { font-size: 1.25rem; }

/* --- Service pages -------------------------------------------------------- */
/* These sections carry less content than the homepage's, so the homepage
   rhythm leaves them floating in black. Measured at 26% of the page height
   before this. */
.svc .section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.svc .page-hero { padding-bottom: clamp(2.5rem, 5vw, 4rem); }

/* The signals list is the moment a reader recognizes themselves, which makes it
   the most persuasive block on the page. It was previously set at the smallest
   size on the page. */
.signals__list { border-top: 1px solid var(--line); max-width: 58rem; }
.signals__list li {
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.1rem, 2vw, 1.6rem);
  padding-right: 2rem;
  font-size: clamp(1.125rem, 2.1vw, 1.75rem);
  line-height: 1.25; letter-spacing: -.02em;
  color: #fff;
  position: relative;
}
@media (min-width: 48rem) {
  .signals__list li { padding-left: 3.5rem; }
  .signals__list li::before {
    content: ""; position: absolute; left: 0; top: 50%;
    width: 2rem; height: 1px; background: var(--line-strong);
  }
}

/* Nine deliverables at 13px reads as a spec sheet. */
.deliverable h3 { font-size: 1.1875rem; }
.deliverable p { font-size: .9375rem; line-height: 1.6; }
.deliverable { padding: clamp(1.75rem, 2.6vw, 2.25rem); }

/* Exactly four items break 3+1 under auto-fit, stranding the last one. A fixed
   two-column grid gives them an even 2x2. */
.deliverables--2 { grid-template-columns: 1fr; }
@media (min-width: 40rem) { .deliverables--2 { grid-template-columns: repeat(2, 1fr); } }

/* Utility sections at the foot of the page do not need a full section's air. */
.svc .section--foot { padding-block: clamp(2.5rem, 4vw, 4rem); }
.svc .pager a { padding: clamp(1.25rem, 2vw, 1.75rem); }

/* --- Service page figure --------------------------------------------------- */
/* Two panels rather than one wide drawing: a single SVG scaled to a phone makes
   its labels illegible, whereas two stack and keep their size. */
.fig__row { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 56rem) { .fig__row { grid-template-columns: repeat(2, 1fr); } }
.fig__panel { margin: 0; }
.fig__panel svg { width: 100%; height: auto; display: block; }
.fig__panel figcaption {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .9375rem; line-height: 1.55; color: var(--fg-muted); max-width: 34ch;
}

/* --- Temporary notice band -------------------------------------------------- */
/* The image runs off the right edge of the screen rather than sitting inside a
   bordered card, with the copy beside it. No frame: the announcement should read
   as part of the page, not as a widget dropped onto it. */
.notice { padding-block: clamp(3rem, 6vw, 5rem); }
.notice__split { display: grid; grid-template-columns: 1fr; }
@media (min-width: 56rem) {
  .notice__split { grid-template-columns: minmax(0, 1fr) 50%; align-items: center; }
}

.notice__figure { display: block; overflow: hidden; height: clamp(15rem, 46vh, 27rem); }
.notice__figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease);
}
.notice__figure:hover img { transform: scale(1.02); }

.notice__lead {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
}
@media (min-width: 56rem) { .notice__lead { padding-block: 0; } }
.notice__title {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  line-height: 1.02; letter-spacing: -.035em; font-weight: 700; color: #fff;
}
.notice__lede {
  margin-top: 1rem; max-width: 46ch;
  font-size: .9375rem; line-height: 1.6; color: var(--fg-muted);
}
.notice__meta {
  margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .6rem;
  font-size: .8125rem; letter-spacing: .05em; color: var(--fg-dim);
}
.notice__lead .btn { margin-top: 1.75rem; }

.notice__sessions { margin-top: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 62rem) { .notice__sessions { grid-template-columns: repeat(3, 1fr); } }
.notice__session { display: flex; gap: 1rem; padding: clamp(1.5rem, 2.6vw, 2.25rem); }
.notice__kind {
  flex: none; font-size: .625rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--fg-dim); padding-top: .45em;
}
.notice__session h3 { font-size: 1.0625rem; line-height: 1.25; letter-spacing: -.02em; }
.notice__when { margin-top: .4rem; font-size: .8125rem; color: #fff; }
.notice__session > div > p:not(.notice__when):not(.notice__with) {
  margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: var(--fg-muted);
}
.notice__with { margin-top: .875rem; font-size: .8125rem; line-height: 1.5; color: var(--fg-dim); }
