@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext-variable.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --site-width: 1360px;
  --site-gutter: 48px;
  --header-width: 1600px;
  --header-gutter: clamp(20px, 1.7vw, 32px);
  --ink: #17201f;
  --muted: #66716e;
  --line: #dbe2df;
  --paper: #f7f7f2;
  --white: #ffffff;
  --clay: #b6613c;
  --clay-dark: #8d4327;
  --steel: #6dc894;
  --forest: #223e35;
  --shadow: 0 20px 60px rgba(18, 32, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #efba9d;
  outline-offset: 3px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

@supports (content-visibility: auto) {
  main > section:nth-child(n + 3) {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 11px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(23, 32, 31, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--header-width);
  margin: 0 auto;
  width: 100%;
  padding: 10px var(--header-gutter);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.topbar-contacts {
  display: flex;
  gap: 18px;
}

.nav {
  max-width: var(--header-width);
  margin: 0 auto;
  width: 100%;
  padding: 16px var(--header-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 112px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 118px;
  height: 56px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--clay);
  background: var(--clay);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-link {
  background: transparent;
  border-color: transparent;
  padding-left: 8px;
  padding-right: 8px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/architecture-production-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 22, 22, 0.95) 0%, rgba(13, 22, 22, 0.82) 42%, rgba(13, 22, 22, 0.38) 100%),
    linear-gradient(0deg, rgba(13, 22, 22, 0.75) 0%, rgba(13, 22, 22, 0) 34%);
}

.hero-content {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 112px auto 64px;
  padding-top: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.hero-points span {
  border-left: 3px solid var(--clay);
  padding-left: 12px;
}

.section {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  padding-bottom: 64px;
}

.home-wow,
.services-wow,
.process-wow,
.proof-wow,
.client-wow {
  position: relative;
}

.home-wow::before,
.services-wow::before,
.process-wow::before,
.proof-wow::before,
.client-wow::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.why-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.why-stack article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(18, 32, 30, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.why-stack article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--steel), var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms ease;
}

.why-stack article:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 200, 148, 0.7);
  box-shadow: var(--shadow);
}

.why-stack article:hover::after,
.why-stack article.is-visible::after {
  transform: scaleX(1);
}

.why-stack span {
  color: #2f6f52;
  font-size: 13px;
  font-weight: 900;
}

.why-stack strong {
  color: var(--forest);
  font-size: 23px;
  line-height: 1.12;
}

.why-stack p {
  color: var(--muted);
  line-height: 1.65;
}

.choice-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 42px;
  align-items: center;
  margin-top: 18px;
  padding: 34px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.choice-panel .section-kicker {
  color: #ffd3bd;
}

.choice-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06;
}

.choice-panel p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

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

.choice-list span {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  font-weight: 800;
}

.flow-canvas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1.18fr) 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 54px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(34, 62, 53, 0.96), rgba(42, 75, 65, 0.94)),
    url("assets/architecture-production-hero.webp") center / cover;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.flow-canvas::before {
  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.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--forest);
  transition: transform 260ms ease, background 260ms ease;
}

.flow-node:hover {
  transform: translateY(-6px);
  background: #ffffff;
}

.flow-node.featured {
  background: #f7fbf8;
  border-color: rgba(109, 200, 148, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.flow-node span {
  color: #2f6f52;
  font-weight: 900;
}

.flow-node strong {
  font-size: 24px;
  line-height: 1.12;
}

.flow-node p {
  color: #53625d;
  line-height: 1.65;
}

.flow-line {
  position: relative;
  z-index: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.flow-line i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--steel), var(--clay), transparent);
  animation: flowPulse 2.4s ease-in-out infinite;
}

@keyframes flowPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.proof-panel p,
.cta-band p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-board {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-template-areas:
    "primary secondary tertiary"
    "orbit orbit orbit";
  gap: 16px;
}

.service-lane {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(18, 32, 30, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-lane:nth-child(1) {
  grid-area: primary;
}

.service-lane:nth-child(2) {
  grid-area: secondary;
}

.service-lane:nth-child(3) {
  grid-area: tertiary;
}

.service-lane img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.service-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 17, 16, 0.06) 0%, rgba(9, 17, 16, 0.72) 54%, rgba(9, 17, 16, 0.93) 100%),
    linear-gradient(135deg, rgba(34, 62, 53, 0.2), rgba(109, 200, 148, 0.08));
}

.service-lane::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--steel), var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 550ms ease;
}

.service-lane:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(18, 32, 30, 0.24);
}

.service-lane:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.service-lane:hover::after,
.service-lane.is-visible::after {
  transform: scaleX(1);
}

.service-lane span {
  width: fit-content;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-lane h3 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.service-lane p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.58;
}

.service-orbit {
  grid-area: orbit;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.orbit-heading {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 154px;
  padding: 22px;
  background: var(--forest);
  color: var(--white);
}

.orbit-heading span {
  color: #ffd3bd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.orbit-heading strong {
  font-size: 24px;
  line-height: 1.12;
}

.service-orbit a {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
  gap: 10px;
  min-height: 154px;
  padding: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--forest);
  font-weight: 850;
  line-height: 1.18;
  box-shadow: 0 10px 28px rgba(18, 32, 30, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-orbit img {
  position: relative;
  z-index: 1;
  grid-row: 1 / 4;
  align-self: stretch;
  width: 92px;
  height: 100%;
  min-height: 114px;
  margin: -20px 0 -20px -20px;
  object-fit: cover;
}

.service-orbit a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 200, 148, 0.18), transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-orbit a:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 200, 148, 0.7);
  box-shadow: var(--shadow);
}

.service-orbit a:hover::before {
  opacity: 1;
}

.service-orbit span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  color: #2f6f52;
  font-size: 13px;
  font-weight: 900;
}

.service-orbit strong,
.service-orbit small {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.service-orbit strong {
  font-size: 19px;
}

.service-orbit small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 200, 148, 0.14), transparent 46%);
  opacity: 0;
  transition: opacity 220ms ease;
}

a.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

a.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.services-wow .service-card,
.service-lane,
.service-orbit a,
.why-stack article,
.proof-wow .stat,
.client-wow .type-grid span {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.services-wow .service-card.will-reveal,
.service-lane.will-reveal,
.service-orbit a.will-reveal,
.why-stack article.will-reveal,
.proof-wow .stat.will-reveal,
.client-wow .type-grid span.will-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.services-wow .service-card.is-visible,
.service-lane.is-visible,
.service-orbit a.is-visible,
.why-stack article.is-visible,
.proof-wow .stat.is-visible,
.client-wow .type-grid span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-wow a.service-card.is-visible:hover,
.service-lane.is-visible:hover,
.service-orbit a.is-visible:hover,
.why-stack article.is-visible:hover,
.proof-wow .stat.is-visible:hover,
.client-wow .type-grid span.is-visible:hover {
  transform: translateY(-6px);
}

.services-wow .service-card:nth-child(2n),
.service-lane:nth-child(2n),
.service-orbit a:nth-child(2n),
.why-stack article:nth-child(2n),
.client-wow .type-grid span:nth-child(2n) {
  transition-delay: 70ms;
}

.services-wow .service-card:nth-child(3n),
.service-lane:nth-child(3n),
.service-orbit a:nth-child(3n),
.why-stack article:nth-child(3n),
.client-wow .type-grid span:nth-child(3n) {
  transition-delay: 130ms;
}

.service-card span,
.process-steps span {
  color: var(--steel);
  font-weight: 800;
  font-size: 13px;
}

.service-card h3 {
  margin: 42px 0 12px;
  font-size: 22px;
}

.service-card p,
.process-steps p,
.testimonial-grid p {
  margin: 0;
  color: var(--muted);
}

.process {
  border-top: 1px solid var(--line);
}

.process-wow {
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  background:
    linear-gradient(135deg, rgba(109, 200, 148, 0.16), transparent 34%),
    #f7faf7;
  color: var(--white);
}

.process-steps li {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  min-height: 220px;
  padding: 26px;
  background: var(--forest);
  border: 1px solid rgba(109, 200, 148, 0.22);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(18, 32, 30, 0.09);
  transition: opacity 560ms ease, transform 560ms ease, background 220ms ease, box-shadow 220ms ease;
}

.process-steps li.will-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.process-steps li::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--steel), var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms ease;
}

.process-steps li:hover,
.process-steps li.is-visible {
  opacity: 1;
  transform: translateY(-5px);
  background: #224c3e;
  box-shadow: 0 22px 46px rgba(18, 32, 30, 0.14);
}

.process-steps li:hover::after,
.process-steps li.is-visible::after {
  transform: scaleX(1);
}

.process-steps li:last-child {
  border-right: 1px solid rgba(109, 200, 148, 0.22);
}

.process-steps span {
  color: #cfd8d4;
}

.process-steps strong {
  display: block;
  margin: 38px 0 12px;
  font-size: 20px;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.proof {
  padding-top: 40px;
}

.proof-wow .stat {
  transition: transform 220ms ease, border-color 220ms ease;
}

.proof-wow .stat:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 200, 148, 0.75);
}

.client-wow {
  padding-top: 112px;
}

.client-wow .type-grid {
  align-items: stretch;
}

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

.client-grid a,
.client-wow .type-grid span {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 243, 0.96));
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(18, 32, 30, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.client-grid a::before,
.client-wow .type-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 3px;
  background: var(--steel);
}

.client-grid a:nth-child(3n)::before,
.client-wow .type-grid span:nth-child(3n)::before {
  background: var(--clay);
}

.client-grid a:hover,
.client-wow .type-grid span:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 200, 148, 0.68);
  box-shadow: var(--shadow);
}

.client-grid span {
  margin-top: 26px;
  color: #2f6f52;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-grid strong {
  color: var(--forest);
  font-size: 21px;
  line-height: 1.2;
}

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

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 48px;
  align-items: center;
  padding: 46px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-panel p {
  margin-top: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 72px auto 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(18, 32, 30, 0.08);
}

.proof-strip div {
  min-height: 142px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip strong {
  display: block;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

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

.stat {
  min-height: 138px;
  padding: 24px;
  background: rgba(109, 200, 148, 0.16);
  border-left: 4px solid var(--clay);
}

.stat strong {
  display: block;
  font-size: 29px;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.testimonial-grid article {
  background: transparent;
  border: 1px solid var(--line);
  padding: 28px;
}

.testimonial-grid h3 {
  margin: 0 0 12px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 56px;
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto 96px;
  padding: 56px;
  background: var(--ink);
  color: var(--white);
}

.cta-band .section-kicker {
  color: #efba9d;
}

.cta-band p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.contact-form .field-required {
  justify-self: end;
  margin-top: -24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form label > small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  padding: 12px 13px;
  outline: 0;
}

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

textarea {
  resize: vertical;
}

input[type="file"] {
  padding: 10px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #efba9d;
  background: rgba(255, 255, 255, 0.14);
}

.form-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 4px 0;
  font-weight: 500;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--clay);
}

.form-consent span {
  display: block;
}

.form-consent a,
.form-direct a {
  color: #efba9d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.form-note a {
  color: #efba9d;
  font-weight: 800;
}

.form-direct {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--steel);
  background: rgba(109, 200, 148, 0.12);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-error {
  border-left-color: #efba9d;
  background: rgba(182, 97, 60, 0.18);
}

.form-spam-check:not([hidden]) {
  min-height: 65px;
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.contact-routes a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-routes a:hover,
.contact-routes a:focus-visible {
  border-color: #efba9d;
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.contact-routes strong {
  color: var(--white);
  font-size: 17px;
}

.contact-routes span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.footer strong,
.footer span {
  display: block;
}

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

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--clay);
}

.nav-links .button[aria-current="page"]::after {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/architecture-production-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 22, 22, 0.94) 0%, rgba(13, 22, 22, 0.82) 52%, rgba(13, 22, 22, 0.42) 100%),
    linear-gradient(0deg, rgba(13, 22, 22, 0.82) 0%, rgba(13, 22, 22, 0.12) 60%);
}

.page-hero-inner {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 160px 0 72px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.page-hero-description {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.page-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.page-hero-proof span {
  padding-left: 11px;
  border-left: 3px solid var(--clay);
}

.page-hero-proof strong {
  color: var(--white);
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: start;
}

.split-content > div > p:not(.section-kicker),
.feature-band > p {
  color: var(--muted);
  font-size: 18px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: start;
}

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

.story-copy {
  max-width: 820px;
}

.story-copy h2 {
  margin-bottom: 22px;
}

.story-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
  margin: 0 0 18px;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border-left: 4px solid var(--clay);
  box-shadow: 0 10px 32px rgba(18, 32, 30, 0.08);
}

.detail-list article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 200, 148, 0.55), transparent);
}

.detail-list em {
  width: max-content;
  padding: 6px 9px;
  background: rgba(109, 200, 148, 0.12);
  color: #2f6f52;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-list strong {
  font-size: 18px;
}

.detail-list span {
  color: var(--muted);
}

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

.action-list article {
  min-height: 190px;
  border-left-color: var(--steel);
}

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

.brief-list article {
  min-height: 168px;
  background:
    linear-gradient(135deg, rgba(109, 200, 148, 0.08), transparent 36%),
    var(--white);
}

.link-grid,
.project-grid,
.article-grid,
.quality-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.link-card,
.project-card,
.article-grid article,
.quality-grid article {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-card:hover,
.project-card:hover,
.article-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 97, 60, 0.4);
  box-shadow: var(--shadow);
}

.link-card span,
.project-card span,
.article-grid span,
.quality-grid span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.link-card strong,
.project-card h2,
.article-grid h2,
.quality-grid h2 {
  margin: 42px 0 12px;
  font-size: 24px;
  line-height: 1.12;
}

.link-card p,
.project-card p,
.article-grid p,
.quality-grid p {
  margin: 0;
  color: var(--muted);
}

.article-grid a {
  align-self: end;
  margin-top: 24px;
  color: var(--clay);
  font-weight: 800;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.blog-feature p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.blog-feature img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.blog-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.blog-card span,
.article-summary-box h2 {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.14;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  margin-top: 8px;
  color: var(--clay);
  font-weight: 800;
}

.blog-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.blog-article-main {
  display: grid;
  gap: 34px;
}

.blog-article-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.blog-article-main section {
  display: grid;
  gap: 14px;
}

.blog-article h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.blog-article h3 {
  margin: 8px 0 0;
  font-size: 21px;
}

.blog-article p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.article-summary-box,
.article-cta,
.blog-sidebar > div,
.caption-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.article-cta {
  background: var(--forest);
  color: var(--white);
}

.blog-article-main p a {
  color: var(--clay);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.blog-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.blog-sidebar strong {
  display: block;
  font-size: 22px;
}

.blog-sidebar ul,
.blog-sidebar ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.blog-sidebar a {
  color: var(--clay);
  font-weight: 800;
}

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

.caption-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.image-card {
  overflow: hidden;
  padding-top: 0;
}

.image-card img {
  width: calc(100% + 56px);
  height: 210px;
  object-fit: cover;
  margin: 0 -28px 24px;
}

.media-grid figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.media-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.media-grid figure:hover img {
  transform: scale(1.04);
}

.media-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(23, 32, 31, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.type-grid span {
  padding: 14px 16px;
  background: var(--white);
  border-left: 3px solid var(--clay);
  color: var(--ink);
  font-weight: 800;
}

.specialty-grid span {
  border-left-color: var(--steel);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.workflow-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-grid span {
  color: var(--steel);
  font-weight: 800;
  font-size: 13px;
}

.workflow-grid h3 {
  margin: 42px 0 12px;
  font-size: 21px;
  line-height: 1.1;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.software-card {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 172px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.software-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 200, 148, 0.55);
  box-shadow: var(--shadow);
}

.software-logo {
  width: 150px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.03);
}

.software-card small,
.software-card strong,
.software-card em {
  display: block;
}

.software-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.software-card strong {
  margin-top: 4px;
  font-size: 19px;
}

.software-card em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.subscription-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: stretch;
}

.subscription-intro > div:first-child {
  display: grid;
  align-content: center;
}

.subscription-intro > div:first-child p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.subscription-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.subscription-card span,
.plan-grid article > span {
  color: #efba9d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.subscription-card strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.subscription-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.plan-grid .featured-plan {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: var(--shadow);
}

.plan-grid h3 {
  margin: 0;
  font-size: 28px;
}

.plan-grid p {
  margin: 0;
  color: var(--muted);
}

.plan-grid .featured-plan p {
  color: rgba(255, 255, 255, 0.76);
}

.plan-grid ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.plan-grid .featured-plan ul {
  color: rgba(255, 255, 255, 0.82);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.showcase-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--mist);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.showcase-media:hover img {
  transform: scale(1.035);
}

.floating-deliverable {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.floating-deliverable span,
.service-psp span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-deliverable strong {
  color: var(--forest);
  font-size: 18px;
}

.showcase-copy {
  display: grid;
  gap: 22px;
}

.showcase-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-psp {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-psp article,
.objection-grid article,
.animated-steps li {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(18, 32, 30, 0.07);
}

.service-psp article {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 26px;
}

.service-psp h2 {
  font-size: 24px;
  line-height: 1.16;
}

.service-psp p {
  margin: 0;
  color: var(--muted);
}

.flow-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(109, 200, 148, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(188, 100, 62, 0.13), transparent 36%),
    #f7faf7;
  border: 1px solid rgba(109, 200, 148, 0.32);
}

.flow-visual::before {
  content: "";
  position: absolute;
  left: 58px;
  right: 58px;
  top: 82px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 111, 82, 0.16), rgba(109, 200, 148, 0.72), rgba(188, 100, 62, 0.6));
}

.animated-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.animated-steps li {
  position: relative;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-height: 205px;
  padding: 24px 22px 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(109, 200, 148, 0.18), transparent 42%);
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.animated-steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(109, 200, 148, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 250, 247, 0.78));
  opacity: 0;
  transition: opacity 220ms ease;
}

.animated-steps li::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 4px;
  background: linear-gradient(90deg, var(--steel), var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms ease;
}

.animated-steps li:hover,
.animated-steps li.is-visible {
  transform: translateY(-6px);
  border-color: rgba(109, 200, 148, 0.72);
  box-shadow: 0 18px 42px rgba(18, 32, 30, 0.12);
}

.animated-steps li:hover::before,
.animated-steps li.is-visible::before {
  opacity: 1;
}

.animated-steps li:hover::after,
.animated-steps li.is-visible::after {
  transform: scaleX(1);
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--forest);
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(18, 32, 30, 0.16);
}

.animated-steps strong {
  position: relative;
  z-index: 1;
  color: var(--forest);
  font-size: 21px;
  line-height: 1.18;
}

.animated-steps p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.flow-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) minmax(320px, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: auto;
  padding: 20px 22px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(18, 32, 30, 0.18);
}

.flow-proof > span {
  color: #ffd3bd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flow-proof strong {
  font-size: 23px;
  line-height: 1.12;
}

.flow-proof div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.flow-proof small {
  display: block;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 750;
}

.objection-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.objection-section > div > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.objection-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.objection-grid span {
  color: var(--muted);
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-on-scroll.will-reveal {
  opacity: 0;
  transform: translateY(24px);
}

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

.trust-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: 48px;
}

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

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

.trust-grid article,
.faq-list article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-grid strong,
.faq-list strong {
  font-size: 18px;
}

.trust-location-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 22px;
  background: var(--forest);
  color: var(--white);
}

.trust-location-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.trust-location-note a {
  color: #ffd3bd;
  font-size: 13px;
  font-weight: 800;
}

.trust-compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto 72px;
  background: var(--forest);
  color: var(--white);
}

.trust-compact div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-compact div:last-child {
  border-right: 0;
}

.trust-compact strong {
  font-size: 16px;
}

.trust-compact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.legal-copy,
.confirmation-section {
  padding-top: 96px;
}

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

.legal-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.legal-grid h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
}

.legal-grid a,
.confirmation-section a:not(.button) {
  color: var(--clay-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.confirmation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: start;
}

.confirmation-section > div:first-child > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-grid span,
.faq-list span {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  padding: 48px;
  background: var(--forest);
  color: var(--white);
}

.feature-band .section-kicker {
  color: #efba9d;
}

.feature-band > p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.6fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border-left: 4px solid var(--clay);
}

.timeline span {
  color: var(--steel);
  font-weight: 800;
}

.timeline h2 {
  font-size: 28px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.case-list {
  display: grid;
  gap: 20px;
}

.case-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.5fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.case-list .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.case-list h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.case-list p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
}

.button-outline {
  background: transparent;
  color: var(--clay);
}

.button-outline:hover {
  color: var(--white);
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto 72px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 44px rgba(18, 32, 30, 0.08);
}

.mini-cta h2 {
  max-width: 760px;
  font-size: clamp(26px, 3vw, 40px);
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-page {
  margin-top: 96px;
}

.mobile-cta-bar {
  display: none;
}

.footer-rich {
  align-items: flex-start;
}

.footer-rich .footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .nav {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(23, 32, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
    min-height: calc(100vh - 66px);
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }

.nav-links a {
  padding: 14px;
}

  .nav-links .button {
    margin-top: 8px;
  }

  .hero-content {
    padding-top: 64px;
    margin-top: 68px;
  }

  .intro-grid,
  .choice-panel,
  .section-heading,
  .proof-panel,
  .cta-band,
  .split-content,
  .feature-band,
  .blog-feature,
  .blog-article,
  .subscription-intro,
  .about-story,
  .about-story.alt-story,
  .service-showcase,
  .objection-section,
  .trust-section,
  .faq-section,
  .confirmation-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-orbit,
  .action-list,
  .brief-list,
  .client-grid,
  .why-stack,
  .link-grid,
  .project-grid,
  .article-grid,
  .quality-grid,
  .media-grid,
  .blog-grid,
  .proof-strip,
  .type-grid,
  .workflow-grid,
  .software-grid,
  .service-psp,
  .animated-steps,
  .objection-grid,
  .plan-grid,
  .caption-grid,
  .trust-compact,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-location-note {
    grid-template-columns: 1fr 1fr;
  }

  .trust-location-note a {
    grid-column: 1 / -1;
  }

  .showcase-media,
  .showcase-media img {
    min-height: 360px;
  }

  .service-board {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "primary primary"
      "secondary tertiary"
      "orbit orbit";
  }

  .flow-visual {
    grid-template-columns: 1fr;
  }

  .flow-visual::before {
    display: none;
  }

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

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

  .service-lane {
    min-height: 360px;
  }

  .flow-canvas {
    grid-template-columns: 1fr;
  }

  .flow-line {
    width: 3px;
    height: 56px;
    margin: 0 auto;
  }

  .flow-line i {
    background: linear-gradient(180deg, transparent, var(--steel), var(--clay), transparent);
    animation-name: flowPulseVertical;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline li,
  .case-list article {
    grid-template-columns: 1fr;
  }

  .mini-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-actions {
    justify-content: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-steps li:last-child {
    border-bottom: 0;
  }

  .process-steps strong {
    margin-top: 28px;
  }

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

@keyframes flowPulseVertical {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@media (max-width: 640px) {
  body.has-mobile-cta {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  body.nav-open .mobile-cta-bar {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 22, 22, 0.96) 0%, rgba(13, 22, 22, 0.82) 100%),
      linear-gradient(0deg, rgba(13, 22, 22, 0.78) 0%, rgba(13, 22, 22, 0) 42%);
  }

  .hero-content,
  .page-hero-inner,
  .section,
  .mini-cta,
  .cta-band,
  .footer {
    width: min(100% - 32px, var(--site-width));
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .section {
    padding: 70px 0;
  }

  .flow-canvas {
    padding: 18px;
    gap: 12px;
  }

  .why-stack,
  .choice-list {
    grid-template-columns: 1fr;
  }

  .why-stack article {
    min-height: 210px;
  }

  .choice-panel {
    padding: 24px;
  }

  .flow-node {
    min-height: 170px;
    padding: 18px;
  }

  .service-grid,
  .service-board,
  .service-orbit,
  .link-grid,
  .project-grid,
  .article-grid,
  .quality-grid,
  .media-grid,
  .blog-grid,
  .proof-strip,
  .type-grid,
  .workflow-grid,
  .software-grid,
  .service-psp,
  .action-list,
  .brief-list,
  .client-grid,
  .animated-steps,
  .objection-grid,
  .plan-grid,
  .caption-grid,
  .trust-grid,
  .trust-compact,
  .legal-grid,
  .contact-routes,
  .blog-sidebar,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .trust-compact div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-compact div:last-child {
    border-bottom: 0;
  }

  .trust-location-note {
    grid-template-columns: 1fr;
  }

  .trust-location-note a {
    grid-column: auto;
  }

  .page-hero {
    min-height: 460px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero-proof {
    gap: 10px;
  }

  .page-hero-proof span {
    flex: 1 1 120px;
  }

  .service-card {
    min-height: 210px;
  }

  .service-board {
    grid-template-areas:
      "primary"
      "secondary"
      "tertiary"
      "orbit";
  }

  .service-lane {
    min-height: 330px;
    padding: 22px;
  }

  .service-lane::after {
    left: 22px;
    right: 22px;
  }

  .service-orbit a {
    min-height: 104px;
  }

  .flow-visual {
    padding: 12px;
  }

  .animated-steps li {
    min-height: 220px;
  }

  .flow-proof {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .flow-proof strong {
    font-size: 24px;
  }

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

  .showcase-media,
  .showcase-media img {
    min-height: 280px;
  }

  .floating-deliverable {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .proof-panel,
  .feature-band,
  .mini-cta,
  .cta-band {
    padding: 28px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 19;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: rgba(23, 32, 31, 0.98);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.2);
  }

  .mobile-cta-bar a {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 8px 10px;
    background: var(--clay);
    color: var(--white);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-cta-bar a + a {
    background: var(--forest);
    border: 1px solid rgba(255, 255, 255, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .will-reveal,
  .reveal-on-scroll.will-reveal,
  .process-steps li.will-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
