:root {
  --ink: #101010;
  --charcoal: #191919;
  --muted: #5c5c5c;
  --line: #dedbd2;
  --paper: #fbfaf5;
  --paper-deep: #eee8db;
  --white: #ffffff;
  --lime: #86ff00;
  --lime-soft: #d9ff9a;
  --coral: #e85d4f;
  --steel: #81908a;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --header: 78px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

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

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  width: 100%;
  max-width: 960px;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: clamp(3.25rem, 5.7rem, 6.4rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.25rem, 4.25rem, 4.7rem);
  max-width: 980px;
}

h3 {
  font-size: clamp(1.35rem, 1.8rem, 2rem);
}

p {
  color: var(--muted);
  font-size: 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header);
  padding: 14px var(--pad);
  background: rgba(251, 250, 245, 0.78);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 16px 40px rgba(16, 16, 16, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 166px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  transform: translateZ(0);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  padding: 0 14px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  padding: calc(var(--header) + 96px) var(--pad) 92px;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.home-hero {
  --hero-progress: 0;
  --studio-progress: 0;
  isolation: isolate;
  min-height: 96svh;
}

.page-hero {
  min-height: 64svh;
  padding-top: calc(var(--header) + 74px);
  padding-bottom: 64px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 4.85rem;
}

.simple-hero,
.work-hero {
  background:
    linear-gradient(135deg, rgba(134, 255, 0, 0.14), transparent 28%),
    linear-gradient(0deg, #f7f3ea, #ffffff);
  color: var(--ink);
}

.hero-media,
.image-hero > img {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translate3d(0, calc(var(--hero-progress) * 56px), 0) scale(calc(1.02 + (var(--hero-progress) * 0.045)));
  transform-origin: center;
  transition: transform 80ms linear;
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  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);
  background-size: 120px 120px;
  mix-blend-mode: overlay;
  opacity: calc(0.28 - (var(--hero-progress) * 0.16));
}

.hero-media img,
.image-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero .hero-media img {
  filter: contrast(1.08) saturate(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 48%),
    linear-gradient(135deg, rgba(134, 255, 0, 0.16), transparent 28%);
  z-index: 1;
}

.hero-precision {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 255, 255, 0.22) 46.05% 46.1%, transparent 46.16%),
    linear-gradient(90deg, transparent 0 68%, rgba(134, 255, 0, 0.48) 68.04% 68.1%, transparent 68.18%),
    linear-gradient(0deg, transparent 0 43%, rgba(255, 255, 255, 0.18) 43.05% 43.12%, transparent 43.2%),
    linear-gradient(0deg, transparent 0 66%, rgba(134, 255, 0, 0.28) 66.04% 66.1%, transparent 66.18%);
  mask-image: linear-gradient(90deg, transparent 0 54%, #000 68%, #000 100%);
  opacity: calc(0.38 - (var(--hero-progress) * 0.16));
  transition: opacity 80ms linear;
}

.hero-precision::before,
.hero-precision::after {
  content: "";
  position: absolute;
  right: clamp(42px, 9vw, 150px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 0 36px rgba(134, 255, 0, 0.12);
}

.hero-precision::before {
  top: 28%;
  width: min(38vw, 520px);
  height: 18%;
}

.hero-precision::after {
  bottom: 24%;
  width: min(30vw, 420px);
  height: 14%;
  border-color: rgba(134, 255, 0, 0.28);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  opacity: 0.07;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
  color: var(--white);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.hero-main {
  min-width: 0;
  transform: translate3d(0, calc(var(--hero-progress) * -42px), 0);
  opacity: calc(1 - (var(--hero-progress) * 0.36));
  transition: transform 80ms linear, opacity 80ms linear;
  will-change: transform, opacity;
}

.simple-hero .page-hero-content,
.work-hero .page-hero-content {
  color: var(--ink);
}

.hero-copy,
.page-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.25rem, 1.35rem);
}

.simple-hero .page-hero-content p,
.work-hero .page-hero-content p {
  color: var(--muted);
}

.eyebrow,
.section-kicker {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.image-hero .eyebrow {
  color: var(--lime);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transform: translate3d(0, calc(var(--hero-progress) * -74px), 0);
  transition: transform 80ms linear, background 220ms ease;
  will-change: transform;
}

.hero-proof span {
  display: block;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin: 12px 0;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-proof p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 28px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: calc(1 - (var(--hero-progress) * 1.4));
  transition: opacity 80ms linear;
}

.hero-scroll-cue i {
  display: block;
  width: 1px;
  height: 76px;
  background: linear-gradient(var(--lime), rgba(255, 255, 255, 0.18));
  transform: scaleY(calc(1 - (var(--hero-progress) * 0.7)));
  transform-origin: top;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(134, 255, 0, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border-color: currentColor;
}

.ticker {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px var(--pad);
  background: var(--lime);
  color: var(--ink);
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(16, 16, 16, 0.3);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.authority-strip div {
  min-height: 164px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.authority-strip div:last-child {
  border-right: 0;
}

.authority-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.authority-strip strong {
  display: block;
  max-width: 420px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.2rem, 1.35rem);
  line-height: 1.16;
}

.motion-studio {
  --studio-progress: 0;
  width: min(100% - (var(--pad) * 2), 1320px);
  margin: clamp(58px, 8vw, 108px) auto 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.motion-studio-copy {
  position: sticky;
  top: calc(var(--header) + 40px);
}

.motion-studio-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.motion-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(134, 255, 0, 0.18), transparent 42%),
    linear-gradient(0deg, #111111, #242424);
}

.motion-frame::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.motion-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 80ms linear, opacity 80ms linear;
  will-change: transform;
}

.panel-one {
  left: 9%;
  top: 16%;
  width: 54%;
  height: 28%;
  transform: translate3d(calc(var(--studio-progress) * -26px), calc(var(--studio-progress) * -42px), 0);
}

.panel-two {
  right: 8%;
  top: 34%;
  width: 48%;
  height: 34%;
  background: rgba(134, 255, 0, 0.16);
  transform: translate3d(calc(var(--studio-progress) * 34px), calc(var(--studio-progress) * -10px), 0);
}

.panel-three {
  left: 18%;
  bottom: 14%;
  width: 58%;
  height: 20%;
  transform: translate3d(calc(var(--studio-progress) * -14px), calc(var(--studio-progress) * 36px), 0);
}

.motion-scanline {
  position: absolute;
  left: 32px;
  right: 32px;
  top: calc(22% + (var(--studio-progress) * 48%));
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 34px rgba(134, 255, 0, 0.62);
  opacity: 0.72;
  transition: top 80ms linear;
}

.section {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 148px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.75fr 2fr 1.25fr;
  gap: clamp(28px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.lead {
  font-size: clamp(1.1rem, 1.35rem, 1.45rem);
  color: var(--charcoal);
}

.metrics-grid,
.feature-grid,
.conversion-grid,
.pricing-grid,
.faq-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card,
.feature-card,
.conversion-step,
.price-card,
.value-card,
.faq-grid article {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric-card {
  padding: 28px;
}

.metric-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.5rem, 3.85rem);
  line-height: 0.9;
}

.metric-card span {
  color: var(--muted);
  font-weight: 700;
}

.experience-lab {
  width: min(100% - (var(--pad) * 2), 1320px);
  margin: 0 auto clamp(76px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.lab-visual,
.feature-card,
.showcase-image {
  --depth-progress: 0.5;
  position: relative;
  overflow: hidden;
}

.lab-visual,
.lab-copy {
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
}

.lab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, calc((var(--depth-progress) - 0.5) * -36px), 0) scale(1.08);
  transition: transform 90ms linear;
  will-change: transform;
}

.lab-visual::after,
.feature-card::after,
.showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(134, 255, 0, 0.18), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(232, 93, 79, 0.12), transparent 22%);
  mix-blend-mode: screen;
  opacity: calc(0.22 + (var(--depth-progress) * 0.12));
}

.lab-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(134, 255, 0, 0.18), transparent 45%),
    var(--ink);
  color: var(--white);
}

.lab-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.lab-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.lab-stack span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--lime-soft);
  font-size: 0.85rem;
  font-weight: 850;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-preview {
  padding-top: 0;
}

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

.feature-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(16, 16, 16, 0.12);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  transform: translate3d(0, calc((var(--depth-progress) - 0.5) * -24px), 0) scale(1.08);
  transition: transform 90ms linear, filter 220ms ease;
  will-change: transform;
}

.feature-card:hover img {
  filter: contrast(1.08) saturate(1.08);
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 2;
  padding-left: 24px;
  padding-right: 24px;
}

.feature-card h3 {
  margin: 24px 0 10px;
}

.feature-card p {
  margin-bottom: 26px;
}

.showcase-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) 1.18fr;
  min-height: 680px;
  background: var(--ink);
  color: var(--white);
}

.showcase-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 96px);
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.showcase-image {
  min-height: 520px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, calc((var(--depth-progress) - 0.5) * -42px), 0) scale(1.08);
  transition: transform 90ms linear;
  will-change: transform;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--lime);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

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

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

.conversion-step {
  padding: 30px;
}

.conversion-step span,
.service-row > span,
.timeline-item span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--coral);
  font-weight: 900;
}

.qualification-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  width: min(100% - (var(--pad) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}

.qualification-list p {
  color: var(--charcoal);
  font-size: 1.18rem;
}

.qualification-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.cta-panel {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin: clamp(44px, 7vw, 90px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px var(--pad);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 180px;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 420px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 16px 24px;
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 0.3fr 1.4fr 1fr;
  gap: 34px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 800;
}

.includes-section {
  padding-top: 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span,
.contact-proof span {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 850;
  min-width: 0;
}

.work-grid {
  width: min(100% - (var(--pad) * 2), 1320px);
  margin: 0 auto;
  padding: 68px 0 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.work-card {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.work-card.large {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.work-card:not(.large) img {
  height: 340px;
}

.work-card div {
  padding: 28px;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 0.35fr 0.8fr 1.55fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-item h2 {
  font-size: clamp(2rem, 3.4rem, 3.9rem);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-18px);
}

.price-card h2 {
  font-size: clamp(2.5rem, 3.8rem, 4.35rem);
}

.price-card p,
.price-card li {
  color: inherit;
  opacity: 0.74;
}

.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(129, 144, 138, 0.28);
}

.price-card .button {
  width: 100%;
  margin-top: 26px;
}

.faq-grid,
.values-grid {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
}

.faq-grid article,
.value-card {
  padding: 28px;
}

.contact-layout {
  width: min(100% - (var(--pad) * 2), var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header) + 78px) 0 78px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.contact-intro h1 {
  color: var(--ink);
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(16, 16, 16, 0.09);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(134, 255, 0, 0.45);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-note.is-success {
  padding: 12px;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

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

.js .reveal.is-visible,
.hero-content.reveal,
.page-hero-content.reveal,
.contact-intro.reveal,
.contact-form.reveal {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-media,
  .hero-main,
  .hero-proof,
  .motion-panel,
  .motion-scanline,
  .lab-visual img,
  .feature-card img,
  .showcase-image img {
    transform: none !important;
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: clamp(2.6rem, 4rem, 4.65rem);
  }

  h2 {
    font-size: clamp(2rem, 3.2rem, 3.65rem);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--pad);
    right: var(--pad);
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(251, 250, 245, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(16, 16, 16, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .split-section,
  .service-row,
  .timeline-item,
  .contact-layout,
  .showcase-band,
  .hero-content,
  .experience-lab,
  .qualification-band,
  .motion-studio {
    grid-template-columns: 1fr;
  }

  .motion-studio-copy {
    position: relative;
    top: auto;
  }

  .metrics-grid,
  .feature-grid,
  .conversion-grid,
  .pricing-grid,
  .faq-grid,
  .values-grid,
  .authority-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-strip div:nth-child(2) {
    border-right: 0;
  }

  .authority-strip div:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--line);
  }

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

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 70px;
  }

  .brand {
    width: 136px;
  }

  .hero,
  .page-hero {
    min-height: 86svh;
    padding-top: calc(var(--header) + 64px);
    padding-bottom: 58px;
  }

  .page-hero {
    min-height: 58svh;
  }

  h1 {
    font-size: 2.04rem;
    line-height: 1.02;
    max-width: 330px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 1.82rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.1rem;
    line-height: 1;
  }

  .hero .eyebrow,
  .page-hero .eyebrow {
    max-width: 280px;
  }

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

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

  .hero-copy,
  .page-hero-content p,
  .lead {
    font-size: 1.02rem;
  }

  .metrics-grid,
  .feature-grid,
  .conversion-grid,
  .pricing-grid,
  .faq-grid,
  .values-grid,
  .authority-strip {
    grid-template-columns: 1fr;
  }

  .authority-strip div,
  .authority-strip div:nth-child(2),
  .authority-strip div:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .hero-proof {
    padding: 18px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-precision {
    display: none;
  }

  .motion-frame {
    min-height: 420px;
  }

  .lab-visual,
  .lab-copy {
    min-height: 390px;
  }

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

  .section-heading,
  .cta-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-card,
  .work-card.large {
    min-height: auto;
  }

  .work-card img,
  .work-card:not(.large) img {
    height: 280px;
  }

  .showcase-image {
    min-height: 360px;
  }

  .service-row,
  .timeline-item {
    gap: 12px;
  }

  .contact-form {
    padding: 18px;
  }

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

  .price-card h2 {
    font-size: 3rem;
  }
}
