:root {
  --paper: #fafaf7;
  --paper-muted: #f0f0ea;
  --forest: #1a5c3a;
  --forest-dark: #103f29;
  --lime: #7db82e;
  --orange: #e05a20;
  --ink: #1c241d;
  --ink-soft: #586158;
  --white: #ffffff;
  --line: rgba(28, 36, 29, 0.18);
  --line-light: rgba(255, 255, 255, 0.26);
  --shadow-soft: 0 24px 70px rgba(23, 61, 39, 0.15);
  --shadow-sticker: 0 12px 32px rgba(28, 36, 29, 0.2);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

img {
  height: auto;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3.25rem, 6.8vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 11.5ch;
  font-size: clamp(2.65rem, 5.1vw, 5.2rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.75rem, 3.1vw, 3rem);
  letter-spacing: -0.035em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.8rem;
  left: 0.8rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 0.35rem;
  font-weight: 800;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--paper);
}

.demo-bar {
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.45rem 1rem;
  color: var(--white);
  background: var(--forest-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.demo-bar a {
  color: #b7e17b;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.22em;
}

.capture-mode .demo-bar {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(250, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.navigation {
  min-height: 5.15rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-spark {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--orange);
  border-radius: 50% 42% 55% 45%;
  font-family: var(--sans);
  font-size: 1rem;
  transform: rotate(-8deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding-block: 0.55rem;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-phone {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-phone small {
  padding: 0.08rem 0.38rem;
  color: var(--forest-dark);
  background: #b7e17b;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-phone:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 7.5rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(125, 184, 46, 0.12), transparent 25rem),
    var(--paper);
}

.hero-leaf {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(26, 92, 58, 0.14);
  border-radius: 68% 32% 59% 41% / 44% 62% 38% 56%;
  pointer-events: none;
}

.hero-leaf-one {
  top: 8%;
  left: -10rem;
  width: 25rem;
  aspect-ratio: 1.35;
  transform: rotate(22deg);
}

.hero-leaf-two {
  right: -7rem;
  bottom: -5rem;
  width: 18rem;
  aspect-ratio: 1;
  background: rgba(125, 184, 46, 0.08);
  transform: rotate(-18deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3.5rem, 7vw, 7.5rem);
  align-items: center;
}

.hero-copy,
.hero-collage {
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.55rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 70% 30% 65% 35%;
  transform: rotate(25deg);
}

.eyebrow-light {
  color: #d3ecb1;
}

.hero-lead {
  max-width: 36rem;
  margin-top: 1.6rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.3rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  display: grid;
  justify-items: start;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 12px 28px rgba(26, 92, 58, 0.2);
}

.button-kicker {
  color: #d3ecb1;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary:hover {
  background: var(--forest-dark);
  box-shadow: 0 15px 34px rgba(26, 92, 58, 0.28);
  transform: translateY(-2px);
}

.button-paper {
  color: var(--forest-dark);
  background: var(--paper);
}

.button-paper:hover {
  background: #d3ecb1;
  transform: translateY(-2px);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-block: 0.55rem;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-weight: 850;
}

.arrow-link span {
  font-size: 1.15em;
}

.demo-hint {
  max-width: 32rem;
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.hero-collage {
  position: relative;
  min-height: clamp(31rem, 50vw, 42rem);
}

.hero-photo {
  position: absolute;
  inset: 4% 2% 7% 3%;
  overflow: hidden;
  background: var(--paper-muted);
  border-radius: 31% 12% 34% 13% / 14% 31% 15% 34%;
  box-shadow: var(--shadow-soft);
  clip-path: polygon(8% 3%, 91% 0, 100% 16%, 95% 89%, 82% 100%, 7% 94%, 0 76%, 4% 18%);
  transform: rotate(1.3deg);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, transparent 56%, rgba(16, 63, 41, 0.17));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticker {
  position: absolute;
  z-index: 3;
  box-shadow: var(--shadow-sticker);
}

.sticker-clean {
  top: 0;
  right: -1.2rem;
  width: clamp(8.2rem, 14vw, 10.5rem);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: #111811;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 49% 51% 44% 56% / 53% 42% 58% 47%;
  line-height: 1;
  text-align: center;
  transform: rotate(8deg);
}

.sticker-clean span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.sticker-clean strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticker-scope {
  right: 4%;
  bottom: 1%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 0.45rem 1.2rem 0.6rem 1rem;
  transform: rotate(-3deg);
}

.sticker-scope > span {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest-dark);
  background: #b7e17b;
  border-radius: 50%;
  font-weight: 900;
}

.sticker-scope p {
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.25;
}

.collage-tape {
  position: absolute;
  z-index: 2;
  top: 3.8%;
  left: 22%;
  width: 6.8rem;
  height: 1.55rem;
  background: rgba(241, 219, 160, 0.88);
  box-shadow: 0 3px 9px rgba(28, 36, 29, 0.08);
  transform: rotate(-8deg);
}

.collage-doodle {
  position: absolute;
  z-index: 4;
  bottom: 4%;
  left: -5%;
  width: 10.5rem;
  overflow: visible;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  transform: rotate(-8deg);
}

.concept-strip {
  overflow: hidden;
  color: var(--forest-dark);
  background: #b7e17b;
  border-block: 1px solid rgba(16, 63, 41, 0.26);
}

.concept-strip .shell {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  white-space: nowrap;
  text-transform: uppercase;
}

.concept-strip span[aria-hidden="true"] {
  color: var(--orange);
}

.results {
  background: var(--paper-muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(17rem, 0.56fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-heading > p,
.comparison-copy > p:last-child,
.service-row > p:nth-child(3),
.coverage-copy > p,
.process-list p,
.contact-copy > p {
  color: var(--ink-soft);
}

.comparison-list {
  display: grid;
  gap: clamp(5rem, 10vw, 9rem);
}

.comparison {
  display: grid;
  grid-template-columns: minmax(14rem, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: center;
}

.comparison-reverse {
  grid-template-columns: minmax(0, 0.66fr) minmax(14rem, 0.34fr);
}

.comparison-reverse .comparison-copy {
  order: 2;
}

.comparison-reverse .comparison-figure {
  order: 1;
}

.comparison-copy h3 {
  max-width: 11ch;
}

.comparison-copy > p:last-child {
  max-width: 27rem;
  margin-top: 1.2rem;
  font-size: 0.92rem;
}

.comparison-index {
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.comparison-figure {
  min-width: 0;
}

.comparison-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  overflow: hidden;
  background: var(--forest-dark);
  border: 0.5rem solid var(--paper);
  border-radius: 2rem 0.8rem 2.4rem 1rem;
  box-shadow: var(--shadow-soft);
}

.comparison-pane {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.comparison-pane img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-label {
  position: absolute;
  top: 0.9rem;
  padding: 0.3rem 0.65rem;
  color: var(--white);
  background: rgba(16, 63, 41, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-before .image-label {
  right: 0.9rem;
}

.comparison-after .image-label {
  left: 0.9rem;
  color: var(--forest-dark);
  background: rgba(250, 250, 247, 0.92);
  border-color: rgba(16, 63, 41, 0.32);
}

.comparison-divider,
.comparison-control {
  display: none;
}

.js .comparison-stage {
  grid-template-areas: "stack";
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.js .comparison-pane {
  grid-area: stack;
}

.js .comparison-after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.js .comparison-divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  display: block;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(16, 63, 41, 0.2);
  pointer-events: none;
  transform: translateX(-50%);
}

.js .comparison-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--forest-dark);
  background: var(--paper);
  border: 2px solid var(--forest-dark);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(16, 63, 41, 0.22);
  transform: translate(-50%, -50%);
}

.js .comparison-divider i::before {
  content: "↔";
  font-style: normal;
  font-weight: 900;
}

.js .comparison-control {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1rem 0;
}

.comparison-control label {
  color: var(--forest-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.range-row {
  display: grid;
  grid-template-columns: auto minmax(5rem, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.range-row > span,
.comparison-control output {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-control output {
  justify-self: end;
}

.comparison-range {
  width: 100%;
  min-height: 2.75rem;
  margin: 0;
  cursor: ew-resize;
  accent-color: var(--forest);
}

.comparison-range:focus-visible {
  outline-offset: 1px;
}

.services {
  background: var(--paper);
}

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

.service-row {
  min-height: 10rem;
  display: grid;
  grid-template-columns: 4rem minmax(14rem, 0.72fr) minmax(15rem, 0.9fr) auto;
  gap: clamp(1.2rem, 4vw, 3.5rem);
  align-items: center;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover,
.service-row:focus-within {
  padding-inline: 1rem;
  background: var(--paper-muted);
}

.service-number {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.service-tag {
  margin-bottom: 0.45rem;
  color: var(--forest);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-row h3 {
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
}

.service-row > p:nth-child(3) {
  max-width: 28rem;
  font-size: 0.92rem;
}

.service-row > a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-weight: 850;
  white-space: nowrap;
}

.coverage {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

.coverage::before {
  position: absolute;
  top: -10rem;
  left: -12rem;
  width: 31rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(183, 225, 123, 0.22);
  border-radius: 43% 57% 56% 44%;
}

.coverage-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: center;
}

.coverage-copy h2 {
  max-width: 12ch;
}

.coverage-copy > p {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: #d7e7dc;
}

.coverage-copy .button {
  margin-top: 2rem;
}

.abstract-map {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-muted);
  border-radius: 2.3rem 0.8rem 2.8rem 1rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  transform: rotate(1deg);
}

.abstract-map svg {
  width: 100%;
  height: auto;
}

.map-shape {
  stroke: var(--forest);
  stroke-width: 2;
}

.map-shape-one {
  fill: #dce9c9;
  opacity: 0.88;
}

.map-shape-two {
  fill: #b7e17b;
  opacity: 0.72;
}

.map-route {
  fill: none;
  stroke: var(--orange);
  stroke-dasharray: 9 10;
  stroke-linecap: round;
  stroke-width: 6;
}

.map-route-small {
  stroke: var(--forest);
  stroke-width: 3;
}

.map-point circle {
  fill: var(--orange);
  stroke: var(--paper);
  stroke-width: 4;
}

.map-point-main circle:first-child {
  fill: rgba(224, 90, 32, 0.2);
  stroke: var(--orange);
  stroke-width: 2;
}

.map-point-main circle:last-child {
  fill: var(--orange);
  stroke-width: 3;
}

.map-leaf {
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.abstract-map figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.9rem 1.2rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.abstract-map figcaption span {
  color: var(--forest);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process {
  background: var(--paper-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.process-title-wrap {
  position: sticky;
  top: 8.5rem;
  align-self: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  width: 2.6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--forest-dark);
  background: #b7e17b;
  border-radius: 51% 49% 45% 55%;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-list h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
}

.process-list p {
  max-width: 35rem;
  margin-top: 0.7rem;
  font-size: 0.92rem;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.contact-sun {
  position: absolute;
  z-index: -1;
  right: -9rem;
  bottom: -13rem;
  width: 35rem;
  aspect-ratio: 1;
  background: rgba(224, 90, 32, 0.11);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: start;
}

.contact-copy > p {
  max-width: 35rem;
  margin-top: 1.5rem;
}

.phone-placeholder {
  max-width: 31rem;
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 1rem 0.35rem 1.3rem 0.45rem;
  box-shadow: var(--shadow-soft);
}

.phone-placeholder span {
  color: #d3ecb1;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phone-placeholder strong {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  overflow-wrap: anywhere;
}

.demo-form {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--paper-muted);
  border: 1px solid var(--line);
  border-radius: 2rem 0.65rem 2.3rem 0.8rem;
  box-shadow: var(--shadow-soft);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-heading > span {
  order: 2;
  padding: 0.35rem 0.65rem;
  color: var(--forest-dark);
  background: #b7e17b;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-heading h3 {
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--forest-dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.8rem 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(28, 36, 29, 0.3);
  border-radius: 0.45rem;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--forest);
}

.form-field textarea {
  resize: vertical;
}

.demo-form .button {
  margin-top: 1.2rem;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.footer {
  color: #e4ede6;
  background: var(--forest-dark);
}

.footer-inner {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  color: var(--white);
}

.footer p {
  color: #b9cbbf;
  font-size: 0.78rem;
}

.footer > .shell > a:last-child {
  color: #d3ecb1;
  font-size: 0.82rem;
  font-weight: 800;
}

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

  .nav-phone {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 46rem;
  }

  .hero-collage {
    width: min(100%, 44rem);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.7fr);
    gap: 2.5rem;
  }

  .comparison,
  .comparison-reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.3rem;
  }

  .comparison-reverse .comparison-copy,
  .comparison-reverse .comparison-figure {
    order: initial;
  }

  .comparison-copy h3 {
    max-width: 17ch;
  }

  .service-row {
    grid-template-columns: 3rem minmax(13rem, 0.8fr) minmax(14rem, 1fr) auto;
    gap: 1.3rem;
  }

  .abstract-map {
    width: min(100%, 44rem);
    margin-inline: auto;
  }

  .contact-copy {
    max-width: 44rem;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  html {
    scroll-padding-top: 6.5rem;
  }

  .section-heading,
  .process-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .section-heading > p {
    max-width: 34rem;
  }

  .concept-strip .shell {
    justify-content: flex-start;
    overflow: hidden;
  }

  .concept-strip span:nth-child(n + 6) {
    display: none;
  }

  .service-row {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .service-row > p:nth-child(3) {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .service-row > a {
    grid-column: 3;
    grid-row: 1;
  }

  .process-title-wrap {
    position: static;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.6rem;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 24px, 1180px);
  }

  body {
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .demo-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.12rem;
    text-align: left;
  }

  .navigation {
    min-height: 4.5rem;
    gap: 0.7rem;
  }

  .brand {
    gap: 0.4rem;
    font-size: 1.05rem;
  }

  .brand-spark {
    width: 1.65rem;
    font-size: 0.78rem;
  }

  .nav-phone {
    min-height: 2.5rem;
    padding: 0.48rem 0.65rem;
    font-size: 0.72rem;
  }

  .nav-phone > span,
  .nav-phone small {
    display: none;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-grid {
    gap: 2.8rem;
  }

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

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

  .hero-actions .button {
    justify-items: center;
  }

  .hero-actions .arrow-link {
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .hero-collage {
    min-height: clamp(25rem, 126vw, 34rem);
  }

  .hero-photo {
    inset: 4% 0 8%;
  }

  .sticker-clean {
    right: -0.2rem;
    width: 7.4rem;
  }

  .sticker-scope {
    right: 1%;
  }

  .collage-doodle {
    left: -2%;
    width: 8.8rem;
  }

  .concept-strip span:nth-child(n + 4) {
    display: none;
  }

  .comparison-stage {
    grid-template-columns: minmax(0, 1fr);
    border-width: 0.3rem;
    border-radius: 1.2rem 0.55rem 1.4rem 0.65rem;
  }

  .comparison-pane img {
    aspect-ratio: 4 / 3;
  }

  .js .comparison-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .js .comparison-divider i {
    width: 2.4rem;
  }

  .js .comparison-control {
    padding-inline: 0.15rem;
  }

  .range-row {
    gap: 0.5rem;
  }

  .service-row {
    grid-template-columns: 2rem minmax(0, 1fr);
    padding-block: 1.5rem;
  }

  .service-row > p:nth-child(3),
  .service-row > a {
    grid-column: 2;
  }

  .service-row > p:nth-child(3) {
    grid-row: auto;
  }

  .service-row > a {
    grid-row: auto;
    justify-self: start;
  }

  .service-row:hover,
  .service-row:focus-within {
    padding-inline: 0.6rem;
  }

  .abstract-map figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .process-list li {
    grid-template-columns: 2.7rem 1fr;
    gap: 0.9rem;
  }

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

  .form-heading > span {
    order: 0;
  }

  .form-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .brand {
    font-size: 0.96rem;
  }

  .nav-phone {
    padding-inline: 0.5rem;
    font-size: 0.67rem;
  }

  .sticker-scope {
    max-width: 12rem;
  }

  .sticker-scope p {
    font-size: 0.68rem;
  }

  .range-row > span {
    display: none;
  }

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

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

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

@media (forced-colors: active) {
  .hero-photo,
  .comparison-stage,
  .abstract-map,
  .demo-form,
  .phone-placeholder {
    border: 2px solid CanvasText;
  }

  .comparison-divider {
    background: CanvasText;
  }
}
