﻿/*
Theme Name: Oxoen
Theme URI: https://oxoen.co/
Author: Oxoen
Author URI: https://oxoen.co/
Description: Custom Oxoen WordPress theme converted from the static Oxoen website. Includes homepage, about, cases, contact, services dropdown, responsive red/black styling, stripe texture system, and native WordPress contact form handling.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: oxoen
*/
:root {
  --paper: #f4f4f1;
  --paper-soft: #e7e7e2;
  --ink: #080808;
  --muted: #6b6761;
  --red: #ec1d25;
  --red-dark: #b40f17;
  --line: rgba(8, 8, 8, 0.09);
  --white: #f4f4f0;
  --footer: #11110f;
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(244, 244, 241, 0.91), rgba(244, 244, 241, 0.91)),
    url("assets/oxoen-stripes-wide.jpg") center top / 100vw auto repeat-y,
    radial-gradient(circle at 12% 8%, rgba(236, 29, 37, 0.07), transparent 24rem),
    linear-gradient(rgba(8, 8, 8, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.018) 1px, transparent 1px),
    var(--paper);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    url("assets/oxoen-stripes-wide.jpg"),
    linear-gradient(115deg, transparent 0 42%, rgba(0, 0, 0, 0.018) 42% 43%, transparent 43% 100%);
  background-position:
    center top,
    0 0;
  background-repeat:
    repeat-y,
    repeat;
  background-size:
    100vw auto,
    auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 14px 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 244, 241, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  justify-self: start;
  gap: 3px;
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.brand i {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-radius: 999px;
  background: var(--red);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  min-height: 46px;
  padding: 10px 72px 10px 36px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background-color: var(--ink);
  background-image: none;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, calc(100% - 72px) 100%, 0 100%);
  box-shadow: 0 12px 28px rgba(8, 8, 8, 0.16);
  text-transform: uppercase;
}

.site-nav::after {
  display: none;
}

.site-nav a,
.services-trigger {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.services-trigger {
  border: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.services-trigger i {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  transition: transform 180ms ease;
}

.services-trigger i::before,
.services-trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  content: "";
  transform: translate(-50%, -50%);
}

.services-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.services-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.site-nav a::before,
.services-trigger::before {
  display: none;
}

.site-nav a:hover,
.services-trigger:hover,
.services-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
}

.urgent-link {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(236, 29, 37, 0.22);
}

.site-nav .urgent-link::before {
  display: none;
}

.services-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 40;
  width: min(1180px, calc(100vw - 84px));
  max-height: min(78vh, 720px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(236, 29, 37, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(5, 5, 5, 0.992);
  backdrop-filter: blur(18px);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  visibility: hidden;
}

.services-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  visibility: visible;
}

.services-menu::-webkit-scrollbar {
  width: 8px;
}

.services-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(236, 29, 37, 0.72);
}

.services-menu-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(236, 29, 37, 0.24), transparent 34%),
    rgba(22, 22, 22, 0.96);
}

.services-menu-head span,
.services-category h3 {
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-menu-head span {
  color: var(--red);
}

.services-menu-head strong {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Archivo", sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.026em;
  word-spacing: 0.04em;
}

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

.services-category {
  position: relative;
  display: grid;
  align-content: start;
  gap: 3px;
  min-height: 172px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 52%),
    rgba(18, 18, 18, 0.95);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.services-category::before {
  position: absolute;
  top: 0;
  left: 15px;
  width: 38px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.services-category:hover,
.services-category:focus-visible {
  border-color: rgba(236, 29, 37, 0.62);
  background:
    radial-gradient(circle at 100% 0%, rgba(236, 29, 37, 0.14), transparent 12rem),
    rgba(24, 24, 24, 0.98);
  transform: translateY(-2px);
}

.services-category:hover::before,
.services-category:focus-visible::before {
  width: calc(100% - 30px);
}

.services-category h3 {
  margin: 0 0 8px;
  color: var(--red);
  transition:
    color 160ms ease,
    letter-spacing 160ms ease;
}

.services-category span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.services-category:hover h3,
.services-category:focus-visible h3 {
  color: var(--white);
  letter-spacing: 0.2em;
}

.services-category:focus-visible {
  outline: 2px solid rgba(236, 29, 37, 0.88);
  outline-offset: 3px;
}

.header-cta,
.primary-btn,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 9px 25px rgba(236, 29, 37, 0.25);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 30px;
  font-size: 12px;
  white-space: nowrap;
}

.primary-btn {
  padding: 0 22px;
}

.hero .primary-btn {
  min-height: 48px;
  padding: 0 34px;
  font-size: 12px;
  box-shadow: 0 14px 34px rgba(236, 29, 37, 0.22);
}

.small-btn {
  min-height: 26px;
  padding: 0 14px;
}

.header-cta:hover,
.primary-btn:hover,
.small-btn:hover {
  background: var(--red-dark);
  box-shadow: 0 11px 30px rgba(236, 29, 37, 0.34);
  transform: translateY(-1px);
}

.menu-toggle {
  position: fixed;
  top: 10px;
  right: 22px;
  z-index: 2147483647;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 76px;
  height: 38px;
  border: 0;
  border-radius: 999px 0 0 999px;
  appearance: none;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
  box-shadow:
    0 12px 26px rgba(8, 8, 8, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: none;
  width: 21px;
  height: 2px;
  background: var(--white);
  transform: translateX(-8px);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

@media (min-width: 981px) {
  .menu-toggle {
    display: none !important;
  }
}

.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: auto;
  margin: 0;
  padding: clamp(118px, 16vh, 176px) 42px 72px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(236, 29, 37, 0.055), transparent 28rem),
    radial-gradient(circle at 80% 36%, rgba(8, 8, 8, 0.032), transparent 32rem),
    linear-gradient(rgba(8, 8, 8, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.018) 1px, transparent 1px),
    #f5f6f6;
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  text-align: center;
}

.hero > :not(.hero-canvas, .hero-noise) {
  position: relative;
  z-index: 3;
}

.hero-canvas,
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  display: none;
}

.hero-noise {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.39) 74%, rgba(255, 255, 255, 0.75)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.39), rgba(244, 245, 245, 0.15)),
    radial-gradient(circle at 50% 32%, rgba(236, 29, 37, 0.065), transparent 30rem),
    url("assets/oxoen-stripes-wide.jpg");
  background-position:
    0 0,
    0 0,
    0 0,
    center center;
  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat;
  background-size:
    auto,
    auto,
    auto,
    cover;
  opacity: 0.77;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.eyebrow {
  display: none;
  margin: 0 0 16px;
  color: rgba(8, 8, 8, 0.52);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 1120px;
  margin: 0;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: clamp(64px, 7vw, 124px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.065em;
  overflow-wrap: normal;
  text-shadow: none;
  text-transform: none;
}

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

.hero-line {
  display: block;
}

.hero-line b {
  font-weight: inherit;
}

.hero-copy {
  width: 100%;
  max-width: 780px;
  margin: 30px 0 26px;
  color: #3f444a;
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 700;
  line-height: 1.42;
  text-shadow: none;
}

.hero-signal {
  display: none;
  position: absolute !important;
  right: max(42px, calc((100vw - 1180px) / 2));
  top: 245px;
  gap: 9px;
  width: 190px;
  justify-items: start;
  color: rgba(244, 244, 240, 0.62);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.hero-signal span:first-child {
  color: var(--red);
}

.hero-signal::before {
  width: 76px;
  height: 52px;
  border: 1px solid rgba(244, 244, 240, 0.28);
  content: "";
  background:
    radial-gradient(circle at 55% 45%, rgba(236, 29, 37, 0.46), transparent 58%),
    rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.client-strip {
  width: 100%;
  max-width: none;
  margin-top: clamp(46px, 6vh, 72px);
  padding-top: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-strip p {
  margin: 0 0 25px;
  color: #606770;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.client-logos {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  gap: clamp(52px, 7vw, 118px);
  color: var(--ink);
  opacity: 1;
  animation: client-marquee 28s linear infinite;
  will-change: transform;
}

.client-strip:hover .client-logos {
  animation-play-state: paused;
}

.client-logos span {
  flex: 0 0 auto;
  min-width: clamp(120px, 11vw, 190px);
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.client-logos span:nth-child(even) {
  font-size: 13px;
  letter-spacing: -0.02em;
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.showcase {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 100svh;
  flex-direction: column;
  justify-content: stretch;
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(236, 29, 37, 0.11), transparent 30rem),
    radial-gradient(circle at 78% 44%, rgba(8, 8, 8, 0.055), transparent 34rem),
    linear-gradient(180deg, #f8f8f5 0%, #eeeeea 100%);
}

.showcase::before,
.showcase::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.showcase::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(rgba(8, 8, 8, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.52;
}

.showcase::after {
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(248, 248, 245, 0.9) 0%, rgba(248, 248, 245, 0.58) 28%, rgba(248, 248, 245, 0.08) 50%, transparent 70%),
    radial-gradient(circle at 18% 13%, rgba(236, 29, 37, 0.13), transparent 34rem);
}

.portfolio-head {
  position: absolute;
  top: clamp(56px, 8vh, 92px);
  left: 50%;
  z-index: 5;
  display: grid;
  width: 100%;
  max-width: var(--max);
  margin: 0;
  padding: 0 42px;
  color: var(--ink);
  transform: translateX(-50%);
}

.portfolio-head p,
.portfolio-head span {
  margin: 0;
  color: rgba(8, 8, 8, 0.54);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-head h2 {
  max-width: 1000px;
  margin: 10px 0 14px;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: clamp(50px, 7.8vw, 116px);
  font-weight: 900;
  line-height: 0.82;
  overflow-wrap: anywhere;
  text-shadow: 0 0 28px rgba(248, 248, 245, 0.92);
  text-transform: uppercase;
}

.portfolio-rail {
  position: relative;
  z-index: 2;
  display: flex;
  overflow: hidden;
  flex: 1;
  min-height: 100svh;
  width: 100%;
  padding: 0;
  cursor: grab;
}

.portfolio-rail::before,
.portfolio-rail::after {
  position: absolute;
  top: 0;
  z-index: 6;
  width: min(180px, 16vw);
  height: 100%;
  content: "";
  pointer-events: none;
}

.portfolio-rail::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 248, 245, 0.86), transparent);
}

.portfolio-rail::after {
  right: 0;
  background: linear-gradient(270deg, rgba(238, 238, 234, 0.86), transparent);
}

.portfolio-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  gap: 18px;
  padding: 0;
  animation: portfolio-marquee 42s linear infinite;
  will-change: transform;
}

.portfolio-rail:hover .portfolio-track {
  animation-play-state: paused;
}

.portfolio-card {
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(430px, 34vw, 660px);
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #fdfdfb;
  color: var(--white);
  transform:
    perspective(1000px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.portfolio-card::before,
.portfolio-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.portfolio-card::before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28), rgba(236, 29, 37, 0.22) 13%, transparent 29%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 220ms ease,
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card::after {
  background:
    radial-gradient(circle at var(--mx) var(--my), transparent 0 7%, rgba(255, 255, 255, 0.2) 8%, transparent 13%),
    radial-gradient(circle at var(--mx) var(--my), transparent 0 16%, rgba(236, 29, 37, 0.28) 17%, transparent 23%);
  filter: blur(4px);
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 240ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover {
  border-color: rgba(236, 29, 37, 0.62);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.18),
    0 0 48px rgba(236, 29, 37, 0.15);
}

.portfolio-card:hover::before,
.portfolio-card:hover::after {
  opacity: 1;
  transform: scale(1.28);
}

.portfolio-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.05) brightness(0.9);
  transform: scale(1.02);
  transition:
    filter 260ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover img {
  filter: saturate(1.14) contrast(1.1) brightness(0.98);
  transform: scale(1.08);
}

.portfolio-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 120px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.portfolio-meta span {
  margin: 0;
  color: rgba(244, 244, 240, 0.68);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-meta strong {
  max-width: 290px;
  color: #f4f4f0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 0.88;
  text-align: right;
  text-transform: uppercase;
}

@keyframes portfolio-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.proof-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 42px 68px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 34px 62px;
}

.stats-grid div {
  display: grid;
  gap: 7px;
}

.stats-grid strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(42px, 5vw, 57px);
  font-weight: 900;
  line-height: 0.9;
}

.stats-grid span {
  color: #69645d;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-copy p {
  max-width: 740px;
  margin: 0 0 25px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
}

.services {
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 42px 72px;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading h2,
.cases h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(31px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.section-heading p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.section-heading a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--radius);
  background: rgba(244, 244, 240, 0.52);
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.service-card p {
  max-width: 395px;
  margin: 0;
  color: #5d5851;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.service-card ul {
  display: grid;
  gap: 4px;
  margin: auto 0 0;
  padding: 0;
  color: #4e4943;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.urgent-card {
  border-color: var(--red);
  background: rgba(244, 244, 240, 0.78);
  box-shadow: inset 0 0 0 1px rgba(236, 29, 37, 0.2);
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 13px;
  border-radius: 0 var(--radius) 0 var(--radius);
  background: var(--red);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: 92px 42px 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 18%, rgba(236, 29, 37, 0.08), transparent 28rem),
    linear-gradient(rgba(8, 8, 8, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.018) 1px, transparent 1px),
    #f6f7f6;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.reviews::before {
  position: absolute;
  top: 38px;
  right: -110px;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(236, 29, 37, 0.18);
  border-radius: 50%;
  content: "";
  opacity: 0.8;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.reviews-header p {
  grid-column: 1;
  margin: 0;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reviews-header h2 {
  grid-column: 1;
  max-width: 860px;
  margin: 8px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(43px, 5.4vw, 86px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.058em;
}

.rating-badge {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(8, 8, 8, 0.08);
}

.rating-badge span,
.stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 1px;
}

.rating-badge strong {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.rating-badge em {
  color: #67615c;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.review-board {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
}

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

.review-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 243, 241, 0.72)),
    #f7f7f4;
  box-shadow: 0 18px 48px rgba(8, 8, 8, 0.055);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.review-card::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 3px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.review-card::after {
  position: absolute;
  right: -24px;
  bottom: -40px;
  color: rgba(236, 29, 37, 0.08);
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 190px;
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(236, 29, 37, 0.42);
  box-shadow: 0 24px 70px rgba(8, 8, 8, 0.1);
  transform: translateY(-4px);
}

.review-card:hover::before {
  width: calc(100% - 48px);
}

.review-card-featured {
  min-height: 100%;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 100% 0%, rgba(236, 29, 37, 0.28), transparent 18rem),
    linear-gradient(145deg, #171717, #070707 72%);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(8, 8, 8, 0.22);
}

.review-card-featured::after {
  color: rgba(236, 29, 37, 0.2);
  font-size: 260px;
}

.review-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(236, 29, 37, 0.26);
}

.review-card h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.review-topline span {
  display: block;
  margin-top: 3px;
  color: #716c66;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card-featured .review-topline span {
  color: rgba(244, 244, 240, 0.56);
}

.review-card .stars {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #58534e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.46;
}

.review-card-featured p {
  max-width: 620px;
  color: rgba(244, 244, 240, 0.88);
  font-family: "Archivo", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

@keyframes ambient-breathe {
  from {
    opacity: 0.44;
    transform: translate(-53%, -47%) rotate(-11deg) scale(0.94);
  }

  to {
    opacity: 0.72;
    transform: translate(-47%, -43%) rotate(7deg) scale(1.08);
  }
}

@keyframes ambient-tilt {
  from {
    transform: translate(-53%, -51%) rotate(-13deg) scale(0.96);
  }

  to {
    transform: translate(-46%, -47%) rotate(10deg) scale(1.07);
  }
}

@keyframes ambient-slide {
  from {
    transform: translate(-57%, -50%) rotate(5deg) scaleX(0.94);
  }

  to {
    transform: translate(-43%, -46%) rotate(-9deg) scaleX(1.08);
  }
}

@keyframes ambient-scan {
  from {
    transform: translate(-52%, -47%) rotate(-7deg);
  }

  to {
    transform: translate(-48%, -47%) rotate(-7deg);
  }
}

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

.cases {
  max-width: var(--max);
  margin: 0 auto;
  padding: 57px 42px 80px;
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 32px;
  margin-top: 38px;
  text-align: left;
}

.case-card h3 {
  margin: 18px 0 7px;
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.case-card p {
  margin: 0;
  color: #3d3934;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.case-image {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 420px;
  align-items: flex-start;
  padding: 42px;
  border-radius: var(--radius);
  background: #ddd;
  isolation: isolate;
}

.case-image::before,
.case-image::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.case-image span {
  max-width: 300px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 0.94;
}

.case-one {
  background:
    linear-gradient(90deg, rgba(155, 35, 28, 0.85) 0 70px, transparent 70px),
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    #d8d3c8;
}

.case-one::before {
  right: 76px;
  bottom: -24px;
  width: 120px;
  height: 470px;
  border-radius: 80px;
  background: rgba(8, 8, 8, 0.22);
  filter: blur(9px);
  transform: rotate(-12deg);
}

.case-one::after {
  right: 95px;
  bottom: 20px;
  width: 78px;
  height: 360px;
  border-radius: 80px;
  background: linear-gradient(#ededeb, #b9b9b3);
  transform: rotate(-12deg);
}

.case-two {
  justify-content: flex-end;
  background:
    radial-gradient(circle at 76% 54%, rgba(236, 29, 37, 0.9), transparent 0.3rem),
    radial-gradient(circle at 70% 44%, rgba(0, 0, 0, 0.15), transparent 16rem),
    linear-gradient(125deg, #eeece3, #cfd4d0);
}

.case-two::before {
  right: 96px;
  bottom: -65px;
  width: 165px;
  height: 335px;
  border-radius: 42px;
  background: #0d0d0d;
  transform: rotate(-18deg);
}

.case-two::after {
  right: 116px;
  bottom: -38px;
  width: 124px;
  height: 262px;
  border-radius: 31px;
  background:
    linear-gradient(145deg, rgba(236, 29, 37, 0.7), transparent 55%),
    #f1f1ee;
  transform: rotate(-18deg);
}

.case-three {
  align-items: flex-end;
  background:
    linear-gradient(90deg, #202020 0 30%, transparent 30%),
    linear-gradient(160deg, #ededeb, #c5d5db);
}

.case-three::before {
  left: 76px;
  bottom: -35px;
  width: 530px;
  height: 290px;
  border: 15px solid #080808;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(90deg, rgba(236, 29, 37, 0.11) 0 26%, transparent 26%),
    #f5f5f2;
}

.case-three::after {
  left: 128px;
  bottom: 90px;
  width: 330px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 30%, #dcdcd7 30%);
  box-shadow:
    0 42px 0 #e4e4df,
    0 84px 0 #e4e4df;
}

.case-four {
  align-items: flex-end;
  background:
    linear-gradient(rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.12)),
    radial-gradient(circle at 55% 48%, rgba(236, 29, 37, 0.5), transparent 18rem),
    #1b1b18;
  color: var(--white);
}

.case-four::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 100%;
}

.case-four::after {
  top: 96px;
  left: 50%;
  width: 410px;
  height: 245px;
  border-radius: 4px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    #2b0508;
  filter: blur(6px);
  transform: translateX(-50%) rotate(8deg);
}

.tags {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.tags b {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(244, 244, 240, 0.94);
  color: #181512;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.center-btn {
  margin: 50px auto 0;
}

.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 42px 84px;
  border-top: 1px solid var(--line);
}

.faq-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.faq-heading p {
  margin: 0;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

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

.faq-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(244, 244, 240, 0.62)),
    #f6f6f2;
}

.faq-grid h3 {
  margin: 0 0 13px;
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.08;
}

.faq-grid p {
  margin: 0;
  color: #4d4944;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.48;
}

.about-main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: calc(100svh - 75px);
  align-content: center;
  justify-items: center;
  padding: clamp(116px, 15vh, 178px) 42px 78px;
  text-align: center;
  isolation: isolate;
}

.about-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(244, 244, 241, 0.88));
  content: "";
  pointer-events: none;
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(244, 244, 241, 0.91), rgba(244, 244, 241, 0.91)),
    url("assets/oxoen-stripes-wide.jpg") center top / 100vw auto repeat-y,
    radial-gradient(circle at 50% 16%, rgba(236, 29, 37, 0.08), transparent 34rem),
    linear-gradient(rgba(8, 8, 8, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.018) 1px, transparent 1px),
    #f6f7f6;
  background-size: auto, 100vw auto, auto, 36px 36px, 36px 36px, auto;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-hero > :not(.about-hero-pattern) {
  position: relative;
  z-index: 2;
}

.about-kicker,
.about-section-head p,
.about-statement > div p,
.about-standards > div p {
  margin: 0;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 1220px;
  margin: 14px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(64px, 8.8vw, 148px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.072em;
  text-transform: uppercase;
}

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

.about-hero-copy {
  max-width: 875px;
  margin: 28px 0 0;
  color: #464b52;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.38;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.about-hero .primary-btn {
  min-height: 52px;
  padding: 0 34px;
  font-size: 12px;
  box-shadow: 0 16px 38px rgba(236, 29, 37, 0.24);
}

.about-text-link {
  position: relative;
  color: #141414;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.about-text-link:hover::after {
  transform: scaleX(0.55);
}

.about-hero-proof {
  display: grid;
  width: min(1080px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(54px, 8vh, 86px);
}

.about-hero-proof div {
  display: grid;
  min-height: 124px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  text-align: left;
}

.about-hero-proof strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.about-hero-proof span {
  color: #615d56;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-statement,
.about-process,
.about-scope,
.about-standards {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 42px;
}

.about-statement {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.about-statement h2,
.about-section-head h2,
.about-standards h2 {
  margin: 10px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(42px, 6.2vw, 94px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.062em;
  text-transform: uppercase;
}

.about-statement article {
  display: grid;
  gap: 22px;
  align-content: start;
}

.about-statement article p {
  max-width: 820px;
  margin: 0;
  color: #34312d;
  font-size: clamp(19px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.036em;
}

.about-image-system {
  display: grid;
  grid-template-columns: 1.22fr 0.89fr 0.89fr;
  gap: 16px;
  max-width: none;
  padding: 0 42px 96px;
}

.about-image-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  background: #111;
  color: var(--white);
}

.about-image-card-large {
  min-height: 620px;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05) brightness(0.82);
  transform: scale(1.01);
  transition:
    filter 260ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 18% 16%, rgba(236, 29, 37, 0.26), transparent 22rem);
  content: "";
}

.about-image-card:hover img {
  filter: saturate(1.08) contrast(1.08) brightness(0.92);
  transform: scale(1.06);
}

.about-image-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.about-image-card span {
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-image-card strong {
  max-width: 580px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.about-pillars {
  padding: 96px 42px 104px;
  background:
    radial-gradient(circle at 14% 12%, rgba(236, 29, 37, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 58%, rgba(236, 29, 37, 0.11), transparent 32rem),
    #080808;
  color: var(--white);
}

.about-section-head {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 0.52fr 1.48fr;
  gap: 44px;
  align-items: end;
  margin: 0 auto 42px;
}

.about-pillars .about-section-head h2 {
  color: var(--white);
}

.about-pillar-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.about-pillar-grid article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.about-pillar-grid article::after {
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(236, 29, 37, 0.42);
  border-radius: 50%;
  content: "";
}

.about-pillar-grid article:hover {
  border-color: rgba(236, 29, 37, 0.68);
  background:
    radial-gradient(circle at 96% 0%, rgba(236, 29, 37, 0.18), transparent 16rem),
    rgba(255, 255, 255, 0.055);
  transform: translateY(-4px);
}

.about-pillar-grid span,
.about-process-grid span,
.about-standard-list span {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-pillar-grid h3,
.about-process-grid h3,
.about-scope-grid h3,
.about-standard-list h3 {
  margin: 34px 0 14px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.044em;
  text-transform: uppercase;
}

.about-pillar-grid p,
.about-process-grid p,
.about-standard-list p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

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

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

.about-process-grid article {
  position: relative;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(244, 244, 240, 0.44)),
    #f6f6f2;
}

.about-process-grid article::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 3px;
  background: var(--red);
  content: "";
}

.about-process-grid h3,
.about-scope-grid h3,
.about-standard-list h3 {
  color: var(--ink);
}

.about-process-grid p,
.about-standard-list p {
  color: #504b45;
}

.about-scope {
  padding-top: 78px;
}

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

.about-scope-grid article {
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background: rgba(244, 244, 240, 0.58);
}

.about-scope-grid h3 {
  margin-top: 0;
}

.about-scope-grid ul {
  display: grid;
  gap: 9px;
  margin: 44px 0 0;
  padding: 0;
  color: #46413c;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

.about-scope-grid li {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.about-standards {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding-top: 32px;
}

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

.about-standard-list article {
  padding: 24px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(236, 29, 37, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.42);
}

.about-standard-list h3 {
  margin-top: 16px;
  font-size: clamp(22px, 2.3vw, 30px);
}

.cases-main {
  overflow: hidden;
}

.cases-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: calc(100svh - 75px);
  align-content: center;
  justify-items: center;
  padding: clamp(116px, 15vh, 178px) 42px 82px;
  text-align: center;
  isolation: isolate;
}

.cases-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(244, 244, 241, 0.88));
  content: "";
  pointer-events: none;
}

.cases-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(244, 244, 241, 0.91), rgba(244, 244, 241, 0.91)),
    url("assets/oxoen-stripes-wide.jpg") center top / 100vw auto repeat-y,
    radial-gradient(circle at 50% 16%, rgba(236, 29, 37, 0.085), transparent 34rem),
    linear-gradient(rgba(8, 8, 8, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.018) 1px, transparent 1px),
    #f6f7f6;
  background-size: auto, 100vw auto, auto, 36px 36px, 36px 36px, auto;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cases-hero > :not(.cases-hero-pattern) {
  position: relative;
  z-index: 2;
}

.cases-kicker,
.case-filter-head p,
.case-directory-head p,
.case-method-head p {
  margin: 0;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cases-hero h1 {
  max-width: 1260px;
  margin: 14px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(64px, 8.2vw, 140px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.072em;
  text-transform: uppercase;
}

.cases-hero-copy {
  max-width: 860px;
  margin: 28px 0 0;
  color: #464b52;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.38;
}

.cases-hero-proof {
  display: grid;
  width: min(940px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(52px, 7vh, 76px);
}

.cases-hero-proof div {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  text-align: left;
}

.cases-hero-proof strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.cases-hero-proof span {
  color: #615d56;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-filter-section {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
  margin: 0 auto;
  padding: 46px 42px 34px;
  border-top: 1px solid var(--line);
}

.case-filter-head span {
  display: block;
  margin-top: 8px;
  color: #66615b;
  font-size: 14px;
  font-weight: 800;
}

.case-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.case-filter {
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.case-filter:hover,
.case-filter.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.case-feature {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 42px 84px;
}

.case-feature article {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #080808;
  color: var(--white);
}

.case-feature-image {
  position: relative;
  overflow: hidden;
}

.case-feature-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 45%, rgba(8, 8, 8, 0.42)),
    radial-gradient(circle at 20% 18%, rgba(236, 29, 37, 0.24), transparent 26rem);
  content: "";
}

.case-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08) brightness(0.84);
  transform: scale(1.02);
}

.case-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.case-feature-copy > p:first-child {
  margin: 0;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-feature-copy h2 {
  margin: 12px 0 8px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.case-feature-copy > span {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-feature-copy > p:last-of-type {
  max-width: 560px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.case-feature-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.case-feature-metrics div {
  display: grid;
  gap: 18px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.case-feature-metrics strong {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 0.9;
}

.case-feature-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-directory {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 42px 96px;
}

.case-directory-head,
.case-method-head {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.case-directory-head h2,
.case-method-head h2 {
  max-width: 970px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(42px, 5.8vw, 88px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.062em;
  text-transform: uppercase;
}

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

.case-directory-card {
  display: grid;
  overflow: hidden;
  min-height: 590px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(244, 244, 240, 0.45)),
    #f6f6f2;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.case-directory-card.is-hidden {
  display: none;
}

.case-directory-card:hover {
  border-color: rgba(236, 29, 37, 0.58);
  box-shadow: 0 24px 70px rgba(8, 8, 8, 0.1);
  transform: translateY(-4px);
}

.case-directory-card figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
}

.case-directory-card figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 20% 18%, rgba(236, 29, 37, 0.22), transparent 18rem);
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.case-directory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04) brightness(0.9);
  transform: scale(1.02);
  transition:
    filter 240ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-directory-card:hover img {
  filter: saturate(1.12) contrast(1.08) brightness(0.96);
  transform: scale(1.08);
}

.case-card-body {
  display: grid;
  align-content: start;
  padding: 24px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.case-tags span {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(236, 29, 37, 0.1);
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card-body h3 {
  margin: 0 0 12px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.056em;
  text-transform: uppercase;
}

.case-card-body p {
  margin: 0;
  color: #4f4a44;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.case-card-body strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-method {
  padding: 96px 42px 104px;
  background:
    radial-gradient(circle at 16% 18%, rgba(236, 29, 37, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 58%, rgba(236, 29, 37, 0.12), transparent 32rem),
    #080808;
  color: var(--white);
}

.case-method-head,
.case-method-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.case-method-head h2 {
  color: var(--white);
}

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

.case-method-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.case-method-grid span {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.case-method-grid h3 {
  margin: 38px 0 14px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.case-method-grid p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-main {
  overflow: hidden;
}

.contact-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: calc(100svh - 75px);
  align-content: center;
  justify-items: center;
  padding: clamp(116px, 15vh, 178px) 42px 82px;
  text-align: center;
  isolation: isolate;
}

.contact-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(244, 244, 241, 0.88));
  content: "";
  pointer-events: none;
}

.contact-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(244, 244, 241, 0.91), rgba(244, 244, 241, 0.91)),
    url("assets/oxoen-stripes-wide.jpg") center top / 100vw auto repeat-y,
    radial-gradient(circle at 50% 16%, rgba(236, 29, 37, 0.085), transparent 34rem),
    linear-gradient(rgba(8, 8, 8, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.018) 1px, transparent 1px),
    #f6f7f6;
  background-size: auto, 100vw auto, auto, 36px 36px, 36px 36px, auto;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.contact-hero > :not(.contact-hero-pattern) {
  position: relative;
  z-index: 2;
}

.contact-kicker,
.contact-intake-copy > p,
.contact-section-head p,
.contact-method-head p {
  margin: 0;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 1240px;
  margin: 14px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(64px, 8.2vw, 140px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.072em;
  text-transform: uppercase;
}

.contact-hero-copy {
  max-width: 860px;
  margin: 28px 0 0;
  color: #464b52;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.38;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.contact-hero .primary-btn {
  min-height: 52px;
  padding: 0 34px;
  font-size: 12px;
  box-shadow: 0 16px 38px rgba(236, 29, 37, 0.24);
}

.contact-text-link {
  position: relative;
  color: #141414;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.contact-text-link:hover::after {
  transform: scaleX(0.55);
}

.contact-hero-proof {
  display: grid;
  width: min(940px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(52px, 7vh, 76px);
}

.contact-hero-proof div {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  text-align: left;
}

.contact-hero-proof strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact-hero-proof span {
  color: #615d56;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-intake {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
  margin: 0 auto;
  padding: 88px 42px 96px;
  border-top: 1px solid var(--line);
}

.contact-intake-copy {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 18px;
}

.contact-intake-copy h2,
.contact-section-head h2,
.contact-method-head h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(42px, 5.8vw, 88px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.062em;
  text-transform: uppercase;
}

.contact-intake-copy span {
  max-width: 520px;
  color: #4d4944;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.48;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-direct a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-direct a:hover {
  border-color: rgba(236, 29, 37, 0.54);
  color: var(--red);
  transform: translateY(-2px);
}

.contact-direct small {
  color: #69645d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3.6vw, 42px);
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(244, 244, 240, 0.56)),
    #f7f7f4;
  box-shadow: 0 24px 80px rgba(8, 8, 8, 0.08);
}

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

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.contact-form span,
.contact-form legend {
  color: #4c4741;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  outline: none;
  padding: 0 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
  padding: 14px;
  line-height: 1.45;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(236, 29, 37, 0.11);
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-checks label {
  display: inline-flex;
  cursor: pointer;
}

.contact-checks input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-checks span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.contact-checks input:checked + span {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.form-message {
  grid-column: 1 / -1;
}

.contact-submit {
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  cursor: pointer;
}

.contact-routes,
.contact-faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 42px 96px;
}

.contact-section-head {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

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

.contact-route-grid article,
.contact-faq-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(244, 244, 240, 0.44)),
    #f6f6f2;
}

.contact-route-grid span {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-route-grid h3,
.contact-faq-grid h3 {
  margin: 34px 0 14px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.044em;
  text-transform: uppercase;
}

.contact-faq-grid h3 {
  margin-top: 0;
}

.contact-route-grid p,
.contact-faq-grid p {
  max-width: 360px;
  margin: 0;
  color: #504b45;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-method {
  padding: 96px 42px 104px;
  background:
    radial-gradient(circle at 16% 18%, rgba(236, 29, 37, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 58%, rgba(236, 29, 37, 0.12), transparent 32rem),
    #080808;
  color: var(--white);
}

.contact-method-head,
.contact-method-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.contact-method-head {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.contact-method-head h2 {
  color: var(--white);
}

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

.contact-method-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.contact-method-grid span {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-method-grid h3 {
  margin: 38px 0 14px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.contact-method-grid p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.service-detail-main {
  overflow: hidden;
}

.service-detail-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: calc(100svh - 75px);
  align-content: center;
  justify-items: center;
  padding: clamp(116px, 15vh, 178px) 42px 78px;
  text-align: center;
  isolation: isolate;
}

.service-detail-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(244, 244, 241, 0.88));
  content: "";
  pointer-events: none;
}

.service-detail-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(244, 244, 241, 0.91), rgba(244, 244, 241, 0.91)),
    url("assets/oxoen-stripes-wide.jpg") center top / 100vw auto repeat-y,
    radial-gradient(circle at 50% 16%, rgba(236, 29, 37, 0.085), transparent 34rem),
    linear-gradient(rgba(8, 8, 8, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.018) 1px, transparent 1px),
    #f6f7f6;
  background-size: auto, 100vw auto, auto, 36px 36px, 36px 36px, auto;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.service-detail-hero > :not(.service-detail-pattern) {
  position: relative;
  z-index: 2;
}

.service-detail-kicker,
.service-detail-overview > div p,
.service-detail-section-head p,
.service-related-grid span {
  margin: 0;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-detail-hero h1 {
  max-width: 1240px;
  margin: 14px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(58px, 8.2vw, 136px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.072em;
  text-transform: uppercase;
}

.service-detail-copy {
  max-width: 850px;
  margin: 28px 0 0;
  color: #464b52;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.38;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.service-detail-hero .primary-btn {
  min-height: 52px;
  padding: 0 34px;
  font-size: 12px;
  box-shadow: 0 16px 38px rgba(236, 29, 37, 0.24);
}

.service-detail-text-link {
  position: relative;
  color: #141414;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-detail-text-link:hover::after {
  transform: scaleX(0.55);
}

.service-detail-proof {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(52px, 7vh, 76px);
}

.service-detail-proof div {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  text-align: left;
}

.service-detail-proof strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.service-detail-proof span {
  color: #615d56;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-overview,
.service-detail-outcomes,
.service-related {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 42px;
}

.service-detail-overview {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.service-detail-overview h2,
.service-detail-section-head h2 {
  margin: 10px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(42px, 6.2vw, 94px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.062em;
  text-transform: uppercase;
}

.service-detail-overview article {
  display: grid;
  gap: 26px;
  align-content: start;
}

.service-detail-overview article p {
  max-width: 820px;
  margin: 0;
  color: #34312d;
  font-size: clamp(19px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.036em;
}

.service-detail-overview ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-overview li {
  min-height: 44px;
  padding: 13px 14px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(244, 244, 240, 0.42)),
    rgba(255, 255, 255, 0.38);
  color: #34312d;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-detail-section-head {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

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

.service-outcome-grid article,
.service-related-grid a {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(244, 244, 240, 0.46)),
    rgba(255, 255, 255, 0.42);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.service-outcome-grid article::before,
.service-related-grid a::before {
  position: absolute;
  top: 0;
  left: 26px;
  width: 48px;
  height: 3px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.service-outcome-grid article:hover,
.service-related-grid a:hover {
  border-color: rgba(236, 29, 37, 0.5);
  background:
    radial-gradient(circle at 100% 0%, rgba(236, 29, 37, 0.1), transparent 15rem),
    rgba(255, 255, 255, 0.56);
  transform: translateY(-3px);
}

.service-outcome-grid article:hover::before,
.service-related-grid a:hover::before {
  width: calc(100% - 52px);
}

.service-outcome-grid h3,
.service-process-grid h3 {
  margin: 42px 0 14px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.044em;
  text-transform: uppercase;
}

.service-outcome-grid p,
.service-process-grid p {
  max-width: 380px;
  margin: 0;
  color: #504b45;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.service-detail-process {
  padding: 96px 42px 104px;
  background:
    radial-gradient(circle at 16% 18%, rgba(236, 29, 37, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 58%, rgba(236, 29, 37, 0.12), transparent 32rem),
    #080808;
  color: var(--white);
}

.service-detail-process .service-detail-section-head,
.service-process-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.service-detail-process .service-detail-section-head h2 {
  color: var(--white);
}

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

.service-process-grid article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.service-process-grid span {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-process-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.elementor-site-main {
  min-height: 60vh;
  overflow: hidden;
  background: var(--paper);
}

.elementor-entry-content {
  margin: 0;
}

.elementor-ready-page .entry-title {
  display: none;
}

.elementor-ready-page .elementor-section,
.elementor-ready-page .e-con {
  max-width: 100%;
}

.service-related {
  padding-top: 82px;
}

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

.service-related-grid a {
  display: grid;
  align-content: space-between;
  color: var(--ink);
}

.service-related-grid strong {
  margin-top: 58px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 88px;
  padding: 78px 42px 26px;
  background:
    linear-gradient(120deg, rgba(236, 29, 37, 0.1), transparent 36%),
    var(--footer);
  color: var(--white);
}

.footer-cta span,
.footer-links h3 {
  color: #aba7a0;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 620px;
  margin: 14px 0 22px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links h3 {
  margin: 0 0 9px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 800;
}

.footer-links a:hover,
.legal a:hover {
  color: var(--red);
}

.legal {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #aba7a0;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal div {
  display: flex;
  gap: 20px;
}

.legal p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    padding: 14px 22px;
  }

  .site-header::after {
    display: none;
  }

  .menu-toggle {
    position: fixed !important;
    top: 10px !important;
    right: 22px !important;
    z-index: 2147483647 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 76px !important;
    height: 38px !important;
    border: 0;
    border-radius: 999px 0 0 999px;
    appearance: none;
    background-color: var(--ink) !important;
    clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow:
      0 12px 26px rgba(8, 8, 8, 0.16),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition:
      background 180ms ease,
      transform 180ms ease;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--white);
    transform: translateX(-8px);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] {
    background-color: var(--red);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-8px, 4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-8px, -4px) rotate(-45deg);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    right: 22px;
    left: 22px;
    display: grid;
    width: auto;
    max-width: 420px;
    justify-self: end;
    gap: 4px;
    padding: 18px 68px 18px 22px;
    border: 0;
    border-radius: 28px 0 0 28px;
    background: var(--ink);
    clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
    color: var(--white);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  }

  .site-nav.is-open::after {
    display: none;
  }

  .site-nav.is-open a,
  .site-nav.is-open .services-trigger {
    justify-content: flex-start;
    min-height: 38px;
    padding: 0 10px;
    color: inherit;
  }

  .site-nav.is-open a::before,
  .site-nav.is-open .services-trigger::before {
    display: none;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open .services-trigger:hover,
  .site-nav.is-open .services-trigger[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open .urgent-link {
    width: fit-content;
    min-height: 30px;
    margin-top: 6px;
    padding: 0 12px;
    color: var(--white);
  }

  .services-menu {
    position: fixed;
    top: 76px;
    right: 22px;
    left: 22px;
    width: auto;
    max-height: calc(100svh - 96px);
    padding: 14px;
    border-radius: 16px;
    transform: translateY(-8px) scale(0.985);
  }

  .services-menu.is-open {
    transform: translateY(0) scale(1);
  }

  .services-menu-head {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

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

  .services-category {
    min-height: auto;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(96px, 13vh, 132px);
    padding-bottom: 62px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: clamp(64px, 10vw, 90px);
  }

  .hero-signal {
    display: none;
  }

  .client-logos {
    gap: clamp(38px, 7vw, 72px);
  }

  .client-logos span {
    min-width: clamp(105px, 18vw, 160px);
  }

  .showcase {
    min-height: 94svh;
    padding: 0;
  }

  .portfolio-head h2 {
    max-width: 780px;
  }

  .portfolio-card {
    flex-basis: clamp(360px, 58vw, 560px);
  }

  .proof-section,
  .service-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-section {
    gap: 42px;
  }

  .reviews {
    padding: 74px 22px 78px;
  }

  .reviews-header,
  .review-board {
    grid-template-columns: 1fr;
  }

  .rating-badge {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    width: fit-content;
  }

  .faq-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

  .site-footer {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .proof-section,
  .services,
  .cases,
  .faq,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header::after {
    display: none;
  }

  .menu-toggle {
    top: 10px !important;
    right: 18px !important;
    display: flex !important;
    width: 70px !important;
    height: 36px !important;
    clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
  }

  .menu-toggle span {
    transform: translateX(-7px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-7px, 4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-7px, -4px) rotate(-45deg);
  }

  .site-nav.is-open {
    right: 18px;
    left: 18px;
    max-width: none;
    padding: 18px 56px 18px 20px;
    border-radius: 24px 0 0 24px;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  }

  .services-menu {
    top: 68px;
    right: 18px;
    left: 18px;
    max-height: calc(100svh - 82px);
    padding: 12px;
    border-radius: 14px;
  }

  .services-menu-head strong {
    font-size: 22px;
  }

  .services-menu-grid {
    grid-template-columns: 1fr;
  }

  .services-category {
    padding: 14px;
  }

  .services-category span {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-right: 18px;
    padding-bottom: 46px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .hero-copy {
    max-width: 335px;
    margin-top: 22px;
    font-size: 14px;
  }

  .client-strip {
    margin-top: 40px;
    padding-top: 0;
  }

  .client-logos {
    gap: 34px;
    animation-duration: 24s;
  }

  .client-logos span {
    min-width: 116px;
    font-size: 13px;
  }

  .hero-line:first-child em,
  .hero-line b {
    display: block;
  }

  .showcase {
    min-height: 100svh;
    padding: 0;
  }

  .portfolio-head {
    top: 54px;
    padding: 0 18px;
  }

  .portfolio-head h2 {
    max-width: 340px;
    font-size: clamp(38px, 11.5vw, 45px);
    line-height: 0.9;
  }

  .portfolio-track {
    gap: 12px;
    padding: 0;
    animation-duration: 34s;
  }

  .portfolio-card {
    flex-basis: min(82vw, 340px);
  }

  .portfolio-meta {
    display: grid;
    align-items: end;
    gap: 10px;
  }

  .portfolio-meta strong {
    font-size: 26px;
    text-align: left;
  }

  .proof-section {
    padding-top: 54px;
  }

  .stats-grid {
    gap: 28px 18px;
  }

  .service-card {
    min-height: 280px;
    padding: 22px;
  }

  .reviews {
    padding: 58px 18px 62px;
  }

  .reviews-header {
    gap: 24px;
  }

  .reviews-header h2 {
    font-size: clamp(38px, 11.4vw, 52px);
    line-height: 0.92;
  }

  .rating-badge {
    width: 100%;
    min-width: 0;
  }

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

  .review-card,
  .review-card-featured {
    min-height: auto;
    padding: 22px;
  }

  .review-card-featured p {
    font-size: clamp(24px, 8vw, 32px);
  }

  .faq {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .faq-heading h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

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

  .faq-grid article {
    min-height: auto;
    padding: 22px;
  }

  .case-image {
    min-height: 300px;
    padding: 26px;
  }

  .case-card h3 {
    font-size: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .legal {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 980px) {
  .about-hero {
    min-height: auto;
    padding-top: clamp(102px, 14vh, 138px);
  }

  .about-hero h1 {
    max-width: 880px;
    font-size: clamp(58px, 11vw, 96px);
  }

  .about-hero-proof,
  .about-pillar-grid,
  .about-process-grid,
  .about-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-statement,
  .about-section-head,
  .about-standards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-system {
    grid-template-columns: 1fr;
  }

  .about-image-card,
  .about-image-card-large {
    min-height: 470px;
  }

  .about-pillar-grid article {
    min-height: 300px;
  }

  .cases-hero {
    min-height: auto;
    padding-top: clamp(102px, 14vh, 138px);
  }

  .cases-hero h1 {
    max-width: 900px;
    font-size: clamp(58px, 11vw, 96px);
  }

  .cases-hero-proof,
  .case-directory-grid,
  .case-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-filter-section,
  .case-feature article,
  .case-directory-head,
  .case-method-head {
    grid-template-columns: 1fr;
  }

  .case-filter-bar {
    justify-content: flex-start;
  }

  .case-feature article {
    min-height: auto;
  }

  .case-feature-image {
    min-height: 480px;
  }

  .contact-hero {
    min-height: auto;
    padding-top: clamp(102px, 14vh, 138px);
  }

  .contact-hero h1 {
    max-width: 900px;
    font-size: clamp(58px, 11vw, 96px);
  }

  .contact-hero-proof,
  .contact-route-grid,
  .contact-faq-grid,
  .contact-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-intake,
  .contact-section-head,
  .contact-method-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-intake-copy {
    position: static;
  }

  .service-detail-hero {
    min-height: auto;
    padding-top: clamp(102px, 14vh, 138px);
  }

  .service-detail-hero h1 {
    max-width: 900px;
    font-size: clamp(54px, 10.5vw, 94px);
  }

  .service-detail-proof,
  .service-outcome-grid,
  .service-process-grid,
  .service-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-overview,
  .service-detail-section-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail-overview ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .about-hero,
  .about-statement,
  .about-process,
  .about-scope,
  .about-standards,
  .about-pillars,
  .about-image-system {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-hero {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .about-hero h1 {
    font-size: clamp(48px, 13.4vw, 60px);
    line-height: 0.9;
    letter-spacing: -0.058em;
  }

  .about-hero-copy {
    max-width: 345px;
    font-size: 14px;
  }

  .about-hero-actions {
    gap: 14px;
  }

  .about-hero .primary-btn {
    width: 100%;
    max-width: 306px;
  }

  .about-hero-proof,
  .about-pillar-grid,
  .about-process-grid,
  .about-scope-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-proof {
    margin-top: 42px;
  }

  .about-hero-proof div {
    min-height: 100px;
  }

  .about-statement,
  .about-process,
  .about-scope,
  .about-standards {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-statement h2,
  .about-section-head h2,
  .about-standards h2 {
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 0.9;
  }

  .about-statement article p {
    font-size: 22px;
    line-height: 1.05;
  }

  .about-image-system {
    gap: 12px;
    padding-bottom: 62px;
  }

  .about-image-card,
  .about-image-card-large {
    min-height: 360px;
  }

  .about-image-card div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .about-image-card strong {
    font-size: 28px;
  }

  .about-pillars {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .about-section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .about-pillar-grid article,
  .about-process-grid article,
  .about-scope-grid article {
    min-height: auto;
    padding: 22px;
  }

  .about-scope-grid ul {
    margin-top: 32px;
  }

  .cases-hero,
  .case-filter-section,
  .case-feature,
  .case-directory,
  .case-method {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cases-hero {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .cases-hero h1 {
    font-size: clamp(46px, 13vw, 58px);
    line-height: 0.9;
    letter-spacing: -0.058em;
  }

  .cases-hero-copy {
    max-width: 345px;
    font-size: 14px;
  }

  .cases-hero-proof,
  .case-directory-grid,
  .case-method-grid,
  .case-feature-metrics {
    grid-template-columns: 1fr;
  }

  .cases-hero-proof {
    margin-top: 42px;
  }

  .cases-hero-proof div,
  .case-feature-metrics div {
    min-height: 100px;
  }

  .case-filter-section {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .case-filter-bar {
    gap: 7px;
  }

  .case-filter {
    min-height: 32px;
    padding: 0 12px;
    font-size: 9px;
  }

  .case-feature {
    padding-top: 14px;
    padding-bottom: 58px;
  }

  .case-feature-image {
    min-height: 330px;
  }

  .case-feature-copy {
    padding: 26px;
  }

  .case-feature-copy h2,
  .case-directory-head h2,
  .case-method-head h2 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 0.9;
  }

  .case-directory {
    padding-bottom: 62px;
  }

  .case-directory-head,
  .case-method-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .case-directory-card {
    min-height: auto;
  }

  .case-directory-card figure {
    min-height: 260px;
  }

  .case-card-body {
    padding: 22px;
  }

  .case-method {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .case-method-grid article {
    min-height: auto;
    padding: 22px;
  }

  .contact-hero,
  .contact-intake,
  .contact-routes,
  .contact-method,
  .contact-faq {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-hero {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .contact-hero h1 {
    font-size: clamp(43px, 12.5vw, 56px);
    line-height: 0.9;
    letter-spacing: -0.058em;
  }

  .contact-hero-copy {
    max-width: 345px;
    font-size: 14px;
  }

  .contact-hero-actions {
    gap: 14px;
  }

  .contact-hero .primary-btn {
    width: 100%;
    max-width: 306px;
  }

  .contact-hero-proof,
  .contact-route-grid,
  .contact-faq-grid,
  .contact-method-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-proof {
    margin-top: 42px;
  }

  .contact-hero-proof div {
    min-height: 100px;
  }

  .contact-intake {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .contact-intake-copy h2,
  .contact-section-head h2,
  .contact-method-head h2 {
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 0.9;
  }

  .contact-form {
    padding: 22px;
  }

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

  .contact-checks label,
  .contact-checks span {
    width: 100%;
  }

  .contact-routes,
  .contact-faq {
    padding-bottom: 58px;
  }

  .contact-section-head,
  .contact-method-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-route-grid article,
  .contact-faq-grid article,
  .contact-method-grid article {
    min-height: auto;
    padding: 22px;
  }

  .contact-method {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .service-detail-hero,
  .service-detail-overview,
  .service-detail-outcomes,
  .service-detail-process,
  .service-related {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-detail-hero {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .service-detail-hero h1 {
    font-size: clamp(42px, 12.4vw, 56px);
    line-height: 0.9;
    letter-spacing: -0.058em;
  }

  .service-detail-copy {
    max-width: 345px;
    font-size: 14px;
  }

  .service-detail-actions {
    gap: 14px;
  }

  .service-detail-hero .primary-btn {
    width: 100%;
    max-width: 306px;
  }

  .service-detail-proof,
  .service-outcome-grid,
  .service-process-grid,
  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-proof {
    margin-top: 42px;
  }

  .service-detail-proof div {
    min-height: 100px;
  }

  .service-detail-overview,
  .service-detail-outcomes,
  .service-related {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .service-detail-process {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .service-detail-overview h2,
  .service-detail-section-head h2 {
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 0.9;
  }

  .service-detail-overview article p {
    font-size: 22px;
    line-height: 1.05;
  }

  .service-detail-section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .service-outcome-grid article,
  .service-process-grid article,
  .service-related-grid a {
    min-height: auto;
    padding: 22px;
  }

  .service-detail-overview li {
    min-height: auto;
  }
}

