:root {
  --bg: #050607;
  --bg2: #080a0b;
  --text: rgba(255, 255, 255, 0.84);
  --hero-text: rgba(255, 255, 255, 0.94);
  --title: rgba(255, 255, 255, 0.78);
  --muted: rgba(255, 255, 255, 0.58);
  --soft: rgba(255, 255, 255, 0.40);
  --line: rgba(255, 255, 255, 0.10);
  --accent: #164f60;
  --accent2: #2f8991;
  --container: 1180px;
  --edge: clamp(18px, 4vw, 56px);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; }

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(22, 79, 96, 0.18), transparent 60%),
    radial-gradient(700px 420px at 90% 12%, rgba(47, 137, 145, 0.09), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.no-scroll { overflow: hidden; }
::selection { background: rgba(47, 137, 145, 0.35); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--container), calc(100% - var(--edge)));
  margin: 0 auto;
}

/* Header */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.10));
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo { width: clamp(178px, 16vw, 255px); height: auto; opacity: 0.95; }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.nav a { padding: 12px 0; transition: color 0.16s ease; }
.nav a:hover { color: rgba(255, 255, 255, 0.96); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--hero-text);
}

.hero__media,
.hero__video,
.hero__overlay,
.hero__vignette { position: absolute; inset: 0; }

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  transform: scale(1.018);
  filter: saturate(0.98) contrast(1.03);
}

.hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.74) 30%,
      rgba(0, 0, 0, 0.38) 58%,
      rgba(0, 0, 0, 0.18) 78%,
      rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.50), transparent 32%, rgba(0, 0, 0, 0.70) 100%);
}

.hero__vignette {
  inset: -18%;
  background: radial-gradient(circle at 62% 32%, transparent 0 42%, rgba(0, 0, 0, 0.24) 70%, rgba(0, 0, 0, 0.86) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 116px 0 76px;
}

.hero__content > * { max-width: 690px; }

.kicker,
.section-eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.kicker { color: rgba(255, 255, 255, 0.58); }

.hero__title {
  margin: 0 0 22px;
  font-size: clamp(46px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.066em;
  font-weight: 720;
}

.hero__sub {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: rgba(22, 79, 96, 0.94);
  border-color: rgba(47, 137, 145, 0.52);
}
.btn--primary:hover { background: rgba(47, 137, 145, 0.86); color: rgba(255, 255, 255, 0.96); }
.btn--ghost { background: rgba(255, 255, 255, 0.042); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.085); color: rgba(255, 255, 255, 0.94); }

/* Reveal */
.reveal-section { position: relative; }
.reveal-section > .container { position: relative; }
.reveal-line {
  width: 100%;
  height: 1px;
  margin-bottom: clamp(28px, 4vw, 54px);
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(47,137,145,0.22), rgba(255,255,255,0.03));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1), opacity 0.8s ease;
}

[data-reveal] .section-eyebrow,
[data-reveal] .section__title,
[data-reveal] .section__lead,
[data-reveal] .lead,
[data-reveal] .clients__logos,
[data-reveal] .editorial-copy,
[data-reveal] .work-grid,
[data-reveal] .artwork-template,
[data-reveal] .capability-split,
[data-reveal] .approach-note,
[data-reveal] .contact {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

[data-reveal].is-visible .reveal-line { transform: scaleX(1); opacity: 1; }
[data-reveal].is-visible .section-eyebrow,
[data-reveal].is-visible .section__title,
[data-reveal].is-visible .section__lead,
[data-reveal].is-visible .lead,
[data-reveal].is-visible .clients__logos,
[data-reveal].is-visible .editorial-copy,
[data-reveal].is-visible .work-grid,
[data-reveal].is-visible .artwork-template,
[data-reveal].is-visible .capability-split,
[data-reveal].is-visible .approach-note,
[data-reveal].is-visible .contact {
  opacity: 1;
  transform: translateY(0);
}

/* Clients */
.clients-section {
  padding: 42px 0 36px;
  background: rgba(0, 0, 0, 0.12);
}

.clients__logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(70px, 1fr));
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  opacity: 0.50;
  filter: grayscale(1);
  transition: opacity 0.18s ease, filter 0.18s ease;
}

.client-logo:hover { opacity: 0.80; filter: grayscale(0.35); }
.client-logo img { max-height: 34px; max-width: 136px; object-fit: contain; }
.client-logo:nth-child(4) img { max-height: 46px; }
.client-logo:nth-child(6) img { max-height: 40px; }
.client-logo--more {
  min-height: 34px;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  filter: none;
  opacity: 0.72;
}

/* Sections */
.section { padding: clamp(70px, 8vw, 112px) 0; }
.section--editorial { padding-bottom: clamp(60px, 7vw, 92px); }
.section--work { padding-top: clamp(76px, 8vw, 116px); }
.section--capabilities { padding-top: clamp(62px, 7vw, 96px); }
.section--approach { padding-top: clamp(58px, 7vw, 92px); }

.section__title {
  margin: 0;
  max-width: 860px;
  color: var(--title);
  font-size: clamp(30px, 3.7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 680;
}

.section__title--editorial {
  max-width: 920px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.03;
  font-weight: 720;
}

.section__title--small {
  max-width: 520px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.section__lead,
.lead {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}
.lead--small { max-width: 560px; font-size: clamp(17px, 1.55vw, 21px); }

.editorial-layout,
.approach-layout {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) 1fr;
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
}

.editorial-label { position: sticky; top: 110px; }

.editorial-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.editorial-text { min-width: 0; }

.about-copy {
  margin: clamp(28px, 4vw, 42px) 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
  letter-spacing: -0.018em;
}

.artwork-template {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 4px;
  background-image:
    linear-gradient(to bottom, rgba(5, 6, 7, 0.12), rgba(5, 6, 7, 0.42)),
    var(--artwork-image),
    radial-gradient(300px 220px at 20% 18%, rgba(47,137,145,0.18), transparent 70%),
    radial-gradient(260px 220px at 88% 92%, rgba(255,255,255,0.055), transparent 64%),
    linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.010));
  background-size: cover, cover, cover, cover, cover;
  background-position: center, center, center, center, center;
}

.artwork-template::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.artwork-template::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,0.07) 47%, transparent 56% 100%);
  animation: placeholderDrift 12s linear infinite;
}

.artwork-template__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 30px);
}

.artwork-template__inner span {
  color: rgba(255,255,255,0.34);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.artwork-template__inner strong {
  color: rgba(255,255,255,0.22);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 720;
  text-transform: lowercase;
}

.text-columns {
  margin-top: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  max-width: 900px;
}

.text-columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.28vw, 18px);
  line-height: 1.62;
  letter-spacing: -0.018em;
}

.text-columns p + p { margin-top: 0; }

/* Work */
.section__head--work,
.section__head--compact { margin-bottom: clamp(34px, 5vw, 64px); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
}

.work-item {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.work-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.075); }

.project-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 3px;
  background:
    radial-gradient(360px 180px at 22% 18%, rgba(47,137,145,0.22), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.055);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.20)),
    radial-gradient(400px 160px at 50% 14%, rgba(255,255,255,0.05), transparent 68%);
}

.project-media video,
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.001);
  transition: transform 0.65s cubic-bezier(.16, 1, .3, 1), opacity 0.2s ease;
}

.work-item:hover .project-media video,
.work-item:hover .project-media img { transform: scale(1.028); }

.project-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
  color: rgba(255,255,255,0.24);
  font-size: 11px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.project-placeholder::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 35% 35%, rgba(47,137,145,0.22), transparent 0 20%, transparent 42%),
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,0.055) 45%, transparent 58% 100%);
  animation: placeholderDrift 10s linear infinite;
}

.project-placeholder span,
.project-placeholder strong {
  position: relative;
  z-index: 1;
}

.project-placeholder strong {
  color: rgba(255,255,255,0.12);
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.72;
  letter-spacing: -0.08em;
  font-weight: 760;
}

@keyframes placeholderDrift {
  0% { transform: translate3d(-4%, -2%, 0) rotate(0deg); }
  50% { transform: translate3d(4%, 2%, 0) rotate(4deg); }
  100% { transform: translate3d(-4%, -2%, 0) rotate(0deg); }
}

.project-copy { max-width: 470px; }

.project-meta {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(24px, 2.7vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 660;
}

.project-description {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.58;
  letter-spacing: -0.015em;
}


/* Capabilities */
.capability-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.capability-panel {
  min-height: 340px;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(420px 220px at 12% 0%, rgba(47,137,145,0.08), transparent 70%),
    #050607;
}

.capability-panel__label {
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.capability-list li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255, 255, 255, 0.70);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.capability-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(47, 137, 145, 0.72);
  transform: translateY(-50%);
}

/* Approach */
.approach-layout--compact { align-items: center; }

.approach-note {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
  letter-spacing: -0.018em;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(760px 320px at 20% 30%, rgba(22, 79, 96, 0.12), transparent 62%),
    rgba(0, 0, 0, 0.08);
  padding-bottom: clamp(90px, 11vw, 150px);
}

.contact {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__email,
.contact__phone {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}

.contact__email:hover,
.contact__phone:hover {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.video-modal.is-open { display: flex; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  cursor: pointer;
}
.video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  background: #000;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72);
}
.video-modal__video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; }
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

/* Footer */
.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.30);
}
.footer__inner { display: flex; gap: 10px; align-items: center; color: rgba(255, 255, 255, 0.45); font-size: 13px; }
.dot { opacity: 0.55; }

/* Responsive */
@media (max-width: 1020px) {
  .clients__logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .editorial-layout,
  .approach-layout,
  .work-item { grid-template-columns: 1fr; }
  .editorial-main { grid-template-columns: 1fr; }
  .editorial-label { position: static; }
  .project-copy { max-width: 720px; }
  .capability-split { grid-template-columns: 1fr; }
  .artwork-template { max-width: 520px; min-height: 280px; }
}

@media (max-width: 720px) {
  :root { --edge: 34px; }
  .topbar__inner { min-height: 68px; }
  .brand__logo { width: 168px; }
  .nav { gap: 14px; font-size: 12px; }
  .hero__content { padding-top: 98px; }
  .hero__title { font-size: clamp(42px, 14vw, 72px); }
  .clients__logos { grid-template-columns: repeat(2, 1fr); }
  .client-logo { justify-content: flex-start; }
  .text-columns { grid-template-columns: 1fr; }
  .approach-note { max-width: none; }
  .capability-panel { min-height: auto; }
  .project-title { font-size: clamp(25px, 9vw, 38px); }
}

@media (max-width: 460px) {
  .nav { display: none; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; max-width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  [data-reveal] .section-eyebrow,
  [data-reveal] .section__title,
  [data-reveal] .section__lead,
  [data-reveal] .lead,
  [data-reveal] .clients__logos,
  [data-reveal] .editorial-copy,
  [data-reveal] .work-grid,
  [data-reveal] .artwork-template,
  [data-reveal] .capability-split,
  [data-reveal] .approach-note,
  [data-reveal] .contact { opacity: 1; transform: none; }
  .reveal-line { opacity: 1; transform: none; }
}

/* v2.0.2 refinements */
[data-reveal] .visuals-strip,
[data-reveal] .visual-card,
[data-reveal] .artwork-stack {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible .visuals-strip,
[data-reveal].is-visible .visual-card,
[data-reveal].is-visible .artwork-stack {
  opacity: 1;
  transform: translateY(0);
}

.section__title--three-lines {
  max-width: 18ch;
  font-size: clamp(30px, 4.45vw, 68px);
  line-height: 0.98;
}

.section__title--three-lines span {
  display: block;
  white-space: nowrap;
}

.section--visuals {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(50px, 6vw, 88px);
}

.artwork-stack {
  width: 100%;
}

.artwork-template--about {
  max-width: 330px;
  margin-left: auto;
}

.visuals-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.visual-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.015);
  aspect-ratio: 16 / 10;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section--approach {
  padding-top: clamp(40px, 5vw, 72px);
}

.approach-layout--compact .section__title {
  max-width: none;
}

@media (max-width: 1180px) {
  .section__title--three-lines {
    font-size: clamp(28px, 4.2vw, 56px);
  }

  .artwork-template--about {
    max-width: 300px;
  }
}

@media (max-width: 940px) {
  .editorial-main {
    grid-template-columns: 1fr;
  }

  .artwork-template--about {
    max-width: 420px;
    margin-left: 0;
  }

  .section__title--three-lines {
    max-width: none;
    font-size: clamp(26px, 6.4vw, 48px);
  }

  .visuals-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section__title--three-lines {
    font-size: clamp(22px, 6.6vw, 34px);
  }

  .section__title--three-lines span {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] .visuals-strip,
  [data-reveal] .visual-card,
  [data-reveal] .artwork-stack {
    opacity: 1;
    transform: none;
  }
}


/* v2.0.3 About fix: prevent headline/artwork overlap */
.about-layout {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) 1fr;
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.about-label {
  position: sticky;
  top: 110px;
}

.about-content {
  min-width: 0;
}

.about-title {
  max-width: 1100px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.about-title span {
  display: block;
  white-space: nowrap;
}

.about-body {
  margin-top: clamp(34px, 4.5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 330px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.about-body .about-copy {
  margin-top: 0;
  max-width: 650px;
}

.about-body .artwork-template--about {
  max-width: 330px;
  margin-left: 0;
  aspect-ratio: 16 / 12;
  min-height: 230px;
}

.about-body .artwork-template__inner strong {
  font-size: clamp(28px, 3vw, 44px);
}

@media (max-width: 1180px) {
  .about-title {
    font-size: clamp(31px, 4vw, 52px);
  }

  .about-body {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  }
}

@media (max-width: 940px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-label {
    position: static;
  }

  .about-body {
    grid-template-columns: 1fr;
  }

  .about-body .artwork-template--about {
    max-width: 460px;
  }
}

@media (max-width: 720px) {
  .about-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .about-title span {
    white-space: normal;
  }
}


/* v2.0.6 Responsive About headline */
.about-title--responsive {
  max-width: min(100%, 1120px);
  font-size: clamp(30px, 4.15vw, 64px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.about-title--responsive span {
  white-space: normal;
}

.about-title--responsive .about-title__main {
  display: block;
  max-width: 21ch;
}

.about-title--responsive .about-title__divider {
  display: block;
  margin: 0.06em 0 0.02em;
  line-height: 0.78;
}

.about-title--responsive .about-title__payoff {
  display: block;
  max-width: 18ch;
}

@media (max-width: 1180px) {
  .about-title--responsive {
    font-size: clamp(28px, 4.3vw, 54px);
  }

  .about-title--responsive .about-title__main {
    max-width: 20ch;
  }

  .about-title--responsive .about-title__payoff {
    max-width: 19ch;
  }
}

@media (max-width: 720px) {
  .about-title--responsive {
    font-size: clamp(27px, 8vw, 42px);
    line-height: 1.02;
  }

  .about-title--responsive .about-title__main,
  .about-title--responsive .about-title__payoff {
    max-width: none;
  }

  .about-title--responsive .about-title__divider {
    margin: 0.14em 0 0.08em;
  }
}


/* v2.0.7 Client logo spacing fix */
.clients__logos {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
}

.client-logo {
  justify-content: center;
  padding: 0 clamp(14px, 2vw, 26px);
}

.client-logo--more {
  justify-content: center;
}

@media (max-width: 1020px) {
  .clients__logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 26px;
  }
}

@media (max-width: 720px) {
  .clients__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .client-logo {
    justify-content: center;
  }
}


/* v2.0.10 Social buttons */
.social-links {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.social-links a:hover {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.045);
}


/* v2.0.11 About video background */
.section--about-video {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 74vw, 920px);
  display: flex;
  align-items: center;
  background: #050607;
}

.section--about-video .container {
  position: relative;
  z-index: 2;
}

.about-video-bg,
.about-video-bg__video,
.about-video-bg__overlay,
.about-video-bg__vignette {
  position: absolute;
  inset: 0;
}

.about-video-bg {
  z-index: 0;
  overflow: hidden;
}

.about-video-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.02);
}

.about-video-bg__overlay {
  background:
    linear-gradient(90deg,
      rgba(5, 6, 7, 0.90) 0%,
      rgba(5, 6, 7, 0.72) 34%,
      rgba(5, 6, 7, 0.40) 66%,
      rgba(5, 6, 7, 0.74) 100%),
    linear-gradient(to bottom,
      rgba(5, 6, 7, 0.94) 0%,
      rgba(5, 6, 7, 0.42) 34%,
      rgba(5, 6, 7, 0.54) 70%,
      rgba(5, 6, 7, 0.96) 100%);
}

.about-video-bg__vignette {
  inset: -18%;
  background: radial-gradient(circle at 62% 42%, transparent 0 34%, rgba(5, 6, 7, 0.34) 63%, rgba(5, 6, 7, 0.90) 100%);
  pointer-events: none;
}

.about-layout--video {
  min-height: clamp(520px, 58vw, 720px);
  align-items: center;
}

.about-layout--video .about-title--responsive {
  max-width: min(100%, 1120px);
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 18px 80px rgba(0, 0, 0, 0.56);
}

.about-layout--video .about-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 12px 60px rgba(0, 0, 0, 0.60);
}

@media (max-width: 940px) {
  .section--about-video {
    min-height: auto;
    padding-top: clamp(86px, 14vw, 132px);
    padding-bottom: clamp(92px, 15vw, 150px);
  }

  .about-layout--video {
    min-height: auto;
  }

  .about-video-bg__video {
    opacity: 0.58;
  }

  .about-video-bg__overlay {
    background:
      linear-gradient(to bottom,
        rgba(5, 6, 7, 0.95) 0%,
        rgba(5, 6, 7, 0.58) 42%,
        rgba(5, 6, 7, 0.96) 100%),
      rgba(5, 6, 7, 0.44);
  }
}


/* v2.0.12 About text + side video */
.section--about-side-video {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 420px at 20% 12%, rgba(22, 79, 96, 0.10), transparent 64%),
    #050607;
}

.about-side-layout {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) 1fr;
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.about-side-content {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
  gap: clamp(34px, 5.8vw, 82px);
  align-items: center;
}

.about-side-text {
  min-width: 0;
}

.about-side-text .about-copy {
  max-width: 650px;
}

.about-side-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.about-side-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5, 6, 7, 0.04), rgba(5, 6, 7, 0.24)),
    radial-gradient(circle at 50% 50%, transparent 0 52%, rgba(0, 0, 0, 0.28) 100%);
}

.about-side-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  filter: saturate(0.95) contrast(1.04);
}

@media (max-width: 1080px) {
  .about-side-content {
    grid-template-columns: 1fr;
  }

  .about-side-video {
    max-width: 720px;
    min-height: 260px;
  }
}

@media (max-width: 940px) {
  .about-side-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-side-video {
    aspect-ratio: 16 / 11;
    min-height: 220px;
  }
}


/* v2.0.13 About stacked video layout */
.section--about-stacked-video {
  background:
    radial-gradient(820px 420px at 22% 10%, rgba(22, 79, 96, 0.10), transparent 64%),
    #050607;
}

.about-stacked {
  max-width: 1120px;
}

.about-stacked .section-eyebrow {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.about-stacked .about-title--responsive {
  max-width: 1020px;
}

.about-stacked .about-title__main {
  max-width: 22ch;
}

.about-stacked .about-title__payoff {
  max-width: 21ch;
}

.about-stacked-video {
  margin-top: clamp(38px, 5vw, 68px);
  width: 100%;
  max-width: 1120px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: #000;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
}

.about-stacked-video__video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.94;
  filter: saturate(0.96) contrast(1.04);
}

.about-copy--stacked {
  margin-top: clamp(28px, 4vw, 44px);
  max-width: 760px;
}

@media (max-width: 720px) {
  .about-stacked .about-title__main,
  .about-stacked .about-title__payoff {
    max-width: none;
  }

  .about-stacked-video {
    margin-left: calc(var(--edge) * -0.45);
    margin-right: calc(var(--edge) * -0.45);
    width: calc(100% + var(--edge) * 0.9);
  }
}


/* v2.0.15 Project YouTube / preview system */
.work-item[role="button"] {
  cursor: pointer;
}

.work-item[role="button"]:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.42);
  outline-offset: 8px;
}

.project-media {
  position: relative;
}

.project-play-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.work-item[role="button"]:hover .project-play-badge {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(0, 0, 0, 0.52);
}

.work-item--no-video .project-play-badge {
  display: none;
}

.project-modal__panel {
  width: min(1120px, 100%);
}

.project-modal__content {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.project-modal__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
}

@media (max-width: 720px) {
  .project-play-badge {
    left: 14px;
    bottom: 14px;
    min-height: 32px;
    padding: 0 11px;
  }
}


/* v2.0.18 YouTube embed fallback */
.project-modal__youtube-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.project-modal__youtube-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.project-modal__youtube-link:hover {
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.32);
}


/* v2.0.25 Headline letterspacing refinement */
.hero__title {
  letter-spacing: -0.045em;
}

.section__title,
.contact-title,
.about-title--responsive {
  letter-spacing: -0.045em;
}

@media (max-width: 720px) {
  .hero__title,
  .section__title,
  .contact-title,
  .about-title--responsive {
    letter-spacing: -0.035em;
  }
}


/* v2.0.28 About payoff size refinement */
.about-title--responsive .about-title__divider {
  font-size: 0.72em;
}

.about-title--responsive .about-title__payoff {
  font-size: 0.72em;
  line-height: 1.06;
  max-width: 24ch;
  letter-spacing: -0.035em;
}

@media (max-width: 720px) {
  .about-title--responsive .about-title__divider,
  .about-title--responsive .about-title__payoff {
    font-size: 0.78em;
  }
}
