/* ==========================================================================
   Benign — Home
   Design tokens mirror the Claude Design source (Home.dc.html).
   ========================================================================== */

:root {
  --ink: #14181C;
  --ink-deep: #0E1114;
  --muted: #5B6570;
  --line: #E3E8EC;
  --wash: #F4F7F9;
  --blue: #167BB3;
  --blue-bright: #1CA0DE;
  --blue-pale: #8FD4F2;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --gutter: clamp(24px, 6vw, 96px);
  --section-y: clamp(100px, 14vw, 180px);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--blue-bright); color: #fff; }
img, video { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

@view-transition { navigation: auto; }

@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* --------------------------------------------------------------- shared -- */

.wrap { max-width: 1520px; margin: 0 auto; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow--on-dark { color: var(--blue-pale); }
.eyebrow--on-blue { color: rgba(255, 255, 255, 0.65); }

.section-title {
  margin-top: 20px;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section-title--light { color: #fff; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head__note {
  max-width: 360px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.section-head__note--regular { max-width: 420px; font-weight: 400; line-height: 1.6; }

.noise {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  pointer-events: none;
}
.noise--overlay { mix-blend-mode: overlay; opacity: 0.5; }
.noise--soft { opacity: 0.35; }
.noise--multiply { mix-blend-mode: multiply; opacity: 0.035; }

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px 6px 10px;
  border: 2px solid currentColor;
  border-right: none;
}
.logo span { font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.logo--light { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 350ms var(--ease), background 350ms, color 350ms, border-color 350ms;
}
.btn--solid { padding: 16px 28px; background: #fff; color: var(--ink); }
.btn--solid:hover { background: var(--blue-bright); color: #fff; transform: translateY(-2px); }
.btn--solid:hover .btn__arrow { transform: translateX(4px); }
.btn__arrow { display: inline-block; transition: transform 300ms var(--ease); }

.btn--ghost { padding: 16px 28px; border: 1px solid rgba(255, 255, 255, 0.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }

.btn--fill {
  padding: 18px 34px;
  color: #fff;
  background-color: var(--ink);
  background-image: linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  transition: background-size 450ms var(--ease), transform 350ms var(--ease);
}
.btn--fill:hover { background-size: 100% 100%; color: #fff; transform: translateY(-2px); }

.btn--dark { padding: 18px 34px; background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--blue); color: #fff; }

/* Reveal-on-scroll. `.is-revealed` is set by IntersectionObserver.
   The hidden state is scoped to `.js-motion`, which JS only sets once it has
   committed to animating — so content stays visible if the script never runs. */
.js-motion .reveal > *,
.js-motion .reveal [data-reveal-item] { opacity: 0; transform: translateY(36px); }
.js-motion .reveal.is-revealed > *,
.js-motion .reveal.is-revealed [data-reveal-item] {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--ease) var(--reveal-delay, 0ms),
              transform 700ms var(--ease) var(--reveal-delay, 0ms);
}

/* ------------------------------------------------------------ preloader -- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 500ms ease;
}
.preloader.is-hidden { opacity: 0; pointer-events: none; }
.preloader__pct {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------- scroll progress -- */

.scrollbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 60;
  pointer-events: none;
}
.scrollbar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-pale));
  transition: width 80ms linear;
}

/* ------------------------------------------------------------------ nav -- */

.nav-outer { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 30px var(--gutter);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 380ms var(--ease);
}
.nav.is-scrolled {
  margin: 14px clamp(16px, 4vw, 40px);
  padding: 14px 28px;
  background: rgba(14, 17, 20, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav__brand { display: inline-flex; color: #fff; }
.nav__brand:hover { color: #fff; }

.nav__links { position: relative; display: flex; align-items: center; gap: 48px; }
.nav__links a {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.nav__indicator {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  opacity: 0;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-pale));
  transition: left 280ms var(--ease), width 280ms var(--ease), opacity 200ms ease;
}

/* ----------------------------------------------------------------- hero -- */

.hero-wrap { position: relative; height: 220vh; background: var(--ink-deep); }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,18,0.35) 0%, rgba(10,14,18,0.55) 55%, rgba(10,14,18,0.92) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 700px at 22% 62%, rgba(10,14,18,0.6) 0%, rgba(10,14,18,0) 68%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  padding: clamp(116px, 16vh, 140px) var(--gutter) clamp(48px, 8vh, 120px);
}

.js-motion .hero__eyebrow {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.js-motion.is-mounted .hero__eyebrow { opacity: 1; transform: none; }
.hero__eyebrow span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-pale);
  font-variant-numeric: tabular-nums;
}

.hero__headline {
  margin-top: clamp(12px, 3vh, 20px);
  font-size: clamp(44px, 7.4vw, 108px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 1180px;
}
.hero__headline .word { display: inline-block; white-space: nowrap; }
.hero__headline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease), filter 500ms var(--ease);
  transition-delay: var(--char-delay, 0ms);
}
.js-motion.is-mounted .hero__headline .char, html:not(.js-motion) .hero__headline .char { opacity: 1; transform: none; filter: blur(0); }
.hero__headline .char--space { display: inline; white-space: pre; }

.hero__static-copy {
  display: block;
  margin-top: 32px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.js-motion .hero__static-copy { display: none; }

.hero__phrases {
  position: relative;
  margin-top: clamp(20px, 4vh, 32px);
  max-width: 640px;
  height: clamp(64px, 14vh, 96px);
}
.hero__phrase {
  position: absolute;
  top: 0; left: 0; right: 0;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}
.hero__phrase .key {
  color: var(--blue-pale);
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 500;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 6vh, 44px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.js-motion .hero__cta { opacity: 0; transform: translateY(16px); pointer-events: none; }

.hero__cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 1200ms ease 600ms;
}
.js-motion .hero__cue { opacity: 0; }
.js-motion.is-mounted .hero__cue { opacity: 1; }
.hero__cue span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero__cue-line { width: 1px; height: 44px; background: rgba(255, 255, 255, 0.35); }

/* -------------------------------------------------------------- marquee -- */

.marquee {
  background: var(--ink-deep);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee__track { display: inline-block; animation: marqueeScroll 26s linear infinite; }
.marquee__track span {
  display: inline-block;
  margin-right: 56px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------------------------------------ statement -- */

.statement {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1584C4 0%, #136A9E 100%);
  padding: clamp(100px, 14vw, 200px) var(--gutter);
}
.statement__inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }
.statement__line {
  margin-top: 28px;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.28;
  color: #fff;
}
.statement__line[data-reveal-item="1"] { margin-top: 20px; --reveal-delay: 90ms; }
.statement__highlight {
  color: #fff;
  background-image: linear-gradient(rgba(143, 212, 242, 0.35), rgba(143, 212, 242, 0.35));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 0% 38%;
  transition: background-size 900ms var(--ease) 400ms;
}
.is-revealed .statement__highlight { background-size: 100% 38%; }

/* ------------------------------------------------------------- services -- */

.services { background: #fff; padding: var(--section-y) var(--gutter); }
.services .section-head { border-bottom: 1px solid var(--line); padding-bottom: 40px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  margin-top: 8px;
}
.service {
  padding: 44px 32px 44px 0;
  border-bottom: 1px solid var(--line);
  transition: background 350ms ease;
}
.service:hover { background: var(--wash); }
.service__magnet { transition: transform 250ms var(--ease); }
.service__row { display: flex; align-items: baseline; justify-content: space-between; }
.service__title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 350ms ease;
}
.service:hover .service__title { background-size: 100% 2px; }
.service__n { font-size: 13px; font-weight: 600; color: #9AA4AD; }
.service__desc {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

/* ----------------------------------------------------------------- work -- */

.work { background: var(--ink-deep); }
.work-wrap { position: relative; height: 400vh; background: var(--ink-deep); }
.work-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }

.work__head {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: clamp(96px, 14vh, 140px) var(--gutter) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.work__all { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 15px; font-weight: 600; }
.work__all:hover { color: var(--blue-pale); }

.work-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
  transition: transform 80ms linear, filter 80ms linear;
}
.work-card__media { position: absolute; inset: 0; overflow: hidden; }
.work-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 80ms linear, clip-path 80ms linear;
}
.work-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,17,20,0.55) 0%, rgba(14,17,20,0.15) 32%, rgba(14,17,20,0.15) 58%, rgba(14,17,20,0.88) 100%);
}
.work-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(56px, 10vh, 88px);
}
.work-card__sector {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-pale);
}
.work-card__name {
  margin-top: 14px;
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.work-card__outcome {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

/* ---------------------------------------------------------------- serve -- */

.serve { background: #fff; padding: var(--section-y) var(--gutter); }
.serve__title { max-width: 900px; margin-bottom: 56px; }
.serve__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; }
.serve__tilt { transform-style: preserve-3d; transition: transform 250ms var(--ease); }
.serve__media { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--line); }
.serve__media img { width: 100%; height: 100%; object-fit: cover; }
.serve__name { margin-top: 24px; font-size: 20px; font-weight: 600; }
.serve__desc { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* --------------------------------------------------------------- people -- */

.people { background: var(--wash); padding: var(--section-y) var(--gutter); }
.people__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 56px;
}
.person__media { width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--line); }
.person__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 350ms ease;
}
.person:hover .person__media img { filter: grayscale(0); }
.person__magnet { transition: transform 250ms var(--ease); }
.person__name { margin-top: 20px; font-size: 17px; font-weight: 600; }
.person__role { margin-top: 4px; font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------- reach -- */

.reach {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  padding: clamp(120px, 16vw, 220px) var(--gutter);
}
.reach__bg {
  position: absolute;
  inset: 0;
  width: 120%; height: 120%;
  object-fit: cover;
  opacity: 0.4;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
.reach__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,17,20,0.5), rgba(14,17,20,0.92));
}
.reach__inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; text-align: center; }
.reach__city {
  margin-top: 24px;
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}
.reach__note { margin-top: 20px; font-size: 16px; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.02em; }
.reach__cities { margin-top: 14px; font-size: 19px; font-weight: 600; color: #fff; letter-spacing: 0.02em; }

/* ------------------------------------------------------------------ cta -- */

.cta {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: clamp(120px, 16vw, 220px) var(--gutter);
}
.cta__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.cta__title { font-size: clamp(36px, 5.6vw, 72px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; }
.cta__body {
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}
.cta__action { margin-top: 44px; }
.cta--wash { background: var(--wash); }
.cta__title--sm { font-size: clamp(34px, 5vw, 64px); }

/* ---------------------------------------------- reveal, slow variant -- */
/* Work/Studio sections fade as a single 56px/1000ms block rather than
   Home's faster staggered-children version. */
.js-motion .reveal--slow > * { transform: translateY(56px); }
.js-motion .reveal--slow.is-revealed > * { transition-duration: 1000ms; }

/* --------------------------------------------------------- page nav/hero -- */

.nav--page {
  background: #fff;
  box-shadow: none;
  transition: all 320ms var(--ease);
}
.nav--page.is-scrolled {
  /* Reset every glass-pill property .nav.is-scrolled sets — same specificity,
     so without this the page nav silently inherits Home's dark blur pill. */
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav--page .nav__brand,
.nav--page .nav__links a { color: var(--ink); }
.nav--page .nav__links a[aria-current="page"] { font-weight: 700; }

.page-hero {
  padding: clamp(180px, 20vw, 260px) var(--gutter) 100px;
  max-width: 1520px;
  margin: 0 auto;
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.js-motion .page-hero { opacity: 0; transform: translateY(30px); }
.js-motion.is-mounted .page-hero { opacity: 1; transform: none; }
.page-hero__title {
  margin-top: 20px;
  font-size: clamp(40px, 6.6vw, 96px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 1100px;
}
.page-hero__body { margin-top: 32px; font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 680px; }

/* ---------------------------------------------------------- work: cases -- */

.case { padding: 0; }
.case__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(100px, 14vw, 180px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.case__media { overflow: hidden; }
.case__media img { width: 100%; height: 520px; object-fit: cover; }
.case__sector { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.case__name { margin-top: 18px; font-size: clamp(40px, 5vw, 72px); font-weight: 700; letter-spacing: -0.02em; }
.case__body { margin-top: 24px; font-size: 16.5px; line-height: 1.7; max-width: 480px; }
.case__outcome { margin-top: 20px; font-size: 16.5px; line-height: 1.7; max-width: 480px; }
.case__outcome strong { font-weight: 600; }
.case--light { background: #fff; }
.case--light .case__sector { color: var(--blue); }
.case--light .case__name { color: var(--ink); }
.case--light .case__body,
.case--light .case__outcome { color: var(--muted); }
.case--light .case__outcome strong { color: var(--ink); }
.case--dark { background: var(--ink); }
.case--dark .case__sector { color: var(--blue-pale); }
.case--dark .case__name { color: #fff; }
.case--dark .case__body,
.case--dark .case__outcome { color: rgba(255, 255, 255, 0.65); }
.case--dark .case__outcome strong { color: #fff; }

@media (max-width: 900px) {
  .case__inner { grid-template-columns: 1fr; gap: 32px; }
  .case__media img { height: 360px; }
  .case__media { order: 1 !important; }
  .case__body-col { order: 2 !important; }
}

/* ------------------------------------------------------------ studio: belief -- */

.belief {
  overflow: hidden;
  background: linear-gradient(160deg, #1584C4 0%, #136A9E 100%);
  padding: clamp(90px, 12vw, 160px) var(--gutter);
}
.belief__quote {
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.32;
  color: #fff;
}

/* --------------------------------------------------------- studio: vm -- */

.vm { background: #fff; padding: var(--section-y) var(--gutter); }
.vm__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 64px; }
.vm__title { margin-top: 20px; font-size: clamp(28px, 3vw, 40px); font-weight: 600; letter-spacing: -0.02em; }
.vm__body { margin-top: 20px; font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-top: 96px;
  border-top: 1px solid var(--line);
  padding-top: 64px;
}
.values__title { font-size: 20px; font-weight: 600; }
.values__desc { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ----------------------------------------------------- studio: process -- */

.process { background: var(--wash); padding: var(--section-y) var(--gutter); }
.process__title { margin-bottom: 56px; }
.process__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); }
.process__step { background: var(--wash); padding: 36px 32px; }
.process__n { font-size: 13px; font-weight: 700; color: var(--blue); }
.process__step-title { margin-top: 14px; font-size: 19px; font-weight: 600; }
.process__step-desc { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* -------------------------------------------------------- studio: team -- */

.studio-team { background: #fff; padding: var(--section-y) var(--gutter); }
.studio-team__body { margin: 20px 0 56px; font-size: 16.5px; line-height: 1.6; color: var(--muted); max-width: 640px; }
.studio-team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.studio-team__media { width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--line); }
.studio-team__media img { width: 100%; height: 100%; object-fit: cover; }
.studio-team__name { margin-top: 20px; font-size: 17px; font-weight: 600; }
.studio-team__role { margin-top: 4px; font-size: 14px; color: var(--muted); }

/* ------------------------------------------------------ studio: testimonials -- */

.testimonials { background: var(--ink-deep); padding: var(--section-y) var(--gutter); }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 56px; margin-top: 40px; }
.testimonial__quote {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
  color: #fff;
}
.testimonial__name { margin-top: 24px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.6); }

/* ------------------------------------------------------- simple footer -- */

.footer-simple {
  background: var(--ink-deep);
  color: #fff;
  padding: 80px var(--gutter) 40px;
}
.footer-simple--bordered { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-simple__inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-simple__copy { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* ------------------------------------------------------------ watermark -- */
/* Builder credit, separate from site content: the dot links to the parent
   brand site, the text to the dev studio's own site — two distinct targets. */

.watermark {
  background: var(--ink-deep);
  padding: 18px var(--gutter) 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.watermark__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3DDC84;
  flex-shrink: 0;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.watermark__dot:hover { transform: scale(1.35); box-shadow: 0 0 10px rgba(61, 220, 132, 0.65); }
.watermark__text {
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.38);
  transition: color 200ms ease;
}
.watermark__text:hover { color: rgba(255, 255, 255, 0.7); }

/* --------------------------------------------------------------- footer -- */

.footer { background: var(--ink-deep); color: #fff; padding: 96px var(--gutter) 48px; }
.footer__top {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 64px;
}
.footer__blurb {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}
.footer__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.footer__links { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; align-items: flex-start; }
.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 300ms ease;
}
.footer__links a:hover { color: rgba(255, 255, 255, 0.8); background-size: 100% 1px; }
.footer__static { color: rgba(255, 255, 255, 0.55); font-size: 15px; }
.footer__bottom {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom span { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* ----------------------------------------------------------- responsive -- */

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: 1fr; }
  .nav__links { gap: 24px; }
  .vm__grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { padding: 20px var(--gutter); }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 14px; }
}

/* ------------------------------------------------- reduced-motion branch -- */

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Set on <html> when the user prefers reduced motion. Scroll-driven
   sections collapse to static, readable equivalents. */
.reduced-motion .preloader { display: none; }
.reduced-motion .hero-wrap { height: 100vh; }
.reduced-motion .hero-sticky { position: relative; }
.reduced-motion .hero__static-copy { display: block; }
.reduced-motion .hero__phrases { display: none; }
.reduced-motion .hero__cta { opacity: 1; transform: none; pointer-events: auto; }
.reduced-motion .hero__cue,
.reduced-motion .hero__eyebrow { opacity: 1; transform: none; }
.reduced-motion .hero__headline .char { opacity: 1; transform: none; filter: none; }
.reduced-motion .reveal > *,
.reduced-motion .reveal [data-reveal-item] { opacity: 1; transform: none; }
.reduced-motion .statement__highlight { background-size: 100% 38%; }
.reduced-motion .work-wrap { height: auto; }
.reduced-motion .work-sticky { position: relative; height: auto; }
.reduced-motion .work__head { position: relative; padding-bottom: 40px; }
.reduced-motion .work-card { position: relative; inset: auto; height: auto; margin-bottom: 2px; transform: none; filter: none; }
.reduced-motion .work-card__media { position: relative; height: 420px; }
.reduced-motion .work-card__img { height: 420px; transform: none; clip-path: none; }
.reduced-motion .work-card__body { position: absolute; inset: 0; }
