:root {
  --surface: #121317;
  --surface-low: #1a1b1f;
  --surface-card: #1e1f23;
  --surface-high: #292a2e;
  --surface-bright: #38393d;
  --ink: #e3e2e7;
  --muted: #cfc4c5;
  --line: #4c4546;
  --accent: #f7c066;
  --accent-soft: #f7c066;
  --dark: #000000;
  --inverse-surface: #e3e2e7;
  --inverse-ink: #121317;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(227, 226, 231, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 226, 231, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 10px;
  height: 10px;
  pointer-events: none;
  border: 1px solid rgba(227, 226, 231, 0.38);
  border-radius: 50%;
  background: rgba(227, 226, 231, 0.16);
  opacity: 0;
  transform: translate3d(-5px, -5px, 0);
  transition: opacity 160ms ease, transform 80ms linear;
}

body.has-pointer .cursor-light {
  opacity: 0.55;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(227, 226, 231, 0.12);
  padding: 0 32px;
  background: rgba(18, 19, 23, 0.84);
  backdrop-filter: blur(24px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.28);
}

.wordmark {
  justify-self: start;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.topbar nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 42px;
  height: 100%;
}

.topbar nav a {
  border-bottom: 2px solid transparent;
  height: 80px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.topbar nav a:hover,
.topbar nav a.active {
  border-color: var(--accent);
  color: var(--accent);
}

.hunt-button {
  justify-self: end;
  border: 1px solid rgba(227, 226, 231, 0.18);
  background: var(--inverse-surface);
  color: var(--inverse-ink);
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.hunt-button:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.hero,
.methodology,
.dispatches,
.services,
.brands,
.faq,
.final-cta,
footer,
.manifest,
.field-gallery,
.image-stack,
.work-break,
.problem,
.canvas,
.copilot,
.fit {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.manifest,
.field-gallery,
.problem,
.methodology,
.canvas,
.dispatches,
.image-stack,
.work-break,
.services,
.copilot,
.fit,
.brands,
.faq,
.final-cta {
  border-top: 1px solid rgba(227, 226, 231, 0.13);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(340px, 4fr);
  gap: 32px;
  align-items: center;
  padding-top: 110px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.soft {
  color: rgba(207, 196, 197, 0.68);
}

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

h1 {
  max-width: 900px;
  margin-top: 36px;
  color: var(--ink);
  font-size: clamp(56px, 7.1vw, 104px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 span {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(247, 192, 102, 0.18);
}

.hero-text {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
}

.button {
  display: inline-flex;
  min-width: 178px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 226, 231, 0.22);
  padding: 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.dark {
  border-color: var(--inverse-surface);
  background: var(--inverse-surface);
  color: var(--inverse-ink);
}

.button.light {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--inverse-ink);
  transform: translateY(-3px);
}

.hero-art {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

[data-parallax] {
  will-change: transform;
}

.hero-art::before {
  display: none;
  content: none;
}

.hero-art::after {
  display: none;
  content: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(78%, 420px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 1px solid rgba(227, 226, 231, 0.14);
  border-radius: 44% 56% 50% 38% / 36% 42% 58% 64%;
  background: #000000;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.62);
  animation: organicFloat 8s ease-in-out infinite;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.78) brightness(0.78) contrast(1.12);
  transform: scale(1.08);
}

.hero-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 22% 18%, rgba(247, 192, 102, 0.46), transparent 24%),
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.58));
  mix-blend-mode: screen;
}

.flow-line,
.flow-dot {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.flow-line {
  width: 72%;
  height: 38%;
  border: 1px solid rgba(247, 192, 102, 0.74);
  border-right: 0;
  border-bottom: 0;
  border-radius: 100% 0 0 0;
  filter: drop-shadow(0 0 20px rgba(247, 192, 102, 0.22));
}

.flow-line.one {
  --flow-rotate: -18deg;
  right: -10%;
  bottom: 16%;
  transform: rotate(-18deg);
  animation: flowPulse 5.4s ease-in-out infinite;
}

.flow-line.two {
  --flow-rotate: 162deg;
  top: 16%;
  left: -16%;
  transform: rotate(162deg);
  opacity: 0.62;
  animation: flowPulse 6.8s ease-in-out infinite reverse;
}

.flow-dot {
  right: 18%;
  top: 22%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 32px rgba(247, 192, 102, 0.72);
  animation: dotDrift 5.8s ease-in-out infinite;
}

.manifest {
  padding: 70px 0 120px;
}

.manifest h2,
.section-heading h2,
.dispatch-header h2,
.brands h2,
.final-cta h2 {
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

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

.manifest-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.pullquote {
  max-width: 980px;
  margin-top: 78px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.field-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 40px 0 110px;
}

.gallery-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  margin: 0;
  background: var(--dark);
}

.gallery-card.large {
  grid-row: span 2;
  min-height: 684px;
}

.gallery-card.large img {
  filter: grayscale(0.2) brightness(0.88) contrast(1.16) saturate(0.95);
}

.gallery-card.large::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.gallery-card img,
.image-stack img,
.work-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.82) contrast(1.08);
  transform: translate3d(0, 0, 0) scale(1.04);
  transition: filter 500ms ease, transform 900ms ease;
}

.gallery-card:hover img,
.image-stack img:hover,
.work-break figure:hover img {
  filter: grayscale(0.45) brightness(0.9) contrast(1.06);
  transform: translate3d(0, 0, 0) scale(1.07);
}

.gallery-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #ffffff;
  z-index: 2;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.problem,
.canvas,
.fit {
  padding: 110px 0;
}

.problem-grid,
.canvas-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(227, 226, 231, 0.14);
}

.problem-grid article,
.canvas-grid article,
.fit-grid p {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface-low);
  padding: 42px;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.problem-grid article:hover,
.canvas-grid article:hover,
.fit-grid p:hover {
  background: var(--surface-card);
  transform: translateY(-3px);
}

.problem-grid span {
  color: #ffffff;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.problem-grid h3,
.canvas-grid h3 {
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.problem-grid p,
.canvas-grid p,
.fit-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.methodology {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 90px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(227, 226, 231, 0.14);
}

.method-grid article {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px;
  background: var(--surface-low);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.method-grid article:hover {
  background: var(--surface-card);
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(227, 226, 231, 0.12);
}

.method-grid span {
  color: #ffffff;
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.method-grid h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.method-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.dispatches {
  padding: 110px 0;
  background: var(--surface);
}

.dispatch-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 70px;
}

.dispatch-header a {
  border-bottom: 1px solid rgba(227, 226, 231, 0.38);
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.dispatch-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--dark);
  transition: transform 260ms ease;
}

.dispatch-card:hover {
  transform: translateY(-4px);
}

.dispatch-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(1) brightness(0.72) contrast(1.08);
  transition: transform 900ms ease, filter 900ms ease;
}

.dispatch-card:hover img {
  transform: scale(1.045);
  filter: grayscale(0.6) brightness(0.78) contrast(1.08);
}

.dispatch-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px;
  color: #ffffff;
}

.dispatch-card p:first-child {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dispatch-card span {
  background: var(--accent);
  color: var(--inverse-ink);
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.dispatch-card h3 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}

.dispatch-card p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.5;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.56fr 1fr;
  gap: 56px;
  align-items: end;
  padding: 110px 0;
}

.image-stack h2 {
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stack-grid img {
  min-height: 280px;
}

.stack-grid img:first-child {
  grid-row: span 2;
  min-height: 578px;
}

.work-break {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
  padding: 40px 0 110px;
}

.work-break figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.work-break .tall {
  min-height: 560px;
}

.services {
  padding: 120px 0 80px;
}

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

.service-list article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(227, 226, 231, 0.1);
  background: rgba(227, 226, 231, 0.05);
  padding: 40px;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.service-list article:hover {
  border-color: rgba(227, 226, 231, 0.24);
  background: rgba(227, 226, 231, 0.08);
  transform: translateY(-4px);
}

.service-list h3 {
  max-width: 500px;
  color: var(--ink);
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.service-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.copilot {
  width: 100%;
  max-width: none;
  padding: 120px max(32px, calc((100vw - var(--max)) / 2));
  background: #000000;
}

.copilot-panel {
  max-width: var(--max);
  margin: 0 auto;
}

.copilot h2 {
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(46px, 6.3vw, 92px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.copilot-lead {
  max-width: 850px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.48;
}

.copilot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: rgba(227, 226, 231, 0.14);
}

.copilot-grid p {
  min-height: 118px;
  display: flex;
  align-items: end;
  background: var(--surface-low);
  color: var(--muted);
  padding: 28px;
  font-size: 15px;
  line-height: 1.45;
}

.result {
  max-width: 1020px;
  margin-top: 52px;
  color: var(--ink);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.24;
  font-weight: 850;
  letter-spacing: -0.025em;
}

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

.fit-grid p {
  min-height: 180px;
  justify-content: flex-end;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brands {
  padding: 100px 0;
}

.brands h2 {
  max-width: 760px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 60px;
  background: rgba(227, 226, 231, 0.12);
}

.logo-tile {
  height: 142px;
  display: grid;
  place-items: center;
  background: var(--surface);
  overflow: hidden;
  padding: 18px;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.logo-tile:hover {
  background: var(--surface-low);
  transform: translateY(-2px);
}

.logo-tile img {
  width: 86%;
  height: 80%;
  object-fit: contain;
  filter: none;
  transform: none;
}

.logo-on-dark img {
  filter: brightness(0) invert(1);
}

.logo-square img {
  width: 76%;
  height: 78%;
}

.logo-wide img {
  width: 92%;
  height: 74%;
}

.logo-compact img {
  width: 86%;
  height: 80%;
}

.is-dark {
  background: var(--surface);
}

.is-dark:hover {
  background: var(--surface-low);
}

.is-dark img {
  width: 78%;
  height: 72%;
}

.brand-logo {
  display: grid;
  place-items: center;
  max-width: 88%;
  color: var(--ink);
  text-align: center;
  line-height: 0.9;
  transform: scale(1.04);
}

.logo-hp {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #1f64c8;
  color: #fff;
  font-size: 45px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.18em;
}

.logo-camper {
  width: 155px;
  height: 74px;
  background: #d82722;
  color: #fff;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.logo-nintendo {
  width: 154px;
  height: 54px;
  border: 4px solid #e60012;
  border-radius: 999px;
  color: #e60012;
  font-size: 24px;
  font-weight: 850;
}

.logo-barcelo {
  align-content: center;
  color: #191919;
  font-size: 38px;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.logo-barcelo span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-caixa {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1c4f9c;
  font-size: 23px;
  font-weight: 780;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.logo-caixa span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background:
    radial-gradient(circle at 50% 14%, #e5312b 0 20%, transparent 21%),
    radial-gradient(circle at 18% 72%, #f3c21b 0 18%, transparent 19%),
    radial-gradient(circle at 82% 72%, #45a6dd 0 18%, transparent 19%);
}

.logo-honda {
  color: #c91520;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.logo-ajuntament {
  color: #161616;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.05;
}

.logo-danone {
  width: 170px;
  height: 62px;
  border-radius: 50%;
  background: #0a56a2;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.logo-fontvella {
  color: #1d1d1d;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 700;
}

.logo-bacardi {
  width: 112px;
  height: 112px;
  border: 6px solid #111;
  border-radius: 50%;
  color: #111;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.logo-carbonell {
  width: 170px;
  height: 58px;
  border-top: 7px solid #0b7a3b;
  border-bottom: 7px solid #c52027;
  color: #111;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-puig {
  color: #141414;
  font-family: Georgia, serif;
  font-size: 42px;
  letter-spacing: 0.09em;
}

.logo-nestle {
  color: #154d8b;
  font-size: 38px;
  font-weight: 880;
  letter-spacing: -0.08em;
}

.logo-tres {
  color: #202020;
  font-size: 44px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.logo-isdi {
  color: #111;
  font-size: 35px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.faq {
  padding: 104px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(227, 226, 231, 0.14);
  background: rgba(227, 226, 231, 0.02);
}

.faq-grid article {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 42px;
  border-right: 1px solid rgba(227, 226, 231, 0.12);
  border-bottom: 1px solid rgba(227, 226, 231, 0.12);
  padding: 42px;
}

.faq-grid article:nth-child(2n) {
  border-right: 0;
}

.faq-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.faq-grid h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.faq-grid p {
  max-width: 560px;
  color: rgba(227, 226, 231, 0.78);
  font-size: 18px;
  line-height: 1.48;
}

.final-cta {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 128px 32px;
  background:
    linear-gradient(135deg, rgba(21, 18, 15, 0.92), rgba(21, 18, 15, 0.76)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center/cover;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 30%, rgba(227, 226, 231, 0.16) 42%, transparent 54%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.final-cta > div {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(227, 226, 231, 0.34);
  padding-top: 78px;
}

.final-cta h2 {
  margin: 0 auto 50px;
  color: #ffffff;
  font-size: clamp(44px, 5vw, 76px);
}

.cta-copy {
  max-width: 680px;
  margin: -24px auto 40px;
  color: rgba(227, 226, 231, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.final-cta form {
  display: grid;
  width: min(100%, 620px);
  gap: 12px;
  margin: 0 auto;
  border: 1px solid rgba(227, 226, 231, 0.18);
  background: rgba(18, 19, 23, 0.78);
  padding: 18px;
  backdrop-filter: blur(24px);
}

.final-cta input,
.final-cta textarea {
  min-width: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(227, 226, 231, 0.22);
  background: rgba(227, 226, 231, 0.04);
  padding: 18px 16px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  outline: 0;
  resize: vertical;
}

.final-cta input[name="_honey"] {
  display: none;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.final-cta input:focus,
.final-cta textarea:focus {
  border-color: rgba(227, 226, 231, 0.72);
}

.final-cta input::placeholder,
.final-cta textarea::placeholder {
  color: rgba(207, 196, 197, 0.62);
  text-transform: uppercase;
}

.final-cta button {
  border: 1px solid var(--inverse-surface);
  background: var(--inverse-surface);
  color: var(--inverse-ink);
  padding: 19px 24px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.final-cta button:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.final-cta p {
  margin-top: 28px;
  color: rgba(227, 226, 231, 0.54);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.final-cta .cta-copy {
  max-width: 680px;
  margin: -24px auto 40px;
  color: rgba(227, 226, 231, 0.78);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.form-status {
  min-height: 16px;
}

.final-cta .form-status {
  margin-top: 14px;
  color: var(--accent-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.final-cta .cta-note {
  margin-top: 20px;
}

.final-cta .eyebrow {
  margin-bottom: 22px;
  color: var(--accent-soft);
}

footer {
  display: block;
  border-top: 1px solid rgba(227, 226, 231, 0.18);
  padding: 0;
  background: linear-gradient(180deg, rgba(26, 27, 31, 0.62), #000000 72%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) minmax(260px, 1fr);
  gap: 48px;
  align-items: start;
  padding: 56px 0 48px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

footer strong {
  font-size: 14px;
  line-height: 1.2;
}

.footer-brand p {
  max-width: 280px;
  color: rgba(227, 226, 231, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 38px;
  justify-self: center;
}

footer a,
footer span {
  color: rgba(207, 196, 197, 0.66);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: 14px;
  justify-self: end;
  font-style: normal;
  text-align: right;
}

.footer-contact p {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(227, 226, 231, 0.12);
  padding: 22px 0 30px;
}

footer a:hover,
footer a.active {
  color: var(--accent);
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes organicFloat {
  0%, 100% {
    border-radius: 44% 56% 50% 38% / 36% 42% 58% 64%;
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    border-radius: 52% 42% 38% 58% / 48% 34% 66% 46%;
    transform: translateY(-14px) rotate(1.4deg);
  }
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.32; transform: translate3d(0, 8px, 0) rotate(var(--flow-rotate, -18deg)); }
  50% { opacity: 0.88; transform: translate3d(0, -8px, 0) rotate(var(--flow-rotate, -18deg)); }
}

@keyframes dotDrift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.46; }
  50% { transform: translate3d(-18px, 22px, 0); opacity: 1; }
}

@keyframes lightSweep {
  0%, 100% { transform: translateX(-52%); opacity: 0.3; }
  45%, 55% { transform: translateX(34%); opacity: 0.88; }
}

@keyframes framePulse {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50% { opacity: 0.72; transform: scale(0.985); }
}

@media (max-width: 920px) {
  .topbar {
    gap: 18px;
    padding: 0 22px;
  }

  .topbar nav {
    gap: 18px;
  }

  .topbar nav a {
    font-size: 11px;
  }

  .hunt-button {
    padding: 13px 16px;
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .hero-art {
    min-height: 420px;
  }

  .manifest-grid,
  .method-grid,
  .dispatch-grid,
  .field-gallery,
  .image-stack,
  .work-break,
  .stack-grid,
  .service-list,
  .problem-grid,
  .canvas-grid,
  .copilot-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    aspect-ratio: auto;
    min-height: 300px;
  }

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

  .gallery-card.large,
  .stack-grid img:first-child {
    grid-row: auto;
    min-height: 330px;
  }

  footer {
    width: min(calc(100% - 44px), var(--max));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  footer nav {
    justify-self: start;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-grid article,
  .faq-grid article:nth-child(2n),
  .faq-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(227, 226, 231, 0.12);
  }

  .faq-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding: 0 16px;
  }

  .topbar nav {
    display: none;
  }

  .wordmark {
    font-size: 13px;
  }

  .hunt-button {
    padding: 12px 14px;
    font-size: 10px;
  }

  .hero,
  .methodology,
  .dispatches,
  .services,
  .brands,
  .faq,
  footer,
  .manifest,
  .field-gallery,
  .image-stack,
  .work-break,
  .problem,
  .canvas,
  .fit {
    width: min(calc(100% - 32px), var(--max));
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .actions,
  .button,
  .final-cta form {
    width: 100%;
  }

  .final-cta form {
    display: grid;
  }

  .final-cta input {
    min-height: 54px;
  }

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