:root {
  --ink: #171714;
  --ink-soft: #383834;
  --paper: #f1eee5;
  --paper-bright: #faf8f1;
  --line: rgba(23, 23, 20, 0.22);
  --red: #8e1d22;
  --red-dark: #651317;
  --acid: #d6ff32;
  --muted: #a5a197;
  --white: #fffef8;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: 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: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
summary,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.mandate-strip {
  position: sticky;
  z-index: 31;
  top: 0;
  min-height: 2rem;
  padding: 0.45rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
  color: var(--acid);
  background: var(--ink);
  border-bottom: 1px solid rgba(214, 255, 50, 0.3);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-light {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(142, 29, 34, 0.3);
  animation: pulse 1.4s ease-in-out infinite;
}

.strip-divider {
  width: 1px;
  height: 0.8rem;
  background: rgba(214, 255, 50, 0.35);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 2rem;
  height: 5.4rem;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: rgba(23, 23, 20, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  transition: height 220ms ease, background 220ms ease;
}

.site-header.condensed {
  height: 4.6rem;
  background: rgba(23, 23, 20, 0.985);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  transform: rotate(45deg);
}

.brand-mark i {
  display: block;
  background: var(--acid);
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) {
  background: var(--red);
}

.brand-mark.inverse i {
  background: var(--ink);
}

.brand-mark.inverse i:nth-child(2),
.brand-mark.inverse i:nth-child(3) {
  background: var(--red-dark);
}

.brand-type {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-type small {
  padding-left: 0.75rem;
  color: #c9c6bd;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.6rem);
}

.site-nav a {
  position: relative;
  color: #dedbd2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.75rem 1rem;
  color: var(--ink) !important;
  background: var(--acid);
}

.nav-toggle {
  width: 3rem;
  height: 3rem;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 7.4rem);
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.78) contrast(1.08);
  animation: hero-in 1.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.96) 0%, rgba(12, 12, 10, 0.83) 35%, rgba(12, 12, 10, 0.15) 74%),
    linear-gradient(0deg, rgba(12, 12, 10, 0.82) 0%, transparent 45%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-content {
  width: min(57rem, 70%);
  padding: clamp(5rem, 10vh, 8rem) var(--gutter) clamp(11rem, 18vh, 14rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--acid);
}

.hero h1,
.section-heading h2,
.audit-copy h2,
.audit-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4.5rem, 10.5vw, 10.5rem);
}

.hero h1 em {
  color: var(--acid);
  font-style: normal;
}

.hero-intro {
  max-width: 46rem;
  margin: 2rem 0 0;
  color: #d7d4cb;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 3.2rem;
  padding: 0.9rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--acid);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.12);
}

.button-dark {
  color: var(--acid);
  background: var(--ink);
}

.hero-metrics {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  left: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-metrics > div {
  min-height: 7rem;
  padding: 1rem 1.25rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-metrics > div:first-child {
  padding-left: 0;
}

.hero-metrics > div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.hero-metrics .long-number {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-metrics span {
  max-width: 8rem;
  color: #c3c0b7;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
}

.section > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: var(--max);
}

.section-heading h2,
.audit-copy h2 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 7.7vw, 8.2rem);
}

.section-deck {
  max-width: 44rem;
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.manifesto {
  background:
    radial-gradient(circle at 90% 15%, rgba(142, 29, 34, 0.08), transparent 23rem),
    var(--paper);
}

.manifesto .section-heading h2 {
  max-width: 18ch;
}

.manifesto-layout {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.manifesto-copy {
  max-width: 50rem;
  columns: 2;
  column-gap: 3rem;
}

.manifesto-copy p {
  margin: 0 0 1.5rem;
  break-inside: avoid;
}

.manifesto-copy .lead-copy {
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.deficit-card {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  color: var(--white);
  background: var(--red);
  box-shadow: 1rem 1rem 0 var(--ink);
}

.data-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.deficit-number {
  display: block;
  margin: 1.5rem 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-overflow: ellipsis;
}

.deficit-track,
.meter-track {
  height: 0.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.deficit-track i {
  display: block;
  width: 99.999%;
  height: 100%;
  background: var(--acid);
}

.deficit-card p {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.axiom-grid {
  margin-top: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.axiom {
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.axiom:first-child {
  padding-left: 0;
}

.axiom:last-child {
  border-right: 0;
}

.certificate {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.axiom h3 {
  max-width: 8ch;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.axiom p {
  max-width: 25rem;
  color: #4b4943;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark .section-deck,
.section-dark .service-lead,
.section-dark .deliverables,
.section-dark .service-meta {
  color: #c9c6bd;
}

.service-list {
  margin-top: clamp(5rem, 9vw, 9rem);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-card.reverse .service-image-wrap {
  order: 2;
}

.service-card.reverse .service-content {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 0;
}

.service-image-wrap {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
}

.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 42%);
  pointer-events: none;
}

.service-image-wrap img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.025);
  filter: saturate(1);
}

.service-content {
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.service-content h3 {
  max-width: 10ch;
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-transform: uppercase;
}

.service-lead {
  max-width: 45rem;
  font-size: 1.08rem;
}

.deliverables {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.deliverables li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--acid);
  font-weight: 900;
}

.service-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calculator {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(23, 23, 20, 0.06) 50%, transparent 50.1%),
    var(--paper-bright);
}

.calculator-shell {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(26rem, 1.22fr);
  border: 1px solid var(--ink);
  box-shadow: 1rem 1rem 0 var(--red);
}

.calculator-controls,
.calculation-results {
  padding: clamp(1.5rem, 4vw, 4rem);
}

.calculator-controls {
  display: grid;
  align-content: center;
  gap: 1rem;
  background: var(--paper);
  border-right: 1px solid var(--ink);
}

.calculator-controls label,
.audit-form label:not(.consent-row) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator-controls output {
  min-width: 3rem;
  padding: 0.35rem 0.55rem;
  color: var(--acid);
  background: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  text-align: center;
}

input[type="range"] {
  width: 100%;
  margin: 0.25rem 0 1rem;
  accent-color: var(--red);
}

select,
input[type="text"],
input[type="number"] {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  border-radius: 0;
}

.calculation-results {
  color: var(--white);
  background: var(--ink);
}

.result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.result-header span {
  color: #afaca4;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-header strong {
  max-width: 13ch;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-align: right;
}

.calculation-results dl {
  margin: 0;
}

.calculation-results dl > div {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.calculation-results dt {
  color: #afaca4;
  font-size: 0.75rem;
}

.calculation-results dd {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 800;
  text-align: right;
}

.compliance-meter {
  margin-top: 2rem;
}

.meter-label {
  margin-bottom: 0.65rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meter-track i {
  display: block;
  min-width: 2px;
  height: 100%;
  background: var(--acid);
  transition: width 350ms ease;
}

#result-note {
  margin: 1.5rem 0 0;
  color: #cbc8bf;
}

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

.testimonial-grid {
  margin-top: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.testimonial-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper-bright);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.testimonial-card > img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
}

.testimonial-body {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}

.certificate {
  align-self: flex-start;
  padding: 0.4rem 0.55rem;
  color: var(--paper-bright);
  background: var(--red);
}

.testimonial-card blockquote {
  margin: 2rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.43;
}

.testimonial-card blockquote::before {
  content: "“";
  display: block;
  height: 2rem;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.9;
}

.testimonial-body > p {
  margin: auto 0 1.5rem;
  color: #4b4943;
  font-size: 0.8rem;
}

.section-red {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--red);
  background-size: 6vw 6vw;
}

.section-red .section-deck {
  color: #eadbd6;
}

.partner-grid {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.partner {
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.partner h3 {
  margin: 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-transform: uppercase;
}

.partner-status {
  margin: 0;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: #eeded9;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.partner-disclaimer {
  max-width: 70rem;
  margin: 2rem 0 0;
  color: #d9c4be;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.audit {
  min-height: 50rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 0.78fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background:
    radial-gradient(circle at 15% 90%, rgba(214, 255, 50, 0.22), transparent 19rem),
    var(--acid);
}

.audit > * {
  width: 100%;
  max-width: none;
  margin: 0;
}

.audit-copy h2 {
  max-width: 10ch;
}

.audit-copy > p:not(.eyebrow) {
  max-width: 39rem;
  font-size: 1.15rem;
}

.audit-notice {
  max-width: 37rem;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  border-top: 1px solid var(--ink);
  font-size: 0.72rem;
}

.audit-notice strong {
  text-transform: uppercase;
}

.audit-form {
  padding: clamp(1.5rem, 4vw, 4rem);
  color: var(--white);
  background: var(--red);
  box-shadow: 1rem 1rem 0 var(--ink);
}

.audit-form label:not(.consent-row) {
  display: block;
  margin: 0 0 0.5rem;
}

.audit-form input[type="text"],
.audit-form input[type="number"],
.audit-form select {
  margin-bottom: 1.25rem;
  border-color: rgba(255, 255, 255, 0.6);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.consent-row {
  margin: 0.5rem 0 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.consent-row input {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: var(--acid);
}

.site-footer {
  padding: 4rem var(--gutter) 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.75rem;
}

.footer-statement {
  max-width: 42rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: #5c5952;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-meta button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  cursor: pointer;
}

.audit-dialog {
  width: min(42rem, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--ink);
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  box-shadow: 1rem 1rem 0 var(--red);
}

.audit-dialog::backdrop {
  background: rgba(23, 23, 20, 0.84);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}

.audit-dialog h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.dialog-score {
  margin: 2rem 0;
  padding: 1.5rem 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.dialog-score span {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.dialog-score small {
  max-width: 8rem;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.dialog-stamp {
  width: fit-content;
  margin: 2rem 0;
  padding: 0.7rem 1rem;
  color: var(--red);
  border: 4px double var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-4deg);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  max-width: min(24rem, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(160%);
  transition: transform 220ms ease;
}

.toast.visible {
  transform: translateY(0);
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 1rem;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 1.25rem;
  }

  .site-nav a {
    font-size: 0.64rem;
  }

  .hero-content {
    width: min(58rem, 82%);
  }

  .service-card,
  .service-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-card.reverse .service-image-wrap {
    order: 0;
  }

  .service-card .service-content,
  .service-card.reverse .service-content {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-right: 0;
    border-left: 0;
  }

  .service-image-wrap {
    min-height: 34rem;
  }

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

  .testimonial-card {
    display: grid;
    grid-template-columns: minmax(19rem, 0.8fr) minmax(0, 1.2fr);
  }

  .testimonial-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

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

@media (max-width: 820px) {
  .mandate-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .brand-type small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: calc(2rem + 5.4rem);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2rem var(--gutter) 4rem;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 250ms ease, visibility 250ms;
  }

  .site-header.condensed .site-nav {
    top: calc(2rem + 4.6rem);
  }

  .site-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 1.2rem 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--display);
    font-size: 1.8rem;
    letter-spacing: -0.025em;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1rem;
    padding: 1.2rem !important;
    text-align: center;
  }

  .hero {
    min-height: 60rem;
    align-items: start;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(12, 12, 10, 0.94), rgba(12, 12, 10, 0.25)),
      linear-gradient(0deg, rgba(12, 12, 10, 0.88), transparent 55%);
  }

  .hero-content {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 17rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 12.5vw, 4.4rem);
    letter-spacing: -0.085em;
    line-height: 0.93;
  }

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

  .hero-metrics > div {
    min-height: auto;
    padding: 0.65rem 0;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-metrics strong {
    font-size: 2.3rem;
  }

  .hero-metrics span {
    max-width: none;
    text-align: right;
  }

  .manifesto-layout,
  .calculator-shell,
  .audit {
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    columns: 1;
  }

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

  .axiom,
  .axiom:first-child {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .axiom:last-child {
    border-bottom: 0;
  }

  .calculator-controls {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .audit {
    gap: 3rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 600px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-heading h2,
  .audit-copy h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .service-image-wrap {
    min-height: 25rem;
  }

  .service-content {
    padding: 2rem 1.25rem;
  }

  .service-content h3 {
    font-size: 3rem;
  }

  .service-meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  .calculator-shell,
  .audit-form {
    box-shadow: 0.55rem 0.55rem 0 var(--red);
  }

  .testimonial-card {
    display: flex;
  }

  .testimonial-card > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .audit-dialog {
    box-shadow: 0.55rem 0.55rem 0 var(--red);
  }

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

  .dialog-score small {
    max-width: none;
    text-align: left;
  }
}

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

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