:root {
  --paper: #f1eee7;
  --ink: #101113;
  --muted: #6d7075;
  --blue: #5d82dc;
  --line: rgba(13, 14, 16, .15);
  --dark: #09090a;
  --white: #f4f1eb;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html {
  background: var(--paper);
  scroll-behavior: auto;
  overscroll-behavior-y: auto;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(104, 107, 112, .14) transparent;
}
body::-webkit-scrollbar { width: 2px; }
body::-webkit-scrollbar-track { background: transparent; }
body::-webkit-scrollbar-thumb { background: rgba(104, 107, 112, .14); border-radius: 999px; }
body.notice-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.preview-notice {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  transition: opacity .32s ease, visibility .32s ease;
}
.preview-notice.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preview-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,9,.64);
  backdrop-filter: blur(5px);
}
.preview-notice__card {
  position: relative;
  width: min(760px, 56vw);
  min-height: 330px;
  padding: 38px 42px 32px;
  background: #ece8df;
  color: #111214;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  transform: rotate(-.35deg);
  cursor: pointer;
}
.preview-notice__card::before,
.preview-notice__card::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 1px;
  background: #111214;
  opacity: .35;
}
.preview-notice__card::before { top: 18px; right: -22px; transform: rotate(14deg); }
.preview-notice__card::after { bottom: 18px; left: -20px; transform: rotate(-12deg); }
.preview-notice__topline,
.preview-notice__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.preview-notice__topline { padding-bottom: 16px; border-bottom: 1px solid #c5c0b8; }
.preview-notice h2 {
  max-width: 610px;
  margin: 28px 0 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.02em;
}
.preview-notice p { margin: 11px 0; max-width: 650px; font-size: 14px; line-height: 1.65; color: #55565a; }
.preview-notice__bottom { margin-top: 30px; padding-top: 16px; border-top: 1px solid #c5c0b8; color: #66676b; }
#noticeCountdown { font-family: "Bebas Neue", sans-serif; font-size: 24px; letter-spacing: .04em; color: #111214; }

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(1380px, calc(100% - 64px));
  height: var(--header-h);
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(17,18,20,.12);
  background: rgba(241,238,231,.82);
  backdrop-filter: blur(14px);
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.is-dark { color: #f2efe9; background: rgba(16,16,17,.80); border-color: rgba(255,255,255,.11); }
.brand { font-size: 15px; font-weight: 800; letter-spacing: -.02em; }
.role { justify-self: center; font-size: 10px; letter-spacing: .30em; font-weight: 700; }
.menu-button { justify-self: end; border: 0; background: transparent; color: inherit; display: flex; align-items: center; gap: 11px; cursor: pointer; padding: 8px 0; font-size: 10px; letter-spacing: .25em; font-weight: 700; }
.menu-button .menu-icon { font-size: 23px; transition: transform .25s ease; }
.menu-button.is-open .menu-icon { transform: rotate(90deg); }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(7,7,8,.96);
  color: #f4f1eb;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.menu-panel.is-open { opacity: 1; visibility: visible; }
.menu-panel__inner { width: min(820px, calc(100% - 48px)); }
.menu-panel nav { border-bottom: 1px solid rgba(255,255,255,.12); }
.menu-panel nav a {
  border-top: 1px solid rgba(255,255,255,.12);
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  transition: padding-left .2s ease, color .2s ease;
}
.menu-panel nav a:hover { padding-left: 10px; color: #aebcdc; }
.menu-panel nav a .material-symbols-outlined { font-size: 24px; color: #7d8188; }
.menu-contact { display: inline-block; margin-top: 26px; color: #8c9096; font-size: 13px; }

.section-shell { width: min(1280px, calc(100% - 96px)); margin: 0 auto; }
.small-label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .25em; color: #8fa6de; text-transform: uppercase; }
.small-label--dark { color: #556fae; }

/* The hero intentionally has a long scroll runway. The image zooms for longer, then disappears before the dark content begins. */
.hero { height: 240vh; position: relative; background: var(--paper); }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; background: var(--paper); }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(20,20,22,.14) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(20,20,22,.08) 50%, transparent 50.2%);
  background-size: 190px 190px;
  pointer-events: none;
}
.hero-fade { position: absolute; inset: 0; z-index: 8; background: var(--dark); opacity: 0; pointer-events: none; will-change: opacity; }
.hero-scratch { position: absolute; z-index: 1; pointer-events: none; opacity: .35; }
.hero-scratch--one { left: 4vw; bottom: 13vh; width: 175px; height: 110px; border-left: 1px solid rgba(16,17,19,.2); transform: rotate(9deg); }
.hero-scratch--one::before, .hero-scratch--one::after { content:""; position:absolute; left:14px; width:130px; height:1px; background:rgba(16,17,19,.16); transform-origin:left; }
.hero-scratch--one::before { top:25px; transform:rotate(-12deg); }
.hero-scratch--one::after { top:65px; transform:rotate(8deg); }
.hero-scratch--two { right: 6vw; top: 20vh; width: 95px; height: 95px; border: 1px solid rgba(16,17,19,.15); border-radius: 50%; }
.hero-title-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  will-change: transform, opacity;
}
.hero-art-word {
  position: absolute;
  left: 5.5vw;
  top: 17vh;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(96px, 15vw, 220px);
  font-style: italic;
  font-weight: 500;
  line-height: .72;
  letter-spacing: -.06em;
  color: rgba(16,17,19,.075);
}
.hero-art-ring { position: absolute; border: 1px solid rgba(16,17,19,.13); border-radius: 50%; }
.hero-art-ring--one { width: clamp(150px, 22vw, 330px); aspect-ratio: 1; right: 5vw; top: 12vh; }
.hero-art-ring--two { width: clamp(80px, 11vw, 165px); aspect-ratio: 1; right: 17vw; top: 27vh; border-style: dashed; opacity: .6; }
.hero-art-line { position: absolute; height: 1px; background: rgba(16,17,19,.14); transform-origin: left center; }
.hero-art-line--one { width: min(28vw, 390px); left: 7vw; bottom: 23vh; transform: rotate(-8deg); }
.hero-art-line--two { width: min(18vw, 250px); right: 7vw; bottom: 18vh; transform: rotate(12deg); }
.hero-stage { position: relative; z-index: 2; width: 100%; height: 100%; display: grid; place-items: center; perspective: 1400px; }
.hero-frame {
  position: relative;
  width: min(650px, 48vw);
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  background: #111214;
  border-radius: 3px;
  box-shadow: 0 28px 72px rgba(36,35,32,.20);
  transform-origin: center center;
  will-change: transform, opacity;
  z-index: 4;
}
.hero-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: inherit; pointer-events: none; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity .28s ease, transform .5s cubic-bezier(.2,.8,.2,1); }
.hero-frame.is-changing img { opacity: .12; transform: scale(1.025); }
.hero-frame__empty { width: 100%; height: 100%; display: grid; place-items: center; color: white; font-family: "Bebas Neue"; font-size: 46px; letter-spacing: .06em; }
.hero-counter { position: absolute; right: 5.5vw; bottom: 9vh; z-index: 3; font-size: 9px; letter-spacing: .17em; color: #72757a; }
.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #85888d; }
.scroll-cue .material-symbols-outlined { font-size: 18px; animation: cue 1.7s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(-2px); opacity:.3;} 50% { transform:translateY(4px); opacity:1;} }

.dark-section { background: var(--dark); color: var(--white); position: relative; }
.dark-section::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .10; background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.07) 0 1px, transparent 1.5px); background-size: 17px 17px; mix-blend-mode: screen; }
.dark-section > * { position: relative; z-index: 1; }
.dark-intro { min-height: 84vh; display: flex; align-items: center; padding: 120px 0 95px; }
.intro-layout { display: grid; grid-template-columns: 1.05fr .75fr; gap: 10vw; align-items: start; }
.reveal-copy { margin: 18px 0 0; max-width: 720px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(42px, 4.4vw, 66px); line-height: 1.0; letter-spacing: -.025em; font-weight: 400; }
.intro-copy { padding-top: 28px; }
.intro-lead { font-size: clamp(18px, 1.55vw, 24px); line-height: 1.38; letter-spacing: -.02em; margin: 0 0 24px; color: #dcdbd7; }
.intro-small { font-size: 14px; line-height: 1.75; color: #898d93; margin: 0; max-width: 520px; }

.work-section { padding: 88px 0 135px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 19px; }
.section-heading--simple { justify-content: flex-start; }
.section-heading h2 { margin: 10px 0 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(36px, 3.6vw, 54px); font-weight: 400; line-height: 1; letter-spacing: -.02em; }
.work-strip { display: grid; gap: 80px; }
.work-item { margin: 0; }
.work-item:nth-child(odd) { width: 70%; }
.work-item:nth-child(even) { width: 66%; margin-left: auto; }
.work-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 2px; filter: saturate(.92); }
.work-item figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 11px; color: #6f7379; font-size: 9px; letter-spacing: .16em; }

.clients-section { padding: 105px 0 125px; }
.clients-title { margin-bottom: 50px; }
.clients-title h2 { margin: 12px 0 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(42px, 4.4vw, 64px); line-height: 1; letter-spacing: -.02em; font-weight: 400; }
.client-list { border-bottom: 1px solid rgba(255,255,255,.12); }
.client-row { min-height: 70px; display: grid; grid-template-columns: 54px 1fr 1fr auto; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); transition-delay: var(--delay); }
.client-index { color: #555960; font-family: "Bebas Neue", sans-serif; font-size: 20px; letter-spacing: .06em; }
.client-row strong { font-size: 16px; font-weight: 600; }
.client-row small { color: #696d73; font-size: 12px; }
.client-row .material-symbols-outlined { color: #62666d; font-size: 18px; }

.reach-section { padding: 105px 0 125px; }
.section-heading--light { margin-bottom: 70px; }
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 50px; }
.metric { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: grid; gap: 17px; }
.metric-number { font-family: "Bebas Neue", sans-serif; font-size: clamp(62px, 6.4vw, 96px); letter-spacing: -.015em; font-weight: 400; line-height: .82; }
.metric-label { font-size: 9px; letter-spacing: .25em; color: #777b82; }

.reviews-section { min-height: 76vh; padding: 105px 0 130px; }
.reviews-shell { display: grid; grid-template-columns: minmax(280px, .55fr) 1fr; gap: 8vw; align-items: start; }
.review-head h2 { margin: 12px 0 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(36px, 3.8vw, 56px); line-height: 1; font-weight: 400; letter-spacing: -.02em; }
.review-controls { display: flex; gap: 8px; margin-top: 32px; }
.review-controls button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.14); border-radius: 0; background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s, color .2s, transform .2s; }
.review-controls button:hover { background: #f3f0e9; color: #101113; transform: translateY(-2px); }
.review-controls .material-symbols-outlined { font-size: 18px; }
.review-stage { position: relative; min-height: 330px; border-top: 1px solid rgba(255,255,255,.13); padding-top: 30px; }
.review { position: absolute; inset: 30px 0 auto; opacity: 0; transform: translateY(16px); transition: opacity .42s ease, transform .42s ease; pointer-events: none; }
.review.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.review-person { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 34px; }
.review-person span { font-size: 14px; font-weight: 600; }
.review-person small { color: #5f636a; text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.review blockquote { margin: 0; max-width: 820px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(30px, 3.2vw, 46px); line-height: 1.1; letter-spacing: -.015em; font-weight: 400; color: #e3e1dc; }

.closing-section { min-height: 72vh; background: var(--paper); display: flex; align-items: center; position: relative; overflow: hidden; }
.closing-section::before { content: ""; position: absolute; left: -8vw; bottom: -22vw; width: 42vw; height: 42vw; border: 1px solid rgba(15,16,18,.12); border-radius: 50%; }
.closing-art { position: absolute; right: 8vw; top: 12vh; font-family: "Instrument Serif", serif; font-size: 190px; line-height: 1; color: rgba(31,32,34,.065); transform: rotate(-18deg); }
.closing-shell { position: relative; z-index: 1; }
.closing-shell h2 { margin: 20px 0 15px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(48px, 5.4vw, 80px); line-height: .96; letter-spacing: -.03em; font-weight: 400; max-width: 800px; }
.closing-shell p { max-width: 520px; font-size: 14px; line-height: 1.65; color: #6b6e73; }
.contact-link { margin-top: 34px; width: min(540px,100%); padding: 15px 0; border-top: 1px solid #1d1f22; border-bottom: 1px solid #1d1f22; display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.contact-link .material-symbols-outlined { font-size: 19px; transition: transform .2s ease; }
.contact-link:hover .material-symbols-outlined { transform: translate(4px,-4px); }

footer { background: var(--paper); border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; padding: 22px max(48px, calc((100vw - 1280px)/2)); color: #777a7f; font-size: 9px; letter-spacing: .08em; }
footer a { display: inline-flex; align-items: center; gap: 5px; }
footer .material-symbols-outlined { font-size: 14px; }

.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity .68s ease, transform .72s cubic-bezier(.22,.75,.18,1); }
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --header-h: 62px; }
  .site-header { top: 14px; width: calc(100% - 28px); padding: 0 18px; }
  .role { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .preview-notice__card { width: min(680px, 82vw); }
  .hero { height: 215vh; }
  .hero-art-word { left: 4vw; top: 18vh; font-size: 17vw; }
  .hero-frame { width: 67vw; }
  .hero-counter { right: 4vw; bottom: 9vh; }
  .section-shell { width: calc(100% - 48px); }
  .intro-layout { grid-template-columns: 1fr; gap: 44px; }
  .intro-copy { max-width: 720px; padding-top: 0; }
  .metrics { gap: 28px; }
  .reviews-shell { grid-template-columns: 1fr; gap: 54px; }
  .review-stage { min-height: 310px; }
}

@media (max-width: 640px) {
  .preview-notice { padding: 18px; }
  .preview-notice__card { width: 100%; min-height: 0; padding: 28px 24px 24px; transform: none; }
  .preview-notice h2 { font-size: 38px; }
  .preview-notice p { font-size: 13px; }
  .menu-button > span:first-child { display: none; }
  .hero { height: 190vh; }
  .hero-art-word { left: 22px; top: 18vh; font-size: 24vw; }
  .hero-art-ring--one { right: -10vw; top: 15vh; }
  .hero-art-ring--two { display: none; }
  .hero-frame { width: 86vw; }
  .hero-counter { right: 22px; bottom: 9vh; font-size: 8px; }
  .scroll-cue { display: none; }
  .hero-scratch--two { display: none; }
  .section-shell { width: calc(100% - 38px); }
  .dark-intro { min-height: auto; padding: 100px 0 88px; }
  .reveal-copy { font-size: 42px; }
  .intro-lead { font-size: 19px; }
  .section-heading { display: block; }
  .work-section { padding: 70px 0 96px; }
  .work-strip { gap: 48px; }
  .work-item, .work-item:nth-child(even), .work-item:nth-child(odd) { width: 100%; margin-left: 0; }
  .clients-section, .reach-section, .reviews-section { padding: 84px 0 96px; }
  .clients-title h2 { font-size: 44px; }
  .client-row { grid-template-columns: 42px 1fr auto; gap: 12px; }
  .client-row small { display: none; }
  .metrics { grid-template-columns: 1fr; gap: 46px; }
  .metric-number { font-size: 74px; }
  .review-head h2 { font-size: 41px; }
  .review-stage { min-height: 300px; }
  .review blockquote { font-size: 31px; }
  .closing-section { min-height: 68vh; }
  .closing-shell h2 { font-size: 52px; }
  .closing-art { font-size: 140px; right: -6vw; }
  footer { padding: 20px; gap: 14px; flex-wrap: wrap; }
}

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

/* Creator list: public YouTube profile data is populated by /api/creators. */
.client-row {
  text-decoration: none;
  grid-template-columns: 46px 44px minmax(180px, 1.15fr) minmax(150px, .85fr) auto;
  min-height: 74px;
}
.client-row:hover strong { opacity: .72; }
.client-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
  background: #161719;
  color: #777b82;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
}
.client-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease;
}
.client-avatar img.is-loaded { opacity: 1; }
.client-subscribers {
  text-align: left;
  color: #71757c !important;
  white-space: nowrap;
}
.client-arrow { transition: transform .2s ease; }
.client-row:hover .client-arrow { transform: translate(3px,-3px); }

@media (max-width: 640px) {
  .client-row {
    grid-template-columns: 34px 38px 1fr auto;
    min-height: 68px;
  }
  .client-row .client-subscribers { display: none; }
  .client-avatar { width: 30px; height: 30px; }
}

/* --- v10 editorial art direction ---------------------------------------- */
body {
  font-family: "DM Sans", Arial, sans-serif;
}
.brand {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .01em;
}
.role,
.menu-button,
.small-label,
.metric-label,
.work-item figcaption,
.client-subscribers,
.review-person small {
  font-family: "Space Mono", monospace;
}
.hero-frame__empty,
.metric-number {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 500;
}
.reveal-copy,
.intro-lead,
.closing-shell h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

/* Work: wide editorial heading + compact image wall, no floating cards. */
.work-section {
  padding: 108px 0 155px;
  overflow: hidden;
}
.work-section::before {
  content: "WORK";
  position: absolute;
  right: -2vw;
  top: 48px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(160px, 25vw, 430px);
  font-weight: 600;
  line-height: .72;
  letter-spacing: -.055em;
  color: rgba(255,255,255,.035);
  pointer-events: none;
}
.work-title-block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(250px, .55fr);
  align-items: end;
  column-gap: 8vw;
  margin-bottom: 62px;
  max-width: 980px;
}
.work-title-block .small-label {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}
.work-title-block h2 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(72px, 8.3vw, 132px);
  font-weight: 600;
  line-height: .79;
  letter-spacing: -.045em;
  color: #eeeDE8;
}
.work-title-block p {
  margin: 0 0 4px;
  max-width: 410px;
  color: #83868c;
  font-size: 14px;
  line-height: 1.7;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
  align-items: start;
}
.work-item {
  width: auto !important;
  margin: 0 !important;
  transition-delay: calc((var(--item-index, 0)) * 20ms);
}
.work-image {
  position: relative;
  overflow: hidden;
  background: #111214;
  aspect-ratio: 16 / 9;
}
.work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.09);
  pointer-events: none;
}
.work-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(.96) contrast(1.02);
  transition: transform .65s cubic-bezier(.18,.75,.2,1), filter .35s ease;
}
.work-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.03);
}
.work-item figcaption {
  padding-top: 10px;
  font-size: 8px;
  letter-spacing: .1em;
  color: #5f6268;
}

/* Clients: large portrait roster, deliberately unboxed. */
.clients-section {
  padding: 128px 0 150px;
  overflow: hidden;
}
.clients-section::before {
  content: "PEOPLE";
  position: absolute;
  left: -1.5vw;
  top: 40px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(150px, 22vw, 360px);
  font-weight: 600;
  line-height: .75;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.03);
  pointer-events: none;
}
.clients-title {
  position: relative;
  z-index: 2;
  margin: 0 0 78px;
  max-width: 930px;
}
.clients-title h2 {
  margin: 14px 0 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(72px, 8.6vw, 136px);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.045em;
  color: #ecebe7;
}
.client-context {
  margin: 28px 0 0;
  max-width: 600px;
  color: #676b72;
  font-size: 11px;
  line-height: 1.65;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 66px 48px;
}
.client-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  transition-delay: var(--delay);
}
.client-avatar {
  width: clamp(126px, 12vw, 186px);
  height: clamp(126px, 12vw, 186px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 28%, #303238 0, #17181b 45%, #0c0d0f 100%);
  color: #7c8088;
  font-family: "Oswald", sans-serif;
  font-size: 54px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 48px rgba(0,0,0,.15);
}
.client-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
}
.client-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s ease, transform .5s cubic-bezier(.18,.75,.2,1);
}
.client-avatar img.is-loaded { opacity: 1; }
.client-card:hover .client-avatar img { transform: scale(1.045); }
.client-card strong {
  display: block;
  margin-top: 19px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 500;
  letter-spacing: -.015em;
  color: #ecebe7;
}
.client-subscribers {
  margin-top: 4px;
  font-size: 10px;
  color: #656970 !important;
  white-space: nowrap;
  letter-spacing: .03em;
}

/* Reach uses a rougher typographic hierarchy rather than dashboard cards. */
.reach-section { padding: 115px 0 145px; }
.section-heading--light h2 {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 500;
  letter-spacing: -.03em;
}
.metric { border-top-color: rgba(255,255,255,.18); }
.metric-number {
  font-size: clamp(72px, 7.7vw, 118px);
  letter-spacing: -.045em;
}

/* Reviews: one strong story stage with side controls and profile image. */
.reviews-section {
  min-height: 880px;
  padding: 120px 0 150px;
  overflow: hidden;
}
.reviews-section::before {
  content: "STORIES";
  position: absolute;
  left: 3vw;
  top: 56px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(140px, 22vw, 350px);
  font-weight: 600;
  line-height: .74;
  letter-spacing: -.045em;
  color: rgba(255,255,255,.028);
  pointer-events: none;
}
.reviews-shell {
  display: block;
}
.review-head {
  position: relative;
  z-index: 2;
  margin-bottom: 58px;
  max-width: 920px;
}
.review-head h2 {
  margin: 14px 0 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(74px, 8.5vw, 134px);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.045em;
  color: #ecebe7;
}
.review-head p {
  max-width: 520px;
  margin: 27px 0 0;
  color: #63676d;
  font-size: 11px;
  line-height: 1.65;
}
.review-stage {
  position: relative;
  min-height: 430px;
  padding: 0 88px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.018);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.review-mark {
  position: absolute;
  left: 44px;
  top: -42px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 260px;
  line-height: 1;
  color: rgba(255,255,255,.035);
  pointer-events: none;
}
.review-stack {
  position: relative;
  width: min(860px, 100%);
  min-height: 310px;
}
.review {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(.99);
  transition: opacity .42s ease, transform .48s cubic-bezier(.18,.75,.2,1);
  pointer-events: none;
}
.review.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.review-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  background: #202126;
  border: 1px solid rgba(255,255,255,.16);
  color: #777b82;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.review-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s ease;
}
.review-avatar img.is-loaded { opacity: 1; }
.review-person {
  display: block;
  margin: 18px 0 20px;
}
.review-person strong {
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .045em;
  color: #89a4e9;
  text-transform: uppercase;
}
.review-person small {
  display: block;
  margin-top: 5px;
  color: #555961;
  font-size: 8px;
  letter-spacing: .08em;
}
.review blockquote {
  margin: 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.65vw, 42px);
  line-height: 1.16;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.015em;
  color: #d7d7d4;
}
.review-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: transparent;
  color: #f0eee9;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.review-nav--prev { left: 34px; }
.review-nav--next { right: 34px; }
.review-nav:hover {
  background: #efede8;
  color: #0b0c0d;
  transform: translateY(-50%) scale(1.04);
}
.review-nav .material-symbols-outlined { font-size: 25px; }
.review-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.review-dots span {
  width: 17px;
  height: 2px;
  background: rgba(255,255,255,.16);
  transition: background .25s ease, width .25s ease;
}
.review-dots span.is-active {
  width: 30px;
  background: #718fd8;
}

@media (max-width: 1060px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 58px 34px; }
  .work-title-block { grid-template-columns: 1fr; gap: 22px; }
  .work-title-block p { max-width: 520px; }
}

@media (max-width: 720px) {
  .work-section { padding: 86px 0 110px; }
  .work-title-block { margin-bottom: 44px; }
  .work-title-block h2,
  .clients-title h2,
  .review-head h2 { font-size: clamp(60px, 17vw, 92px); }
  .work-grid { grid-template-columns: 1fr; gap: 34px; }
  .client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 24px; }
  .client-avatar { width: min(37vw, 150px); height: min(37vw, 150px); }
  .client-card strong { margin-top: 13px; font-size: 18px; }
  .client-subscribers { font-size: 8px; }
  .reviews-section { min-height: 760px; padding: 90px 0 110px; }
  .review-head { margin-bottom: 40px; }
  .review-stage { min-height: 440px; padding: 0 48px; }
  .review-stack { min-height: 330px; }
  .review blockquote { font-size: 28px; }
  .review-nav { width: 44px; height: 44px; }
  .review-nav--prev { left: 10px; }
  .review-nav--next { right: 10px; }
  .review-avatar { width: 72px; height: 72px; }
}
