:root {
  --bg: #12100f;
  --bg-soft: #1b1716;
  --paper: #f5f1eb;
  --text: #f8f6f1;
  --muted: rgba(248, 246, 241, 0.64);
  --ink: #17171a;
  --ink-muted: rgba(23, 23, 26, 0.68);
  --line: rgba(248, 246, 241, 0.12);
  --line-dark: rgba(23, 23, 26, 0.14);
  --accent: #ed2b2a;
  --accent-dark: #b91d1d;
  --ember: rgba(237, 43, 42, 0.2);
  --max: 1180px;
  --radius: 8px;
  --font-display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --font-body: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-body);
  font-feature-settings: "kern", "liga";
  background:
    radial-gradient(circle at 74% 8%, rgba(237, 43, 42, 0.08), transparent 26rem),
    radial-gradient(circle at 10% 32%, rgba(130, 31, 28, 0.1), transparent 30rem),
    linear-gradient(135deg, #12100f 0%, #171312 48%, #0d0c0d 100%);
  color: var(--text);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  opacity: 0.56;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(248, 246, 241, 0.055) 1px, transparent 0),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    repeating-linear-gradient(90deg, transparent 0 128px, rgba(248, 246, 241, 0.028) 128px 129px);
  background-size: 34px 34px, 96px 96px, 96px 96px, 100% 100%;
  mask-image: linear-gradient(180deg, black, rgba(0, 0, 0, 0.7) 58%, transparent 94%);
}

body::after {
  z-index: -1;
  opacity: 0.72;
  background:
    radial-gradient(circle at var(--glow-x, 72%) var(--glow-y, 18%), rgba(237, 43, 42, 0.15), transparent 20rem),
    radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.04), transparent 30rem);
  animation: ambientPulse 9s ease-in-out infinite alternate;
}

.ambient-rings {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.ambient-rings span {
  position: absolute;
  width: clamp(220px, 28vw, 520px);
  height: clamp(220px, 28vw, 520px);
  border: 1px solid rgba(237, 43, 42, 0.14);
  border-radius: 50%;
  opacity: 0.36;
  filter: drop-shadow(0 0 22px rgba(237, 43, 42, 0.12));
  animation: ringFloat 28s ease-in-out infinite alternate;
}

.ambient-rings span:nth-child(1) {
  left: -10vw;
  top: 12vh;
}

.ambient-rings span:nth-child(2) {
  right: -8vw;
  top: 44vh;
  width: clamp(170px, 22vw, 400px);
  height: clamp(170px, 22vw, 400px);
  animation-delay: -8s;
}

.ambient-rings span:nth-child(3) {
  left: 38vw;
  top: 126vh;
  width: clamp(180px, 24vw, 440px);
  height: clamp(180px, 24vw, 440px);
  animation-delay: -15s;
}

.ambient-rings span:nth-child(4) {
  right: 18vw;
  top: 238vh;
  width: clamp(260px, 32vw, 560px);
  height: clamp(260px, 32vw, 560px);
  opacity: 0.26;
  animation-delay: -21s;
}

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

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

p {
  color: var(--muted);
  line-height: 1.72;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 4vw, 60px);
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 15, 15, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.15);
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-link img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(248, 246, 241, 0.78);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
}

.nav-cta {
  color: var(--text) !important;
  border-color: rgba(248, 246, 241, 0.34);
  background: rgba(237, 43, 42, 0.92);
  box-shadow: 0 12px 34px rgba(237, 43, 42, 0.24);
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.button.primary.light {
  background: white;
  border-color: white;
  color: var(--accent-dark);
}

.button.ghost {
  color: var(--text);
  border-color: rgba(248, 246, 241, 0.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: white;
  border-radius: 2px;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 28%, rgba(237, 43, 42, 0.22), transparent 32%),
    linear-gradient(120deg, rgba(17, 16, 15, 0.94) 0%, rgba(18, 17, 17, 0.88) 52%, rgba(39, 31, 30, 0.9) 100%);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: min(880px, 64vw);
  padding: 150px clamp(24px, 7vw, 108px) 86px;
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(248, 246, 241, 0.62);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.contact-hero h1 {
  font-family: var(--font-display);
  margin: 0;
  max-width: 860px;
  font-size: clamp(44px, 5.35vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero p,
.page-hero p,
.contact-hero p {
  max-width: 660px;
  margin: 26px 0 0;
  font-size: clamp(18px, 1.45vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.45;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 42px 43px),
    linear-gradient(120deg, transparent, rgba(237, 43, 42, 0.14), transparent);
  mix-blend-mode: screen;
  animation: scanDrift 11s linear infinite;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 55% 40%, rgba(237, 43, 42, 0.08), transparent 30rem),
    linear-gradient(90deg, rgba(9, 9, 10, 0.82), rgba(9, 9, 10, 0.46) 44%, rgba(9, 9, 10, 0.16) 78%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.2), rgba(8, 8, 9, 0.76));
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.04) sepia(0.08) saturate(1.04) contrast(1.08) brightness(0.94);
  transform: scale(1.035);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proofline span {
  padding: 16px 22px 16px 0;
  margin-right: 22px;
  color: rgba(248, 246, 241, 0.66);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-services .hero-copy {
  max-width: min(760px, 58vw);
  margin-left: auto;
  padding-right: clamp(28px, 8vw, 126px);
  padding-left: clamp(24px, 5vw, 72px);
}

.hero-services .hero-media::before {
  background:
    radial-gradient(circle at 70% 34%, rgba(237, 43, 42, 0.14), transparent 28rem),
    linear-gradient(270deg, rgba(9, 9, 10, 0.9), rgba(9, 9, 10, 0.56) 44%, rgba(9, 9, 10, 0.2) 76%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.24), rgba(8, 8, 9, 0.78));
}

.hero-about {
  align-items: end;
}

.hero-about .hero-copy {
  max-width: min(820px, 62vw);
  padding-top: 220px;
  padding-bottom: clamp(78px, 11vw, 150px);
}

.hero-about .hero-media::before {
  background:
    radial-gradient(circle at 28% 64%, rgba(237, 43, 42, 0.2), transparent 30rem),
    linear-gradient(90deg, rgba(9, 9, 10, 0.88), rgba(9, 9, 10, 0.52) 46%, rgba(9, 9, 10, 0.28)),
    linear-gradient(180deg, rgba(8, 8, 9, 0.12), rgba(8, 8, 9, 0.82));
}

.hero-about .hero-media img {
  object-position: center 42%;
}

.hero-motion {
  display: none;
}

.hero-motion span {
  position: absolute;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(237, 43, 42, 0.18);
  border-radius: 50%;
  filter: blur(0.2px);
  animation: orbitalDrift 16s ease-in-out infinite alternate;
}

.hero-motion span:nth-child(1) {
  right: -15vw;
  top: 12%;
}

.hero-motion span:nth-child(2) {
  width: 26vw;
  height: 26vw;
  right: 18%;
  bottom: 8%;
  animation-delay: -4s;
}

.hero-motion span:nth-child(3) {
  width: 18vw;
  height: 18vw;
  right: 42%;
  top: 18%;
  opacity: 0.7;
  animation-delay: -8s;
}

section {
  padding: clamp(82px, 10vw, 150px) clamp(20px, 5vw, 64px);
}

.intro-grid,
.lens-section,
.proof-band,
.founder-proof,
.visual-routes,
.split-section,
.process-section,
.case-strip,
.private-proof,
.private-proof-note,
.talent-section,
.insights-preview,
.service-list,
.case-detail-list,
.page-hero,
.contact-hero,
.article-page,
.related-posts,
.values-grid {
  max-width: var(--max);
  margin: 0 auto;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: clamp(32px, 4vw, 58px);
  padding-bottom: clamp(32px, 4vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band article {
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
  border: 0;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 16%, rgba(237, 43, 42, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.proof-band article:last-child {
  border-right: 0;
}

.proof-band article:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 43, 42, 0.34);
  background:
    radial-gradient(circle at 84% 16%, rgba(237, 43, 42, 0.16), transparent 11rem),
    linear-gradient(145deg, rgba(237, 43, 42, 0.11), rgba(255, 255, 255, 0.02));
}

.proof-band strong {
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.proof-band span {
  max-width: 300px;
  color: var(--muted);
  line-height: 1.5;
}

.founder-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.founder-proof h2 {
  font-family: var(--font-display);
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
}

.founder-proof p {
  font-size: 19px;
}

.founder-proof aside {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(237, 43, 42, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.045);
  transition: background 0.32s ease, border-color 0.32s ease;
}

.founder-proof aside:hover,
.private-proof-note:hover,
.footer-cta:hover,
.lens-list article:hover,
.service-row:hover {
  border-color: rgba(237, 43, 42, 0.3);
  background:
    radial-gradient(circle at 90% 10%, rgba(237, 43, 42, 0.14), transparent 12rem),
    rgba(237, 43, 42, 0.055);
}

.founder-proof aside p {
  margin-top: 0;
  font-size: 16px;
}

.founder-proof ul,
.private-proof-grid ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.founder-proof li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  line-height: 1.45;
}

.visual-routes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(340px, auto);
  gap: 1px;
  padding: clamp(36px, 6vw, 80px) clamp(20px, 5vw, 64px);
  max-width: var(--max);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-routes article {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.visual-routes article:first-child {
  grid-row: span 1;
  min-height: 340px;
}

.visual-routes img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: grayscale(0.22) sepia(0.16) saturate(0.82) contrast(1.13) brightness(0.9);
  transform: scale(1.02);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.visual-routes article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(237, 43, 42, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(17, 16, 15, 0.04), rgba(17, 16, 15, 0.88));
}

.visual-routes article:hover img {
  transform: scale(1.08);
  filter: grayscale(0.08) sepia(0.12) saturate(0.96) contrast(1.16) brightness(0.96);
}

.visual-routes article:hover div {
  transform: translateY(-6px);
}

.visual-routes div {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 3vw, 34px);
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  transition: transform 0.45s ease;
}

.visual-routes h3 {
  font-family: var(--font-display);
  margin: 0;
  max-width: 420px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.visual-routes p {
  max-width: 460px;
  margin: 12px 0 0;
  color: rgba(248, 246, 241, 0.78);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lens-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lens-section h2 {
  font-family: var(--font-display);
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
}

.lens-section > div:first-child p {
  max-width: 560px;
  margin-top: 28px;
  font-size: clamp(18px, 1.5vw, 22px);
}

.lens-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.lens-list article {
  display: grid;
  grid-template-columns: 60px 0.8fr 1fr;
  gap: 22px;
  padding: clamp(24px, 3.2vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.32s ease, border-color 0.32s ease, padding-left 0.32s ease;
}

.lens-list article:hover {
  padding-left: 18px;
}

.lens-list span {
  color: rgba(237, 43, 42, 0.86);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.14em;
}

.lens-list strong {
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.06;
  font-weight: 600;
}

.lens-list p {
  margin: 0;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(237, 43, 42, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.editorial-visual-section .section-copy {
  max-width: 600px;
}

.editorial-visual-section p {
  margin-top: 24px;
  font-size: clamp(17px, 1.35vw, 20px);
}

.editorial-visual-stack {
  position: relative;
  min-height: clamp(520px, 54vw, 680px);
  isolation: isolate;
}

.editorial-visual-stack::before {
  content: "";
  position: absolute;
  inset: 12% 6% 8% 18%;
  z-index: 0;
  border: 1px solid rgba(237, 43, 42, 0.3);
  opacity: 0.7;
  transform: rotate(-4deg);
  box-shadow: 0 0 70px rgba(237, 43, 42, 0.12);
}

.editorial-visual-stack figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.editorial-visual-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 82% 14%, rgba(237, 43, 42, 0.22), transparent 22rem),
    linear-gradient(115deg, transparent 20%, rgba(248, 246, 241, 0.07) 38%, transparent 54%);
  background-size: 100% 100%, 100% 100%, 180% 100%;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: background-position 0.8s ease, opacity 0.8s ease;
}

.editorial-visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) sepia(0.12) saturate(0.84) contrast(1.12) brightness(0.88);
  transform: scale(1.025);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.editorial-visual-stack figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  color: rgba(248, 246, 241, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-visual-main {
  inset: 0 0 10% 16%;
  z-index: 1;
}

.editorial-visual-inset {
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(44%, 340px);
  aspect-ratio: 0.78;
  border: 1px solid rgba(248, 246, 241, 0.18);
}

.editorial-visual-section:hover .editorial-visual-main img {
  transform: scale(1.065) translate3d(1.2%, -0.8%, 0);
  filter: grayscale(0.08) sepia(0.1) saturate(1) contrast(1.16) brightness(0.96);
}

.editorial-visual-section:hover .editorial-visual-inset img {
  transform: scale(1.075) translate3d(-1.2%, 0.8%, 0);
  filter: grayscale(0.06) sepia(0.08) saturate(1.04) contrast(1.14) brightness(0.98);
}

.editorial-visual-section:hover .editorial-visual-stack figure::after {
  background-position: 0 0, 0 0, 100% 0;
  opacity: 1;
}

.intro-grid h2,
.section-copy h2,
.section-heading h2,
.cta-band h2,
.article-page h1 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.proof-card,
.process-grid article,
.service-preview article,
.values-grid article {
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(24px, 3.2vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  transition: transform 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.proof-card:hover,
.process-grid article:hover,
.service-preview article:hover,
.values-grid article:hover,
.talent-grid article:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 43, 42, 0.34);
  background:
    radial-gradient(circle at 85% 12%, rgba(237, 43, 42, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(237, 43, 42, 0.105), rgba(255, 255, 255, 0.024));
}

.proof-card strong,
.service-preview span {
  display: block;
  margin-bottom: 14px;
  font-size: 17px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split-section.dark {
  background:
    linear-gradient(135deg, rgba(245, 241, 235, 0.98), rgba(236, 229, 218, 0.96));
  color: var(--ink);
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2));
  padding-right: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2));
}

.split-section.dark p {
  color: var(--ink-muted);
}

.split-section > img {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(0.16) sepia(0.1) saturate(0.88) contrast(1.06);
}

.tif-context-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2));
  padding-right: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(237, 43, 42, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(19, 18, 18, 0.98), rgba(11, 11, 12, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tif-context-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: clamp(360px, 42vw, 560px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

.tif-context-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(9, 9, 10, 0.72)),
    radial-gradient(circle at 28% 20%, rgba(237, 43, 42, 0.2), transparent 18rem);
}

.tif-context-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.12) sepia(0.08) saturate(0.95) contrast(1.08) brightness(0.86);
  transform: scale(1.02);
}

.tif-context-section .section-copy {
  max-width: 700px;
}

.tif-context-section h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

.tif-context-section p {
  margin-top: 24px;
  color: rgba(248, 246, 241, 0.72);
  font-size: clamp(17px, 1.25vw, 21px);
}

.tif-context-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tif-context-points span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(248, 246, 241, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-preview {
  display: grid;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 850;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 560px;
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-reset: process;
}

.featured-process .process-grid {
  position: relative;
}

.featured-process .process-grid::before {
  display: none;
}

.featured-process .process-grid article {
  position: relative;
  padding-top: clamp(28px, 4vw, 48px);
  border-left: 0;
  border-right: 1px solid var(--line);
}

.featured-process .process-grid article:last-child {
  border-right: 0;
}

.featured-process .process-grid span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(237, 43, 42, 0.7);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 28px rgba(237, 43, 42, 0.22);
  animation: signalBreath 4.8s ease-in-out infinite;
}

.process-image-rail {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.82fr;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.process-image-rail figure {
  position: relative;
  min-height: clamp(150px, 18vw, 240px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.process-image-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.34) sepia(0.16) saturate(0.8) contrast(1.13) brightness(0.78);
  transform: scale(1.035);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.process-image-rail figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.7)),
    linear-gradient(112deg, transparent 0 34%, rgba(237, 43, 42, 0.14) 48%, transparent 66%);
  background-size: 100% 100%, 180% 100%;
  mix-blend-mode: screen;
  opacity: 0.78;
  transition: background-position 0.75s ease, opacity 0.75s ease;
}

.process-image-rail figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  color: rgba(248, 246, 241, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-process:hover .process-image-rail img {
  transform: scale(1.075);
  filter: grayscale(0.12) sepia(0.12) saturate(1.02) contrast(1.18) brightness(0.92);
}

.featured-process:hover .process-image-rail figure::after {
  background-position: 0 0, 100% 0;
  opacity: 1;
}

.process-grid span,
.service-row .row-num,
.case-detail span,
.blog-card span,
.article-page header span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-grid h3,
.case-grid h3,
.talent-grid h3,
.blog-card h3,
.service-row h2,
.case-detail h2 {
  font-family: var(--font-display);
  margin: 14px 0 0;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

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

.talent-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.private-proof-note {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 clamp(20px, 5vw, 64px) 0 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(237, 43, 42, 0.09), transparent 22rem),
    rgba(255, 255, 255, 0.018);
  transition: background 0.32s ease, border-color 0.32s ease;
}

.private-proof-image {
  position: relative;
  height: 100%;
  min-height: 230px;
  overflow: hidden;
}

.private-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.28) sepia(0.12) saturate(0.84) contrast(1.12) brightness(0.72);
  transform: scale(1.04);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.private-proof-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(18, 16, 15, 0.72)),
    radial-gradient(circle at 22% 16%, rgba(237, 43, 42, 0.2), transparent 16rem);
}

.private-proof-note:hover .private-proof-image img {
  transform: scale(1.085);
  filter: grayscale(0.1) sepia(0.1) saturate(0.98) contrast(1.15) brightness(0.86);
}

.private-proof-note strong {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-proof-note p {
  margin: 0;
}

.private-proof-note a {
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: normal;
}

.private-proof-grid article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.035);
}

.private-proof-grid strong {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-proof-grid h3 {
  font-family: var(--font-display);
  margin: 20px 0 0;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: 0;
}

.case-private-page {
  padding-top: clamp(34px, 5vw, 74px);
}

.case-grid article,
.blog-card,
.talent-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.talent-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.talent-grid article span {
  color: rgba(237, 43, 42, 0.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.case-grid img,
.blog-card img,
.talent-grid img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  filter: grayscale(0.14) sepia(0.12) saturate(0.96) contrast(1.12) brightness(0.9);
  transform: scale(1.01);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.blog-card:hover img,
.case-grid article:hover img {
  transform: scale(1.075);
  filter: grayscale(0.08) sepia(0.1) saturate(0.98) contrast(1.15) brightness(0.96);
}

.blog-card:hover,
.talent-grid article:hover,
.case-grid article:hover {
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.case-grid div,
.blog-card div {
  padding: 22px;
}

.talent-grid h3,
.talent-grid p {
  padding: 0;
}

.talent-grid h3 {
  min-height: 0;
  margin-top: 48px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.02;
}

.talent-grid p {
  margin-bottom: 0;
}

.cta-band {
  max-width: var(--max);
  margin: clamp(50px, 7vw, 92px) auto;
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, #ef302f, #a91818);
  box-shadow: 0 32px 90px rgba(237, 43, 42, 0.2);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 660px;
}

.service-list,
.case-detail-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 0.82fr;
  gap: 34px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: background 0.28s ease, padding-left 0.28s ease;
}

.service-row:hover {
  padding-left: 18px;
}

.service-row ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.case-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: 38px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-detail img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.case-detail dl {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.case-detail dt {
  margin-bottom: 6px;
  font-weight: 850;
}

.case-detail dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  padding-top: 170px;
  padding-bottom: 70px;
  overflow: hidden;
}

.blog-grid.large {
  max-width: var(--max);
  margin: 0 auto;
}

.contact-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding-top: 150px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 246, 241, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
}

.article-page {
  padding-top: 160px;
}

.article-page header {
  max-width: 850px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 850;
}

.article-page header p {
  font-size: 21px;
}

.article-cover {
  width: 100%;
  max-height: 560px;
  margin: 42px 0;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
}

.article-body section {
  padding: 0 0 34px;
}

.article-body h2 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
  font-weight: 600;
}

.article-body p {
  font-size: 18px;
}

.quote-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.18;
  color: var(--text);
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(150px, 0.55fr) minmax(220px, 0.76fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 64px) 38px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(237, 43, 42, 0.14), transparent 30%),
    linear-gradient(135deg, #0b0b0d, #120f0f);
}

.site-footer img {
  width: 120px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-column h3,
.footer-cta h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 18px;
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-column a {
  color: rgba(248, 246, 241, 0.68);
}

.footer-column a:hover {
  color: var(--text);
}

.footer-cta {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 43, 42, 0.14), transparent 10rem),
    rgba(255, 255, 255, 0.04);
  transition: background 0.32s ease, border-color 0.32s ease;
}

.footer-cta p {
  margin: 0 0 20px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  margin: 0;
  font-size: 13px;
}

[data-section-fx] {
  position: relative;
  isolation: isolate;
  --section-x: 50%;
  --section-y: 50%;
  --section-glow: rgba(237, 43, 42, 0.16);
  --section-glow-soft: rgba(237, 43, 42, 0.075);
  --section-sheen: rgba(248, 246, 241, 0.09);
}

[data-section-fx] > * {
  position: relative;
  z-index: 1;
}

[data-section-fx]::before,
[data-section-fx]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.75s ease;
}

[data-section-fx]::before {
  background:
    radial-gradient(circle at var(--section-x) var(--section-y), var(--section-glow), transparent 18rem),
    radial-gradient(circle at 82% 18%, var(--section-glow-soft), transparent 22rem),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.024), transparent);
  transform: scale(0.985);
}

[data-section-fx]::after {
  background:
    linear-gradient(108deg, transparent 0 18%, rgba(248, 246, 241, 0.075) 31%, transparent 44%),
    linear-gradient(132deg, transparent 0 42%, rgba(237, 43, 42, 0.11) 52%, transparent 66%),
    radial-gradient(ellipse at var(--section-x) var(--section-y), var(--section-sheen), transparent 32rem);
  background-size: 180% 100%, 220% 100%, 100% 100%;
  mix-blend-mode: screen;
  filter: blur(0.2px);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  transform: translate3d(-2.5%, 10px, 0) skewY(-0.7deg);
}

[data-section-fx].is-section-active::before,
[data-section-fx].is-section-hovered::before {
  opacity: 1;
  transform: scale(1);
}

[data-section-fx].is-section-active::after,
[data-section-fx].is-section-hovered::after {
  opacity: 0.82;
  transform: translate3d(0, 0, 0) skewY(-0.7deg);
  animation: sectionSatinSweep 8.5s ease-in-out infinite alternate;
}

[data-section-fx].is-section-hovered::before {
  opacity: 1.18;
}

.split-section.dark[data-section-fx] {
  --section-glow: rgba(237, 43, 42, 0.1);
  --section-glow-soft: rgba(185, 29, 29, 0.08);
  --section-sheen: rgba(23, 23, 26, 0.09);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientPulse {
  0% {
    opacity: 0.48;
    transform: scale(1);
  }
  100% {
    opacity: 0.78;
    transform: scale(1.06);
  }
}

@keyframes sectionSatinSweep {
  0% {
    background-position: 118% 0, -42% 0, 50% 50%;
    filter: blur(0.2px) saturate(1);
  }
  100% {
    background-position: -28% 0, 122% 0, 50% 50%;
    filter: blur(0.2px) saturate(1.18);
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-1.4%, 1.2%, 0);
  }
}

@keyframes signalBreath {
  0%,
  100% {
    box-shadow: 0 0 22px rgba(237, 43, 42, 0.18);
  }
  50% {
    box-shadow: 0 0 38px rgba(237, 43, 42, 0.34);
  }
}

@keyframes scanDrift {
  0% {
    transform: translateX(-4%);
  }
  100% {
    transform: translateX(4%);
  }
}

@keyframes orbitalDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(-4%, 3%, 0) scale(1.08);
    opacity: 0.72;
  }
}

@keyframes ringFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  33% {
    transform: translate3d(10vw, 18vh, 0) scale(1.08);
  }
  66% {
    transform: translate3d(-6vw, 34vh, 0) scale(0.98);
  }
  100% {
    transform: translate3d(14vw, 52vh, 0) scale(1.12);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .brand-link img {
    width: 118px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 92px 28px 38px;
    background: rgba(15, 16, 20, 0.96);
    font-size: 22px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .lens-section,
  .editorial-visual-section,
  .tif-context-section,
  .contact-hero,
  .split-section,
  .case-detail,
  .private-proof-note {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1,
  .contact-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 7.2vw, 62px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    padding-top: 130px;
    padding-bottom: 78px;
    max-width: none;
  }

  .hero-services .hero-copy,
  .hero-about .hero-copy {
    margin-left: 0;
    max-width: none;
    padding: 130px clamp(24px, 7vw, 108px) 78px;
  }

  .hero-media {
    min-height: 0;
  }

  .intro-grid,
  .lens-list article,
  .proof-band,
  .visual-routes,
  .process-grid,
  .case-grid,
  .blog-grid,
  .talent-grid,
  .private-proof-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visual-routes article:first-child {
    grid-row: span 1;
    min-height: 340px;
  }

  .founder-proof {
    grid-template-columns: 1fr;
  }

  .featured-process .process-grid::before {
    display: none;
  }

  .intro-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-image-rail {
    grid-template-columns: 1fr 1fr;
  }

  .process-image-rail figure:first-child {
    grid-column: 1 / -1;
  }

  .lens-list article {
    grid-template-columns: 48px 1fr;
  }

  .lens-list article p {
    grid-column: 2;
  }

  .editorial-visual-stack {
    min-height: 560px;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }

  .private-proof-note {
    grid-template-columns: 1fr;
    padding: 0 24px 28px;
  }

  .private-proof-image {
    margin: 0 -24px;
    min-height: 280px;
  }

  .tif-context-media {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .hero h1,
  .page-hero h1,
  .contact-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-link img {
    width: 104px;
  }

  .hero h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(36px, 10vw, 43px);
    line-height: 1.02;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero p,
  .page-hero p,
  .contact-hero p {
    font-size: 17px;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-proofline {
    display: grid;
  }

  .talent-grid article {
    min-height: 220px;
  }

  .intro-grid,
  .lens-list article,
  .proof-band,
  .visual-routes,
  .process-grid,
  .case-grid,
  .blog-grid,
  .talent-grid,
  .private-proof-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .lens-list article p {
    grid-column: auto;
  }

  .editorial-visual-stack {
    min-height: 500px;
  }

  .editorial-visual-main {
    inset: 0 0 16% 0;
  }

  .editorial-visual-inset {
    width: min(62%, 300px);
  }

  .process-image-rail {
    grid-template-columns: 1fr;
  }

  .tif-context-section {
    gap: 26px;
  }

  .tif-context-media {
    min-height: 300px;
  }

  .tif-context-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading,
  .cta-band,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin-left: 20px;
    margin-right: 20px;
  }

  .case-detail {
    padding: 20px;
  }

  .case-detail img {
    min-height: 260px;
  }

  .contact-hero,
  .article-page,
  .page-hero {
    padding-top: 120px;
  }
}
