:root {
  --ink: #090b0e;
  --ink-soft: #11151a;
  --panel: #15191f;
  --paper: #f2f0e9;
  --muted: #a5a9ad;
  --red: #e12024;
  --yellow: #f1c40f;
  --blue: #188dd8;
  --orange: #ed6b1a;
  --green: #65bd27;
  --line: rgba(255, 255, 255, 0.14);
  --display: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-150%);
}

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

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, min-height 250ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(9, 11, 14, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  transform: skew(-6deg);
}

.brand-main {
  font-size: 1.8rem;
  color: var(--paper);
}

.brand-accent {
  margin-left: 0.12rem;
  font-size: 1.45rem;
  color: var(--red);
}

.brand-image {
  display: block;
  width: clamp(170px, 17vw, 235px);
  transform: none;
}

.brand-image img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.7rem);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

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

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

.nav-cta {
  padding: 0.75rem 1.15rem;
  color: var(--paper);
  background: var(--red);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: 9rem 5vw 2rem;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0 45% 0 0;
  z-index: -3;
  content: "";
  background: radial-gradient(circle at 30% 40%, rgba(225, 32, 36, 0.2), transparent 46%);
}

.hero::after {
  position: absolute;
  top: -20%;
  right: -15%;
  z-index: -2;
  width: 68%;
  height: 130%;
  content: "";
  background: linear-gradient(135deg, rgba(225, 32, 36, 0.1), transparent 42%), #0f1216;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-copy {
  align-self: center;
  max-width: 760px;
  padding: 2rem 3vw 5rem 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  background: var(--red);
  transform: skew(-25deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.8rem;
  font-size: clamp(4.3rem, 8.4vw, 9.3rem);
}

h1 strong {
  display: block;
  color: var(--yellow);
  font-weight: inherit;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2.1rem;
  color: #c4c7ca;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--paper);
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #bd171b;
}

.button-ghost {
  border: 1px solid var(--line);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.hero-visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 540px);
  height: min(70vh, 710px);
  min-height: 460px;
  margin-right: -1vw;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -24px 24px 0 rgba(225, 32, 36, 0.18);
  clip-path: polygon(13% 0, 100% 0, 100% 91%, 87% 100%, 0 100%, 0 9%);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(9, 11, 14, 0.25));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.06) saturate(0.9);
}

.hero-visual-original {
  background:
    radial-gradient(circle at 55% 48%, rgba(225, 32, 36, 0.2), transparent 48%),
    linear-gradient(145deg, #171b20, #090b0e);
}

.hero-visual-original img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  padding: 3rem 2rem 1rem;
  filter: drop-shadow(0 28px 18px rgba(0, 0, 0, 0.55));
}

.hero-tagline {
  max-width: 620px;
  margin: -0.6rem 0 2rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.speed-lines {
  position: absolute;
  top: 8%;
  left: -14%;
  z-index: 2;
  width: 50%;
  height: 22%;
  border-top: 4px solid var(--red);
  border-bottom: 2px solid var(--red);
  opacity: 0.8;
  transform: skew(-35deg);
}

.diagnostic-badge {
  position: absolute;
  right: 0;
  bottom: 4%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: -8px 8px 0 var(--red);
  transform: skew(-4deg);
}

.diagnostic-badge svg {
  width: 40px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
}

.diagnostic-badge strong {
  font-size: 1.25rem;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 1.1rem 1.6rem;
  border-right: 1px solid var(--line);
}

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

.hero-stats strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  text-transform: uppercase;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.73rem;
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 7vw;
}

.about {
  background: #101319;
}

.about-copy {
  max-width: 1100px;
}

.about-copy h2,
.transparency h2,
.impact h2,
.operations h2,
.limits h2,
.work-showcase h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

.about-copy > p:not(.eyebrow) {
  color: #b9bdc2;
}

.about-copy strong {
  color: var(--paper);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.about-facts div {
  padding: 1.4rem 1rem 0 0;
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
}

.about-facts span {
  color: var(--muted);
  font-size: 0.7rem;
}

.transparency {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 10rem);
  color: var(--ink);
  background: var(--yellow);
}

.transparency .eyebrow {
  color: #66580c;
}

.transparency h2 em {
  color: var(--red);
}

.lead-copy {
  max-width: 780px;
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.notice {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  color: var(--paper);
  background: var(--ink);
  border-left: 5px solid var(--red);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.48fr);
  max-width: 1200px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

h2 em {
  color: var(--red);
  font-style: inherit;
}

.section-heading > p:last-child {
  align-self: end;
  margin: 0 0 0.5rem 2rem;
  color: var(--muted);
}

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

.services .eyebrow {
  color: #5e6265;
}

.service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-width: 1200px;
  margin: auto;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1250px;
  margin: auto;
  border-top: 1px solid rgba(9, 11, 14, 0.18);
  border-left: 1px solid rgba(9, 11, 14, 0.18);
}

.catalog-card {
  position: relative;
  min-height: 480px;
  padding: clamp(2rem, 4vw, 3.4rem);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-soft);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 220ms ease, background 220ms ease;
}

.catalog-card:nth-child(4n + 2),
.catalog-card:nth-child(4n + 3) {
  background: #191d22;
}

.catalog-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.catalog-card:hover {
  z-index: 2;
  background: #21262d;
  transform: translateY(-6px);
}

.catalog-card-import,
.catalog-card-import:nth-child(4n) {
  background: linear-gradient(135deg, #10200c, #101713);
  border-top: 5px solid var(--green);
}

.catalog-card-import:hover {
  background: #172b12;
}

.catalog-index {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 4.5rem;
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
}

.catalog-card-import .catalog-index,
.catalog-card-import .catalog-type {
  color: var(--green);
}

.catalog-type {
  display: block;
  margin: 1rem 0 2.5rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-card h3 {
  max-width: 500px;
  margin-bottom: 0.8rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.catalog-card > p {
  max-width: 580px;
  color: #adb2b8;
  font-size: 0.88rem;
}

.catalog-card ul,
.impact-card ul {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.catalog-card li,
.impact-card li {
  position: relative;
  padding: 0.36rem 0 0.36rem 1rem;
  color: #d0d3d6;
  font-size: 0.78rem;
}

.catalog-card li::before,
.impact-card li::before {
  position: absolute;
  top: 0.78rem;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--red);
  transform: rotate(45deg);
}

.catalog-card-import li::before {
  background: var(--green);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-soft);
}

.service-card-orange {
  margin-top: 4.5rem;
  background: #18130f;
}

.service-card::before {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  content: "";
  border: 48px solid currentColor;
  border-radius: 50%;
  opacity: 0.05;
}

.service-card-blue {
  border-top: 5px solid var(--blue);
}

.service-card-orange {
  border-top: 5px solid var(--orange);
}

.service-number {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.service-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 2rem;
  border: 2px solid currentColor;
  place-items: center;
  transform: rotate(45deg);
}

.service-card-blue .service-icon,
.service-card-blue h3 strong {
  color: var(--blue);
}

.service-card-orange .service-icon,
.service-card-orange h3 strong {
  color: var(--orange);
}

.service-icon svg {
  width: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  transform: rotate(-45deg);
}

.service-card h3 {
  max-width: 460px;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-style: italic;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-card h3 strong {
  display: block;
  font-size: 1.15em;
}

.service-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.35rem;
  color: #c9cbd0;
  font-size: 0.9rem;
}

.service-card li::before {
  position: absolute;
  top: 0.93rem;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
}

.service-card-blue li::before {
  color: var(--blue);
}

.service-card-orange li::before {
  color: var(--orange);
}

.imports {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 8rem);
  overflow: hidden;
  background: linear-gradient(120deg, #0b1209, #0a0d0d 58%);
  border-top: 1px solid rgba(101, 189, 39, 0.35);
}

.impact {
  background: #0d1014;
}

.impact-heading,
.operations-heading,
.limits-heading {
  max-width: 1050px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.impact-heading > p:last-child,
.operations-heading > p:last-child,
.limits-heading > p:last-child {
  max-width: 670px;
  color: var(--muted);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-card {
  min-height: 430px;
  padding: clamp(2rem, 4vw, 4rem);
  background: #15191f;
  border: 1px solid var(--line);
}

.impact-card:nth-child(2) {
  margin-top: 4rem;
  background: #191710;
}

.impact-card > span,
.impact-card > small {
  display: block;
}

.impact-card > span {
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.impact-card > strong {
  display: block;
  margin: 1rem 0 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-style: italic;
  line-height: 0.9;
}

.impact-card > small {
  margin-top: 0.8rem;
  color: #777e84;
}

.impact-alert {
  max-width: 1040px;
  margin: 5rem auto 0;
  padding: 2rem clamp(2rem, 5vw, 5rem);
  background: var(--red);
  transform: skew(-2deg);
}

.impact-alert > * {
  transform: skew(2deg);
}

.impact-alert strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  text-transform: uppercase;
}

.impact-alert p {
  max-width: 850px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.operations {
  color: var(--ink);
  background: var(--paper);
}

.operations .eyebrow,
.limits .eyebrow {
  color: #5e6265;
}

.process-list {
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid rgba(9, 11, 14, 0.2);
}

.process-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(9, 11, 14, 0.2);
}

.process-list li > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 3rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.process-list h3 {
  margin-bottom: 0.4rem;
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
  text-transform: uppercase;
}

.process-list p {
  max-width: 720px;
  margin-bottom: 0;
  color: #5e6265;
}

.limits {
  color: var(--ink);
  background: #dcdad3;
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid rgba(9, 11, 14, 0.18);
  border-left: 1px solid rgba(9, 11, 14, 0.18);
}

.limits-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  min-height: 170px;
  padding: 2rem;
  border-right: 1px solid rgba(9, 11, 14, 0.18);
  border-bottom: 1px solid rgba(9, 11, 14, 0.18);
}

.limits-grid article > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 0.7;
}

.limits-grid h3 {
  margin-bottom: 0.4rem;
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  text-transform: uppercase;
}

.limits-grid p {
  margin: 0;
  color: #626568;
  font-size: 0.82rem;
}

.work-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #0c100b, #101319);
}

.work-image {
  position: relative;
  height: min(70vh, 720px);
  overflow: hidden;
  border: 1px solid rgba(101, 189, 39, 0.35);
  box-shadow: -20px 20px 0 rgba(101, 189, 39, 0.12);
  transform: rotate(-2deg);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.work-showcase h2 em {
  color: var(--green);
}

.work-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.05rem;
}

.button-instagram {
  margin-top: 1rem;
  color: var(--paper);
  background: var(--red);
}

.imports-mark {
  position: absolute;
  bottom: -7vw;
  left: -1vw;
  color: transparent;
  font-family: var(--display);
  font-size: 25vw;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(101, 189, 39, 0.09);
  pointer-events: none;
}

.imports-copy,
.imports-features {
  position: relative;
  z-index: 1;
}

.imports-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 8rem);
}

.imports-copy h2 em {
  color: var(--green);
}

.imports-intro {
  max-width: 540px;
  color: #bcc3b9;
  font-size: 1.1rem;
}

.imports-features {
  border-top: 1px solid rgba(101, 189, 39, 0.35);
}

.feature {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(101, 189, 39, 0.25);
}

.feature > span {
  color: var(--green);
  font-family: var(--display);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 800;
}

.feature h3 {
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-style: italic;
  text-transform: uppercase;
}

.feature p {
  max-width: 560px;
  margin-bottom: 0;
  color: #9fa69c;
  font-size: 0.9rem;
}

.proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: 7vw;
  background: #101319;
}

.proof-title {
  align-self: center;
}

.proof-title h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6.2vw, 6.7rem);
}

.proof-title h2 em {
  color: var(--yellow);
}

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

.proof-grid article {
  min-height: 245px;
  padding: 2rem;
  border: 1px solid var(--line);
  transition: background 200ms ease, transform 200ms ease;
}

.proof-grid article:nth-child(even) {
  transform: translateY(2rem);
}

.proof-grid article:hover {
  background: rgba(241, 196, 15, 0.06);
}

.proof-grid article:nth-child(even):hover {
  transform: translateY(calc(2rem - 4px));
}

.proof-grid article:nth-child(odd):hover {
  transform: translateY(-4px);
}

.proof-grid svg {
  width: 42px;
  margin-bottom: 1.4rem;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
}

.proof-grid h3 {
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  text-transform: uppercase;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: 8vw;
  color: var(--ink);
  background: var(--yellow);
}

.contact .eyebrow {
  color: #67580c;
}

.contact-copy h2 {
  max-width: 590px;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.contact-copy h2 em {
  color: var(--red);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-style: normal;
  background: var(--ink);
  box-shadow: 18px 18px 0 rgba(225, 32, 36, 0.85);
  transform: rotate(-1deg);
}

.company-data {
  display: grid;
  gap: 0.35rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(9, 11, 14, 0.22);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.whatsapp-panel {
  align-self: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 18px 18px 0 rgba(225, 32, 36, 0.85);
  transform: rotate(-1deg);
}

.whatsapp-label {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-panel h3 {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
}

.whatsapp-panel > a:not(.button) {
  display: inline-block;
  margin: 1rem 0 1.5rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
}

.whatsapp-panel p {
  max-width: 470px;
  color: var(--muted);
}

.button-whatsapp {
  margin-top: 0.5rem;
  color: var(--ink);
  background: var(--yellow);
}

footer .brand-image {
  width: 170px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding: 2rem;
  color: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  background: #1b2027;
}

.contact-label {
  margin-bottom: 0.55rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-item small {
  margin-top: 0.4rem;
  color: var(--muted);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

footer p {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer > span {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.72fr;
  }

  .hero-visual {
    height: 58vh;
  }

  .proof,
  .contact,
  .transparency {
    grid-template-columns: 1fr;
  }

  .proof-title {
    max-width: 760px;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 64px;
    background: rgba(9, 11, 14, 0.93);
    border-bottom-color: var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.8rem 5vw 1.5rem;
    background: rgba(9, 11, 14, 0.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.85rem 0;
  }

  .nav-cta {
    padding-left: 1rem !important;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 7.5rem;
  }

  .hero-copy {
    padding: 1rem 0 3rem;
  }

  .hero-visual {
    justify-self: start;
    width: 88%;
    height: 580px;
    margin: 0 0 4rem 7%;
  }

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

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .service-grid,
  .imports,
  .work-showcase {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card:nth-child(2) {
    margin-top: 0;
  }

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

  .work-image {
    width: 84%;
    height: 620px;
    margin-left: 8%;
  }

  .section-heading > p:last-child {
    margin: 1.5rem 0 0;
  }

  .service-card-orange {
    margin-top: 0;
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .hero {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .hero-visual {
    width: calc(100% - 1rem);
    height: 470px;
    min-height: 0;
    margin-left: 0.5rem;
  }

  .diagnostic-badge {
    right: 0.5rem;
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .diagnostic-badge svg {
    width: 32px;
  }

  .section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .about-facts,
  .transparency-grid,
  .limits-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 0;
    padding: 2.3rem 1.5rem;
  }

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

  .process-list li > span {
    font-size: 2.2rem;
  }

  .impact-alert {
    margin-right: 0.6rem;
    margin-left: 0.6rem;
  }

  .work-image {
    width: calc(100% - 1rem);
    height: 500px;
    margin-left: 0.5rem;
  }

  .whatsapp-panel {
    margin-right: 0.8rem;
  }

  .proof-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .proof-grid article:nth-child(even) {
    transform: none;
  }

  .contact-panel {
    margin-right: 0.8rem;
  }

  .contact-item {
    min-height: 145px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    text-align: center;
  }

  footer .brand,
  footer > span {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
