:root {
  --bg: #f3f0ea;
  --bg-2: #e8e1d6;
  --bg-3: #eee7dc;
  --text: #121212;
  --muted: #4c4741;
  --faint: #716a61;
  --line: rgba(18, 18, 18, 0.10);
  --line-strong: rgba(18, 18, 18, 0.18);
  --red: #8e2b2b;
  --red-dark: #5e1a1a;
  --silver: #c9d1d6;
  --tint: #8fa7b2;
  --surface: rgba(255, 255, 255, 0.52);
  --surface-strong: rgba(255, 255, 255, 0.74);
  --surface-dark: rgba(18, 18, 18, 0.96);
  --shadow: 0 18px 52px rgba(18, 18, 18, 0.08);
  --shadow-strong: 0 24px 70px rgba(18, 18, 18, 0.12);
  --radius-sm: 0.55rem;
  --radius: 0.95rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.55rem;
  --max: 1200px;
  --content: 1080px;
  --narrow: 780px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(143, 167, 178, 0.12), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(142, 43, 43, 0.08), transparent 22%),
    linear-gradient(180deg, #f6f3ed 0%, var(--bg) 26%, var(--bg-3) 100%);
  overflow-x: clip;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: radial-gradient(rgba(18, 18, 18, 0.85) 0.7px, transparent 0.8px);
  background-size: 9px 9px;
  mix-blend-mode: multiply;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: #121212;
  color: #f7f4ef;
  padding: 0.75rem 1rem;
  border-radius: 0.7rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 240, 234, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(243, 240, 234, 0.92);
  border-bottom-color: rgba(18, 18, 18, 0.08);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.nav-row {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.76rem;
}

.brand-mark {
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid rgba(18, 18, 18, 0.16);
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(201, 209, 214, 0.2)),
    linear-gradient(180deg, rgba(142, 43, 43, 0.2), rgba(94, 26, 26, 0.08));
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 0.3rem;
}

.brand-mark::after {
  inset: 8px 5px 5px 8px;
  border-color: rgba(142, 43, 43, 0.32);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

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

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.menu {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  align-items: center;
  justify-content: center;
}

.menu svg {
  width: 1.2rem;
  height: 1.2rem;
}

.drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 2.9rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn-primary {
  background: linear-gradient(180deg, #9b3838, var(--red));
  color: #f7f4ef;
  box-shadow: 0 10px 28px rgba(94, 26, 26, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #a14141, #7a2323);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(18, 18, 18, 0.11);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.76);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(18, 18, 18, 0.14);
}

main {
  overflow-x: clip;
}

section {
  padding-block: clamp(3.75rem, 8vw, 7rem);
}

.page-block {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.page-head {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.hero-grid,
.page-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--faint);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 1.4rem + 4.7vw, 6.4rem);
  max-width: 10.6ch;
}

h2 {
  font-size: clamp(2.15rem, 1.15rem + 3vw, 4.2rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  text-wrap: pretty;
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  max-width: 60ch;
}

.narrow {
  max-width: 62ch;
}

.small {
  font-size: 0.95rem;
  color: var(--faint);
}

.small-note {
  font-size: 0.92rem;
  color: var(--faint);
}

.hero {
  padding-top: clamp(1.25rem, 3vw, 2.5rem);
}

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

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
  color: var(--faint);
  font-size: 0.95rem;
}

.proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(12px);
}

.proof span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  box-shadow: 0 0 0 4px rgba(142, 43, 43, 0.08);
}

.visual {
  position: relative;
  min-height: 34rem;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 225, 214, 0.38)),
    radial-gradient(circle at 20% 15%, rgba(143, 167, 178, 0.23), transparent 28%),
    radial-gradient(circle at 75% 78%, rgba(142, 43, 43, 0.16), transparent 32%);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  pointer-events: none;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%, rgba(255, 255, 255, 0.16) 78%, transparent);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
}

.motion-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  z-index: 4;
}

.caption .card {
  max-width: 18rem;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(18, 18, 18, 0.06);
}

.caption strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.panel,
.card,
.feature,
.case,
.compare,
.contact-box,
.form-box,
.service-tile,
.quote-box {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 2px rgba(18, 18, 18, 0.06);
}

.panel {
  padding: 1.5rem;
}

.page-shell {
  display: grid;
  gap: 1.5rem;
}

.kicker {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 18, 18, 0.16), transparent);
}

.list {
  display: grid;
  gap: 1rem;
}

.list-item {
  display: grid;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.list-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.list-item strong {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
}

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

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

.services-preview,
.case-grid,
.compare-grid,
.contact-grid,
.cards-2,
.cards-3 {
  display: grid;
  gap: 1rem;
}

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

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

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

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-methods a {
  color: var(--red);
  font-weight: 600;
}

.service-mini,
.service-tile,
.case,
.compare {
  padding: 1.35rem;
}

.service-mini,
.case,
.compare {
  display: grid;
  gap: 1rem;
}

.service-mini h3 a,
.case h3 a {
  color: inherit;
}

.service-mini p,
.service-tile p,
.case p,
.compare p {
  font-size: 0.96rem;
}

.service-tile {
  min-height: 14rem;
  position: relative;
  overflow: hidden;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: auto -15% -28% auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 167, 178, 0.22), transparent 70%);
  filter: blur(4px);
}

.service-tile ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.step {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(142, 43, 43, 0.45), transparent);
}

.badge {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(201, 209, 214, 0.26));
  font-weight: 700;
}

.step p {
  margin-top: 0.75rem;
}

.layers {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.layers .intro {
  grid-column: span 4;
  display: grid;
  gap: 1rem;
}

.layers .stack {
  grid-column: span 8;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile:nth-child(1) {
  grid-column: span 5;
}

.service-tile:nth-child(2) {
  grid-column: span 3;
}

.service-tile:nth-child(3) {
  grid-column: span 3;
}

.service-tile:nth-child(4) {
  grid-column: span 5;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

.flow {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.row {
  display: grid;
  grid-template-columns: 8.25rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.row strong {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
}

.breadcrumbs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline .item {
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.timeline .item:first-child {
  padding-top: 0;
  border-top: 0;
}

.cta-strip {
  background: linear-gradient(180deg, #171717, #1c1c1c);
  color: #f7f4ef;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(143, 167, 178, 0.16), transparent 28%),
    radial-gradient(circle at 82% 65%, rgba(142, 43, 43, 0.16), transparent 30%);
  pointer-events: none;
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.cta-strip p {
  color: rgba(247, 244, 239, 0.74);
}

.form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.95rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 0.95rem;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: rgba(255, 255, 255, 0.74);
  min-height: 3.3rem;
  padding: 0.95rem 1rem;
  color: var(--text);
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(142, 43, 43, 0.55);
  box-shadow: 0 0 0 4px rgba(142, 43, 43, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.full {
  grid-column: 1 / -1;
}

.form-box {
  padding: 1.5rem;
}

.quote-box {
  padding: 1.5rem;
}

.foot {
  padding-block: 2rem 3rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.foot .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  color: var(--faint);
  font-size: 0.95rem;
}

.footnav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.glass-line {
  display: grid;
  gap: 0.8rem;
}

.glass-line > div {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.mini-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mini-visual .path {
  animation: drift 14s ease-in-out infinite alternate;
}

.mini-visual .node {
  animation: pulse 5.8s ease-in-out infinite;
  transform-origin: center;
}

.mini-visual .node:nth-child(2) { animation-delay: -1.2s; }
.mini-visual .node:nth-child(3) { animation-delay: -2s; }
.mini-visual .node:nth-child(4) { animation-delay: -0.6s; }
.mini-visual .node:nth-child(5) { animation-delay: -2.7s; }

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.92; }
  50% { transform: translate3d(-4px, 4px, 0) scale(1.01); opacity: 1; }
  100% { transform: translate3d(5px, -3px, 0) scale(0.995); opacity: 0.9; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-grid,
  .split-grid,
  .section-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .layers .intro,
  .layers .stack {
    grid-column: 1 / -1;
  }

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

  .service-tile,
  .service-tile:nth-child(1),
  .service-tile:nth-child(2),
  .service-tile:nth-child(3),
  .service-tile:nth-child(4) {
    grid-column: auto;
  }

  .process,
  .case-grid,
  .compare-grid,
  .services-preview,
  .fields,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .nav-links,
  .nav-actions .primary {
    display: none;
  }

  .menu {
    display: inline-flex;
  }

  .drawer {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    background: rgba(243, 240, 234, 0.96);
    border: 1px solid rgba(18, 18, 18, 0.08);
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
  }

  .drawer .nav-links {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .drawer .primary {
    display: inline-flex;
    width: 100%;
  }

  .process {
    grid-template-columns: 1fr;
    position: relative;
  }

  .step {
    padding-left: 4rem;
    padding-top: 0;
    min-height: 3rem;
  }

  .step::before {
    left: 1.45rem;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.08), rgba(143, 167, 178, 0.35), rgba(18, 18, 18, 0.08));
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1.1rem), var(--max));
  }

  section {
    padding-block: clamp(3.5rem, 12vw, 5rem);
  }

  .hero h1 {
    max-width: 11.2ch;
  }

  .visual {
    min-height: 24rem;
  }

  .caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .fields,
  .services-preview,
  .two-col,
  .cases,
  .stack {
    grid-template-columns: 1fr;
  }

  .foot .row {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.on {
    opacity: 1;
    transform: none;
  }
}

/* MOYF visual reset: editorial infrastructure, not soft SaaS glass. */
:root {
  --bg: #e9e4db;
  --bg-2: #d9d2c6;
  --bg-3: #ece8e0;
  --text: #11110f;
  --muted: #4d4a44;
  --faint: #706a61;
  --line: rgba(17,17,15,.18);
  --line-strong: rgba(17,17,15,.42);
  --red: #c5302c;
  --red-dark: #851c1b;
  --silver: #b7c0c1;
  --surface: transparent;
  --surface-strong: transparent;
  --shadow: none;
  --shadow-strong: none;
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --max: 1380px;
  --content: 1180px;
  --font-display: "Space Grotesk", Arial, sans-serif;
}

body {
  background: var(--bg);
  letter-spacing: -.012em;
}
body::before { opacity: .2; background-size: 64px 64px; mask-image: none; }
body::after { opacity: .035; }
.site-shell { width: min(calc(100% - 3rem), var(--max)); }
.site-header { background: #11110f; backdrop-filter: none; border-bottom: 1px solid rgba(255,255,255,.2); }
.site-header.scrolled { background: #11110f; border-bottom-color: rgba(255,255,255,.38); box-shadow: none; }
.brand, .nav-links a { color: #f4f0e8; }
.brand { letter-spacing: .13em; font-size: .72rem; }
.brand-mark { border-radius: 0; border-color: rgba(255,255,255,.66); background: linear-gradient(135deg, #f3eee4 0 48%, var(--red) 49% 100%); }
.brand-mark::before, .brand-mark::after { display: none; }
.nav-links { gap: 1.5rem; }
.nav-links a { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.nav-links a::after { bottom: -.45rem; height: 2px; background: var(--red); }
.btn { border-radius: 0; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; min-height: 3.15rem; padding: .95rem 1.15rem; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); box-shadow: none; }
.btn-primary:hover { background: #e13a34; transform: none; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--text); color: #fff; transform: none; }
.menu { border-radius: 0; color: #fff; background: transparent; border-color: rgba(255,255,255,.45); }

h1,h2,h3 { font-family: var(--font-display); letter-spacing: -.06em; }
h1 { font-size: clamp(3.4rem, 8.2vw, 9.8rem); max-width: 9.4ch; line-height: .86; font-weight: 700; }
h2 { font-size: clamp(2.35rem, 4.5vw, 5.4rem); line-height: .94; max-width: 11ch; }
h3 { font-size: clamp(1.25rem, 2vw, 2rem); line-height: 1; }
.eyebrow,.kicker,.meta { color: var(--red); letter-spacing: .14em; font-size: .69rem; font-weight: 800; text-transform: uppercase; }
.lede { font-size: clamp(1rem, 1.15vw, 1.25rem); line-height: 1.62; max-width: 54ch; }

section { padding-block: clamp(5rem, 10vw, 10rem); border-bottom: 1px solid var(--line); }
.hero { padding: 0; color: #f5f0e7; background: #11110f; border-bottom: 0; position: relative; overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.65; background: linear-gradient(112deg, transparent 0 55%, rgba(197,48,44,.25) 55.2% 55.4%, transparent 55.6%), repeating-linear-gradient(90deg, transparent 0 calc(25% - 1px), rgba(255,255,255,.1) calc(25% - 1px) 25%); }
.hero-grid { min-height: min(860px, calc(100vh - 76px)); gap: 0; align-items: stretch; position:relative; }
.hero-grid > .reveal:first-child { display:flex; flex-direction:column; justify-content:center; padding: clamp(5.5rem,10vw,10rem) clamp(0rem,4vw,4rem) clamp(5rem,8vw,8rem) 0; }
.hero .eyebrow { color: #f5f0e7; display:flex; align-items:center; gap:.75rem; }
.hero .eyebrow::before { content:""; width:2.5rem; height:2px; background:var(--red); }
.hero .lede { color:rgba(245,240,231,.72); margin-top:2rem; }
.hero .btn-secondary { color:#f5f0e7; border-color:rgba(245,240,231,.55); }
.hero .btn-secondary:hover { background:#f5f0e7; color:#11110f; }
.proof { margin-top:2.6rem; gap:0; border-top:1px solid rgba(255,255,255,.24); border-bottom:1px solid rgba(255,255,255,.24); }
.proof span { padding:1rem 0; font-size:.78rem; color:rgba(245,240,231,.68); }
.proof span + span { border-left:1px solid rgba(255,255,255,.24); padding-left:1.2rem; margin-left:1.2rem; }
.visual { min-height: 100%; border-radius:0; border:0; border-left:1px solid rgba(255,255,255,.2); box-shadow:none; background:#1a1a17; }
.visual::before { inset: 0; border:0; border-radius:0; background:radial-gradient(circle at 65% 40%, rgba(197,48,44,.6), transparent 12%), radial-gradient(circle at 35% 70%, rgba(183,192,193,.32), transparent 24%); }
.visual::after { display:none; }
.mini-visual { opacity:.9; mix-blend-mode:screen; }
.mini-visual .path { animation-duration: 9s; }
.caption { left:1.5rem; right:1.5rem; bottom:1.5rem; gap:1px; }
.caption .card { border-radius:0; background:rgba(10,10,9,.88); border:1px solid rgba(255,255,255,.24); box-shadow:none; padding:1rem; }
.caption strong { color:#fff; text-transform:uppercase; letter-spacing:.11em; font-size:.68rem; }
.caption .small-note { color:rgba(255,255,255,.6); }

.section-head { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); padding-bottom:2rem; border-bottom:2px solid var(--text); }
.panel,.case,.service-mini,.step,.timeline .item,.form-box { border-radius:0; background:transparent; backdrop-filter:none; box-shadow:none; border:1px solid var(--line-strong); }
.panel:hover,.case:hover,.service-mini:hover { transform:none; box-shadow:none; }
.services-preview,.case-grid { gap:0; border-top:0; }
.service-mini,.case { padding:2rem; min-height:18rem; border-left:0; border-top:0; display:flex; flex-direction:column; align-items:flex-start; }
.service-mini:first-child,.case:first-child { border-left:1px solid var(--line-strong); }
.service-mini .btn,.case .btn { margin-top:auto; }
.service-mini h3,.case h3 { margin-top:1.8rem; }
.process { border: 1px solid var(--line-strong); gap:0; background:transparent; }
.process::before { left:0; right:0; top: 4.5rem; background:var(--line-strong); }
.step { border:0; border-right:1px solid var(--line-strong); padding:2rem; min-height:17rem; }
.step:last-child { border-right:0; }
.badge { width:auto; height:auto; padding:0; border-radius:0; border:0; background:transparent; box-shadow:none; font-size:3rem; letter-spacing:-.08em; color:var(--red); }
.case .meta { color:var(--red); }
.split-grid,.two-col,.contact-grid { gap:0; border-top:1px solid var(--line-strong); border-left:1px solid var(--line-strong); }
.split-grid > *, .two-col > *, .contact-grid > * { border-right:1px solid var(--line-strong); border-bottom:1px solid var(--line-strong); padding:2.25rem; }
.list-item { border-bottom:1px solid var(--line); padding:1.3rem 0; }
.list-item:first-child { padding-top:0; }
.list-item:last-child { border-bottom:0; padding-bottom:0; }
.page-head { padding-block:clamp(5rem,11vw,11rem); background:#11110f; color:#f5f0e7; }
.page-head .lede,.page-head p { color:rgba(245,240,231,.72); }
.page-head .panel { border-color:rgba(255,255,255,.25); }
.page-head .eyebrow,.page-head .breadcrumbs { color:#e75851; }
.breadcrumbs a { color:#f5f0e7; }
.foot { background:#11110f; color:rgba(245,240,231,.62); border:0; padding-block:2.5rem; }
.foot strong { color:#fff !important; letter-spacing:.1em; text-transform:uppercase; font-size:.72rem; }
.footnav a { color:#f5f0e7; text-transform:uppercase; letter-spacing:.1em; font-size:.68rem; }
.field input,.field textarea,.field select { border-radius:0; border:0; border-bottom:1px solid var(--line-strong); background:transparent; padding:.9rem 0; }
.field input:focus,.field textarea:focus,.field select:focus { border-color:var(--red); }
.form-box { padding:2.25rem; }
.reveal { transform:translateY(18px); }
.reveal.on { transform:translateY(0); }

@media (max-width: 800px) {
  .site-shell { width:min(calc(100% - 2rem), var(--max)); }
  .nav-links,.nav-actions .btn { display:none; }
  .menu { display:inline-flex; }
  .drawer.open { display:block; padding:1rem 0 1.5rem; border-top:1px solid rgba(255,255,255,.16); }
  .drawer .nav-links { display:grid; gap:1rem; }
  .hero-grid { min-height:auto; grid-template-columns:1fr; }
  .hero-grid > .reveal:first-child { padding:7rem 0 5rem; }
  .visual { min-height:26rem; border-left:0; border-top:1px solid rgba(255,255,255,.2); }
  .section-head { grid-template-columns:1fr; gap:1.5rem; }
  .services-preview,.case-grid,.process,.two-col,.split-grid,.contact-grid { grid-template-columns:1fr; }
  .service-mini,.case,.step { border-left:1px solid var(--line-strong); border-bottom:0; }
  .step { border-right:0; border-bottom:1px solid var(--line-strong); }
  .step:last-child { border-bottom:0; }
  .process::before { display:none; }
  .proof span + span { border-left:0; border-top:1px solid rgba(255,255,255,.24); padding-left:0; margin-left:0; }
}
