@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-latin.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Varela Round";
  src: url("/assets/fonts/varela-round-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #090909;
  --surface: #121212;
  --surface-raised: #1b1b1b;
  --accent: #d23132;
  --accent-bright: #f04a4b;
  --text: #f7f5f1;
  --muted: #b9b7b2;
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.32);
  --light: #f3f1ec;
  --light-muted: #dad7d1;
  --ink: #222222;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --container: 1280px;
  --gutter: 64px;
  --header-height: 92px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Varela Round", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3,
.eyebrow,
.button,
.site-nav,
.proof-label,
.card-kicker,
.step-number,
.footer-title {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

.container {
  width: calc(100% - var(--gutter) - var(--gutter));
  max-width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: #fff;
  color: #111;
}

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

.scroll-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent-bright);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 3px 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(9, 9, 9, 0.24);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--border);
  background: rgba(9, 9, 9, 0.91);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  height: 100%;
  gap: 36px;
}

.brand {
  display: inline-flex;
  width: 228px;
  align-items: center;
}

.brand img {
  width: 100%;
}

.site-nav {
  justify-self: center;
  font-size: 15px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  content: "";
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--accent);
  border-radius: 2px;
  padding: 15px 21px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button::before {
  position: absolute;
  inset: -50% auto -50% -35%;
  width: 26%;
  transform: skewX(-18deg) translateX(-280%);
  background: rgba(255, 255, 255, 0.24);
  content: "";
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-3px);
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  box-shadow: 0 16px 42px rgba(210, 49, 50, 0.28);
}

.button:hover::before {
  transform: skewX(-18deg) translateX(720%);
}

.button-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 18px;
  transition: transform 220ms ease;
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-outline {
  border-color: var(--border-strong);
  background: rgba(0, 0, 0, 0.2);
}

.button-outline:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
  box-shadow: none;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.header-action {
  min-height: 48px;
  padding: 10px 14px 10px 18px;
  font-size: 14px;
}

.header-action .button-arrow {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  font-size: 16px;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  display: flex;
  height: calc(100svh - 24px);
  min-height: 680px;
  max-height: 940px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--surface);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, -20px, 0) scale(1.02);
  will-change: transform;
}

.hero-media::after,
.page-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.84) 35%, rgba(7, 7, 7, 0.28) 70%, rgba(7, 7, 7, 0.42) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.82) 0%, transparent 48%);
  content: "";
}

.page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.74) 44%, rgba(7, 7, 7, 0.32) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.78) 0%, transparent 55%);
}

.page-hero-atm .page-hero-media img {
  filter: brightness(1.12) saturate(1.04);
}

.page-hero-atm .page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.64) 0%, rgba(7, 7, 7, 0.3) 44%, rgba(7, 7, 7, 0.08) 78%, rgba(7, 7, 7, 0.14) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.72) 0%, rgba(7, 7, 7, 0.18) 54%, transparent 72%);
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.hero-copy,
.page-hero-copy {
  max-width: 1000px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--accent-bright);
  font-size: 15px;
  line-height: 1.3;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  flex: 0 0 38px;
  background: currentColor;
  content: "";
}

.display-title,
.page-title,
.section-title {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display-title,
.page-title {
  max-width: 1040px;
  font-size: 132px;
  line-height: 0.94;
}

.display-title span,
.page-title span,
.section-title span {
  display: block;
  padding-bottom: 0.07em;
}

.display-title .outline,
.page-title .outline,
.section-title .outline {
  margin-top: 0.08em;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-bright);
}

.hero-lead,
.page-lead {
  max-width: 710px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-meta {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(240, 74, 75, 0.45);
}

.proof-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0d0d0d;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 112px;
  padding: 26px 28px;
  border-left: 1px solid var(--border);
}

.proof-item:last-child {
  border-right: 1px solid var(--border);
}

.proof-label {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 20px;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-tight {
  padding: 94px 0;
}

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

.section-red {
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}

.section-red .eyebrow {
  color: #fff;
}

.section-red .section-title .outline {
  -webkit-text-stroke-color: #fff;
}

.section-red .section-lead,
.section-red .intro-copy {
  color: rgba(255, 255, 255, 0.82);
}

.section-red .intro-grid {
  z-index: 1;
}

.section-red::after {
  position: absolute;
  top: -80px;
  right: 3%;
  color: rgba(255, 255, 255, 0.08);
  content: "FILLER UP";
  font-family: "Oswald", Impact, sans-serif;
  font-size: 220px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: 104px;
  align-items: start;
}

.section-title {
  font-size: 78px;
  line-height: 1.02;
}

.section-light .section-title .outline {
  -webkit-text-stroke-color: var(--accent);
}

.intro-copy,
.section-lead {
  color: var(--muted);
}

.section-light .intro-copy,
.section-light .section-lead {
  color: #63615d;
}

.intro-copy p:last-child,
.section-lead:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--accent-bright);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 20px;
  color: #fff;
}

.section-light .text-link:hover {
  color: var(--ink);
}

.service-stack {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-feature {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
}

.service-feature:nth-child(even) .service-media {
  order: 2;
}

.service-media,
.split-media,
.image-cta,
.feature-media {
  position: relative;
  overflow: hidden;
}

.service-media img,
.split-media img,
.image-cta img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feature:hover .service-media img {
  transform: scale(1.07);
}

.service-copy {
  display: flex;
  max-width: 640px;
  flex-direction: column;
  justify-content: center;
  padding: 76px;
}

.service-index,
.card-kicker {
  display: block;
  margin-bottom: 26px;
  color: var(--accent-bright);
  font-size: 14px;
}

.service-copy h2,
.feature-copy h2 {
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.02;
}

.service-copy p,
.feature-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 12px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
}

.check-list li::before {
  position: absolute;
  top: 0.26em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent-bright);
  content: "✓";
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading .section-lead {
  margin-bottom: 10px;
}

.benefit-grid,
.value-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.benefit-card,
.value-card,
.location-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 38px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.benefit-card::before,
.value-card::before,
.location-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(210, 49, 50, 0.17), transparent 58%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.benefit-card:hover,
.value-card:hover,
.location-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  border-color: rgba(210, 49, 50, 0.65);
  background: #181818;
}

.benefit-card:hover::before,
.value-card:hover::before,
.location-card:hover::before {
  opacity: 1;
}

.card-number {
  position: relative;
  display: block;
  margin-bottom: 72px;
  color: var(--accent-bright);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 14px;
}

.benefit-card h3,
.value-card h3,
.location-card h3 {
  position: relative;
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.2;
}

.benefit-card p,
.value-card p,
.location-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-light .benefit-grid,
.section-light .value-grid,
.section-light .location-grid,
.section-light .benefit-card,
.section-light .value-card,
.section-light .location-card {
  border-color: rgba(34, 34, 34, 0.2);
}

.section-light .benefit-card,
.section-light .value-card,
.section-light .location-card {
  background: #fff;
}

.section-light .benefit-card:hover,
.section-light .value-card:hover,
.section-light .location-card:hover {
  background: #fff;
}

.section-light .benefit-card p,
.section-light .value-card p,
.section-light .location-card p {
  color: #66635e;
}

.process {
  position: relative;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 43px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(255, 255, 255, 0.25);
  content: "";
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process.is-visible .process-list::before {
  transform: scaleX(1);
}

.process-step {
  position: relative;
  padding: 0 34px;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent-bright);
  font-size: 24px;
  transform: translateY(16px);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process.is-visible .step-number {
  transform: translateY(0);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 27px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.split-feature {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(var(--gutter), calc((100vw - var(--container)) / 2));
  padding-right: 74px;
  background: var(--surface);
}

.feature-media::after,
.image-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.25), transparent 50%);
  content: "";
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--border);
}

.stat {
  padding: 30px 20px 0 0;
}

.stat strong {
  display: block;
  color: var(--accent-bright);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 46px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.image-cta {
  min-height: 650px;
}

.image-cta > img {
  position: absolute;
  inset: 0;
}

.image-cta::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.94) 0%, rgba(9, 9, 9, 0.68) 52%, rgba(9, 9, 9, 0.2) 100%);
}

.image-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  max-width: 800px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.image-cta .section-title {
  font-size: 76px;
}

.image-cta p:not(.eyebrow) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  height: min(840px, calc(100svh - 24px));
  min-height: 700px;
}

.page-title {
  font-size: 112px;
}

.page-hero-inner {
  padding-bottom: 72px;
}

.page-hero-copy {
  max-width: 960px;
}

.detail-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.detail-band-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr 1fr;
}

.detail-band-item {
  padding: 30px;
  border-left: 1px solid var(--border);
}

.detail-band-item:last-child {
  border-right: 1px solid var(--border);
}

.detail-band-item strong {
  display: block;
  color: var(--accent-bright);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.detail-band-item span {
  color: var(--muted);
  font-size: 14px;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 100px;
  align-items: start;
}

.content-split h2 {
  font-size: 64px;
  line-height: 1.04;
}

.content-split-copy {
  color: var(--muted);
}

.content-split-copy p:first-child {
  color: var(--text);
  font-size: 25px;
  line-height: 1.5;
}

.section-light .content-split-copy {
  color: #66635e;
}

.section-light .content-split-copy p:first-child {
  color: var(--ink);
}

.feature-list {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list strong {
  color: var(--accent-bright);
  font-family: "Oswald", Impact, sans-serif;
}

.feature-list span {
  color: var(--text);
}

.section-light .feature-list,
.section-light .feature-list li {
  border-color: rgba(34, 34, 34, 0.18);
}

.section-light .feature-list span {
  color: #66635e;
}

.location-grid {
  grid-template-columns: repeat(4, 1fr);
}

.location-card {
  min-height: 230px;
}

.contact-hero {
  min-height: 500px;
  padding-top: calc(var(--header-height) + 90px);
  background:
    linear-gradient(120deg, rgba(210, 49, 50, 0.13), transparent 32%),
    var(--bg);
}

.contact-hero .page-title {
  font-size: 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 132px;
}

.contact-details h2 {
  margin-bottom: 26px;
  font-size: 45px;
  line-height: 1.1;
}

.contact-details > p {
  color: var(--muted);
}

.contact-list {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.contact-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-bright);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.contact-list a:hover {
  color: var(--accent-bright);
}

.contact-form {
  padding: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field label,
.form-legend {
  color: var(--text);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  padding: 13px 15px;
  background: #0d0d0d;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-bright);
  outline: none;
  box-shadow: 0 0 0 3px rgba(210, 49, 50, 0.14);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 20px 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.form-status.is-success {
  color: #7bd89b;
}

.form-status.is-error {
  color: #ff8585;
}

.legal-content {
  max-width: 860px;
}

.privacy-main {
  padding-top: 190px;
}

.legal-content h1 {
  margin-bottom: 34px;
  font-size: 72px;
}

.legal-content h2 {
  margin-top: 54px;
  font-size: 33px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #070707;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.55fr 0.7fr;
  gap: 90px;
  padding-top: 78px;
  padding-bottom: 66px;
}

.footer-brand img {
  width: 285px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--accent-bright);
  font-size: 15px;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  color: #8e8c87;
  font-size: 13px;
}

.reveal,
.reveal-group > * {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal,
.motion-ready .reveal-group > * {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .reveal.is-visible,
.motion-ready .reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.motion-ready .reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 85ms;
}

.motion-ready .reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 170ms;
}

.motion-ready .reveal-group.is-visible > *:nth-child(4) {
  transition-delay: 255ms;
}

.motion-ready .reveal-group.is-visible > *:nth-child(5) {
  transition-delay: 340ms;
}

.motion-ready .reveal-group.is-visible > *:nth-child(6) {
  transition-delay: 425ms;
}

.image-reveal::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  transform: translateX(-120%) skewX(-15deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.23), transparent);
  content: "";
  pointer-events: none;
}

.image-reveal.is-visible::before {
  animation: image-sweep 950ms 300ms ease both;
}

.motion-ready .hero-copy > *,
.motion-ready .page-hero-copy > * {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
}

.motion-ready .hero-copy.is-visible > *,
.motion-ready .page-hero-copy.is-visible > * {
  animation: hero-rise 880ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .hero-copy.is-visible > *:nth-child(2),
.motion-ready .page-hero-copy.is-visible > *:nth-child(2) {
  animation-delay: 120ms;
}

.motion-ready .hero-copy.is-visible > *:nth-child(3),
.motion-ready .page-hero-copy.is-visible > *:nth-child(3) {
  animation-delay: 220ms;
}

.motion-ready .hero-copy.is-visible > *:nth-child(4),
.motion-ready .page-hero-copy.is-visible > *:nth-child(4) {
  animation-delay: 320ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes image-sweep {
  from { transform: translateX(-120%) skewX(-15deg); }
  to { transform: translateX(220%) skewX(-15deg); }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 74, 75, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(240, 74, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 74, 75, 0); }
}

.motion-ready .status-dot {
  animation: status-pulse 2.4s infinite;
}

@media (max-width: 1180px) {
  :root {
    --gutter: 40px;
  }

  .header-inner {
    grid-template-columns: 205px 1fr auto;
    gap: 24px;
  }

  .brand {
    width: 198px;
  }

  .site-nav ul {
    gap: 22px;
  }

  .display-title {
    font-size: 108px;
  }

  .page-title {
    font-size: 94px;
  }

  .section-title {
    font-size: 68px;
  }

  .service-copy {
    padding: 58px;
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 210px;
  }

  .nav-toggle {
    display: grid;
  }

  .header-action {
    display: none;
  }

  .site-header.menu-active {
    background: #090909;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    z-index: 110;
    inset: calc(var(--header-height) + 3px) 0 0;
    display: flex;
    width: 100%;
    visibility: hidden;
    align-items: stretch;
    justify-self: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 24px var(--gutter) max(32px, env(safe-area-inset-bottom));
    transform: translateY(-20px);
    background: #090909;
    isolation: isolate;
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav[data-open="true"] {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    width: 100%;
    max-width: 560px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-inline: auto;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav a {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    color: #fff;
    font-size: 28px;
    text-align: left;
  }

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

  .site-nav a::before {
    order: 2;
    color: var(--accent-bright);
    content: "→";
    font-family: Arial, sans-serif;
  }

  .hero,
  .page-hero {
    min-height: 650px;
  }

  .display-title {
    font-size: 86px;
  }

  .page-title {
    font-size: 80px;
  }

  .hero-meta {
    display: none;
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .intro-grid,
  .section-heading,
  .content-split,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-feature,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .service-feature:nth-child(even) .service-media {
    order: 0;
  }

  .service-media,
  .feature-media {
    min-height: 500px;
  }

  .service-copy,
  .feature-copy {
    max-width: none;
    padding: 68px var(--gutter);
  }

  .benefit-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-list::before {
    top: 43px;
    bottom: 43px;
    left: 42px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .process.is-visible .process-list::before {
    transform: scaleY(1);
  }

  .process-step {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 26px;
    padding: 0;
    text-align: left;
  }

  .step-number {
    margin: 0;
  }

  .contact-details {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --header-height: 78px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    width: 185px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero,
  .page-hero {
    height: calc(100svh - 18px);
    min-height: 620px;
  }

  .hero-media img,
  .page-hero-media img {
    object-position: 62% center;
  }

  .hero-media::after,
  .page-hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.34)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.24) 76%);
  }

  .page-hero-atm .page-hero-media::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.1) 0%, rgba(7, 7, 7, 0.16) 36%, rgba(7, 7, 7, 0.72) 76%, rgba(7, 7, 7, 0.88) 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.38) 0%, rgba(7, 7, 7, 0.06) 68%, rgba(7, 7, 7, 0.14) 100%);
  }

  .hero-inner,
  .page-hero-inner {
    padding-bottom: 38px;
  }

  .eyebrow {
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .eyebrow::before {
    width: 28px;
    flex-basis: 28px;
  }

  .display-title,
  .page-title,
  .contact-hero .page-title {
    font-size: 58px;
    line-height: 0.96;
  }

  .display-title .outline,
  .page-title .outline,
  .section-title .outline {
    -webkit-text-stroke-width: 1.5px;
  }

  .hero-lead,
  .page-lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .proof-item,
  .proof-item:last-child {
    min-height: 88px;
    padding: 19px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .proof-item + .proof-item {
    border-top: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-tight {
    padding: 70px 0;
  }

  .section-title,
  .image-cta .section-title {
    font-size: 48px;
    line-height: 1.04;
  }

  .intro-grid,
  .section-heading,
  .content-split,
  .contact-layout {
    gap: 30px;
  }

  .service-media,
  .feature-media {
    min-height: 360px;
  }

  .service-copy,
  .feature-copy {
    padding: 48px var(--gutter);
  }

  .service-copy h2,
  .feature-copy h2,
  .content-split h2 {
    font-size: 42px;
  }

  .benefit-grid,
  .value-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .value-card,
  .location-card {
    min-height: 250px;
    padding: 28px;
  }

  .card-number {
    margin-bottom: 42px;
  }

  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }

  .step-number {
    width: 64px;
    height: 64px;
  }

  .process-list::before {
    top: 32px;
    bottom: 32px;
    left: 31px;
  }

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

  .stat {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
  }

  .image-cta,
  .image-cta-inner {
    min-height: 600px;
  }

  .image-cta > img {
    object-position: 62% center;
  }

  .image-cta::after {
    background: linear-gradient(0deg, rgba(9, 9, 9, 0.95), rgba(9, 9, 9, 0.36));
  }

  .page-hero {
    min-height: 640px;
  }

  .detail-band-grid {
    grid-template-columns: 1fr;
  }

  .detail-band-item,
  .detail-band-item:last-child {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .content-split-copy p:first-child {
    font-size: 20px;
  }

  .contact-hero {
    min-height: 440px;
    padding-top: calc(var(--header-height) + 60px);
  }

  .contact-form {
    padding: 26px 20px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 58px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 245px;
  }

  .footer-bottom {
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .legal-content h1 {
    font-size: 50px;
  }
}

@media (hover: none), (pointer: coarse) {
  .benefit-card::before,
  .value-card::before,
  .location-card::before {
    display: none;
  }
}

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

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

  .hero-media img,
  .page-hero-media img,
  .service-media img,
  .split-media img,
  .feature-media img,
  .image-cta img {
    transform: none !important;
  }

  .motion-ready .reveal,
  .motion-ready .reveal-group > *,
  .motion-ready .hero-copy > *,
  .motion-ready .page-hero-copy > * {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }
}
