:root {
  --paper: #e8e1d5;
  --paper-deep: #d7cbbb;
  --paper-light: #f3eee5;
  --ink: #171815;
  --ink-soft: #34352f;
  --clay: #8b4931;
  --clay-dark: #66301f;
  --safety: #f1c900;
  --white: #fffdf8;
  --line: rgba(23, 24, 21, .22);
  --line-light: rgba(255, 253, 248, .24);
  --display: "Bahnschrift SemiCondensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --body: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Cascadia Mono", Consolas, monospace;
  --header-h: 82px;
  --pad: clamp(20px, 3.5vw, 64px);
  --max: 1600px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--clay) var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
svg { display: block; }

h1, h2, h3, p, figure, dl, dd { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}

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

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

.technical {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(92px, 10vw, 180px) var(--pad);
}

.section-kicker,
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 26px;
  height: 4px;
  background: var(--clay);
}

.section-number {
  position: absolute;
  top: clamp(42px, 5vw, 78px);
  right: var(--pad);
  color: rgba(23, 24, 21, .45);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  font-family: var(--display);
  font-size: .93rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s, background-color .3s, transform .3s var(--ease);
}

.button svg,
.nav-cta svg,
.mobile-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform .3s var(--ease);
}

.button:hover svg,
.nav-cta:hover svg,
.mobile-cta:hover svg { transform: translateX(5px); }
.button:active { transform: translateY(2px); }
.button-primary { color: var(--white); background: var(--ink); }
.button-primary:hover { color: var(--ink); background: var(--safety); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--white); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: flex;
  width: 100%;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(232, 225, 213, .88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: height .35s var(--ease), background-color .35s, border-color .35s, box-shadow .35s;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(232, 225, 213, .92);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(23, 24, 21, .08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clay);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  will-change: transform;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 41px;
  height: 41px;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 62px;
  background: var(--safety);
  transform: rotate(25deg);
}

.brand-mark b { z-index: 1; }
.brand-name { display: grid; line-height: 1; }
.brand-name strong {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: .56rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 38px);
}

.site-nav > a {
  position: relative;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav > a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  height: 44px;
  align-items: center;
  gap: 20px;
  padding: 0 17px;
  color: var(--white);
  background: var(--ink);
}

.nav-cta:hover { color: var(--ink); background: var(--safety); }
.nav-cta svg { width: 16px; height: 16px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  grid-template-columns: minmax(0, 53fr) minmax(430px, 47fr);
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--paper);
  isolation: isolate;
}

.hero-paper {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + clamp(45px, 5vw, 90px)) clamp(34px, 6vw, 105px) clamp(90px, 9vw, 140px) var(--pad);
  overflow: hidden;
}

.contour {
  position: absolute;
  pointer-events: none;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
  opacity: .13;
}

.contour-a {
  width: min(90vw, 920px);
  right: -210px;
  bottom: -220px;
}

.hero-index {
  position: absolute;
  top: calc(var(--header-h) + 34px);
  left: var(--pad);
  display: flex;
  gap: 24px;
  color: rgba(23, 24, 21, .58);
}

.hero-index span + span::before {
  content: "/";
  margin-right: 24px;
  color: var(--clay);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero h1 {
  max-width: 860px;
  margin-top: clamp(20px, 3vh, 44px);
  font-family: var(--display);
  font-size: clamp(4.8rem, 9.1vw, 10.6rem);
  font-stretch: condensed;
  font-weight: 900;
  line-height: .74;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em { display: block; }
.hero h1 span:nth-child(2) { color: var(--clay); }
.hero h1 em {
  position: relative;
  width: fit-content;
  margin-top: .26em;
  font-size: .29em;
  font-style: normal;
  line-height: 1;
  letter-spacing: .04em;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -9px;
  left: -7px;
  z-index: -1;
  height: 14px;
  background: var(--safety);
  transform: skewX(-12deg);
}

.hero-lead {
  max-width: 620px;
  margin-top: clamp(35px, 5vh, 68px);
  font-size: clamp(1.03rem, 1.2vw, 1.28rem);
  line-height: 1.58;
}

.hero-lead strong { font-weight: 760; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3vw, 48px);
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration-color: var(--clay);
  text-underline-offset: 7px;
  text-transform: uppercase;
}

.text-link span { color: var(--clay); }

.hero-coordinate {
  position: absolute;
  right: 25px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(23, 24, 21, .55);
  writing-mode: vertical-rl;
}

.hero-coordinate i { width: 1px; height: 38px; background: currentColor; }

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 12, 10, .04), transparent 48%, rgba(10, 12, 10, .44));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.75) contrast(1.03);
  transform: scale(1.025);
}

.image-note {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 248, .82);
}

.image-note span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--safety);
}

.grade-scale {
  position: absolute;
  top: 19%;
  right: 0;
  z-index: 2;
  display: grid;
  width: 56px;
  color: var(--white);
  background: rgba(23, 24, 21, .78);
  font-family: var(--mono);
  font-size: .59rem;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.grade-scale span {
  position: relative;
  display: grid;
  height: 54px;
  place-items: center;
  border-bottom: 1px solid var(--line-light);
}

.grade-scale span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  border-top: 1px solid var(--safety);
}

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 116px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--ink);
}

.hero-facts > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px var(--pad);
}

.hero-facts > div + div { border-left: 1px solid var(--line-light); }
.fact-number { color: var(--safety); font-family: var(--mono); font-size: .66rem; }
.hero-facts p { display: grid; line-height: 1.1; }
.hero-facts strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.38rem);
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.hero-facts small {
  margin-top: 7px;
  color: rgba(255, 253, 248, .64);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.positioning { overflow: hidden; }
.positioning-grid {
  position: relative;
  display: block;
  min-height: clamp(530px, 53vw, 780px);
}

.positioning .section-kicker {
  position: absolute;
  top: 10px;
  left: 0;
}

.display-quote {
  max-width: 1080px;
  padding-top: clamp(72px, 8vw, 118px);
  font-family: var(--display);
  font-size: clamp(4rem, 7.4vw, 9rem);
  font-weight: 850;
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.display-quote span { color: var(--clay); }
.positioning-copy {
  display: grid;
  max-width: 520px;
  gap: 24px;
  margin: clamp(24px, 2vw, 36px) 5vw 0 auto;
  padding: 28px 0 0 32px;
  border-left: 5px solid var(--clay);
  background: linear-gradient(90deg, rgba(243, 238, 229, .82), transparent);
  font-size: clamp(.98rem, 1.12vw, 1.18rem);
}

.positioning-copy p:first-child { font-weight: 700; }

.survey-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 13px;
  align-items: center;
  margin-top: clamp(75px, 9vw, 145px);
  color: rgba(23, 24, 21, .55);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
}

.survey-line i {
  position: relative;
  height: 1px;
  background: var(--ink);
  opacity: .4;
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.js.motion-ready .survey-line.reveal i { transform: scaleX(0); }
.js.motion-ready .survey-line.reveal.is-visible i { transform: scaleX(1); }
.js.motion-ready .survey-line.reveal.is-visible i:nth-of-type(2) { transition-delay: .18s; }

.survey-line i::before,
.survey-line i::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 1px;
  height: 11px;
  background: var(--ink);
}

.survey-line i::before { left: 25%; }
.survey-line i::after { right: 25%; }

.services {
  max-width: none;
  color: var(--white);
  background: var(--ink);
}

.services::after {
  content: "";
  position: absolute;
  top: 0;
  right: var(--pad);
  bottom: 0;
  width: 1px;
  background: var(--line-light);
  opacity: .45;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, .8fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 110px);
}

.section-heading h2,
.region h2 {
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.7vw, 8rem);
  font-weight: 850;
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.services .section-kicker::before { background: var(--safety); }
.heading-note {
  max-width: 460px;
  padding-bottom: 5px;
  color: rgba(255, 253, 248, .66);
}

.service-index {
  max-width: 1320px;
  margin-left: clamp(0px, 8vw, 150px);
  border-top: 1px solid var(--line-light);
}
.service-row {
  position: relative;
  display: grid;
  min-height: 148px;
  grid-template-columns: 64px minmax(230px, .85fr) minmax(300px, 1.15fr) auto;
  gap: clamp(18px, 3vw, 55px);
  align-items: center;
  padding: 25px clamp(6px, 1.5vw, 22px);
  border-bottom: 1px solid var(--line-light);
  transition: border-color .35s, translate .45s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 4px;
  background: var(--safety);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .4s var(--ease);
}

.service-row:nth-child(even) { margin-left: clamp(35px, 6vw, 110px); }
.service-num { color: var(--safety); }
.service-row h3 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.7vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.service-row p {
  max-width: 650px;
  color: rgba(255, 253, 248, .64);
  font-size: clamp(.94rem, 1.05vw, 1.12rem);
}

.service-mark {
  max-width: 150px;
  color: rgba(255, 253, 248, .4);
  text-align: right;
}

@media (hover: hover) {
  .service-row:hover { border-color: rgba(241, 201, 0, .72); translate: 8px 0; }
  .service-row:hover::before { transform: scaleY(1); }
  .service-row:hover h3 { color: var(--safety); }
}

.operator {
  display: grid;
  min-height: 950px;
  grid-template-columns: minmax(430px, 1.08fr) minmax(500px, .92fr);
  align-items: center;
  padding: clamp(70px, 8vw, 140px) 0;
  background: var(--paper-light);
}

.operator-image {
  position: relative;
  min-height: 780px;
  margin-left: var(--pad);
  overflow: hidden;
  background: var(--ink);
}

.operator-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 13, 11, .45));
}

.operator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.02);
  transition: transform 1.2s var(--ease), filter 1.2s;
}

.operator-image:hover img { transform: scale(1.02); filter: grayscale(0); }
.operator-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: clamp(-120px, -7vw, -65px);
  padding: clamp(70px, 8vw, 140px) clamp(35px, 7vw, 125px);
  background: rgba(243, 238, 229, .96);
  box-shadow: -28px 30px 80px rgba(23, 24, 21, .08);
}

.operator-copy h2 {
  max-width: 850px;
  margin-top: 25px;
  font-family: var(--display);
  font-size: clamp(4rem, 7.3vw, 8.7rem);
  font-weight: 880;
  line-height: .8;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.operator-copy h2 span { color: var(--clay); }
.operator-lead {
  max-width: 620px;
  margin-top: 46px;
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
}

.operator-facts {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.operator-facts > div {
  display: grid;
  grid-template-columns: minmax(100px, .38fr) 1fr;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.operator-facts dt {
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.operator-facts dd { font-weight: 680; }
.demo-note {
  max-width: 690px;
  margin-top: 35px;
  padding: 18px 20px;
  border-left: 5px solid var(--safety);
  background: rgba(215, 203, 187, .55);
  font-size: .9rem;
}

.method { background: var(--paper); }
.method .heading-note { color: rgba(23, 24, 21, .62); }
.method-list {
  position: relative;
  display: block;
  max-width: 1120px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list::before,
.method-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
}

.method-list::before { background: rgba(23, 24, 21, .16); }
.method-list::after {
  background: var(--clay);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.5s .25s var(--ease);
}

.method-list.is-visible::after { transform: scaleY(1); }

.method-list li {
  position: relative;
  width: calc(50% - 58px);
  min-height: 245px;
  padding: 32px clamp(28px, 4vw, 62px) 40px;
  border-top: 1px solid var(--ink);
  background: var(--paper-light);
}

.method-list li:nth-child(even) { margin: -52px 0 -52px auto; }

.method-list li::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -66px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 9px var(--paper);
}

.method-list li:nth-child(even)::before { right: auto; left: -66px; }

.method-num {
  font-family: var(--display);
  font-size: clamp(3.5rem, 5vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--paper-deep);
}

.method-list div { margin-top: 38px; }
.method-list h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
}

.method-list p { max-width: 340px; margin-top: 12px; color: rgba(23, 24, 21, .65); }

.werflog {
  max-width: none;
  background: var(--paper-light);
}

.werflog-heading .heading-note { color: rgba(23, 24, 21, .62); }
.project-dossier {
  position: relative;
  min-height: 780px;
}

.project-photo {
  position: relative;
  width: 82%;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.project-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(18, 19, 16, .34));
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(.72);
  transition: transform 1.2s var(--ease), filter 1s;
}

.project-dossier:hover .project-photo img { transform: scale(1.018); filter: saturate(.95); }
.project-stamp {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 9px 12px;
  background: var(--safety);
}

.project-data {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(48%, 680px);
  min-height: 590px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 82px);
  border-top: 6px solid var(--safety);
  background: var(--paper);
  box-shadow: -28px 30px 80px rgba(23, 24, 21, .18);
}

.project-data > .technical { color: var(--clay); }
.project-data h3 {
  margin-top: 25px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4.3rem);
  font-weight: 850;
  line-height: .96;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.project-data > p:not(.technical) { margin-top: 28px; color: rgba(23, 24, 21, .66); }
.project-data dl { display: grid; margin-top: 38px; border-top: 1px solid var(--line); }
.project-data dl > div {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.project-data dt {
  font-family: var(--mono);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-data dd { font-weight: 700; }

.region {
  display: grid;
  grid-template-columns: minmax(330px, .65fr) minmax(500px, 1.35fr);
  gap: clamp(60px, 9vw, 170px);
  align-items: center;
}

.region-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 33px;
  font-size: 1.08rem;
}

.region-map {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--paper-light);
}

.region-map::before,
.region-map::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-color: var(--clay);
}

.region-map::before { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.region-map::after { right: 10px; bottom: 40px; border-right: 2px solid; border-bottom: 2px solid; }
.region-map svg { width: 100%; height: auto; }
.map-contours { fill: none; stroke: var(--clay); stroke-width: 1; opacity: .28; }
.map-roads { fill: none; stroke: var(--ink); stroke-width: 1.4; opacity: .28; }
.map-center circle:first-child { fill: var(--safety); opacity: .42; }
.map-center circle:nth-child(2) { fill: var(--ink); }
.map-center text,
.map-labels text { font-family: var(--mono); font-size: 14px; font-weight: 700; letter-spacing: 2px; }
.map-labels { opacity: .48; }
.region-map > p {
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
}

.contact {
  position: relative;
  display: block;
  min-height: 860px;
  padding: clamp(90px, 10vw, 180px) var(--pad);
  overflow: hidden;
  background: var(--safety);
}

.contact::before {
  content: "D.TACK";
  position: absolute;
  right: -2vw;
  bottom: -9vw;
  color: rgba(23, 24, 21, .07);
  font-family: var(--display);
  font-size: clamp(10rem, 28vw, 34rem);
  font-weight: 950;
  line-height: .7;
  letter-spacing: -.08em;
  white-space: nowrap;
}

.contact-main,
.contact-brief { position: relative; z-index: 1; }
.contact-main { width: min(56%, 900px); }
.contact .section-kicker::before { background: var(--ink); }
.contact h2 {
  max-width: 1000px;
  margin-top: 25px;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.contact-main > p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 45px;
  font-size: clamp(1.12rem, 1.5vw, 1.55rem);
  font-weight: 700;
}

.contact-main .button { margin-top: 35px; }
.contact-brief {
  position: absolute;
  top: 50%;
  right: clamp(28px, 5vw, 92px);
  width: min(34vw, 520px);
  padding: clamp(30px, 4vw, 60px);
  color: var(--white);
  background: var(--ink);
  box-shadow: 24px 30px 0 rgba(139, 73, 49, .24);
  transform: translateY(-50%) rotate(.6deg);
}

.contact-brief > p:first-child { color: var(--safety); }
.contact-brief ol { margin: 27px 0 0; padding: 0; list-style: none; }
.contact-brief li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  font-weight: 650;
}

.contact-brief li span { color: var(--safety); font-family: var(--mono); font-size: .65rem; }
.contact-placeholder {
  margin-top: 28px;
  color: rgba(255, 253, 248, .62);
  font-size: .82rem;
}

.contact-ruler {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 26px;
  grid-template-columns: repeat(11, 1fr);
  align-items: end;
  border-top: 1px solid var(--ink);
}

.contact-ruler i { justify-self: start; width: 1px; height: 12px; background: var(--ink); }
.contact-ruler i:nth-child(odd) { height: 20px; }

.site-footer {
  display: grid;
  min-height: 150px;
  grid-template-columns: minmax(220px, .7fr) minmax(320px, 1.5fr) minmax(250px, .7fr);
  gap: 40px;
  align-items: center;
  padding: 32px var(--pad);
  color: var(--white);
  background: var(--ink);
}

.footer-brand { color: var(--white); }
.footer-brand .brand-mark { color: var(--ink); background: var(--white); }
.site-footer > p { max-width: 560px; color: rgba(255, 253, 248, .58); font-size: .82rem; }
.site-footer > p:last-child { justify-self: end; text-align: right; }
.mobile-cta { display: none; }

.contact-dialog {
  width: min(92vw, 650px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: clamp(34px, 5vw, 68px);
  border: 0;
  overflow: auto;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .4);
}

.contact-dialog::backdrop { background: rgba(18, 19, 16, .76); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.contact-dialog .technical { color: var(--safety); }
.contact-dialog h2 {
  max-width: 500px;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 880;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.contact-dialog > p:not(.technical) { margin-top: 26px; color: rgba(255, 253, 248, .68); }
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-light);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.dialog-close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.dialog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.dialog-list span {
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-dialog > .button { margin-top: 34px; border: 1px solid var(--white); }

.js.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js.motion-ready .reveal.is-visible { opacity: 1; transform: translate(0, 0); }
.js.motion-ready .service-row.reveal {
  transition: opacity .8s var(--ease), transform .8s var(--ease), border-color .35s, translate .45s var(--ease);
}
.js.motion-ready .service-row:nth-child(odd):not(.is-visible) { transform: translateX(-34px); }
.js.motion-ready .service-row:nth-child(even):not(.is-visible) { transform: translateX(34px); }
.js.motion-ready .section-kicker::before,
.js.motion-ready .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s .18s var(--ease);
}

.js.motion-ready .section-kicker.is-visible::before,
.js.motion-ready .eyebrow.is-visible::before { transform: scaleX(1); }

.js.motion-ready .hero-visual { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 100% 15%); animation: heroMask 1.2s .1s var(--ease) forwards; }
.js.motion-ready .hero-visual img { animation: heroImage 1.4s .1s var(--ease) both; }

.js.motion-ready .contour path {
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
  animation: contourDraw 2.2s .35s var(--ease) forwards;
}

.js.motion-ready .contour path:nth-child(2) { animation-delay: .46s; }
.js.motion-ready .contour path:nth-child(3) { animation-delay: .57s; }
.js.motion-ready .contour path:nth-child(4) { animation-delay: .68s; }
.js.motion-ready .contour path:nth-child(5) { animation-delay: .79s; }

.js.motion-ready .contact-brief.reveal {
  transform: translateY(-50%) rotate(.6deg);
  translate: 0 24px;
  transition: opacity .8s var(--ease), translate .8s var(--ease);
}

.js.motion-ready .contact-brief.reveal.is-visible { translate: 0 0; }

.region-map.is-visible .map-center circle:first-child { animation: mapPulse 1.15s .35s var(--ease) both; }

@keyframes heroMask { to { clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 15%); } }
@keyframes heroImage {
  from { transform: translate3d(0, 0, 0) scale(1.15); }
  to { transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.1); }
}
@keyframes contourDraw { to { stroke-dashoffset: 0; } }
@keyframes mapPulse {
  0% { opacity: 0; transform: scale(.55); transform-origin: 361px 191px; }
  55% { opacity: .62; }
  100% { opacity: .42; transform: scale(1); transform-origin: 361px 191px; }
}

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

@media (min-width: 861px) {
  .positioning-grid { min-height: 0; }
  .survey-line { margin-top: clamp(52px, 5vw, 72px); }
  .positioning { padding-bottom: clamp(72px, 6vw, 96px); }
  .services { padding-top: clamp(96px, 7vw, 112px); }
  .werflog { padding-bottom: clamp(72px, 5vw, 88px); }
  .region { padding-top: clamp(72px, 5vw, 88px); }
}

@media (max-width: 1280px) {
  .contact { min-height: 0; }
  .contact-main { width: 100%; }
  .contact-brief {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 680px);
    margin: 64px 0 0 auto;
    transform: none;
  }
  .js.motion-ready .contact-brief.reveal { transform: none; }
}

@media (max-width: 1120px) {
  :root { --header-h: 74px; }
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); }
  .hero-paper { padding-right: 35px; }
  .hero h1 { font-size: clamp(4.7rem, 9.7vw, 7.7rem); }
  .positioning-copy { max-width: 560px; }
  .operator { grid-template-columns: minmax(350px, .95fr) minmax(480px, 1.05fr); }
  .operator-copy { padding-inline: 7vw; }
  .service-mark { display: none; }
  .service-row { grid-template-columns: 56px minmax(230px, .9fr) minmax(300px, 1.1fr); }
  .region { gap: 5vw; }
  .site-footer { grid-template-columns: .7fr 1.3fr; }
  .site-footer > p:last-child { display: none; }
}

@media (max-width: 960px) {
  .region { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }
  body::before { display: none; }
  body.menu-open { overflow: hidden; }
  .site-header { background: rgba(232, 225, 213, .93); border-bottom-color: var(--line); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
  .brand-name { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    min-width: 76px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    font-family: var(--display);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 15px;
    height: 1px;
    background: currentColor;
    transition: transform .3s var(--ease);
  }

  .menu-toggle i::before { content: ""; transform: translateY(5px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(90deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    height: 100vh;
    height: 100dvh;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    overflow-y: auto;
    padding: 110px var(--pad) 60px;
    opacity: 0;
    background: var(--paper);
    transition: visibility .4s, opacity .4s;
  }

  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav > a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(2.4rem, 9vw, 4.5rem);
    line-height: 1;
  }

  .site-nav > a:first-child { border-top: 1px solid var(--line); }
  .site-nav > a::after { display: none; }
  .nav-cta { height: auto; color: var(--ink); background: var(--safety); padding-inline: 15px !important; }
  .nav-cta svg { width: 28px; height: 28px; margin-left: auto; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(420px, 58svh) auto;
  }

  .hero-paper {
    min-height: 710px;
    padding: calc(var(--header-h) + 80px) var(--pad) 85px;
  }

  .hero-index { top: calc(var(--header-h) + 26px); }
  .hero h1 { font-size: clamp(5rem, 15vw, 8.3rem); }
  .hero-visual { min-height: 460px; grid-row: 2; clip-path: polygon(0 7%, 90% 0, 100% 0, 100% 100%, 0 100%); }
  .js.motion-ready .hero-visual { clip-path: polygon(100% 7%, 100% 0, 100% 0, 100% 100%, 100% 100%); }
  .hero-coordinate { display: none; }
  .hero-facts { grid-row: 3; }
  @keyframes heroMask { to { clip-path: polygon(0 7%, 90% 0, 100% 0, 100% 100%, 0 100%); } }
  .positioning-grid { min-height: 0; }
  .positioning .section-kicker { position: static; margin-top: 0; }
  .display-quote { padding-top: 46px; }
  .positioning-copy { margin: 52px 0 0 auto; }
  .service-index { margin-left: 0; }
  .service-row,
  .service-row:nth-child(even) { min-height: 120px; margin-left: 0; grid-template-columns: 45px 1fr; }
  .service-row p { grid-column: 2; }
  .operator { grid-template-columns: 1fr; padding: 0; }
  .operator-image { min-height: 72svh; max-height: 850px; margin-left: 0; }
  .operator-copy { margin-left: 0; padding: 100px var(--pad); box-shadow: none; }
  .method-list { border-top: 0; }
  .method-list::before,
  .method-list::after { left: 16px; }
  .method-list li,
  .method-list li + li {
    display: grid;
    width: calc(100% - 52px);
    min-height: 0;
    margin: 0 0 56px 52px;
    grid-template-columns: 82px 1fr;
    gap: 30px;
    align-items: start;
    padding: 34px 28px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .method-list li:nth-child(even) { margin: 0 0 56px 52px; }

  .method-list li::before,
  .method-list li:nth-child(even)::before { top: -8px; right: auto; left: -44px; }
  .method-list div { margin-top: 8px; }
  .project-dossier { min-height: 0; }
  .project-photo { width: 100%; min-height: 56svh; }
  .project-data {
    position: relative;
    right: auto;
    bottom: auto;
    width: 92%;
    min-height: 0;
    margin: -65px 0 0 auto;
  }
  .region { grid-template-columns: 1fr; }
  .contact { min-height: 0; }
  .contact-main { width: 100%; }
  .contact-brief {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 680px;
    margin-top: 64px;
    transform: none;
  }
  .js.motion-ready .contact-brief.reveal { transform: none; }
  .site-footer { padding-bottom: 100px; }
  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 70;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0 19px;
    border: 0;
    color: var(--ink);
    background: var(--safety);
    box-shadow: 0 10px 40px rgba(23, 24, 21, .24);
    font-family: var(--display);
    font-size: .86rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
  }
}

@media (max-width: 620px) {
  :root { --pad: 20px; }
  body { font-size: 16px; }
  .section { padding-block: 92px; }
  .hero-paper { min-height: 680px; padding-top: calc(var(--header-h) + 70px); }
  .hero-index { gap: 10px; font-size: .55rem; }
  .hero-index span + span::before { margin-right: 10px; }
  .hero .eyebrow { max-width: 260px; }
  .hero h1 { font-size: clamp(4.4rem, 22vw, 7rem); line-height: .76; }
  .hero h1 em { font-size: .31em; }
  .hero-lead { margin-top: 44px; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-visual { min-height: 430px; }
  .hero-visual img { object-position: 61% center; }
  .grade-scale { display: none; }
  .image-note { right: 14px; bottom: 13px; left: 14px; font-size: .53rem; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div { min-height: 86px; padding-block: 18px; }
  .hero-facts > div + div { border-top: 1px solid var(--line-light); border-left: 0; }
  .display-quote { padding-top: 38px; font-size: clamp(3.3rem, 16vw, 5rem); }
  .positioning-copy { margin-top: 42px; padding: 22px 0 0 20px; }
  .survey-line { grid-template-columns: auto 1fr auto; }
  .survey-line i:nth-of-type(2),
  .survey-line span:nth-of-type(2) { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 48px; }
  .section-heading h2,
  .region h2 { font-size: clamp(3.5rem, 17vw, 5.4rem); }
  .service-row,
  .service-row:nth-child(even) { grid-template-columns: 34px 1fr; gap: 12px; padding: 24px 0; }
  .service-row h3 { font-size: 1.85rem; }
  .service-row p { grid-column: 2; }
  .operator-image { min-height: 570px; }
  .operator-copy h2 { font-size: clamp(4rem, 18vw, 5.8rem); }
  .operator-lead { margin-top: 34px; font-size: 1.1rem; }
  .operator-facts > div { grid-template-columns: 95px 1fr; }
  .method-list li,
  .method-list li + li { grid-template-columns: 58px 1fr; gap: 16px; padding: 28px 20px; }
  .method-num { font-size: 3rem; }
  .project-photo { min-height: 440px; }
  .project-photo img { object-position: 62% center; }
  .project-data { width: calc(100% - 20px); padding: 38px 24px; }
  .project-data h3 { font-size: 2.45rem; }
  .region-map { margin-inline: -1px; }
  .map-center text, .map-labels text { font-size: 12px; }
  .contact { min-height: 0; padding-block: 95px 110px; }
  .contact h2 { font-size: clamp(3.2rem, 16vw, 6.5rem); }
  .contact-main > p:not(.section-kicker) { margin-top: 32px; font-size: 1.06rem; }
  .contact-main .button { width: 100%; }
  .contact-brief { padding: 28px 22px; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .site-footer > p { font-size: .74rem; }
  .contact-dialog { padding: 54px 24px 30px; }
  .contact-dialog h2 { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js.motion-ready .reveal { opacity: 1; transform: none; }
  .js.motion-ready .hero-visual { clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 15%); }
}

@media (max-width: 860px) and (max-height: 520px) and (orientation: landscape) {
  .site-nav { justify-content: flex-start; }
}

@media (max-height: 520px) and (orientation: landscape) {
  .contact-dialog { width: min(94vw, 760px); padding: 32px 70px 26px 28px; }
  .contact-dialog h2 { max-width: 620px; font-size: 2.35rem; }
  .contact-dialog > p:not(.technical) { margin-top: 15px; }
  .dialog-list { margin-top: 18px; }
  .contact-dialog > .button { margin-top: 20px; }
}

@media print {
  .site-header, .mobile-cta, .contact-dialog { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { min-height: 0; }
  .hero-paper { min-height: 0; }
  .section { break-inside: avoid; }
}

/* Image-led cleanup */
.site-header:not(.is-scrolled) {
  color: var(--white);
  background: rgba(16, 17, 14, .18);
  border-bottom-color: rgba(255, 253, 248, .2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav > a:not(.nav-cta) { color: var(--white); }
.site-header:not(.is-scrolled) .brand-mark { color: var(--ink); background: var(--white); }
.site-header:not(.is-scrolled) .nav-cta { color: var(--ink); background: var(--safety); }

.hero {
  position: relative;
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  clip-path: none;
}

.hero-visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, .82) 0%, rgba(10, 11, 9, .54) 39%, rgba(10, 11, 9, .08) 72%),
    linear-gradient(0deg, rgba(10, 11, 9, .54) 0%, transparent 42%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  filter: saturate(.72) contrast(1.06) brightness(.86);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.1);
}

.hero-copy {
  position: absolute;
  bottom: clamp(100px, 13vh, 160px);
  left: var(--pad);
  z-index: 3;
  width: min(780px, 70vw);
  max-width: none;
}

.hero .eyebrow { color: rgba(255, 253, 248, .78); }
.hero .eyebrow::before { background: var(--safety); }
.hero h1 {
  max-width: 760px;
  margin-top: clamp(20px, 3vh, 34px);
  font-size: clamp(5.3rem, 9.2vw, 10.4rem);
  line-height: .78;
  letter-spacing: -.06em;
}

.hero h1 span {
  display: block;
  margin-top: .18em;
  color: var(--safety);
  font-size: .52em;
  line-height: .9;
  letter-spacing: -.035em;
}

.hero-lead {
  max-width: 520px;
  margin-top: clamp(30px, 4vh, 48px);
  color: rgba(255, 253, 248, .84);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.5;
}

.hero-copy > .button { margin-top: 30px; }
.hero .button-primary { color: var(--ink); background: var(--safety); }
.hero .button-primary:hover { color: var(--ink); background: var(--white); }
.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 253, 248, .72);
  text-decoration: none;
}

.hero-scroll span { color: var(--safety); font-size: 1rem; }
.image-credit {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 9px;
  color: rgba(255, 253, 248, .72);
  background: rgba(12, 13, 11, .52);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.js.motion-ready .hero-visual {
  clip-path: none;
  animation: cleanHeroReveal 1s var(--ease) both;
}

.js.motion-ready .hero-visual img { animation: heroImage 1.4s .05s var(--ease) both; }
@keyframes cleanHeroReveal { from { opacity: 0; } to { opacity: 1; } }

.work {
  max-width: var(--max);
  padding-top: clamp(110px, 10vw, 170px);
  padding-bottom: clamp(120px, 12vw, 210px);
  overflow: clip;
  background: var(--paper);
}

.work-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
  gap: clamp(40px, 8vw, 150px);
  align-items: end;
}

.work-intro .section-kicker { grid-column: 1 / -1; }
.work-intro h2 {
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 8.4vw, 10rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.work-intro > p:last-child {
  max-width: 440px;
  padding-bottom: .8em;
  color: rgba(23, 24, 21, .68);
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
}

.work-gallery { margin-top: clamp(70px, 9vw, 140px); }
.work-shot { position: relative; overflow: visible; }
.work-shot img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
  transition: transform 1.1s var(--ease), filter 1.1s;
}

.work-shot-main { width: min(88%, 1260px); }
.work-shot-main img { aspect-ratio: 3 / 2; }
.work-shot-right {
  width: min(55%, 780px);
  margin: clamp(-90px, -6vw, -52px) 1.5vw 0 auto;
}
.work-shot-right img { aspect-ratio: 4 / 3; }
.work-shot-left {
  width: min(50%, 700px);
  margin: clamp(52px, 7vw, 105px) 0 0 7vw;
}
.work-shot-left img { aspect-ratio: 4 / 3; }

.work-shot figcaption {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-top: 14px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  text-transform: uppercase;
}

.work-shot figcaption span { color: var(--clay); }
.gallery-note {
  width: min(100%, 650px);
  margin: clamp(65px, 8vw, 120px) 0 0 auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: rgba(23, 24, 21, .54);
}

@media (hover: hover) {
  .work-shot:hover img { transform: scale(1.015); filter: saturate(.98) contrast(1.02); }
}

.operator {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(430px, 1.08fr) minmax(420px, .92fr);
  align-items: stretch;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.operator-image {
  min-height: 760px;
  height: 84svh;
  max-height: 980px;
  margin: 0;
}

.operator-image::after { display: none; }
.operator-image img { filter: saturate(.68) contrast(1.05); }
.operator-copy {
  margin: 0;
  padding: clamp(90px, 9vw, 170px) clamp(45px, 7vw, 120px);
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.operator-copy .section-kicker { color: rgba(255, 253, 248, .68); }
.operator-copy .section-kicker::before { background: var(--safety); }
.operator-copy h2 { max-width: 760px; font-size: clamp(4.1rem, 7.2vw, 8.6rem); line-height: .8; }
.operator-copy h2 span { color: var(--safety); }
.operator-lead {
  max-width: 590px;
  margin-top: clamp(36px, 5vw, 62px);
  color: rgba(255, 253, 248, .72);
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  font-weight: 500;
  line-height: 1.58;
}

.method { padding-block: clamp(110px, 10vw, 170px); background: var(--paper-light); }
.method-heading { max-width: 980px; }
.method-heading h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 9.4rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.method-flow {
  display: flex;
  margin: clamp(65px, 8vw, 120px) 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.method-flow li {
  display: flex;
  flex: 1;
  gap: clamp(18px, 2.2vw, 36px);
  align-items: flex-start;
  padding: clamp(26px, 3vw, 46px) clamp(16px, 3vw, 48px) 0 0;
}

.method-flow li + li { padding-left: clamp(16px, 3vw, 48px); }
.method-flow > li > span {
  color: var(--clay);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
}

.method-flow h3 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.8rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.method-flow p { margin-top: 10px; color: rgba(23, 24, 21, .6); }

.contact {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(360px, .76fr) minmax(0, 1.24fr);
  padding: 0;
  color: var(--ink);
  background: var(--safety);
}

.contact::before { display: none; }
.contact-image {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
}

.contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 11, 9, .45));
  pointer-events: none;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.76) contrast(1.04);
  transition: transform 1.2s var(--ease);
}

.contact-image .image-credit { z-index: 2; }
.contact-main {
  display: flex;
  width: auto;
  flex-direction: column;
  justify-content: center;
  padding: clamp(90px, 10vw, 180px) clamp(40px, 8vw, 145px);
}

.contact h2 { max-width: 940px; margin-top: 25px; font-size: clamp(5rem, 9.2vw, 10.8rem); line-height: .76; }
.contact-main > p:not(.section-kicker) {
  max-width: 620px;
  margin-top: clamp(34px, 4vw, 56px);
  font-size: clamp(1.08rem, 1.35vw, 1.4rem);
  font-weight: 650;
}

.contact-main .button { align-self: flex-start; margin-top: 34px; }

@media (max-width: 1100px) {
  .hero-copy { width: min(760px, 78vw); }
  .work-intro { grid-template-columns: 1fr; gap: 30px; }
  .work-intro > p:last-child { padding-bottom: 0; }
  .operator { grid-template-columns: minmax(360px, .9fr) minmax(400px, 1.1fr); }
  .operator-copy { padding-inline: clamp(38px, 6vw, 78px); }
  .contact { grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr); }
  .contact-main { padding-inline: clamp(36px, 6vw, 80px); }
}

@media (max-width: 860px) {
  .site-header:not(.is-scrolled) {
    color: var(--ink);
    background: rgba(232, 225, 213, .94);
    border-bottom-color: var(--line);
  }

  .site-header:not(.is-scrolled) .brand,
  .site-header:not(.is-scrolled) .site-nav > a:not(.nav-cta),
  .site-header:not(.is-scrolled) .menu-toggle { color: var(--ink); }
  .site-header:not(.is-scrolled) .brand-mark { color: var(--white); background: var(--ink); }

  .hero { display: block; height: 100svh; min-height: 680px; }
  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
    clip-path: none;
  }

  .js.motion-ready .hero-visual { clip-path: none; }
  .hero-visual img { object-position: 63% center; }
  .hero-visual::before {
    background:
      linear-gradient(0deg, rgba(10, 11, 9, .9) 0%, rgba(10, 11, 9, .52) 48%, rgba(10, 11, 9, .1) 78%),
      linear-gradient(90deg, rgba(10, 11, 9, .24), transparent 72%);
  }

  .hero-copy {
    bottom: 72px;
    left: var(--pad);
    width: calc(100% - (2 * var(--pad)));
  }

  .hero h1 { max-width: 620px; font-size: clamp(4.1rem, 18vw, 7.2rem); }
  .hero h1 span { font-size: .5em; }
  .hero-lead { max-width: 480px; margin-top: 24px; font-size: 1.02rem; }
  .hero-copy > .button { margin-top: 24px; }
  .hero-scroll { display: none; }

  .work { padding-block: 95px 115px; }
  .work-intro { display: block; }
  .work-intro h2 { margin-top: 24px; font-size: clamp(3.8rem, 14vw, 6.6rem); }
  .work-intro > p:last-child { margin-top: 28px; }
  .work-gallery { margin-top: 58px; }
  .work-shot-main,
  .work-shot-right,
  .work-shot-left {
    width: 100%;
    margin: 0 0 48px;
  }
  .gallery-note { margin-top: 26px; }

  .operator { grid-template-columns: 1fr; }
  .operator-image { min-height: 0; height: 72svh; max-height: 760px; }
  .operator-copy { padding: 88px var(--pad) 96px; }
  .operator-copy h2 { font-size: clamp(3.9rem, 14vw, 6.8rem); }
  .operator-lead { margin-top: 34px; }

  .method { padding-block: 95px; }
  .method-heading h2 { font-size: clamp(3.8rem, 14vw, 6.5rem); }
  .method-flow { display: block; margin-top: 58px; }
  .method-flow li,
  .method-flow li + li { gap: 22px; padding: 26px 0; }
  .method-flow li + li { border-top: 1px solid var(--line); }
  .method-flow h3 { font-size: 2rem; }

  .contact { grid-template-columns: 1fr; min-height: 0; }
  .contact-image { min-height: 0; height: 72svh; max-height: 720px; }
  .contact-main { padding: 92px var(--pad) 125px; }
  .contact h2 { font-size: clamp(4rem, 17vw, 7rem); }
  .contact-main .button { width: 100%; }

  .mobile-cta {
    left: auto;
    width: min(230px, calc(100vw - 28px));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity .3s, visibility .3s, transform .45s var(--ease);
  }
  .mobile-cta.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.menu-open .mobile-cta { visibility: hidden; opacity: 0; pointer-events: none; }

  .no-js .menu-toggle { display: none; }
  .no-js .mobile-cta { display: none; }
  .no-js .site-nav {
    position: static;
    inset: auto;
    display: flex;
    width: auto;
    height: auto;
    flex-direction: row;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    background: transparent;
    transform: none;
  }
  .no-js .site-nav > a:not(.nav-cta) { display: none; }
  .no-js .site-nav .nav-cta {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    padding: 0 13px !important;
    border: 0;
    font-size: .72rem;
  }
}

@media (max-width: 520px) {
  .hero .eyebrow { font-size: .64rem; }
  .hero h1 { font-size: clamp(3.75rem, 17.5vw, 5.5rem); }
  .hero-lead { max-width: 340px; }
  .work-shot figcaption { font-size: 1rem; }
  .contact h2 { font-size: clamp(3.75rem, 16.5vw, 5.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  .js.motion-ready .hero-visual { clip-path: none; }
}

@media print {
  .site-header, .mobile-cta, .contact-dialog { display: none !important; }
  .hero { height: auto; min-height: 0; color: #000; background: #fff; }
  .hero-visual { position: relative; height: 420px; }
  .hero-copy { position: relative; inset: auto; width: auto; padding: 32px; color: #000; }
  .operator, .contact { break-inside: avoid; }
}

/* Result comparison + calmer contact refinement */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body::before { opacity: .025; }

.results {
  padding-block: clamp(110px, 11vw, 190px);
  background: var(--paper-light);
}

.results-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
}

.results-intro .section-kicker { grid-column: 1 / -1; }
.results-intro h2 {
  max-width: 1050px;
  font-family: var(--display);
  font-size: clamp(4rem, 7.4vw, 8.8rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.results-intro > p:last-child {
  max-width: 390px;
  padding-bottom: .5em;
  color: rgba(23, 24, 21, .64);
  font-size: clamp(1rem, 1.15vw, 1.22rem);
}

.compare-story {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 9vw, 145px);
  margin-top: clamp(70px, 9vw, 140px);
}

.compare {
  --pos: 50%;
  width: min(88%, 1240px);
  margin: 0;
}

.compare:nth-child(even) {
  width: min(80%, 1100px);
  align-self: flex-end;
}

.compare-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(23, 24, 21, .12);
  isolation: isolate;
}

.compare-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.compare-after { clip-path: inset(0 0 0 var(--pos)); }

.compare-media input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
  -webkit-appearance: none;
  appearance: none;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 3px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 0 0 1px rgba(23, 24, 21, .18);
  pointer-events: none;
  transform: translateX(-50%);
}

.compare-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 24, 21, .22);
  transform: translate(-50%, -50%);
}

.compare-divider i::before,
.compare-divider i::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 9px;
  height: 9px;
  border-bottom: 2px solid var(--ink);
}

.compare-divider i::before {
  left: 11px;
  border-left: 2px solid var(--ink);
  transform: rotate(45deg);
}

.compare-divider i::after {
  right: 11px;
  border-right: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.compare-media input[type="range"]:focus-visible ~ .compare-divider i {
  outline: 4px solid var(--safety);
  outline-offset: 4px;
}

.compare-label {
  position: absolute;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 24, 21, .78);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.compare-label-before { left: 16px; }
.compare-label-after { right: 16px; }
.compare figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding-top: 18px;
}

.compare figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  font-weight: 800;
  text-transform: uppercase;
}

.compare figcaption span {
  color: rgba(23, 24, 21, .48);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.results-note {
  width: min(100%, 710px);
  margin: clamp(70px, 8vw, 120px) 0 0 auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: rgba(23, 24, 21, .5);
}

.operator {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(22px, 3.4vw, 58px);
  gap: 0;
  color: var(--ink);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.operator-image {
  height: min(78svh, 860px);
  min-height: 620px;
  overflow: hidden;
  border-radius: 18px;
}

.operator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.02);
}

.operator-copy {
  align-self: center;
  padding: clamp(72px, 8vw, 135px) clamp(42px, 6vw, 105px);
  color: var(--ink);
  background: transparent;
}

.operator-copy .section-kicker { color: rgba(23, 24, 21, .62); }
.operator-copy .section-kicker::before { background: var(--clay); }
.operator-copy h2 {
  max-width: 700px;
  font-size: clamp(3rem, 4.6vw, 5.8rem);
  line-height: .84;
}
.operator-copy h2 span { color: var(--clay); }
.operator-lead { color: rgba(23, 24, 21, .68); }

.contact {
  width: min(100%, var(--max));
  min-height: 760px;
  margin-inline: auto;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.contact-image { min-height: 760px; }
.contact-main { position: relative; }
.contact-main::before {
  content: "";
  position: absolute;
  top: clamp(70px, 8vw, 130px);
  left: clamp(40px, 8vw, 145px);
  width: 82px;
  height: 8px;
  background: var(--safety);
}
.contact h2 { font-size: clamp(4.5rem, 8vw, 9.2rem); }

.float-contact,
.faq-button,
.faq-panel { font-family: var(--body); }

.float-contact { display: none; }

.faq-button {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 92;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(23, 24, 21, .28);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transform: translateY(16px);
  transition: opacity .28s, visibility .28s, transform .35s var(--ease);
}

.faq-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.faq-button:hover { transform: translateY(-3px); }
body.chat-open .faq-button { opacity: 0; visibility: hidden; pointer-events: none; }
.faq-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-button > span {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--safety);
}

.faq-panel {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 110;
  display: flex;
  width: min(390px, calc(100vw - 32px));
  height: min(580px, calc(100svh - 125px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 21, .12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(23, 24, 21, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transform-origin: right bottom;
  transition: opacity .24s, visibility .24s, transform .3s var(--ease);
}

.faq-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.faq-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
}

.faq-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--safety);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 900;
}

.faq-header > div { display: grid; flex: 1; line-height: 1.2; }
.faq-header strong { font-family: var(--display); font-size: 1rem; text-transform: uppercase; }
.faq-header small { margin-top: 4px; color: rgba(255, 253, 248, .62); font-size: .75rem; }
.faq-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}
.faq-close:hover { background: rgba(255, 255, 255, .2); }
.faq-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.faq-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  overflow-y: auto;
  background: #eee8de;
  overscroll-behavior: contain;
}

.faq-message {
  width: fit-content;
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: .86rem;
  line-height: 1.5;
  box-shadow: 0 2px 9px rgba(23, 24, 21, .05);
}

.faq-message-bot {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  background: var(--white);
}

.faq-message-user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: var(--white);
  background: var(--ink);
}

.faq-message .faq-contact-link {
  display: inline-flex;
  margin-top: 9px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--safety);
  font-size: .76rem;
  font-weight: 750;
  cursor: pointer;
}

.faq-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 11px 13px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.faq-shortcuts button {
  flex: 1 1 calc(50% - 4px);
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-light);
  font-size: .74rem;
  font-weight: 700;
  cursor: pointer;
}
.faq-shortcuts button:hover { border-color: var(--ink); }

.faq-form {
  display: flex;
  gap: 8px;
  padding: 12px 13px 14px;
  background: var(--white);
}
.faq-form input {
  min-width: 0;
  flex: 1;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-light);
  font-size: 16px;
}
.faq-form button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--safety);
  cursor: pointer;
}
.faq-form button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }

@media (max-width: 860px) {
  .results-intro { display: block; }
  .results-intro h2 { margin-top: 23px; font-size: clamp(3.65rem, 13.5vw, 6.2rem); }
  .results-intro > p:last-child { margin-top: 27px; }
  .compare-story { gap: 64px; margin-top: 58px; }
  .compare,
  .compare:nth-child(even) { width: 100%; align-self: auto; }
  .compare-media { border-radius: 13px; }
  .compare figcaption { display: grid; gap: 4px; }

  .operator { grid-template-columns: 1fr; padding: 18px; }
  .operator-image { height: 67svh; min-height: 480px; border-radius: 14px; }
  .operator-copy { padding: 70px 4px 78px; }
  .operator-copy h2 { font-size: clamp(3.55rem, 13.3vw, 6.2rem); }
  .operator-lead { margin-top: 30px; }
  .method-heading h2 { font-size: clamp(3.6rem, 13.2vw, 6.1rem); }

  .contact { min-height: 0; }
  .contact-image { min-height: 0; }
  .contact-main::before { top: 54px; left: var(--pad); width: 62px; height: 7px; }
  .contact-main { padding-top: 92px; }

  .faq-button { display: none; }
  .float-contact {
    position: fixed;
    right: 16px;
    bottom: 17px;
    z-index: 96;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .28s, visibility .28s, transform .38s var(--ease);
  }

  .fc-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
  }

  .float-contact.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .fc-action,
  .fc-toggle {
    position: relative;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(23, 24, 21, .25);
  }

  .fc-action {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(.65);
    transition: opacity .22s, transform .3s var(--ease);
  }

  .float-contact.is-open .fc-action {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .float-contact.is-open .fc-action:nth-child(1) { transition-delay: .08s; }
  .float-contact.is-open .fc-action:nth-child(2) { transition-delay: .04s; }
  .float-contact.is-open .fc-action:nth-child(3) { transition-delay: 0s; }

  .fc-contact { color: var(--ink); background: var(--safety); }
  .fc-whatsapp { color: var(--white); background: #1f8b5c; }
  .fc-chat { color: var(--white); background: var(--clay); }
  .fc-toggle { color: var(--white); background: var(--ink); }
  .fc-action svg,
  .fc-toggle svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .fc-action::before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(23, 24, 21, .94);
    font-size: .72rem;
    font-weight: 750;
    white-space: nowrap;
    opacity: 0;
    transform: translate(5px, -50%);
    transition: opacity .2s, transform .25s var(--ease);
  }

  .float-contact.is-open .fc-action::before { opacity: 1; transform: translate(0, -50%); }
  .fc-toggle .fc-icon-close { display: none; }
  .float-contact.is-open .fc-toggle .fc-icon-open { display: none; }
  .float-contact.is-open .fc-toggle .fc-icon-close { display: block; }
  .float-contact.is-open .fc-toggle { transform: rotate(90deg); }
  .fc-toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: contactPulse 2.8s ease-out infinite;
  }
  .float-contact.is-open .fc-toggle::after { animation: none; }
  body.menu-open .float-contact,
  body.chat-open .float-contact,
  body.contact-open .float-contact { opacity: 0; visibility: hidden; pointer-events: none; }

  .faq-panel { right: 14px; bottom: 14px; height: min(610px, calc(100svh - 28px)); }
  .no-js .float-contact,
  .no-js .faq-button,
  .no-js .faq-panel { display: none; }
}

@keyframes contactPulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 201, 0, .5); }
  72% { box-shadow: 0 0 0 16px rgba(241, 201, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 201, 0, 0); }
}

@media (max-width: 640px) {
  .results { padding-block: 92px; }
  .compare-divider i { width: 44px; height: 44px; }
  .compare-divider i::before,
  .compare-divider i::after { top: 15px; }
  .compare-divider i::before { left: 9px; }
  .compare-divider i::after { right: 9px; }
  .compare-label { bottom: 10px; padding: 6px 9px; font-size: .59rem; }
  .compare-label-before { left: 10px; }
  .compare-label-after { right: 10px; }

  .faq-panel {
    inset: 0;
    width: 100%;
    height: 100svh;
    border: 0;
    border-radius: 0;
    transform: translateY(100%);
  }
  .faq-panel.is-open { transform: translateY(0); }
  body.chat-open { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-toggle::after { animation: none; }
  .faq-panel,
  .faq-button,
  .float-contact,
  .fc-action { transition-duration: .01ms !important; }
}

@media print {
  .float-contact, .faq-button, .faq-panel { display: none !important; }
  .results { background: #fff; }
}
