:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #66736d;
  --paper: #f6f4ee;
  --light: #fbfaf6;
  --line: #d8d3c6;
  --dark: #101512;
  --dark-2: #1b211d;
  --steel: #49646f;
  --amber: #c97d31;
  --amber-soft: #f0d7b8;
  --green: #6c7f64;
  --white: #fffdf7;
  --shadow: 0 24px 60px rgba(23, 32, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  padding-bottom: 92px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

[hidden] {
  display: none !important;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(216, 211, 198, 0.75);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #34403b;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 650;
}

.site-nav a {
  padding: 24px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  border-bottom-color: var(--amber);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

section {
  min-height: 100vh;
  padding: clamp(46px, 6vh, 64px) 5vw clamp(36px, 5vh, 52px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-paper {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(76px, 10vh, 96px);
  padding-bottom: clamp(56px, 8vh, 88px);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.72;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 21, 18, 0.98) 0%, rgba(16, 21, 18, 0.78) 44%, rgba(16, 21, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 21, 18, 0.88) 0%, rgba(16, 21, 18, 0.05) 48%);
}

.mechanical-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.orbit,
.gear,
.scan-beam,
.data-rail {
  position: absolute;
}

.orbit {
  right: 10vw;
  top: 17vh;
  border: 1px solid rgba(240, 215, 184, 0.28);
  border-radius: 50%;
  animation: driftSpin 18s linear infinite;
}

.orbit-a {
  width: 360px;
  height: 360px;
}

.orbit-b {
  top: 26vh;
  right: 3vw;
  width: 520px;
  height: 520px;
  border-style: dashed;
  animation-duration: 28s;
  animation-direction: reverse;
}

.gear {
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(201, 125, 49, 0.38) 0 8deg, transparent 8deg 18deg),
    radial-gradient(circle, transparent 0 39%, rgba(255, 253, 247, 0.14) 40% 43%, transparent 44%);
  animation: driftSpin 14s linear infinite;
  opacity: 0.75;
}

.gear-a {
  right: 23vw;
  top: 29vh;
  width: 116px;
  height: 116px;
}

.gear-b {
  right: 9vw;
  top: 52vh;
  width: 82px;
  height: 82px;
  animation-duration: 9s;
  animation-direction: reverse;
}

.scan-beam {
  right: 0;
  top: 0;
  width: 46vw;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 125, 49, 0.12) 49%, rgba(255, 253, 247, 0.18) 50%, transparent 52%);
  transform: translateX(42vw) skewX(-12deg);
  animation: scanAcross 6s ease-in-out infinite;
}

.data-rail {
  right: 8vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.62), transparent);
  animation: railPulse 3.5s ease-in-out infinite;
}

.rail-a {
  top: 39vh;
  width: 34vw;
}

.rail-b {
  top: 67vh;
  width: 24vw;
  animation-delay: 1.1s;
}

@keyframes driftSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scanAcross {
  0%,
  100% {
    transform: translateX(42vw) skewX(-12deg);
    opacity: 0;
  }
  42%,
  58% {
    opacity: 1;
  }
  50% {
    transform: translateX(-8vw) skewX(-12deg);
  }
}

@keyframes railPulse {
  0%,
  100% {
    opacity: 0.16;
    transform: translateX(0);
  }
  50% {
    opacity: 0.84;
    transform: translateX(-22px);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.24;
  font-weight: 750;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--amber);
  color: #17120c;
}

.button.secondary {
  border-color: rgba(255, 253, 247, 0.36);
  background: rgba(255, 253, 247, 0.08);
  color: var(--white);
}

.section-paper .button.secondary,
.section-light .button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: 28px 0 0;
  padding: 1px;
  background: rgba(255, 253, 247, 0.2);
}

.hero-metrics div {
  min-height: 86px;
  padding: 14px;
  background: rgba(16, 21, 18, 0.7);
}

.hero-metrics dt {
  font-size: 25px;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
}

.updated-note {
  margin: 12px 0 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 13px;
}

.section-head {
  width: min(1080px, 100%);
  margin: 0 auto clamp(18px, 3vh, 28px);
}

.section-head > p,
.split > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head > p,
.section-dark .split > p {
  color: rgba(255, 253, 247, 0.68);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 32px;
}

.position-grid,
.work-grid,
.loop-grid,
.case-grid,
.service-grid,
.channel-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: clamp(12px, 1.6vw, 18px);
}

.position-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.position-grid article,
.work-card,
.case-card,
.channel-grid article {
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.position-grid article {
  background: var(--white);
}

.kicker,
.card-topline,
.case-card span,
.channel-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.position-grid p,
.work-card p,
.case-card p,
.service-grid p,
.channel-grid p,
.rubric p,
.layer p,
.article-list p {
  color: var(--muted);
}

.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.loop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.loop-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.loop-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-weight: 900;
}

.loop-grid p {
  color: var(--muted);
}

.hook-grid,
.report-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: clamp(12px, 1.4vw, 16px);
}

.hook-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hook-card,
.report-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hook-card {
  min-height: 174px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(23, 32, 29, 0.07);
}

.hook-card span,
.report-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.hook-card h3,
.report-card h3 {
  margin-bottom: 8px;
}

.hook-card p,
.report-card p,
.report-card li,
.compliance-strip {
  color: var(--muted);
}

.hook-card p,
.report-card p {
  margin-bottom: 0;
}

.report-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-card {
  min-height: 322px;
  padding: 20px;
}

.report-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 13px;
}

.compliance-strip {
  width: min(1180px, 100%);
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  background: rgba(255, 253, 247, 0.7);
  font-size: 13px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

#videos [data-source="creative-videos"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#videos [data-source="creative-videos"] .video-card div {
  padding: 12px 14px 14px;
}

.video-subhead,
.status-strip {
  width: min(1180px, 100%);
  margin: 0 auto 12px;
}

.video-subhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 4px;
}

.video-subhead span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
}

.video-subhead p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 247, 0.64);
  font-size: 13px;
}

.portfolio-subhead {
  margin-top: 22px;
}

.portfolio-subhead span,
[data-source="portfolio-videos"] .video-card span {
  color: #9bb984;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 32, 29, 0.08);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f1411;
  object-fit: cover;
}

.video-card div {
  padding: 14px 16px 16px;
}

.video-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.video-card h3 {
  margin-bottom: 6px;
}

.video-card p,
.media-note {
  color: var(--muted);
}

.video-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.section-dark .video-card {
  border-color: rgba(255, 253, 247, 0.14);
  background: rgba(255, 253, 247, 0.07);
}

.section-dark .video-card h3 {
  color: var(--white);
}

.section-dark .video-card p {
  color: rgba(255, 253, 247, 0.66);
}

.media-note {
  width: min(1180px, 100%);
  margin: 12px auto 0;
  font-size: 12px;
}

.trend-report-panel,
.editorial-inline,
.framework-products {
  margin-top: clamp(30px, 5vh, 48px);
}

.status-strip {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  background: rgba(255, 253, 247, 0.72);
  color: var(--muted);
  font-size: 13px;
}

.status-strip b {
  color: var(--ink);
}

.work-card.featured {
  grid-column: span 2;
  background: var(--dark-2);
  color: var(--white);
}

.work-card.featured p {
  color: rgba(255, 253, 247, 0.7);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  border: 1px solid rgba(102, 115, 109, 0.3);
  color: #43504a;
  font-size: 12px;
  font-weight: 750;
}

.featured .tag-list li {
  border-color: rgba(255, 253, 247, 0.2);
  color: rgba(255, 253, 247, 0.78);
}

.framework-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.layer-stack {
  display: grid;
  gap: 12px;
}

.layer {
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
}

.layer span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 900;
}

.layer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.rubric {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rubric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.rubric-grid div {
  min-height: 116px;
  padding: 14px;
  background: var(--paper);
}

.rubric-grid b {
  display: block;
  margin-bottom: 8px;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial .section-head {
  width: min(1180px, 100%);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-width: 64px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.filter.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.article-list {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.article-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.article-list article[hidden] {
  display: none;
}

.article-list time {
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.article-list h3 {
  margin-bottom: 0;
}

.article-list a {
  border-bottom: 1px solid rgba(201, 125, 49, 0.36);
}

.article-list a:hover {
  color: var(--amber);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 174px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.06);
}

.service-grid p {
  color: rgba(255, 253, 247, 0.68);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto 14px;
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 720px;
  color: var(--muted);
}

.contact-process {
  margin-bottom: 0;
  font-size: 14px;
}

.channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.channel-grid article {
  min-height: 124px;
}

.channel-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.site-footer {
  display: flex;
  scroll-snap-align: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 5vw 34px;
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: rgba(255, 253, 247, 0.72);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  border-bottom: 1px solid rgba(255, 253, 247, 0.28);
}

.legal-page {
  min-height: calc(100vh - 72px);
}

.legal-content {
  display: grid;
  width: min(900px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.legal-content article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-content h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.floating-contact {
  position: fixed;
  right: max(22px, calc((100vw - 1280px) / 2 + 28px));
  bottom: 18px;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  width: min(720px, calc(100vw - 44px));
  padding: 12px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 8px;
  background: rgba(16, 21, 18, 0.94);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(16, 21, 18, 0.32);
  backdrop-filter: blur(18px);
}

.floating-contact strong,
.floating-contact span {
  display: block;
}

.floating-contact strong {
  font-size: 14px;
  line-height: 1.2;
}

.floating-contact span {
  margin-top: 2px;
  color: rgba(255, 253, 247, 0.68);
  font-size: 12px;
  line-height: 1.3;
}

.floating-mail,
.floating-copy {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 4px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  white-space: nowrap;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.floating-mail {
  background: var(--amber);
}

.floating-copy {
  cursor: pointer;
  background: rgba(255, 253, 247, 0.08);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 40;
  padding: 12px 16px;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 4px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 1280px) {
  .site-header {
    padding-inline: max(5vw, calc((100vw - 1280px) / 2 + 40px));
  }
}

@media (max-width: 1180px) {
  .brand {
    gap: 8px;
  }

  .brand span:last-child {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 1060px) {
  html {
    scroll-snap-type: none;
    scroll-padding-top: 64px;
  }

  section {
    min-height: auto;
    scroll-snap-align: none;
  }

  .work-grid,
  .service-grid,
  .loop-grid,
  .video-grid,
  .hook-grid,
  .report-grid,
  #videos [data-source="creative-videos"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-layout,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 15px;
  }

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

  .site-nav a {
    padding: 14px 10px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  section {
    padding: 42px 5vw;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 36px;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .mechanical-stage {
    opacity: 0.6;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 21, 18, 0.98) 0%, rgba(16, 21, 18, 0.9) 72%, rgba(16, 21, 18, 0.52) 100%),
      linear-gradient(0deg, rgba(16, 21, 18, 0.9) 0%, rgba(16, 21, 18, 0.2) 52%);
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(36px, 12vw, 46px);
    line-height: 1.02;
  }

  h2 {
    margin-bottom: 12px;
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.14;
  }

  h3 {
    font-size: 17px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero-subtitle {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.34;
  }

  .hero-copy,
  .section-head > p,
  .split > p {
    font-size: 14px;
    line-height: 1.58;
  }

  .hero-copy,
  .section-head > p,
  .split > p,
  .hook-card p,
  .report-card p,
  .work-card p,
  .case-card p,
  .service-grid p,
  .channel-grid p,
  .rubric p,
  .layer p,
  .article-list p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-copy {
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
  }

  .section-head {
    margin-bottom: 14px;
  }

  .split {
    gap: 8px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics,
  .work-grid,
  .loop-grid,
  .video-grid,
  .hook-grid,
  .report-grid,
  #videos [data-source="creative-videos"],
  .case-grid,
  .service-grid,
  .channel-grid,
  .rubric-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(248px, 82vw);
    grid-template-columns: none;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 0 0 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .hero-metrics::-webkit-scrollbar,
  .work-grid::-webkit-scrollbar,
  .loop-grid::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar,
  .hook-grid::-webkit-scrollbar,
  .report-grid::-webkit-scrollbar,
  #videos [data-source="creative-videos"]::-webkit-scrollbar,
  .case-grid::-webkit-scrollbar,
  .service-grid::-webkit-scrollbar,
  .channel-grid::-webkit-scrollbar,
  .rubric-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-metrics > *,
  .work-grid > *,
  .loop-grid > *,
  .video-grid > *,
  .hook-grid > *,
  .report-grid > *,
  .case-grid > *,
  .service-grid > *,
  .channel-grid > *,
  .rubric-grid > * {
    scroll-snap-align: start;
  }

  .hero-metrics {
    grid-auto-columns: minmax(132px, 42vw);
    margin-top: 18px;
    padding-top: 1px;
    background: transparent;
  }

  .hero-metrics div {
    min-height: 74px;
    border: 1px solid rgba(255, 253, 247, 0.18);
  }

  .hero-metrics dt {
    font-size: 20px;
  }

  .hero-metrics dd {
    font-size: 12px;
    line-height: 1.35;
  }

  .position-grid,
  .framework-layout {
    grid-template-columns: 1fr;
  }

  .position-grid {
    gap: 10px;
  }

  .position-grid article {
    min-height: auto;
  }

  .work-card.featured {
    grid-column: auto;
  }

  .work-card,
  .loop-grid article,
  .hook-card,
  .report-card,
  .case-card,
  .service-grid article,
  .channel-grid article,
  .rubric-grid div {
    min-height: auto;
  }

  .hook-card,
  .report-card {
    min-height: auto;
  }

  .report-card ul {
    max-height: 96px;
    overflow: hidden;
    font-size: 12px;
  }

  .video-card {
    box-shadow: 0 12px 28px rgba(23, 32, 29, 0.1);
  }

  .video-card p {
    display: none;
  }

  .video-card h3 {
    margin-bottom: 0;
  }

  .video-card span {
    margin-bottom: 5px;
  }

  .layer-stack {
    gap: 10px;
  }

  .layer,
  .rubric {
    padding: 14px;
  }

  .layer strong {
    font-size: 18px;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 100%;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .article-list article {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .article-list h3 {
    font-size: 16px;
  }

  .contact-panel {
    gap: 16px;
    padding: 18px;
  }

  .button {
    width: 100%;
  }

  .button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .contact-actions {
    width: 100%;
  }

  .video-card div,
  #videos [data-source="creative-videos"] .video-card div,
  .hook-card,
  .report-card,
  .loop-grid article,
  .work-card,
  .case-card,
  .service-grid article,
  .channel-grid article {
    padding: 14px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 118px;
  }

  body {
    padding-bottom: 126px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
    width: auto;
    padding: 10px;
  }

  .floating-contact div {
    grid-column: 1 / -1;
  }

  .floating-mail,
  .floating-copy {
    width: 100%;
    min-height: 40px;
    padding-inline: 8px;
    text-align: center;
  }

  .toast {
    right: 12px;
    bottom: 132px;
  }
}

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

  .site-nav {
    left: 16px;
    right: 16px;
  }

  section {
    padding-inline: 16px;
  }

  .hero-metrics div {
    min-height: 72px;
  }
}
