:root {
  color-scheme: light;
  --paper: #f5f6f2;
  --paper-deep: #e7e9e4;
  --ink: #0d1726;
  --ink-soft: #3c4858;
  --muted: #74808c;
  --line: rgba(13, 23, 38, 0.13);
  --red: #2d5bff;
  --red-dark: #18368f;
  --black: #000000;
  --white: #ffffff;
  --sand: #bca46a;
  --blue: #28405f;
  --sage: #4f6f75;
  --moss: #111d2b;
  --max: 1500px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, system-ui, sans-serif;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
main { overflow-x: clip; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 0.8rem 1rem;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 95;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sand), var(--red));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 76px;
  height: 76px;
  padding: 0 clamp(1rem, 3vw, 2.2rem);
  border-bottom: 1px solid transparent;
  background: rgba(245, 246, 242, 0.9);
  backdrop-filter: blur(20px);
  transition: background 260ms ease, border-color 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 246, 242, 0.96);
}

.brand {
  position: relative;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-word {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
  line-height: 1;
}

.brand-word::after {
  content: "";
  position: absolute;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--sand);
  transform: translate(1.18rem, 1.18rem) rotate(45deg);
}

.brand-name {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  letter-spacing: 0;
}

.site-nav {
  counter-reset: menu;
  position: absolute;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1rem, 2.6vw, 3rem);
  align-content: start;
  min-height: 100svh;
  padding: clamp(6.4rem, 10.4svh, 8rem) clamp(1.4rem, 5.4vw, 6rem) clamp(0.9rem, 2.5svh, 2rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(188, 164, 106, 0.18), transparent 26%),
    radial-gradient(circle at 10% 84%, rgba(45, 91, 255, 0.2), transparent 30%),
    rgba(13, 23, 38, 0.98);
  color: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition:
    clip-path 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease;
}

.site-nav::before {
  content: "Choose the problem";
  position: absolute;
  left: clamp(1.4rem, 5.4vw, 6rem);
  top: clamp(5.45rem, 8.6svh, 7rem);
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav::after {
  content: "CLARE LANGLEY";
  position: absolute;
  left: clamp(-0.3rem, 1vw, 1rem);
  bottom: -0.09em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(5rem, 15vw, 17rem);
  font-weight: 900;
  line-height: 0.78;
  pointer-events: none;
}

.site-nav.is-open {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.site-nav a {
  counter-increment: menu;
  position: relative;
  grid-column: 1;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(0.75rem, 1.6vw, 1.6rem);
  align-items: baseline;
  width: min(100%, 860px);
  padding: clamp(0.04rem, 0.24svh, 0.2rem) 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.7rem, min(3.28vw, 4.88svh), 3.75rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  transition: color 220ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(1rem);
  opacity: 0;
}

.site-nav a::before {
  content: "0" counter(menu);
  color: var(--sand);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 900;
  line-height: 1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0.2rem;
  width: min(72%, 720px);
  height: 1px;
  background: linear-gradient(90deg, var(--sand), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.site-nav.is-open a:nth-of-type(1) { transition-delay: 60ms; }
.site-nav.is-open a:nth-of-type(2) { transition-delay: 110ms; }
.site-nav.is-open a:nth-of-type(3) { transition-delay: 160ms; }
.site-nav.is-open a:nth-of-type(4) { transition-delay: 210ms; }
.site-nav.is-open a:nth-of-type(5) { transition-delay: 260ms; }
.site-nav.is-open a:nth-of-type(6) { transition-delay: 310ms; }
.site-nav.is-open a:nth-of-type(7) { transition-delay: 360ms; }

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--sand);
  transform: translateX(0.45rem);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  position: relative;
  z-index: 130;
}

.nav-toggle span:not(.nav-toggle-label) {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  transition: transform 260ms ease, opacity 260ms ease;
}

.site-header.is-open {
  height: 100svh;
  align-items: start;
  padding-top: clamp(0.8rem, 2svh, 1rem);
  background: transparent;
  border-color: transparent;
  overflow: hidden;
}

.site-header.is-open .brand,
.site-header.is-open .nav-toggle {
  color: var(--white);
}

.site-header.is-open .brand-word {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateX(0.45rem) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  transform: translateX(-0.45rem) rotate(-45deg);
}

.site-header.is-open .nav-toggle-label {
  color: var(--sand);
}

.menu-panel {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 7;
  align-self: start;
  display: grid;
  gap: clamp(0.55rem, 1.2svh, 1rem);
  padding: clamp(1rem, 2.2vw, 1.75rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.is-open .menu-panel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 260ms;
}

.menu-panel span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-panel strong {
  max-width: 15ch;
  font-size: clamp(1.35rem, min(2.45vw, 4.2svh), 3rem);
  line-height: 0.95;
}

.menu-panel a {
  display: inline-flex;
  grid-template-columns: none;
  width: fit-content;
  padding: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 800;
  line-height: 1.2;
  opacity: 1;
  transform: none;
}

.site-nav .menu-panel a {
  grid-column: auto;
  grid-template-columns: none;
  width: fit-content;
  padding: 0;
  color: var(--white);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.2;
  opacity: 1;
  transform: none;
}

.menu-panel a::before,
.menu-panel a::after {
  content: none;
}

@media (max-height: 760px) and (min-width: 901px) {
  .site-nav {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: clamp(1.2rem, 3vw, 3rem);
    padding-top: 5.35rem;
    padding-bottom: 0.75rem;
  }

  .site-nav::before {
    top: 4.75rem;
  }

  .site-nav a {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    padding: 0.05rem 0;
    font-size: clamp(1.48rem, min(2.85vw, 4.85svh), 3.12rem);
    line-height: 0.9;
  }

  .menu-panel {
    gap: 0.85rem;
    padding: clamp(1rem, 2vw, 1.6rem);
  }

  .menu-panel strong {
    max-width: 15ch;
    font-size: clamp(1.2rem, min(2vw, 3.5svh), 2.25rem);
  }
}

@media (max-height: 620px) and (min-width: 901px) {
  .site-nav {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-top: 5.1rem;
  }

  .site-nav a {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    font-size: clamp(1.22rem, min(2.45vw, 4.8svh), 2.35rem);
    line-height: 0.88;
  }

  .menu-panel {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 920px);
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .menu-panel strong {
    max-width: 34rem;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    line-height: 1.1;
  }
}

.floating-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  min-height: 3.6rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, background 220ms ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-3px);
  background: var(--red-dark);
}

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

h1, h2, h3 {
  letter-spacing: 0;
  font-weight: 900;
  overflow-wrap: normal;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--red-dark);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7.5rem clamp(1rem, 3vw, 2.2rem) 0;
  display: grid;
  align-content: end;
  border-bottom: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

section {
  scroll-margin-top: 86px;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3.6rem, 6.2vw, 7.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  filter: grayscale(0.08) contrast(1.03) saturate(0.86);
  transform: scale(1.02);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.9) 0%, rgba(8, 18, 34, 0.66) 36%, rgba(45, 91, 255, 0.1) 70%, rgba(8, 18, 34, 0.56) 100%),
    linear-gradient(180deg, rgba(188, 164, 106, 0.08), rgba(8, 18, 34, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-bottom: clamp(2rem, 7vw, 6rem);
}

.hero-signature {
  position: absolute;
  right: clamp(1rem, 4vw, 3.2rem);
  bottom: clamp(6.5rem, 9vw, 8.4rem);
  z-index: 3;
  width: min(25rem, 34vw);
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 23, 38, 0.58);
  color: var(--white);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.hero-signature span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-signature strong {
  display: block;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.25;
}

.hero .eyebrow {
  color: var(--sand);
}

.hero h1 {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(4.4rem, 11vw, 13rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-statement {
  max-width: 54rem;
  margin: clamp(1.2rem, 2.5vw, 2rem) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

h1 span {
  display: block;
}

h1 span:nth-child(2) {
  color: var(--sand);
  font-size: 0.92em;
}

h1 span:nth-child(4) {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.hero-panel {
  width: min(100%, 1180px);
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-panel-image {
  min-height: 0;
  overflow: hidden;
}

.hero-panel-image img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 42vw, 660px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.06);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.hero-panel:hover img {
  transform: scale(1.01);
  filter: grayscale(0.2) contrast(1.03);
}

.hero-panel-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 0;
}

.hero-panel-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.12rem;
  border: 1px solid currentColor;
  border-radius: 0;
  font-weight: 900;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button.primary {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}

.button.secondary {
  color: currentColor;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.proof-ticker {
  position: relative;
  z-index: 2;
  width: calc(100% + 4.4rem);
  margin: 0 -2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 18, 31, 0.78);
  backdrop-filter: blur(18px);
}

.proof-ticker span {
  min-height: clamp(4.2rem, 6vw, 5.8rem);
  display: flex;
  align-items: center;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 800;
}

.proof-ticker span:last-child { border-right: 0; }

.impact-reel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 100svh;
  background: linear-gradient(180deg, var(--paper), #ecefea);
  color: var(--ink);
}

.impact-reel-media {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.impact-reel-media img,
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04) saturate(0.95);
}

.impact-reel-copy {
  display: grid;
  align-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 7rem);
}

.impact-reel-copy h2 {
  max-width: 9ch;
}

.impact-stat-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.impact-stat-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: end;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--paper);
}

.impact-stat-list strong {
  display: block;
  color: var(--red-dark);
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  line-height: 0.85;
}

.impact-stat-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.45;
}

.work-section,
.method-section,
.evidence-section,
.experience-section,
.contact-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 3vw, 2.2rem);
}

.section-head,
.method-intro,
.evidence-copy {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

h2 {
  margin-bottom: 0;
  max-width: 13ch;
  font-size: clamp(2.8rem, 5vw, 6.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.category-rail {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
  display: flex;
  gap: clamp(1.1rem, 3vw, 4.5rem);
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar { display: none; }

.category-rail button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(16, 24, 38, 0.34);
  white-space: nowrap;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.category-rail button:hover,
.category-rail button:focus-visible,
.category-rail button.is-active {
  color: var(--ink);
}

.category-rail button.is-active {
  transform: translateY(-2px);
}

.case-stack {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.5rem);
  align-items: stretch;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
  will-change: transform;
}

.case-card.is-muted {
  opacity: 0.18;
  transform: scale(0.985);
}

.case-card.feature {
  grid-column: 1 / -1;
}

.case-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.case-card.feature a {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  grid-template-rows: 1fr;
}

.case-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

.feature .case-media {
  height: 100%;
  min-height: clamp(360px, 36vw, 620px);
  aspect-ratio: auto;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.02) saturate(0.86);
  transform: scale(1.06);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.case-card:hover img,
.case-card:focus-within img {
  transform: scale(1.01);
  filter: grayscale(0.05) contrast(1.02);
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-8px);
}

.case-index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--sand);
  color: var(--ink);
  font-weight: 900;
}

.metric-media {
  display: grid;
  align-content: end;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(45, 91, 255, 0.72), rgba(13, 23, 38, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 42px);
  color: var(--white);
}

.metric-media strong {
  display: block;
  font-size: clamp(6rem, 15vw, 14rem);
  line-height: 0.75;
  letter-spacing: 0;
}

.metric-media em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
}

.photo-case {
  display: grid;
  align-content: end;
  color: var(--white);
  isolation: isolate;
}

.photo-case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 24, 38, 0.05), rgba(16, 24, 38, 0.78));
  pointer-events: none;
}

.photo-case img {
  position: absolute;
  inset: 0;
}

.photo-case strong {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: auto 0 0;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  max-width: 9ch;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 4.8rem);
  line-height: 0.9;
}

.system-media {
  background: var(--ink);
  display: grid;
  place-items: center;
}

.system-lines {
  width: min(72%, 540px);
  display: grid;
  gap: clamp(0.6rem, 1vw, 1rem);
  transform: skewY(-8deg);
}

.system-lines i {
  height: clamp(2.6rem, 5vw, 5.2rem);
  background: var(--paper);
  transform-origin: left;
  animation: linePulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.system-lines i:nth-child(2) { width: 82%; animation-delay: 120ms; background: var(--red); }
.system-lines i:nth-child(3) { width: 68%; animation-delay: 240ms; }
.system-lines i:nth-child(4) { width: 90%; animation-delay: 360ms; background: var(--sand); }
.system-lines i:nth-child(5) { width: 58%; animation-delay: 480ms; }

.digital-media {
  padding: clamp(1.2rem, 3vw, 2.4rem);
  display: grid;
  align-content: end;
  background: var(--moss);
  color: var(--white);
}

.case-media.photo-case {
  place-items: stretch;
  padding: 0;
}

.case-media.photo-case strong {
  align-self: end;
  justify-self: start;
}

.digital-media strong {
  position: relative;
  z-index: 2;
  max-width: 8ch;
  font-size: clamp(2rem, 3.8vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.pixel-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, var(--red) 0 0.42rem, transparent 0.45rem),
    radial-gradient(circle at 70% 35%, var(--blue) 0 0.34rem, transparent 0.37rem),
    radial-gradient(circle at 48% 70%, var(--sand) 0 0.38rem, transparent 0.41rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, auto, auto, 54px 54px, 54px 54px;
  opacity: 0.9;
  animation: driftGrid 18s linear infinite;
}

.case-meta {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: clamp(1rem, 1.8vw, 1.4rem);
  background: var(--white);
}

.case-card.feature .case-meta {
  align-content: center;
  padding: clamp(1.4rem, 4vw, 4rem);
}

.case-meta h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.45rem);
  line-height: 1;
}

.case-card.feature .case-meta h3 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.7vw, 6.2rem);
  line-height: 0.9;
}

.case-meta p {
  max-width: 52rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.case-meta span,
.method-grid span,
.evidence-grid span,
.experience-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(188, 164, 106, 0.16), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(45, 91, 255, 0.18), transparent 32%),
    var(--ink);
  color: var(--white);
}

.photo-break {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.photo-break img {
  position: absolute;
  inset: 0;
  filter: grayscale(0.2) contrast(1.08) saturate(0.95);
}

.photo-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 38, 0.1), rgba(16, 24, 38, 0.78)),
    linear-gradient(90deg, rgba(16, 24, 38, 0.68), transparent 64%);
}

.photo-break div {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.photo-break h2 {
  max-width: 11ch;
  color: var(--white);
}

.method-section .eyebrow { color: var(--red); }

.method-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.method-grid article {
  min-height: 28rem;
  padding: clamp(1rem, 2vw, 1.6rem);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.method-grid h3 {
  margin: clamp(6rem, 12vw, 11rem) 0 1rem;
  color: var(--paper);
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 0.94;
}

.method-grid p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.evidence-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: var(--paper-deep);
}

.evidence-copy {
  min-width: 0;
  position: static;
  margin: 0;
}

.evidence-copy h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.8vw, 6.8rem);
}

.evidence-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.evidence-grid article {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background: var(--paper-deep);
}

.evidence-grid strong {
  display: block;
  margin: 1.1rem 0;
  font-size: clamp(2.6rem, 5vw, 6rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.evidence-grid p {
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

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

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

.experience-list article {
  display: grid;
  grid-template-columns: 0.25fr 0.35fr 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.4rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
}

.experience-list h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.9;
}

.experience-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(188, 164, 106, 0.28), transparent 28%),
    radial-gradient(circle at 16% 90%, rgba(45, 91, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #dfe6e8, #f5f6f2 52%, #cfd8dc);
  color: var(--ink);
}

.contact-marquee {
  position: absolute;
  inset: 2rem auto auto 0;
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  color: rgba(13, 23, 38, 0.07);
  font-size: clamp(5rem, 13vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
  animation: marquee 22s linear infinite;
}

.contact-grid {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  min-height: min(82svh, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.contact-grid h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 5.6vw, 6.6rem);
}

.contact-grid .eyebrow { color: var(--ink); }

.contact-shell {
  width: min(100%, 1120px);
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  background: var(--moss);
  color: var(--white);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.22);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--moss);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.form-topline {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.form-topline span,
.contact-panel span,
.contact-form label span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-topline strong {
  justify-self: end;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.45;
}

.field-grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  position: relative;
  display: grid;
  gap: 0.55rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 1rem;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--white) 50%),
    linear-gradient(135deg, var(--white) 50%, transparent 50%);
  background-position: calc(100% - 1.2rem) 50%, calc(100% - 0.85rem) 50%;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.contact-form-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.contact-form-actions .button.primary {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--ink);
  cursor: pointer;
}

.contact-form-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-panel {
  align-content: end;
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 20% 20%, rgba(188, 164, 106, 0.24), transparent 36%),
    rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.contact-panel a,
.contact-panel p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 1.9vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-panel a {
  transition: color 180ms ease, transform 180ms ease;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--red);
  transform: translateX(4px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.2rem);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
}

.site-footer p span {
  color: rgba(255, 255, 255, 0.42);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.legal-page {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 9vw, 8rem);
}

.legal-page h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 7.8rem);
}

.legal-updated {
  margin: 1.2rem 0 clamp(2rem, 5vw, 4rem);
  color: var(--ink-soft);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 1.4rem;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  max-width: none;
  margin: 1.2rem 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.legal-content p {
  max-width: 78ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.legal-content a {
  color: var(--red-dark);
  font-weight: 900;
}

.legal-button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: auto;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  width: min(390px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 24, 38, 0.94);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.4;
}

.cookie-banner a {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--red);
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: stretch;
}

.cookie-actions .button {
  flex: 1 1 8rem;
  min-height: 2.55rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.cookie-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.cookie-actions .button.primary {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink);
}

.page-hero {
  position: relative;
  min-height: 100svh;
  padding: 8.8rem clamp(1rem, 3vw, 2.2rem) clamp(10rem, 14vw, 14rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(188, 164, 106, 0.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(45, 91, 255, 0.1), transparent 32%),
    linear-gradient(180deg, var(--paper), var(--paper-deep));
}

.page-hero::before {
  content: attr(data-watermark);
  position: absolute;
  left: clamp(-0.4rem, 1vw, 1.5rem);
  bottom: clamp(7.4rem, 9vw, 9.5rem);
  z-index: 0;
  color: rgba(13, 23, 38, 0.045);
  font-size: clamp(7rem, 19vw, 22rem);
  font-weight: 900;
  line-height: 0.72;
  text-transform: uppercase;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(1rem, 3vw, 2.2rem) clamp(3.5rem, 6vw, 5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  opacity: 0.7;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero h1 {
  max-width: 10ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-hero-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.page-hero-actions span {
  max-width: 25rem;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
}

.page-hero-actions .button {
  justify-self: start;
}

.topic-visual,
.topic-photo,
.about-image {
  position: relative;
  min-height: clamp(360px, 46vw, 720px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(13, 23, 38, 0.16);
}

.topic-photo::before,
.about-image::before {
  content: none;
}

.topic-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.04) saturate(0.82);
  transform: scale(1.03);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.topic-photo:hover img {
  filter: grayscale(0.05) contrast(1.04) saturate(1);
  transform: scale(1);
}

.topic-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(16, 24, 38, 0.78)),
    linear-gradient(90deg, rgba(16, 24, 38, 0.28), transparent 48%);
}

.topic-photo span {
  position: absolute;
  left: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  z-index: 2;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.page-hero-proof {
  position: absolute;
  left: clamp(1rem, 3vw, 2.2rem);
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - clamp(2rem, 6vw, 4.4rem)));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 23, 38, 0.9);
  color: var(--white);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 90px rgba(13, 23, 38, 0.24);
}

.page-hero-proof article {
  min-height: clamp(6.5rem, 9vw, 9rem);
  display: grid;
  align-content: space-between;
  padding: clamp(1rem, 2vw, 1.6rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.page-hero-proof span {
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero-proof strong {
  display: block;
  max-width: 10ch;
  font-size: clamp(1.2rem, 2vw, 2.6rem);
  line-height: 0.95;
}

.topic-service .topic-photo {
  align-self: stretch;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.topic-cx {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.topic-cx .page-hero-copy {
  grid-column: 2;
  grid-row: 1;
}

.topic-cx .topic-photo {
  grid-column: 1;
  grid-row: 1;
  min-height: clamp(420px, 54vw, 820px);
}

.topic-cx .page-hero-proof {
  background: rgba(245, 246, 242, 0.88);
  color: var(--ink);
  border: 0;
}

.topic-cx .page-hero-proof article {
  border-color: rgba(13, 23, 38, 0.12);
}

.topic-cx .page-hero-proof strong {
  color: var(--ink);
}

.topic-ai {
  background:
    radial-gradient(circle at 74% 18%, rgba(45, 91, 255, 0.28), transparent 32%),
    radial-gradient(circle at 20% 90%, rgba(188, 164, 106, 0.15), transparent 28%),
    var(--ink);
  color: var(--white);
}

.topic-ai .page-hero-copy p:not(.eyebrow),
.topic-ai .page-hero-actions span {
  color: rgba(255, 255, 255, 0.72);
}

.topic-ai::before {
  color: rgba(255, 255, 255, 0.06);
}

.topic-ai .topic-photo {
  box-shadow: 0 34px 110px rgba(45, 91, 255, 0.24);
  transform: rotate(1.4deg);
}

.topic-evidence .topic-photo,
.topic-about .about-image {
  min-height: clamp(440px, 56vw, 820px);
  border-radius: 999px 999px 0 0;
}

.service-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: clamp(1rem, 2vw, 2rem);
  background:
    linear-gradient(135deg, rgba(45, 91, 255, 0.58), transparent 44%),
    var(--ink);
}

.service-map span {
  display: grid;
  place-items: end start;
  min-height: 10rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 3.4rem);
  font-weight: 900;
  line-height: 0.92;
}

.service-map i {
  position: absolute;
  width: 42%;
  height: 2px;
  background: var(--white);
  opacity: 0.48;
  transform: rotate(-18deg);
}

.service-map i:nth-of-type(1) { left: 20%; top: 32%; }
.service-map i:nth-of-type(2) { left: 28%; top: 50%; }
.service-map i:nth-of-type(3) { left: 36%; top: 68%; }

.cx-radar {
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  color: var(--ink);
}

.cx-radar b {
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.82;
}

.cx-radar span {
  position: absolute;
  border: 2px solid rgba(16, 24, 38, 0.16);
  border-radius: 50%;
}

.cx-radar span:nth-child(2) { width: 82%; aspect-ratio: 1; }
.cx-radar span:nth-child(3) { width: 62%; aspect-ratio: 1; border-color: var(--red); }
.cx-radar span:nth-child(4) { width: 42%; aspect-ratio: 1; }
.cx-radar span:nth-child(5) { width: 22%; aspect-ratio: 1; background: var(--red); opacity: 0.9; }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: end;
  gap: 1px;
  padding: clamp(1rem, 2vw, 2rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--moss);
  background-size: 46px 46px;
}

.ai-grid span {
  min-height: 9rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(1.5rem, 3vw, 3.6rem);
  font-weight: 900;
}

.ai-grid i {
  position: absolute;
  inset: 18%;
  border: 2px solid var(--red);
  transform: rotate(28deg);
}

.evidence-board {
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2.4rem);
  background: var(--red);
  color: var(--ink);
}

.evidence-board strong {
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.78;
}

.evidence-board span {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(16, 24, 38, 0.22);
  font-weight: 900;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.8) contrast(1.02);
}

.page-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    linear-gradient(90deg, rgba(13, 23, 38, 0.96), rgba(17, 29, 43, 0.94)),
    var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-proof-strip article {
  min-height: clamp(8rem, 12vw, 13rem);
  display: grid;
  align-content: space-between;
  padding: clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(188, 164, 106, 0.14), transparent 45%),
    var(--ink);
}

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

.page-proof-strip span,
.topic-copy-grid span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-proof-strip strong {
  display: block;
  max-width: 8ch;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 4rem);
  line-height: 0.92;
}

.topic-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(188, 164, 106, 0.16), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--paper-deep));
}

.topic-section > div:first-child {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.topic-copy-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(13, 23, 38, 0.08);
}

.topic-copy-grid article {
  position: relative;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    var(--paper);
  transition: transform 260ms ease, background 260ms ease;
}

.topic-copy-grid article::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1.2rem auto;
  width: 2.2rem;
  height: 2.2rem;
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  opacity: 0.7;
}

.topic-copy-grid article:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.topic-copy-grid h3 {
  margin: clamp(2.8rem, 6vw, 6rem) 0 0.85rem;
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  line-height: 0.94;
}

.topic-copy-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.58;
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(23, 43, 68, 0.92), rgba(7, 17, 29, 0.98)),
    var(--ink);
  color: var(--white);
}

.insight-lead {
  position: sticky;
  top: 7rem;
  align-self: start;
  max-width: 48rem;
}

.insight-lead h2,
.faq-section h2 {
  max-width: 11ch;
  color: inherit;
}

.insight-lead p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.35rem);
}

.insight-grid article {
  min-height: clamp(18rem, 25vw, 25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.insight-grid span {
  color: var(--sand);
  font-weight: 900;
}

.insight-grid h3 {
  max-width: 10ch;
  margin: auto 0 1rem;
  color: var(--white);
  font-size: clamp(2rem, 3.3vw, 4rem);
  line-height: 0.92;
}

.insight-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.6;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 14% 16%, rgba(188, 164, 106, 0.16), transparent 28%),
    linear-gradient(180deg, var(--paper-deep), var(--paper));
}

.faq-list {
  align-self: start;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 28px 90px rgba(13, 23, 38, 0.08);
}

.faq-list details {
  padding: clamp(1.1rem, 2vw, 1.6rem) clamp(1rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgba(13, 23, 38, 0.14);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.85rem);
  font-weight: 900;
  line-height: 1.1;
}

.faq-list summary::marker {
  color: var(--sand);
}

.faq-list p {
  max-width: 62rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.62;
}

.page-image-break {
  position: relative;
  min-height: clamp(38rem, 72svh, 58rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.page-image-break img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.06) saturate(0.96);
  transform: scale(1.03);
}

.page-image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.12), rgba(7, 17, 29, 0.78)),
    linear-gradient(90deg, rgba(7, 17, 29, 0.78), rgba(7, 17, 29, 0.18) 68%);
}

.page-image-break div {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.page-image-break h2 {
  max-width: 12ch;
  color: var(--white);
}

.page-image-break p:not(.eyebrow) {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.about-break::after {
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.04), rgba(7, 17, 29, 0.72)),
    linear-gradient(90deg, rgba(7, 17, 29, 0.72), rgba(7, 17, 29, 0.08) 70%);
}

.related-section {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 3vw, 2.2rem);
  background: var(--paper);
}

.related-section > p,
.related-section > div {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.related-section > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.related-section a {
  min-height: clamp(10rem, 15vw, 15rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(188, 164, 106, 0.14), rgba(255, 255, 255, 0.62)),
    var(--paper-deep);
  transition: background 220ms ease, transform 220ms ease;
}

.related-section a:hover,
.related-section a:focus-visible {
  background: var(--white);
  transform: translateY(-4px);
}

.related-section span {
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-section strong {
  max-width: 14ch;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.8rem);
  line-height: 0.98;
}

.content-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(45, 91, 255, 0.2), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(188, 164, 106, 0.18), transparent 30%),
    var(--ink);
  color: var(--white);
}

.content-band::before {
  content: "NEXT";
  position: absolute;
  top: -0.1em;
  right: -0.08em;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(8rem, 22vw, 25rem);
  font-weight: 900;
  line-height: 0.8;
}

.content-band h2 {
  position: relative;
  z-index: 2;
  max-width: 14ch;
  margin-bottom: 2rem;
  color: var(--white);
}

.content-band .button.primary {
  position: relative;
  z-index: 2;
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink);
}

.word-split .word {
  display: inline-block;
  opacity: 0.25;
  transform: translateY(0.18em);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-index, 0) * 42ms);
}

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

.js-ready .hero-copy > *,
.js-ready .hero-content > *,
.js-ready .hero-panel,
.js-ready .proof-ticker span,
.js-ready .page-proof-strip article,
.js-ready .reveal-item {
  opacity: 0;
  transform: translateY(32px);
}

.js-ready.is-loaded .hero-copy > *,
.js-ready.is-loaded .hero-content > *,
.js-ready.is-loaded .hero-panel,
.js-ready.is-loaded .proof-ticker span,
.js-ready.is-loaded .page-proof-strip article,
.js-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger, var(--reveal-delay, 0)) * 82ms);
}

.hero-copy > :nth-child(1) { --stagger: 1; }
.hero-copy > :nth-child(2) { --stagger: 2; }
.hero-panel { --stagger: 3; }
.hero-content > :nth-child(1) { --stagger: 1; }
.hero-content > :nth-child(2) { --stagger: 2; }
.hero-content > :nth-child(3) { --stagger: 3; }
.hero-content > :nth-child(4) { --stagger: 4; }
.proof-ticker span:nth-child(1) { --stagger: 4; }
.proof-ticker span:nth-child(2) { --stagger: 5; }
.proof-ticker span:nth-child(3) { --stagger: 6; }
.proof-ticker span:nth-child(4) { --stagger: 7; }

@keyframes linePulse {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.72); }
}

@keyframes driftGrid {
  to { background-position: 0 0, 0 0, 0 0, 108px 54px, 54px 108px; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1800px) {
  .evidence-section {
    grid-template-columns: 1fr;
  }

  .evidence-copy {
    position: static;
  }

  .evidence-copy h2 {
    max-width: 11ch;
    font-size: clamp(3rem, 5.8vw, 6.8rem);
  }
}

@media (max-width: 1500px) {
  h1 {
    font-size: clamp(3.4rem, 5.7vw, 6.8rem);
  }

  h2 {
    font-size: clamp(2.6rem, 4.6vw, 5.6rem);
  }

  .work-section,
  .method-section,
  .evidence-section,
  .experience-section,
  .contact-section {
    padding-block: clamp(4.5rem, 8vw, 8rem);
  }
}

@media (max-width: 1320px) {
  .hero {
    padding-top: 7rem;
  }

  body:not(.home) h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 5.8vw, 5.8rem);
  }

  h1 span:nth-child(2) {
    font-size: 0.84em;
  }

  .hero-panel-image img {
    min-height: clamp(340px, 44vw, 560px);
  }

  .proof-ticker {
    margin-top: 2.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-signature {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(var(--max), calc(100% - 2rem));
    margin: -3rem auto 2rem;
  }

}

@media (max-width: 1180px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel-copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

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

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

  .case-card.feature a {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .case-card.feature {
    grid-column: 1 / -1;
  }

  .experience-list article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .category-rail {
    gap: 1.6rem;
  }

  .evidence-grid strong {
    font-size: clamp(2.4rem, 6vw, 5.2rem);
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .page-hero,
  .topic-section,
  .insight-section,
  .faq-section,
  .impact-reel {
    grid-template-columns: 1fr;
  }

  .topic-cx .page-hero-copy,
  .topic-cx .topic-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .topic-service .topic-photo,
  .topic-ai .topic-photo {
    clip-path: none;
    transform: none;
  }

  .page-hero {
    min-height: auto;
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }

  .page-hero::before {
    bottom: auto;
    top: 5.5rem;
    font-size: clamp(5rem, 22vw, 12rem);
  }

  .page-hero::after {
    display: none;
  }

  .page-hero-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

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

  .topic-section > div:first-child {
    position: relative;
    top: auto;
  }

  .insight-lead {
    position: relative;
    top: auto;
  }

  .impact-reel {
    min-height: auto;
  }

  .impact-reel-media {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    grid-template-columns: 1fr;
    align-content: start;
    gap: clamp(0.55rem, 1.6svh, 1rem);
    padding: clamp(5.1rem, 8.7svh, 5.8rem) clamp(1rem, 5vw, 2rem) clamp(0.8rem, 2.4svh, 1.2rem);
    overflow-y: hidden;
  }

  .site-nav::before {
    left: clamp(1rem, 5vw, 2rem);
    top: clamp(4.25rem, 7svh, 5rem);
  }

  .site-nav a {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0;
    font-size: clamp(1.42rem, min(5.7vw, 5.35svh), 2.75rem);
    line-height: 0.92;
  }

  .menu-panel {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
    width: min(100%, 620px);
    gap: 0.35rem;
    padding: clamp(0.65rem, 1.8vw, 0.9rem);
  }

  .menu-panel strong {
    max-width: 32rem;
    font-size: clamp(0.96rem, min(3.4vw, 2.55svh), 1.22rem);
    line-height: 1.08;
  }

  .menu-panel a {
    font-size: 0.85rem;
  }

  .site-nav .menu-panel a {
    font-size: 0.85rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    height: 68px;
    padding-inline: 1rem;
  }

  .site-nav {
    padding-top: 4.7rem;
  }

  .site-nav::before {
    top: 4.05rem;
  }

  .site-nav a {
    grid-template-columns: 2rem minmax(0, 1fr);
    font-size: clamp(1.35rem, min(7.6vw, 5.4svh), 2.35rem);
  }

  .site-nav .menu-panel a {
    font-size: 0.9rem;
  }

  .site-nav a::before {
    font-size: 0.72rem;
  }

  .menu-panel {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-nav a {
    font-size: clamp(1.2rem, min(8.8vw, 5.2svh), 2rem);
  }

  .menu-panel strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 780px) {
  .floating-cta {
    min-width: 0;
    min-height: 3rem;
    padding: 0.7rem 1rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 6.4rem;
  }

  .hero-background img {
    object-position: 58% 50%;
  }

  .hero-background::after {
    background:
      linear-gradient(180deg, rgba(16, 24, 38, 0.24), rgba(16, 24, 38, 0.88)),
      linear-gradient(90deg, rgba(16, 24, 38, 0.74), rgba(16, 24, 38, 0.2));
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 8rem);
  }

  .hero-signature {
    width: calc(100% - 2rem);
    margin-top: -2rem;
  }

  body:not(.home) h1 {
    font-size: clamp(2.75rem, 10vw, 5.2rem);
  }

  h1 span:nth-child(2) {
    font-size: 0.84em;
  }

  h2 {
    font-size: clamp(2.35rem, 9.5vw, 4.6rem);
  }

  .proof-ticker {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    grid-template-columns: 1fr;
  }

  .proof-ticker span {
    min-height: 4.6rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .method-grid h3 {
    margin-top: 4rem;
  }

  .case-stack {
    grid-template-columns: 1fr;
  }

  .case-card.feature {
    grid-column: auto;
  }

  .case-media,
  .feature .case-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .contact-panel a,
  .contact-panel p {
    font-size: clamp(1.25rem, 8vw, 2.4rem);
  }

  .field-grid-form,
  .form-topline,
  .contact-form-actions {
    grid-template-columns: 1fr;
  }

  .form-topline strong,
  .contact-form-actions p {
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .page-hero {
    padding-top: 6.6rem;
  }

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

  .page-hero-proof article {
    min-height: 6rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .page-hero-proof article:last-child {
    border-bottom: 0;
  }

  .topic-visual,
  .about-image {
    min-height: clamp(320px, 88vw, 520px);
  }

  .service-map,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .service-map span,
  .ai-grid span {
    min-height: 7rem;
  }

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

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

  .related-section > div {
    grid-template-columns: 1fr;
  }

  .insight-grid article {
    min-height: auto;
    gap: 2.4rem;
  }

  .insight-grid h3 {
    max-width: 12ch;
    margin-top: 0;
  }

  .faq-list {
    box-shadow: none;
  }

  .page-proof-strip article {
    min-height: 7rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .page-proof-strip article:last-child {
    border-bottom: 0;
  }

  .impact-reel-copy {
    padding: clamp(2rem, 8vw, 4rem) 1rem;
  }

  .impact-stat-list article {
    grid-template-columns: 1fr;
  }

  .photo-break {
    min-height: 76svh;
  }
}

@media (max-width: 520px) {
  .brand-name {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .page-hero-actions .button {
    justify-self: stretch;
  }

  .hero-panel-copy {
    grid-template-columns: 1fr;
  }

  .hero-panel-image img {
    min-height: 320px;
  }

  .category-rail button {
    font-size: 1.2rem;
  }

  .case-meta h3 {
    font-size: 2rem;
  }
}

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