:root {
  --ink: #171614;
  --ink-soft: #2b2925;
  --paper: #f4f1eb;
  --paper-deep: #e1dbcf;
  --bone: #fbfaf6;
  --red: #df241c;
  --red-dark: #a61914;
  --olive: #565a45;
  --steel: #334044;
  --wood: #9b6940;
  --line: rgba(23, 22, 20, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(33, 28, 21, 0.22);
  --font-display: "Bricolage Grotesque", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --container: 1180px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 22, 20, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(23, 22, 20, 0.28) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

::selection {
  color: var(--bone);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(223, 36, 28, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bone);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 3px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 20px rgba(223, 36, 28, 0.4);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(calc(100% - 32px), 1240px);
  height: var(--header-h);
  padding: 0 14px 0 12px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  border: 1px solid rgba(23, 22, 20, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(28, 25, 19, 0.18);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: translateX(-50%);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: headerDrop 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  border-color: rgba(23, 22, 20, 0.12);
  box-shadow: 0 14px 50px rgba(28, 25, 19, 0.16);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  min-width: 188px;
  min-height: 58px;
  padding: 8px 12px;
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: none;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.brand::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(223, 36, 28, 0.08) 45%, transparent 62%);
  transform: translateX(-120%);
  animation: logoLight 1900ms 450ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand:hover {
  transform: translateY(-1px);
  background: rgba(23, 22, 20, 0.035);
  box-shadow: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 9px 0;
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.nav a:hover {
  opacity: 1;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--bone);
  background: var(--red);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav-cta:active,
.btn:active {
  transform: translateY(1px) scale(0.99);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 94dvh;
  padding: 150px 0 72px;
  color: var(--bone);
  overflow: hidden;
  background: var(--ink);
}

.hero-bg,
.hero-overlay,
.measure-grid {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.03);
  animation: slowScale 18s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 22, 20, 0.92) 0%, rgba(23, 22, 20, 0.76) 42%, rgba(23, 22, 20, 0.36) 74%, rgba(23, 22, 20, 0.68) 100%),
    linear-gradient(0deg, rgba(23, 22, 20, 0.92) 0%, transparent 44%);
}

.measure-grid {
  opacity: 0.38;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: 9%;
  width: 34%;
  max-width: 460px;
  height: 3px;
  content: "";
  background: var(--red);
  box-shadow:
    -80px -34px 0 -1px var(--red),
    90px 34px 0 -1px var(--red);
  animation: measureSlide 1200ms 400ms cubic-bezier(0.18, 0.88, 0.32, 1.08) both;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding-right: 260px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero h1,
.section-heading h2,
.final-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 820px;
  font-size: 4.8rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(251, 250, 246, 0.82);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn.primary {
  color: var(--bone);
  background: var(--red);
}

.btn.primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  color: var(--bone);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary:hover {
  border-color: var(--bone);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn.light {
  color: var(--bone);
}

.btn.full {
  width: 100%;
}

.hero-proof {
  position: absolute;
  right: 38px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  width: min(520px, calc(100% - 76px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(23, 22, 20, 0.42);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  min-height: 116px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 10px;
  color: rgba(251, 250, 246, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 740px;
}

.section-heading h2,
.final-inner h2 {
  font-size: 3.4rem;
}

.intro-band {
  padding: 86px 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.split-grid,
.ai-grid,
.material-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

.intro-copy {
  color: rgba(23, 22, 20, 0.74);
  font-size: 1.02rem;
}

.intro-copy p {
  margin: 0 0 26px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.keyword-list li {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.services {
  background: var(--paper);
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 430px;
  overflow: hidden;
  color: var(--bone);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-card.large {
  grid-column: span 6;
}

.service-card.wide {
  grid-column: span 8;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgba(23, 22, 20, 0.9), rgba(23, 22, 20, 0.12) 64%);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 800ms ease, filter 800ms ease;
}

.service-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.06);
}

.service-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
}

.service-content span,
.project-panel span,
.footer-grid span {
  display: block;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-content h3,
.project-panel h3,
.proof-item h3,
.step h3,
.material-list h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-content p {
  max-width: 420px;
  margin: 0;
  color: rgba(251, 250, 246, 0.78);
}

.service-content a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--bone);
  font-weight: 800;
}

.service-content a::after,
.text-link::after {
  content: "->";
  font-family: var(--font-mono);
  transition: transform 180ms ease;
}

.service-content a:hover::after,
.text-link:hover::after {
  transform: translateX(5px);
}

.proof-band {
  padding: 72px 0;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(223, 36, 28, 0.18), transparent 40%),
    var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-item {
  min-height: 260px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.proof-item h3 {
  margin-top: 26px;
}

.proof-item p {
  margin: 0;
  color: rgba(251, 250, 246, 0.7);
}

.split-section {
  background: var(--bone);
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.sticky-copy p:not(.eyebrow) {
  color: rgba(23, 22, 20, 0.72);
}

.text-link {
  color: var(--red);
}

.project-stack {
  display: grid;
  gap: 18px;
}

.project-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 214px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-panel:hover {
  border-color: rgba(223, 36, 28, 0.42);
  box-shadow: 0 24px 60px rgba(33, 28, 21, 0.16);
  transform: translateY(-3px);
}

.project-panel img {
  width: 100%;
  height: 100%;
  min-height: 186px;
  object-fit: cover;
  border-radius: 6px;
}

.project-panel div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 8px 14px 0;
}

.project-panel p {
  margin: 0;
  color: rgba(23, 22, 20, 0.68);
}

.process {
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(223, 36, 28, 0.16) 1px, transparent 1px) 0 0 / 120px 120px,
    var(--steel);
}

.process .section-heading h2 {
  max-width: 860px;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.step {
  min-height: 290px;
  padding: 28px 24px;
  background: rgba(23, 22, 20, 0.36);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--bone);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.step p {
  margin: 0;
  color: rgba(251, 250, 246, 0.7);
}

.ai-section {
  background:
    linear-gradient(180deg, transparent 0, transparent 50%, var(--bone) 50%, var(--bone) 100%),
    var(--paper);
}

.ai-copy {
  padding-top: 30px;
}

.ai-copy p:not(.eyebrow) {
  color: rgba(23, 22, 20, 0.72);
}

.ai-tool {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  color: var(--bone);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 36, 28, 0.15), transparent 42%),
    var(--ink);
  box-shadow: var(--shadow);
}

.ai-tool label {
  display: grid;
  gap: 8px;
  color: rgba(251, 250, 246, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.ai-tool input,
.ai-tool select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.ai-tool option {
  color: var(--ink);
}

.ai-result {
  grid-column: 1 / -1;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.ai-result span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
}

.ai-result strong {
  display: block;
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 1.72rem;
  line-height: 1.1;
}

.ai-result p {
  margin: 0;
  color: rgba(251, 250, 246, 0.74);
}

.ai-tool .btn {
  grid-column: 1 / -1;
}

.materials {
  background: var(--bone);
}

.material-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.material-list article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.material-list p {
  margin: 0;
  color: rgba(23, 22, 20, 0.68);
}

.swatch {
  display: block;
  width: 64px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(23, 22, 20, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.swatch.smooth {
  background: #d9d4ca;
}

.swatch.texture {
  background:
    linear-gradient(90deg, rgba(74, 44, 25, 0.24) 1px, transparent 1px) 0 0 / 8px 100%,
    #9b6940;
}

.swatch.gloss {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04) 46%),
    #25211c;
}

.swatch.glass {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(100, 138, 150, 0.26)),
    #bdc8c8;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  content: "+";
  color: var(--red);
  font-family: var(--font-mono);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(23, 22, 20, 0.7);
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--bone);
  overflow: hidden;
  background: var(--ink);
}

.final-bg,
.final-bg::after {
  position: absolute;
  inset: 0;
}

.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-bg::after {
  content: "";
  background: linear-gradient(90deg, rgba(23, 22, 20, 0.9), rgba(23, 22, 20, 0.56), rgba(23, 22, 20, 0.82));
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: 0;
}

.final-inner p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(251, 250, 246, 0.76);
}

.site-footer {
  padding: 54px 0;
  color: var(--bone);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.footer-grid p {
  max-width: 380px;
  color: rgba(251, 250, 246, 0.66);
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(251, 250, 246, 0.72);
}

.footer-grid a:hover {
  color: var(--bone);
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .hero .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

@keyframes slowScale {
  to {
    transform: scale(1);
  }
}

@keyframes measureSlide {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate3d(-50%, -18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes logoLight {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    height: auto;
    min-height: var(--header-h);
  }

  .nav {
    display: none;
  }

  .hero-inner {
    padding-right: 0;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    margin: 48px auto 0;
  }

  .intro-grid,
  .split-grid,
  .ai-grid,
  .material-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-card,
  .service-card.large,
  .service-card.wide {
    grid-column: span 6;
  }

  .proof-grid,
  .process-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 10px;
    gap: 10px;
  }

  .brand {
    width: 146px;
    min-width: 146px;
    min-height: 48px;
    padding: 7px 10px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 22px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 24px;
  }

  .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .hero::after {
    display: none;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - 40px);
    margin-top: 22px;
  }

  .hero-proof div {
    min-height: 78px;
    padding: 12px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .hero-proof div:last-child {
    border-right: 0;
  }

  .hero-proof strong {
    font-size: 1.12rem;
  }

  .hero-proof span {
    margin-top: 6px;
    font-size: 0.62rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .final-inner h2 {
    font-size: 2.3rem;
    line-height: 1.03;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.large,
  .service-card.wide {
    grid-column: auto;
    min-height: 390px;
  }

  .proof-grid,
  .process-rail,
  .material-list {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .step {
    min-height: auto;
  }

  .sticky-copy {
    position: static;
  }

  .project-panel {
    grid-template-columns: 1fr;
  }

  .project-panel img {
    min-height: 230px;
  }

  .project-panel div {
    padding: 6px 4px 12px;
  }

  .ai-tool {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .final-cta {
    min-height: 620px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
