@font-face {
  font-family: "Geist";
  src: url("../appics-product-promo/capture/assets/fonts/geist-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../appics-product-promo/capture/assets/fonts/geist-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f2f2f0;
  --paper-2: #e7e7e4;
  --paper-3: #d6d6d2;
  --ink: #11110f;
  --ink-soft: #1c1c19;
  --about-dark: #090a08;
  --muted: #686868;
  --muted-2: #969696;
  --line: rgba(17, 17, 15, 0.14);
  --line-strong: rgba(17, 17, 15, 0.24);
  --white: #fafafa;
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  letter-spacing: 0;
  transition:
    background-color 900ms var(--ease),
    color 900ms var(--ease);
}

body.about-theme-active {
  background: var(--about-dark);
  color: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.022) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: multiply;
  transition:
    opacity 900ms var(--ease),
    background-image 900ms var(--ease);
}

body.about-theme-active::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(244, 241, 234, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.022) 1px, transparent 1px);
  mix-blend-mode: screen;
}

body.case-open {
  overflow: hidden;
}

html.loader-pending,
html.loader-pending body {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 26px clamp(24px, 2.9vw, 58px);
  color: var(--ink);
  background: rgba(242, 242, 240, 0.82);
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    background-color 900ms var(--ease),
    border-color 900ms var(--ease),
    color 900ms var(--ease);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 720ms var(--ease),
    visibility 720ms var(--ease);
}

.page-loader-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(220px, 48vw);
}

.page-loader-logo {
  width: clamp(74px, 7vw, 112px);
  height: auto;
}

.page-loader-track {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(17, 17, 15, 0.12);
}

.page-loader-track span {
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(var(--loader-progress, 0.08));
  transform-origin: left center;
  transition: transform 260ms var(--ease);
}

html.loader-complete .page-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

body.about-theme-active .page-loader {
  background: var(--about-dark);
  color: var(--paper);
}

body.about-theme-active .page-loader-logo {
  filter: invert(1);
}

body.about-theme-active .site-header {
  color: var(--paper);
  background: rgba(9, 10, 8, 0.78);
  border-bottom-color: rgba(244, 241, 234, 0.12);
}

.brand,
.nav-links a,
.nav-cta,
.social-link {
  font-size: 16px;
  line-height: 1;
}

.brand,
.nav-cta {
  font-weight: 700;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand,
.nav-links,
.header-actions {
  position: relative;
  z-index: 1;
}

.brand-logo {
  display: block;
  width: clamp(88px, 5.4vw, 116px);
  height: auto;
  transition: filter 900ms var(--ease), opacity 200ms var(--ease);
}

body.about-theme-active .brand-logo {
  filter: invert(1) brightness(1.08);
}

.nav-links {
  display: flex;
  gap: clamp(28px, 2.8vw, 54px);
}

.nav-links a {
  color: var(--ink);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 500;
  text-transform: uppercase;
  transition: color 900ms var(--ease);
}

body.about-theme-active .nav-links a {
  color: rgba(244, 241, 234, 0.68);
}

body.about-theme-active .brand,
body.about-theme-active .nav-cta,
body.about-theme-active .social-link {
  color: var(--paper);
}

.nav-links a:hover,
.nav-cta:hover,
.text-link:hover,
.social-link:hover {
  color: var(--muted);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.25vw, 20px);
}

.social-link {
  display: inline-grid;
  width: clamp(30px, 1.9vw, 40px);
  height: clamp(30px, 1.9vw, 40px);
  place-items: center;
  color: var(--ink);
  transition:
    color 250ms var(--ease),
    opacity 250ms var(--ease),
    transform 250ms var(--ease),
    filter 900ms var(--ease);
}

.social-link:hover {
  transform: translateY(-1px);
}

.social-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.about-theme-active .social-link img {
  filter: invert(1) brightness(1.08);
}

.nav-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: clamp(42px, 3vw, 56px);
  align-items: center;
  justify-content: center;
  padding: 0 clamp(16px, 1.6vw, 24px);
  border: 1px solid rgba(17, 17, 15, 0.34);
  border-radius: 999px;
  color: var(--ink);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transition:
    border-color 760ms var(--ease),
    color 760ms var(--ease),
    background-color 760ms var(--ease),
    box-shadow 760ms var(--ease),
    transform 760ms var(--ease);
}

.header-cta {
  gap: 15px;
  padding-left: 10px;
  padding-right: calc(clamp(16px, 1.6vw, 24px) + 1px);
}

.nav-cta-avatar {
  display: grid;
  place-items: end center;
  width: clamp(26px, 1.9vw, 34px);
  height: clamp(26px, 1.9vw, 34px);
  flex: 0 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: #ffc011;
}

.nav-cta-avatar-video {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain !important;
  object-position: center bottom;
}

.nav-cta:hover {
  color: var(--ink);
  background: rgba(17, 17, 15, 0.06);
  transform: translateY(-1px);
}

.header-cta:hover {
  border-color: rgba(17, 17, 15, 0);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 16px rgba(17, 17, 15, 0.045);
  transform: translateY(0);
}

body.about-theme-active .nav-cta {
  border-color: rgba(244, 241, 234, 0.34);
}

body.about-theme-active .nav-cta:hover {
  color: var(--paper);
  background: rgba(244, 241, 234, 0.08);
}

body.about-theme-active .header-cta:hover {
  color: var(--ink);
  border-color: rgba(244, 241, 234, 0);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.11);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 104px clamp(18px, 4vw, 56px) calc(clamp(42px, 5vh, 68px) + 50px);
  margin-bottom: -50px;
}

.hero h1 {
  width: min(1010px, 100%);
  margin: 0 0 clamp(36px, 6vh, 70px);
  font-size: clamp(46px, 6.1vw, 98px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
  margin-bottom: -0.04em;
}

.hero-title-line > span {
  display: block;
}

.scroll-cue,
.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
}

.scroll-cue::after {
  content: none;
}

.scroll-cue {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.scroll-cue-separator,
.scroll-cue-role,
.scroll-cue-time,
.scroll-cue-zone {
  color: rgba(17, 17, 15, 0.46);
  font-weight: 400;
}

.intro-pending .site-header,
.intro-pending .scroll-cue,
.intro-pending .work-reel {
  opacity: 0;
}

.intro-pending .hero-title-line > span {
  opacity: 0;
  transform: translate3d(0, 110%, 0);
}

.intro-pending.intro-ready .site-header {
  animation: intro-header 920ms var(--ease) 80ms both;
}

.intro-pending.intro-ready .hero-title-line > span {
  animation: intro-title-line 980ms var(--ease) both;
}

.intro-pending.intro-ready .hero-title-line:nth-child(1) > span {
  animation-delay: 220ms;
}

.intro-pending.intro-ready .hero-title-line:nth-child(2) > span {
  animation-delay: 340ms;
}

.intro-pending.intro-ready .hero-title-line:nth-child(3) > span {
  animation-delay: 460ms;
}

.intro-pending.intro-ready .scroll-cue {
  animation: intro-meta 860ms var(--ease) 720ms both;
}

.intro-pending.intro-ready .work-reel {
  animation: intro-reel 1050ms var(--ease) 860ms both;
}

@keyframes intro-header {
  from {
    opacity: 0;
    transform: translate3d(0, -32px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-title-line {
  from {
    opacity: 0;
    transform: translate3d(0, 110%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-meta {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-reel {
  from {
    opacity: 0;
    transform: translate3d(0, 52px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.work-reel {
  overflow: hidden;
  padding: clamp(20px, 3.2vw, 48px) 0 clamp(84px, calc(8vw + 10px), 130px);
  background: transparent;
}

.work-reel-window {
  overflow: hidden;
  width: 100%;
}

.work-reel-track {
  display: flex;
  width: max-content;
  gap: clamp(14px, 1.6vw, 24px);
  padding-left: clamp(18px, 4vw, 56px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.reel-card {
  flex: 0 0 clamp(300px, 31vw, 480px);
  color: var(--muted);
}

.reel-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.83 / 1;
  height: auto;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, var(--tone-a), var(--tone-b));
}

.reel-visual::before,
.reel-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: var(--radius);
}

.reel-visual::before {
  left: 12%;
  top: 18%;
  width: 44%;
  height: 56%;
  background:
    linear-gradient(rgba(244, 241, 234, 0.16), rgba(244, 241, 234, 0.16)) 16% 18% / 54% 2px no-repeat,
    linear-gradient(rgba(244, 241, 234, 0.1), rgba(244, 241, 234, 0.1)) 16% 30% / 72% 2px no-repeat,
    rgba(244, 241, 234, 0.03);
}

.reel-visual::after {
  right: 12%;
  bottom: 14%;
  width: 34%;
  height: 42%;
  background: rgba(244, 241, 234, 0.04);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.12);
}

.reel-visual.has-image::before,
.reel-visual.has-image::after {
  display: none;
}

.reel-visual img,
.reel-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-visual video {
  display: block;
}

.reel-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.reel-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
}

.tone-1 {
  --tone-a: #2b2d2a;
  --tone-b: #151611;
}

.tone-2 {
  --tone-a: #343434;
  --tone-b: #191919;
}

.tone-3 {
  --tone-a: #252925;
  --tone-b: #101210;
}

.tone-4 {
  --tone-a: #3a3834;
  --tone-b: #171613;
}

.tone-5 {
  --tone-a: #303338;
  --tone-b: #131518;
}

.tone-6 {
  --tone-a: #2f312f;
  --tone-b: #151713;
}

.tone-7 {
  --tone-a: #36322e;
  --tone-b: #181614;
}

.intro-section,
.about-section,
.about-statement-section,
.testimonial-section,
.services-section,
.proof-section,
.contact-section,
.section {
  padding: clamp(82px, 8.6vw, 128px) clamp(18px, 4vw, 56px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(128px, 0.18fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(30px, 4.8vw, 76px);
  padding-top: clamp(58px, 5.2vw, 92px);
  padding-bottom: calc(clamp(58px, 5.5vw, 86px) + 80px);
}

.intro-section .intro-kicker {
  margin: 0;
  padding-top: clamp(4px, 0.45vw, 8px);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.2;
}

.intro-kicker,
.section-label,
.section-index {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.2;
}

.section-index {
  display: block;
  margin-bottom: clamp(22px, 3vw, 42px);
  color: var(--muted-2);
}

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

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.3vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(28px, 2.9vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.about-section p,
.case-intro p,
.case-story p {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.58;
}

.intro-copy {
  max-width: 1180px;
}

.intro-copy h2 {
  max-width: 1060px;
  font-size: clamp(32px, 3.35vw, 58px);
  line-height: 1.08;
  font-weight: 500;
}

.intro-copy p {
  max-width: 700px;
}

.intro-image-section {
  padding: 0 clamp(18px, 4vw, 56px);
}

.intro-video-section {
  min-height: 420vh;
  position: relative;
}

.intro-image-frame {
  --intro-image-opacity: 1;
  --intro-image-scale: 1;
  --video-overlay-opacity: 0;
  --video-button-y: 28px;
  --video-text-y: 14px;
  overflow: hidden;
  height: 800px;
  min-height: 0;
  border-radius: var(--radius);
  background: #d2d0c9;
  opacity: var(--intro-image-opacity);
  transform: scale(var(--intro-image-scale));
  transform-origin: center center;
  will-change: transform, opacity;
}

.intro-video-frame {
  position: sticky;
  top: clamp(116px, calc(9vh + 30px), 150px);
}

.video-overlay {
  position: absolute;
  inset: auto clamp(42px, 4.4vw, 86px) clamp(34px, 4vw, 62px);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  pointer-events: none;
}

.video-call-button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 9px 24px 9px 11px;
  border-radius: 10px;
  background: rgba(14, 34, 43, 0.25);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: var(--video-overlay-opacity);
  transform: translateY(var(--video-button-y));
  transition:
    background 260ms ease,
    opacity 220ms ease,
    transform 260ms ease;
  will-change: transform, opacity;
}

.video-call-button:hover {
  background: rgba(14, 34, 43, 0.34);
  transform: translateY(calc(var(--video-button-y) - 1px));
}

.video-call-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  color: #0e222b;
  line-height: 1;
  overflow: hidden;
}

.video-call-icon svg {
  width: 18px;
  height: 18px;
  overflow: visible;
}

.video-call-button:hover .video-call-icon svg {
  animation: video-arrow-elastic 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-call-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes video-arrow-elastic {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  24% {
    opacity: 0;
    transform: translateX(20px);
  }

  25% {
    opacity: 0;
    transform: translateX(-18px);
  }

  48% {
    opacity: 1;
    transform: translateX(5px);
  }

  62% {
    opacity: 1;
    transform: translateX(-3px);
  }

  76% {
    opacity: 1;
    transform: translateX(1.5px);
  }

  88% {
    opacity: 1;
    transform: translateX(-0.5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.video-open-text {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.32vw, 22px);
  font-weight: 500;
  line-height: 1.36;
  text-align: right;
  letter-spacing: 0;
  opacity: var(--video-overlay-opacity);
  transform: translateY(var(--video-text-y));
  text-shadow: 0 1px 18px rgba(14, 34, 43, 0.22);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
  will-change: transform, opacity;
}

.intro-image-frame img,
.intro-video-frame video,
.intro-video-frame canvas,
.intro-loop-video,
.scroll-scrub-video,
.scroll-scrub-sequence {
  width: 100%;
  height: 100%;
  display: block;
}

.intro-video-frame video,
.intro-loop-video,
.scroll-scrub-video {
  object-fit: cover;
}

.intro-image-frame img {
  height: calc(100% + 120px);
  min-height: calc(100% + 120px);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.07);
  will-change: transform;
}

.intro-video-frame video,
.intro-video-frame canvas {
  background: #d2d0c9;
}

.section-heading {
  max-width: 1080px;
  margin-bottom: clamp(54px, 6.4vw, 98px);
}

.featured-section .section-heading h2 {
  font-weight: 500;
}

.featured-section .section-index {
  margin-bottom: 18px;
}

.featured-section {
  padding-top: calc(clamp(56px, 5.6vw, 86px) + 140px);
}

.featured-section .section-heading {
  margin-bottom: calc(clamp(56px, 5.6vw, 86px) + 140px);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(96px, 12vw, 176px);
  margin-bottom: 0;
}

.showcase-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.66fr) minmax(0, 1fr);
  gap: clamp(26px, 3.8vw, 64px);
  align-items: start;
  color: var(--ink);
  cursor: pointer;
}

.showcase-info {
  position: sticky;
  top: calc(clamp(112px, 11vh, 144px) + 80px);
  display: grid;
  min-height: clamp(560px, 64vh, 680px);
  align-content: start;
  gap: clamp(48px, 4.5vw, 62px);
  padding: 4px clamp(10px, 1vw, 18px) clamp(8px, 1.6vw, 24px) 0;
}

.showcase-main {
  display: grid;
  gap: clamp(36px, calc(2vw + 20px), 50px);
}

.showcase-main p {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.25vw, 45px);
  line-height: 1.2;
}

.tag-row.showcase-tags span {
  min-height: 42px;
  padding: 13px 19px;
  background: rgba(250, 250, 250, 0.92);
  color: var(--ink);
  font-size: 14px;
}

.showcase-bottom {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
}

.showcase-testimonial {
  display: grid;
  gap: clamp(22px, 2.4vw, 34px);
  max-width: 500px;
  margin: 0;
  padding-bottom: 20px;
}

.showcase-testimonial p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.52;
}

.showcase-testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.showcase-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.showcase-testimonial strong,
.showcase-testimonial small {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.showcase-testimonial strong {
  color: var(--ink);
  font-weight: 500;
}

.showcase-testimonial small {
  color: var(--muted);
}

.showcase-cta {
  min-height: 70px;
  padding: 19px 42px;
  font-size: 19px;
}

.showcase-visual-stack {
  display: grid;
  gap: clamp(22px, 2.8vw, 44px);
}

.showcase-visual-panel {
  position: relative;
  --showcase-panel-opacity: 1;
  --showcase-panel-scale: 1;
  aspect-ratio: 2443 / 1975;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--visual);
  isolation: isolate;
}

.showcase-visual-panel.is-scroll-animated {
  opacity: var(--showcase-panel-opacity);
  transform: scale(var(--showcase-panel-scale));
  transform-origin: center center;
  will-change: transform, opacity;
}

.showcase-visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.showcase-story:hover .showcase-visual-panel img {
  transform: scale(1.018);
  filter: contrast(1.03);
}

.showcase-placeholder {
  position: absolute;
  inset: 0;
  background: var(--visual);
}

.showcase-placeholder::before,
.showcase-placeholder::after {
  content: "";
  position: absolute;
  border-radius: var(--radius);
  background: rgba(17, 17, 15, 0.08);
}

.showcase-placeholder::before {
  inset: 12% 14% 18%;
  border: 1px solid rgba(17, 17, 15, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)) 10% 14% / 30% 2px no-repeat,
    linear-gradient(rgba(17, 17, 15, 0.12), rgba(17, 17, 15, 0.12)) 10% 26% / 70% 2px no-repeat,
    linear-gradient(rgba(17, 17, 15, 0.1), rgba(17, 17, 15, 0.1)) 10% 36% / 54% 2px no-repeat,
    rgba(244, 241, 234, 0.28);
}

.showcase-placeholder::after {
  right: 11%;
  bottom: 12%;
  width: 38%;
  aspect-ratio: 1.45;
  background: rgba(17, 17, 15, 0.12);
  box-shadow: -28px -30px 0 rgba(255, 255, 255, 0.18);
}

.featured-card,
.project-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: center;
  min-height: 480px;
  padding: clamp(28px, 3.8vw, 58px) 0;
  color: var(--ink);
  cursor: pointer;
}

.featured-card:first-child {
  align-items: stretch;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.68fr);
  min-height: 600px;
  padding-top: clamp(34px, 4.4vw, 70px);
}

.featured-card:nth-child(n + 2) {
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
}

.featured-card img,
.project-card img,
.card-visual {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  min-height: 340px;
  border-radius: var(--radius);
  object-fit: cover;
  overflow: hidden;
  background: var(--visual);
  transition: transform 650ms var(--ease), filter 650ms var(--ease);
}

.featured-card:hover img,
.project-card:hover img,
.featured-card:hover .card-visual,
.project-card:hover .card-visual {
  transform: translateY(-4px);
  filter: contrast(1.04);
}

.card-visual {
  position: relative;
}

.card-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(17, 17, 15, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(17, 17, 15, 0.18), rgba(17, 17, 15, 0.18)) 8% 11% / 42% 2px no-repeat,
    linear-gradient(rgba(17, 17, 15, 0.12), rgba(17, 17, 15, 0.12)) 8% 22% / 76% 2px no-repeat,
    linear-gradient(rgba(17, 17, 15, 0.12), rgba(17, 17, 15, 0.12)) 8% 31% / 58% 2px no-repeat,
    linear-gradient(90deg, rgba(17, 17, 15, 0.08), transparent);
}

.card-visual::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 12%;
  width: 34%;
  aspect-ratio: 0.7;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.46);
  box-shadow: 18px 22px 0 rgba(17, 17, 15, 0.06);
}

.card-body {
  display: grid;
  gap: clamp(22px, 2.6vw, 38px);
  align-self: center;
}

.featured-card:first-child .card-body {
  align-self: stretch;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
}

.project-copy {
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
}

.featured-card h3,
.project-card h3 {
  font-weight: 500;
}

.card-body p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.62;
}

.meta-line,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-line span {
  color: var(--muted);
  font-size: 14px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.06);
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.project-cta {
  position: relative;
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
  transition:
    background-color 420ms var(--ease),
    border-color 520ms var(--ease),
    box-shadow 520ms var(--ease),
    color 420ms var(--ease),
    transform 520ms var(--ease);
}

.project-cta::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 1;
  transform: translateX(0) rotate(45deg);
  transition:
    opacity 420ms var(--ease),
    transform 520ms var(--ease);
}

.project-cta:hover,
.showcase-story:focus-visible .showcase-cta {
  border-color: #272723;
  background-color: #272723;
  color: var(--paper);
}

.project-cta:hover::after,
.showcase-story:focus-visible .showcase-cta::after {
  animation: cta-arrow-pulse 680ms var(--ease);
}

@keyframes cta-arrow-pulse {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(45deg);
  }

  42% {
    opacity: 0;
    transform: translateX(9px) rotate(45deg);
  }

  43% {
    opacity: 0;
    transform: translateX(-9px) rotate(45deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(45deg);
  }
}

.work-section {
  border-bottom: 1px solid var(--line);
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 104px);
  align-items: start;
}

.work-heading {
  margin-bottom: clamp(44px, 5.5vw, 78px);
}

.filter-bar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}

.filter-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.2;
  text-align: left;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--ink);
}

.project-grid {
  display: grid;
}

.project-card {
  min-height: 340px;
}

.project-card img,
.project-card .card-visual {
  min-height: 280px;
}

.testimonial-section {
  color: var(--paper);
  padding-top: clamp(88px, 8vw, 126px);
  padding-bottom: clamp(92px, 8.6vw, 136px);
}

.testimonial-section h2 {
  max-width: 980px;
  margin: 0 0 clamp(44px, 5vw, 72px);
  color: var(--paper);
  font-size: clamp(34px, 4.1vw, 64px);
  font-weight: 500;
  line-height: 1.05;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.testimonial-card {
  display: flex;
  min-height: clamp(320px, 31vw, 500px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: var(--radius);
  background: rgba(244, 241, 234, 0.015);
}

.testimonial-card p {
  max-width: 640px;
  margin: 0;
  color: rgba(244, 241, 234, 0.86);
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 1.23;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(244, 241, 234, 0.62);
}

.testimonial-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(244, 241, 234, 0.9);
  color: var(--about-dark);
  font-size: 13px;
  font-weight: 700;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.testimonial-person strong {
  color: rgba(244, 241, 234, 0.66);
  font-weight: 500;
}

.testimonial-person small {
  color: rgba(244, 241, 234, 0.48);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(128px, 0.18fr) minmax(0, 1fr);
  gap: clamp(30px, 4.8vw, 76px);
  border-bottom: 0;
  background: transparent;
  color: var(--ink);
  padding-top: clamp(56px, 6vw, 98px);
  transition:
    background-color 900ms var(--ease),
    color 900ms var(--ease),
    border-color 900ms var(--ease);
}

.about-section.is-dark {
  background: transparent;
  color: var(--paper);
  border-color: transparent;
}

.about-section h2 {
  font-weight: 500;
}

.about-section.is-dark .section-label,
.about-section.is-dark .section-index,
.about-section.is-dark p,
.about-section.is-dark .about-facts span {
  color: rgba(244, 241, 234, 0.68);
}

.about-section.is-dark .about-facts,
.about-section.is-dark .about-facts div {
  border-color: rgba(244, 241, 234, 0.16);
}

.about-section.is-dark .about-facts div::after {
  background: rgba(244, 241, 234, 0.16);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(42px, 5vw, 72px);
}

.about-facts div {
  position: relative;
  min-height: 180px;
  padding: 16px clamp(34px, 4vw, 62px) 24px;
  border-right: 0;
}

.about-facts div:first-child {
  padding-left: 0;
}

.about-facts div:last-child {
  padding-right: 0;
}

.about-facts div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  width: 1px;
  background: var(--line);
  transition: background-color 900ms var(--ease);
}

.about-facts strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.92;
}

.about-facts span {
  display: block;
  max-width: 190px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.about-statement-section {
  color: var(--paper);
  padding:
    clamp(142px, 13vw, 210px)
    clamp(80px, 12vw, 240px)
    clamp(78px, 7vw, 110px);
}

.about-statement-section h2 {
  max-width: 1460px;
  margin: 0 auto;
  color: var(--paper);
  font-size: clamp(30px, 3vw, 56px);
  font-weight: 500;
  line-height: 1.14;
}

.about-statement-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 6.4vw, 132px);
  max-width: 1460px;
  margin: clamp(66px, 7vw, 104px) auto 0;
  padding-bottom: clamp(86px, 8vw, 132px);
  border-bottom: 1px solid rgba(244, 241, 234, 0.24);
}

.about-statement-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(244, 241, 234, 0.62);
  font-size: clamp(16px, 1.32vw, 24px);
  font-weight: 400;
  line-height: 1.38;
}

.awards-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 6.4vw, 132px);
  max-width: 1460px;
  margin: clamp(74px, 8vw, 130px) auto 0;
  padding-bottom: clamp(86px, 8vw, 132px);
  border-bottom: 1px solid rgba(244, 241, 234, 0.24);
  color: var(--paper);
}

.awards-layout h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(36px, 3.2vw, 62px);
  font-weight: 500;
  line-height: 1;
}

.awards-layout ul {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.awards-layout li {
  color: rgba(244, 241, 234, 0.88);
  font-size: clamp(20px, 1.65vw, 30px);
  font-weight: 400;
  line-height: 1.23;
}

.services-section {
  border-bottom: 0;
  transition:
    border-color 900ms var(--ease),
    color 900ms var(--ease);
}

.services-section h2 {
  max-width: 1040px;
}

.tools-section {
  display: block;
  padding-top: clamp(52px, 6vw, 88px);
}

.tools-head {
  max-width: 980px;
  margin: 0 auto clamp(64px, 8vw, 118px);
  text-align: center;
}

.tools-head p,
.tool-group h3 {
  margin: 0;
  color: rgba(244, 241, 234, 0.52);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tools-head h2 {
  max-width: none;
  margin: 20px 0 26px;
  color: var(--paper);
  font-size: clamp(42px, 5.8vw, 88px);
  font-weight: 500;
  line-height: 1.02;
}

.tools-head span {
  display: block;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(244, 241, 234, 0.66);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 104px) clamp(28px, 4vw, 72px);
  max-width: 1320px;
  margin: 0 auto;
}

.tool-group h3 {
  margin-bottom: 22px;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tool-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 18px 24px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(244, 241, 234, 0.045);
}

.tool-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
}

.tool-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tool-card strong {
  color: var(--paper);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.1;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 900ms var(--ease),
    color 900ms var(--ease);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

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

.showcase-story.reveal,
.featured-card.reveal,
.project-card.reveal {
  transform: translateY(34px);
}

.showcase-story.reveal.is-visible,
.featured-card.reveal.is-visible,
.project-card.reveal.is-visible {
  transform: translateY(0);
}

.proof-intro {
  position: sticky;
  top: 112px;
}

.proof-intro h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.1vw, 64px);
  font-weight: 500;
}

.proof-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-panel {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 241, 234, 0.035);
}

.proof-panel-wide {
  grid-column: 1 / -1;
}

.proof-label {
  display: block;
  margin-bottom: clamp(26px, 3.4vw, 48px);
  color: rgba(244, 241, 234, 0.62);
  font-size: 14px;
}

.proof-timeline {
  display: grid;
  gap: 0;
}

.proof-timeline div {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 54px);
  padding: 20px 0;
  border-top: 1px solid rgba(244, 241, 234, 0.14);
}

.proof-timeline div:last-child {
  border-bottom: 1px solid rgba(244, 241, 234, 0.14);
}

.proof-panel strong {
  color: var(--paper);
  font-size: clamp(22px, 2.35vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.proof-panel small,
.proof-panel p {
  margin: 0;
  color: rgba(244, 241, 234, 0.66);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
}

.proof-panel p {
  max-width: 520px;
}

.contact-section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding:
    calc(clamp(74px, 8vw, 130px) + 30px)
    clamp(80px, 12vw, 240px)
    50px;
  background: var(--ink);
  color: var(--paper);
  transition:
    background-color 900ms var(--ease),
    color 900ms var(--ease);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--about-dark) 0%, rgba(9, 10, 8, 0.82) 18%, rgba(9, 10, 8, 0.24) 48%, rgba(9, 10, 8, 0.58) 100%),
    linear-gradient(to right, rgba(9, 10, 8, 0.62), rgba(9, 10, 8, 0.18) 48%, rgba(9, 10, 8, 0.54));
}

.contact-video-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.78;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.15) 18%, #000 46%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.15) 18%, #000 46%, #000 100%);
}

.contact-section .section-label,
.contact-section .section-index,
.contact-section .text-link {
  color: rgba(244, 241, 234, 0.7);
}

.contact-section h2 {
  max-width: 1040px;
  font-weight: 500;
}

.contact-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 34px;
  margin-top: clamp(36px, 5vw, 72px);
}

.contact-cta {
  color: var(--paper);
  border-color: rgba(244, 241, 234, 0.34);
}

.contact-cta:hover {
  color: var(--paper);
  background: rgba(244, 241, 234, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 2.8vw, 54px);
  width: 100%;
  margin-top: calc(clamp(64px, 7vw, 104px) + 130px);
}

.footer-text-link {
  color: rgba(244, 241, 234, 0.58);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transition: color 260ms var(--ease);
}

.footer-text-link:hover {
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.button:hover {
  background: var(--paper);
  color: var(--ink);
}

body.about-theme-active .about-section,
body.about-theme-active .services-section,
body.about-theme-active .proof-section,
body.about-theme-active .contact-section {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 241, 234, 0.16);
}

body.about-theme-active .services-section .section-index,
body.about-theme-active .services-section .text-link,
body.about-theme-active .proof-section .section-index,
body.about-theme-active .proof-label,
body.about-theme-active .proof-panel small,
body.about-theme-active .proof-panel p {
  color: rgba(244, 241, 234, 0.66);
}

body.about-theme-active .proof-panel,
body.about-theme-active .proof-timeline div {
  border-color: rgba(244, 241, 234, 0.16);
}

body.about-theme-active .tool-card strong,
body.about-theme-active .proof-panel strong,
body.about-theme-active .proof-intro h2 {
  color: var(--paper);
}

.showcase-page-body {
  background: var(--about-dark);
}

.project-page {
  min-height: 100vh;
  background: var(--about-dark);
  color: var(--paper);
}

.project-page-shell {
  width: 100%;
}

.project-page-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.56fr) minmax(0, 1fr);
  gap: clamp(36px, 4.6vw, 88px);
  align-items: stretch;
  min-height: 100vh;
  padding: clamp(128px, 10vw, 176px) clamp(28px, 3vw, 64px) clamp(38px, 3.6vw, 64px);
}

.project-page-copy {
  display: flex;
  min-height: clamp(600px, 74vh, 820px);
  flex-direction: column;
  align-items: flex-start;
}

.project-page-kicker {
  margin: 0 0 clamp(24px, 3vw, 48px);
  color: rgba(244, 241, 234, 0.52);
  font-size: 16px;
  line-height: 1;
}

.project-page-tags {
  margin-bottom: clamp(34px, 4vw, 62px);
}

.project-page-copy h1 {
  max-width: 900px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(46px, 4.2vw, 86px);
  font-weight: 500;
  line-height: 1.06;
}

.project-page-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 760px);
  margin-top: clamp(42px, 4.4vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.13);
  border-radius: var(--radius);
}

.project-page-hero-meta div {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  background: rgba(244, 241, 234, 0.035);
}

.project-page-hero-meta span {
  color: rgba(244, 241, 234, 0.42);
  font-size: 13px;
}

.project-page-hero-meta strong {
  color: var(--paper);
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 500;
  line-height: 1.22;
}

.project-page-cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(34px, 4vw, 64px);
  padding: 15px 30px;
  border: 1px solid rgba(244, 241, 234, 0.28);
  border-radius: 999px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition:
    border-color 520ms var(--ease),
    background-color 520ms var(--ease),
    color 520ms var(--ease);
}

.project-page-cta:hover {
  border-color: rgba(244, 241, 234, 0);
  background: rgba(244, 241, 234, 0.12);
}

.project-page-quote {
  margin: auto 0 0;
  width: min(100%, 760px);
  padding-top: clamp(36px, 4.4vw, 66px);
  border-top: 1px solid rgba(244, 241, 234, 0.16);
}

.project-page-quote p {
  max-width: 640px;
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.42;
}

.project-page-quote footer {
  margin-top: 28px;
  color: rgba(244, 241, 234, 0.44);
  font-size: 15px;
}

.project-page-placeholder {
  position: relative;
  display: grid;
  min-height: clamp(440px, 54vw, 820px);
  margin: 0;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #252522;
  color: rgba(244, 241, 234, 0.48);
  font-size: 15px;
}

.project-page-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(244, 241, 234, 0.08);
  border-radius: calc(var(--radius) - 8px);
}

.project-page-placeholder.is-hero {
  min-height: clamp(600px, 74vh, 860px);
}

.project-page-overview,
.project-page-facts,
.project-page-media-grid,
.project-page-next {
  width: calc(100% - clamp(56px, 6vw, 128px));
  max-width: 1760px;
  margin-right: auto;
  margin-left: auto;
}

.project-page-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 132px);
  padding: clamp(104px, 10vw, 164px) 0;
  border-top: 1px solid rgba(244, 241, 234, 0.14);
}

.project-page-section-title span {
  display: block;
  margin-bottom: 18px;
  color: rgba(244, 241, 234, 0.42);
  font-size: 15px;
}

.project-page-section-title h2 {
  max-width: 620px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(38px, 3.6vw, 70px);
  font-weight: 500;
  line-height: 1.02;
}

.project-page-overview-copy {
  display: grid;
  gap: clamp(28px, 3vw, 48px);
}

.project-page-overview-copy p {
  max-width: 1100px;
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: clamp(24px, 1.9vw, 38px);
  line-height: 1.28;
}

.project-page-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(22px, 2vw, 38px);
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.project-page-facts div {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 48px);
  background: rgba(244, 241, 234, 0.035);
}

.project-page-facts span {
  color: rgba(244, 241, 234, 0.44);
  font-size: 14px;
}

.project-page-facts strong {
  color: var(--paper);
  font-size: clamp(20px, 1.8vw, 34px);
  font-weight: 500;
  line-height: 1.16;
}

.project-page-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 36px);
  padding: clamp(48px, 5vw, 92px) 0 clamp(118px, 12vw, 190px);
}

.project-page-media-grid .project-page-placeholder {
  min-height: clamp(360px, 36vw, 660px);
}

.project-page-media-grid .is-wide {
  grid-column: 1 / -1;
  min-height: clamp(460px, 45vw, 780px);
}

.project-page-overview.is-outcome {
  padding-top: 0;
}

.project-page-cta-band {
  display: flex;
  width: calc(100% - clamp(56px, 6vw, 128px));
  max-width: 1760px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto clamp(42px, 5vw, 86px);
  padding: clamp(44px, 5vw, 82px);
  border-radius: var(--radius);
  background: rgba(244, 241, 234, 0.055);
}

.project-page-cta-band h2 {
  max-width: 980px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(36px, 4vw, 78px);
  font-weight: 500;
  line-height: 1.02;
}

.project-page-next {
  display: grid;
  gap: 18px;
  padding: clamp(72px, 8vw, 128px) 0 clamp(96px, 10vw, 160px);
  border-top: 1px solid rgba(244, 241, 234, 0.14);
  color: var(--paper);
}

.project-page-next span {
  color: rgba(244, 241, 234, 0.44);
  font-size: 15px;
}

.project-page-next strong {
  font-size: clamp(46px, 6vw, 112px);
  font-weight: 500;
  line-height: 0.96;
}

.case-view {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
}

.case-close {
  position: fixed;
  z-index: 3;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(244, 241, 234, 0.82);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  min-height: 100vh;
}

.case-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 104px clamp(18px, 4vw, 56px) 54px;
}

.case-intro h1 {
  margin: 0;
  font-size: clamp(62px, 8.8vw, 148px);
  line-height: 0.9;
  letter-spacing: 0;
}

.case-media {
  min-height: 560px;
  overflow: hidden;
  background: var(--visual);
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-details {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 112px);
  padding: clamp(74px, 10vw, 152px) clamp(18px, 4vw, 56px);
}

.case-stats {
  display: grid;
  gap: 18px;
  align-self: start;
}

.case-stat {
  padding: 0;
}

.case-stat span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.case-stat strong {
  font-size: 20px;
  line-height: 1.25;
}

.case-story {
  display: grid;
  gap: clamp(38px, 5vw, 72px);
}

.case-story p {
  max-width: 900px;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  padding: clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.gallery-panel {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--visual);
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.next-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 132px;
  padding: 34px clamp(18px, 4vw, 56px);
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  text-align: left;
}

.next-project span {
  color: rgba(244, 241, 234, 0.62);
}

.next-project strong {
  font-size: clamp(28px, 4vw, 64px);
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 92px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .nav-links {
    display: none;
  }

  .brand-logo {
    width: clamp(108px, 18vw, 116px);
  }

  .header-actions {
    gap: 12px;
  }

  .social-link {
    display: none;
  }

  .nav-cta {
    min-height: 52px;
    padding-left: 18px;
    padding-right: 22px;
    font-size: 16px;
  }

  .header-cta {
    gap: 15px;
    padding-left: 10px;
    padding-right: 22px;
  }

  .nav-cta-avatar {
    width: 34px;
    height: 34px;
  }

  .intro-section,
  .work-layout,
  .about-section,
  .about-statement-copy,
  .proof-section,
  .case-hero,
  .case-details,
  .case-gallery,
  .project-page-hero,
  .project-page-overview,
  .project-page-media-grid {
    grid-template-columns: 1fr;
  }

  .project-page-hero {
    min-height: auto;
  }

  .project-page-copy {
    min-height: auto;
  }

  .project-page-quote {
    margin-top: 72px;
  }

  .project-page-facts {
    grid-template-columns: 1fr;
  }

  .project-page-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-bar {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .intro-video-section {
    min-height: 360vh;
  }

  .intro-video-frame {
    position: sticky;
    top: 112px;
    height: 85vh;
    height: 85svh;
  }

  .video-overlay {
    inset: 28px 28px 33px 33px;
    align-items: flex-start;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 18px;
  }

  .video-call-button {
    min-height: 50px;
    gap: 14px;
    padding: 7px 18px 7px 9px;
    font-size: 15px;
  }

  .video-call-icon {
    width: 32px;
    height: 32px;
    font-size: 27px;
  }

  .video-open-text {
    max-width: 320px;
    font-size: 17px;
    line-height: 1.34;
    text-align: left;
  }

  .featured-card,
  .project-card,
  .showcase-story {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-info {
    position: static;
    min-height: auto;
    gap: 48px;
    padding: 0 0 20px;
  }

  .showcase-visual-panel {
    height: auto;
    min-height: 0;
  }

  .reel-card {
    flex-basis: clamp(280px, 50vw, 430px);
  }

  .featured-card img,
  .project-card img,
  .card-visual {
    min-height: 340px;
  }

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

  .about-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-facts div::after {
    display: none;
  }

  .proof-intro {
    position: static;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-statement-section h2,
  .about-statement-copy,
  .awards-layout,
  .contact-inner {
    max-width: none;
  }

  .about-statement-section {
    padding-left: clamp(22px, 5vw, 56px);
    padding-right: clamp(22px, 5vw, 56px);
  }

  .about-statement-copy,
  .awards-layout {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .proof-timeline div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 88px;
    padding: 22px 16px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 8px;
  }

  .brand,
  .nav-cta {
    font-size: 16px;
  }

  .brand-logo {
    width: 112px;
  }

  .nav-links {
    justify-self: center;
    gap: 16px;
  }

  .nav-links a {
    font-size: 12px;
    font-weight: 500;
  }

  .header-actions {
    gap: 0;
  }

  .social-link {
    display: none;
  }

  .nav-cta {
    min-height: 52px;
    padding: 0 22px 0 18px;
    border-width: 1px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
  }

  .showcase-cta {
    min-height: 60px;
    padding: 3px 28px 3px 24px;
    font-size: 17px;
  }

  .header-cta {
    gap: 15px;
    padding-left: 10px;
    padding-right: 22px;
  }

  .project-page-hero {
    gap: 34px;
    padding: 112px 16px 54px;
  }

  .project-page-copy h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  .project-page-overview-copy p {
    font-size: 22px;
    line-height: 1.3;
  }

  .project-page-hero-meta {
    grid-template-columns: 1fr;
  }

  .project-page-tags {
    margin-bottom: 34px;
  }

  .project-page-placeholder,
  .project-page-placeholder.is-hero,
  .project-page-media-grid .project-page-placeholder,
  .project-page-media-grid .is-wide {
    min-height: 340px;
  }

  .project-page-overview,
  .project-page-facts,
  .project-page-media-grid,
  .project-page-cta-band,
  .project-page-next {
    width: calc(100% - 32px);
  }

  .project-page-overview {
    gap: 32px;
    padding: 72px 0;
  }

  .project-page-section-title h2 {
    font-size: 38px;
  }

  .project-page-media-grid {
    grid-template-columns: 1fr;
    padding: 32px 0 80px;
  }

  .project-page-next strong {
    font-size: 54px;
  }

  .project-page-cta-band {
    padding: 34px 24px;
  }

  .project-page-cta-band h2 {
    font-size: 36px;
  }

  .hero {
    padding: 96px 16px 84px;
    margin-bottom: -50px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.2vw, 43px);
    line-height: 1;
  }

  .work-reel {
    padding-top: 28px;
  }

  .reel-card {
    flex-basis: 82vw;
  }

  .reel-visual {
    height: auto;
  }

  h2 {
    font-size: 36px;
  }

  .intro-copy h2 {
    font-size: 34px;
  }

  .about-statement-section {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .about-statement-section h2 {
    font-size: 28px;
    line-height: 1.14;
  }

  .about-statement-copy {
    gap: 28px;
    margin-top: 46px;
    padding-bottom: 68px;
  }

  .about-statement-copy p {
    font-size: 16px;
    line-height: 1.42;
  }

  .awards-layout {
    gap: 34px;
    margin-top: 64px;
    padding-bottom: 68px;
  }

  .awards-layout h3 {
    font-size: 38px;
  }

  .awards-layout ul {
    gap: 16px;
  }

  .awards-layout li {
    font-size: 20px;
    line-height: 1.28;
  }

  .intro-section,
  .intro-image-section,
  .testimonial-section,
  .about-section,
  .about-statement-section,
  .services-section,
  .proof-section,
  .section,
  .case-details {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-section {
    padding-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 50px;
  }

  .contact-inner {
    padding: 0;
  }

  .footer-links {
    justify-content: center;
    margin-top: 184px;
  }

  .footer-text-link {
    font-size: 16px;
  }

  .featured-card img,
  .project-card img,
  .card-visual {
    min-height: 260px;
  }

  .featured-grid {
    gap: 78px;
  }

  .showcase-story {
    gap: 46px;
  }

  .showcase-main {
    gap: 34px;
  }

  .showcase-main p {
    font-size: 30px;
  }

  .showcase-testimonial p {
    font-size: 18px;
  }

  .showcase-visual-stack {
    gap: 16px;
  }

  .showcase-visual-panel {
    height: auto;
  }

  .tools-head {
    margin-bottom: 46px;
    text-align: left;
  }

  .tools-head h2 {
    font-size: 38px;
  }

  .testimonial-card {
    min-height: 320px;
  }

  .tool-list {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 66px;
    padding: 16px 18px;
  }

  .case-intro {
    padding: 90px 16px 42px;
  }

  .case-intro h1 {
    font-size: 64px;
  }

  .gallery-panel {
    min-height: 330px;
  }

  .next-project {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-pending .site-header,
  .intro-pending .scroll-cue,
  .intro-pending .work-reel {
    opacity: 1;
    animation: none;
    filter: none;
    clip-path: none;
    transform: none;
  }

  .intro-pending .hero-title-line > span {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

  .showcase-visual-panel.is-scroll-animated {
    opacity: 1;
    transform: none;
  }

  .work-reel-track {
    animation: none;
    transform: none;
  }
}
