@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-latin-var.woff2") format("woff2");
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-var.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Big Shoulders Display";
  src: url("assets/fonts/big-shoulders-display-900.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  --black: #090909;
  --void: #040404;
  --graphite: #111214;
  --panel: #181a1f;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: #ded7c9;
  --paper: #f6f0e5;
  --paper-strong: #fffaf0;
  --ink: #141414;
  --muted: #6a6258;
  --muted-dark: #b4aa9e;
  --yellow: #F33B1E;
  --blue: #2d68ff;
  --red: #F33B1E;
  --white: #ffffff;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --move: cubic-bezier(0.25, 1, 0.5, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --elegant-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --elegant-flow: cubic-bezier(0.45, 0, 0.55, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(243, 59, 30, 0.22);
}

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

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

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

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

a,
button,
summary {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(45, 104, 255, 0.55);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Big Shoulders Display", "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 5.45rem;
  font-weight: 900;
  hyphens: none;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-size: 2.74rem;
  font-weight: 700;
  hyphens: none;
  max-width: 820px;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  font-weight: 700;
}

p {
  color: var(--muted);
  text-wrap: pretty;
  overflow-wrap: break-word;
}

[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 90;
  pointer-events: none;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.68);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  gap: 24px;
  pointer-events: auto;
  transition: min-height 260ms var(--ease), background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease);
}

.site-header.is-compact .nav {
  min-height: 62px;
  border-color: rgba(243, 59, 30, 0.25);
  background: rgba(8, 8, 8, 0.86);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(-4px);
}

.site-header.is-hidden .nav {
  transform: translateY(-112px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 14px rgba(243, 59, 30, 0.30));
  transition: width 260ms var(--ease), height 260ms var(--ease), flex-basis 260ms var(--ease);
}

.site-header.is-compact .brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted-dark);
  font-size: 0.78rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  margin-left: 8px;
  padding: 8px 14px;
  background: var(--yellow);
  color: var(--black);
  line-height: 1.05;
  box-shadow: 0 14px 32px rgba(243, 59, 30, 0.22);
}

.nav-links .nav-cta span {
  font-size: 0.66rem;
  opacity: 0.72;
}

.nav-links .nav-cta strong {
  font-size: 0.95rem;
}

.nav-links .nav-cta:hover {
  background: var(--white);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms var(--ease), opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: calc(88px + clamp(64px, 9vh, 120px)) 0 0;
  background: var(--void);
  overflow: clip;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
  opacity: 0.9;
}

.hero::after {
  display: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  filter: saturate(0.82) contrast(1.12) brightness(0.9);
  transform: scale(1.03);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.98) 0%, rgba(4, 4, 4, 0.9) 38%, rgba(4, 4, 4, 0.48) 72%, rgba(4, 4, 4, 0.76) 100%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.2) 44%, rgba(4, 4, 4, 0.56) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  align-items: start;
  gap: 40px;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: clamp(64px, 9vh, 120px);
}

.hero-copy {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 16px 6px 28px;
  border: 1px solid rgba(243, 59, 30, 0.3);
  border-radius: var(--radius);
  background: rgba(243, 59, 30, 0.08);
  color: rgba(255, 229, 153, 0.95);
  backdrop-filter: blur(10px);
}

.status-dot {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #80f0a7;
  box-shadow: 0 0 0 0 rgba(128, 240, 167, 0.42);
  transform: translateY(-50%);
  animation: status-pulse 1.8s ease-out infinite;
}

.kicker::before {
  flex: 0 0 auto;
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-kicker::before {
  display: none;
}

.hero-title {
  margin-bottom: 24px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  will-change: transform, opacity;
  animation: title-reveal 860ms var(--ease) forwards;
}

.title-line:first-child {
  font-size: 0.9em;
}

.title-line:nth-child(2) {
  animation-delay: 120ms;
}

.title-line:nth-child(3) {
  animation-delay: 240ms;
}

.title-city {
  color: var(--yellow);
}

.title-accent {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.48em;
  line-height: 1;
}

.kicker.dark {
  color: var(--red);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms var(--spring), background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(243, 59, 30, 0.24);
}

.button-primary:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.16);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  color: var(--white);
  text-decoration: none;
  transition: opacity 220ms ease;
}

.hero-trust:hover {
  opacity: 0.92;
}

.hero-trust-avatars {
  display: inline-flex;
  flex: 0 0 auto;
}

.hero-trust-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--void);
  object-fit: cover;
  margin-left: -14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.40);
  background: #1a1a1a;
}

.hero-trust-avatars img:first-child {
  margin-left: 0;
}

.hero-trust-text {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-trust-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-trust .review-stars-sm {
  width: 96px;
  height: 18px;
  background-size: 19.2px 18px;
}

.hero-trust-top strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--white);
}

.hero-trust-bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-style: italic;
}

.hero-trust-bottom strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-style: normal;
}

.dispatch-panel {
  position: relative;
  overflow: hidden;
  align-self: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(9, 9, 9, 0.52);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: panel-reveal 780ms var(--ease) 560ms forwards;
}

.dispatch-panel::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 84px;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.dispatch-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.dispatch-head span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-head strong {
  max-width: 13ch;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  line-height: 1.05;
  text-align: right;
}

.dispatch-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 6px 0 18px;
  list-style: none;
}

.dispatch-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.dispatch-list span {
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.dispatch-list strong,
.dispatch-list small {
  display: block;
}

.dispatch-list strong {
  color: var(--white);
  line-height: 1.2;
}

.dispatch-list small {
  margin-top: 5px;
  color: var(--muted-dark);
  line-height: 1.45;
}

.dispatch-call {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-weight: 950;
  transition: transform 180ms var(--spring), background-color 180ms ease;
}

.dispatch-call:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.service-ribbon {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, var(--void) 0%, rgba(4, 4, 4, 0) 6%, rgba(4, 4, 4, 0) 94%, var(--void) 100%),
    var(--black);
}

.ribbon-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 28px;
  padding: 16px 0;
  animation: ribbon-marquee 38s linear infinite;
  will-change: transform;
}

.service-ribbon span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

.service-ribbon span:not(.ribbon-dot):hover {
  color: var(--yellow);
}

.ribbon-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--yellow);
  opacity: 0.65;
}

.service-ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

@keyframes ribbon-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: start;
}

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

.intro-head {
  max-width: 920px;
  margin-bottom: 48px;
}

.intro-head h2 {
  margin-bottom: 20px;
}

.intro-lead {
  max-width: 70ch;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 30px 30px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: var(--paper-strong);
  transition: transform 280ms var(--ease), border-color 220ms ease, box-shadow 280ms var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 59, 30, 0.32);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.07);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(243, 59, 30, 0.10);
  color: var(--red);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .intro-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.operation {
  background: var(--graphite);
  color: var(--white);
}

.operation-layout {
  display: grid;
  grid-template-columns: 0.92fr 0.9fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.operation-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 18px;
}

.operation-copy p,
.process p,
.quote-copy p,
.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--muted-dark);
}

.text-link,
.direct-call {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 900;
}

.text-link:hover,
.direct-call:hover {
  color: var(--white);
}

.quote-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 12px;
}

.quote-checklist span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.operation-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.operation-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 34%;
}

.operation-points {
  display: grid;
  gap: 12px;
  align-self: end;
}

.operation-points article {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.operation-points span,
.service-index,
.process-line span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.operation-points h3,
.process h2,
.process h3,
.quote-section h2,
.site-footer strong {
  color: var(--white);
}

.operation-points p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.field-notes {
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 84px;
  background: var(--black);
  color: var(--white);
}

.field-notes .section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.field-notes .section-head p:last-child {
  max-width: 62ch;
  color: var(--muted-dark);
}

.field-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 238px;
  grid-auto-flow: dense;
  gap: 16px;
}

.field-frame {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.field-frame[data-reveal] {
  opacity: 1;
  transform: none;
}

.field-frame-large {
  grid-column: span 2;
  grid-row: span 2;
}

.field-frame-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.field-frame-before {
  grid-column: span 2;
  grid-row: span 1;
}

.field-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 48%);
  pointer-events: none;
}

.field-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 700ms var(--elegant-flow, var(--ease)), filter 300ms ease;
}

.field-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
}

.field-frame strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  line-height: 1.1;
}

.field-frame span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.field-frame:hover img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.07);
}

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

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head p:last-child {
  font-size: 1.08rem;
}

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

.service-card {
  grid-column: span 2;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.05);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 59, 30, 0.32);
  box-shadow: 0 26px 52px rgba(20, 20, 20, 0.12);
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--graphite);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-index {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 8px 20px rgba(243, 59, 30, 0.34);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 22px;
  flex: 1 1 auto;
}

.service-card-body h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.service-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.service-card-cta svg {
  transition: transform 240ms var(--ease);
}

.service-card:hover .service-card-cta svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }
  .service-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }
}

.service-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--line-light);
}

.service-promise {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(243, 59, 30, 0.10);
  color: var(--red);
}

.trust-icon svg {
  width: 23px;
  height: 23px;
}

.service-promise h3 {
  margin: 2px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.service-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .service-promises {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
    padding-top: 32px;
  }
}

.process {
  background: var(--black);
  color: var(--white);
}

.invert p {
  color: var(--muted-dark);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border-radius: var(--radius);
  background: var(--line-dark);
  list-style: none;
}

.process-line li {
  position: relative;
  min-height: 282px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--graphite);
  overflow: hidden;
  transition: background-color 220ms ease, transform 220ms var(--elegant-smooth);
}

.process-line li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 760ms var(--elegant-smooth);
  transition-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}

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

.process-line li:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    var(--graphite);
  transform: translateY(-2px);
}

.process-line p {
  margin-bottom: 0;
}

.local-intent {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(246, 240, 229, 1)),
    var(--paper);
}

.local-intent-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.local-intent-head h2 {
  max-width: 680px;
  margin-bottom: 18px;
}

.local-intent-head p:last-child {
  max-width: 62ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.intent-board {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.intent-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
  transition: background-color 220ms var(--elegant-smooth), padding-inline 220ms var(--elegant-smooth);
}

.intent-row > span {
  color: var(--red);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.intent-row p {
  max-width: 74ch;
  margin-bottom: 0;
}

.intent-row a {
  min-width: 180px;
  padding: 12px 16px;
  border: 1px solid rgba(20, 20, 20, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.intent-row a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.intent-row:hover {
  padding-inline: 16px;
  background: rgba(20, 20, 20, 0.035);
}

.evidence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  background: var(--paper-strong);
}

.reviews-hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 42px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(243, 59, 30, 0.04), rgba(243, 59, 30, 0)),
    var(--black);
  color: var(--white);
  box-shadow: 0 30px 60px rgba(20, 20, 20, 0.10);
}

.reviews-hero-score {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.reviews-hero-num {
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.reviews-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-hero-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.reviews-hero-meta span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 500;
}

.reviews-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 240ms var(--ease), background-color 220ms ease;
}

.reviews-hero-cta:hover {
  transform: translateY(-2px);
  background: #FF5C42;
}

.reviews-hero-cta svg {
  transition: transform 240ms var(--ease);
}

.reviews-hero-cta:hover svg {
  transform: translateX(3px);
}

.review-stars {
  --star-svg: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F33B1E'%3E%3Cpath d='M12 .587l3.668 7.431 8.2 1.193-5.934 5.787 1.4 8.169L12 18.896l-7.334 3.871 1.4-8.169L.132 9.211l8.2-1.193z'/%3E%3C/svg%3E");
  display: inline-block;
  width: 100px;
  height: 20px;
  background-image: var(--star-svg);
  background-size: 20px 20px;
  background-repeat: repeat-x;
  background-position: left center;
}

.review-stars-lg {
  width: 132px;
  height: 24px;
  background-size: 26px 24px;
}

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

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px 24px;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--paper);
  overflow: hidden;
  transition: transform 280ms var(--ease), border-color 220ms ease, box-shadow 280ms var(--ease);
}

.review-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(243, 59, 30, 0.25));
  content: "";
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 20, 20, 0.18);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.08);
}

.review-quote {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 500;
  text-wrap: balance;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

.review-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 59, 30, 0.10);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.review-author span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.reviews-disclaimer {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.reviews-disclaimer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  background: var(--paper);
}

.area-copy {
  max-width: 760px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-pill {
  padding: 12px 18px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--elegant-smooth);
}

.area-pill:hover {
  border-color: rgba(243, 59, 30, 0.4);
  background: var(--paper-strong);
  transform: translateY(-2px);
}

.area-pill.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(243, 59, 30, 0.28);
}

.area-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.area-hint::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(243, 59, 30, 0.14);
  flex: 0 0 auto;
}

.area.is-expanded .area-hint {
  display: none;
}

.area-panels {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}

.area-panels[hidden],
.area-panel[hidden] {
  display: none;
}

.area-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  animation: area-reveal 460ms var(--ease) both;
}

.area-panel-main {
  min-width: 0;
}

.area-panel h3 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.area-panel-main p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.area-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.area-panel-tags span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(243, 59, 30, 0.08);
  border: 1px solid rgba(243, 59, 30, 0.18);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.area-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 240ms var(--ease), background-color 220ms ease;
}

.area-panel-cta:hover {
  transform: translateY(-2px);
  background: #FF5C42;
}

.area-panel-cta svg {
  transition: transform 240ms var(--ease);
}

.area-panel-cta:hover svg {
  transform: translateX(4px);
}

.area-panel-facts {
  padding: 26px 28px;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--paper-strong);
}

.area-panel-facts h4 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.area-panel-facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.area-panel-facts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
}

.area-panel-facts li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.area-panel-facts strong {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.area-panel-facts span {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.5;
}

@keyframes area-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .area-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.92rem;
}

.footer-legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal a:hover {
  color: var(--yellow);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.35);
}

.footer-map {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 720px) {
  .area-panels {
    margin-top: 36px;
    padding-top: 28px;
  }
  .area-panel h3 {
    font-size: 1.35rem;
  }
}

.quote-section {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.94), rgba(9, 9, 9, 0.98)),
    var(--black);
  color: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 118px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.quote-form:focus-within {
  border-color: rgba(243, 59, 30, 0.42);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(243, 59, 30, 0.08);
}

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

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

label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  transition: color 180ms ease;
}

.form-field:focus-within label {
  color: var(--yellow);
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.52);
  color: var(--white);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

select {
  appearance: none;
  background-color: rgba(9, 9, 9, 0.52);
}

::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #ff9f94;
  font-weight: 850;
}

.form-status.is-success {
  color: #80f0a7;
}

.form-button {
  width: 100%;
}

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

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

.faq-card {
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: var(--paper-strong);
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 240ms var(--ease);
}

.faq-card:hover {
  border-color: rgba(243, 59, 30, 0.32);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.05);
}

.faq-card[open] {
  border-color: rgba(243, 59, 30, 0.4);
  background: var(--paper);
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  line-height: 1.3;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
  color: var(--red);
  border-radius: 999px;
  transition: transform 260ms var(--ease);
}

.faq-card[open] summary::after {
  transform: rotate(135deg);
}

.faq-card p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.faq-foot {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.faq-foot a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-foot a:hover {
  color: var(--ink);
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 42px;
  padding: 60px max(24px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  margin-bottom: 18px;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--elegant-smooth), transform 520ms var(--elegant-smooth);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-reveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes panel-reveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, 0.8%, 0);
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(128, 240, 167, 0.42);
  }

  70%,
  100% {
    box-shadow: 0 0 0 12px rgba(128, 240, 167, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .operation-media img,
  .hero-image {
    transition: transform 900ms var(--move), filter 240ms ease;
  }

  .operation-media:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-hero {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "score meta"
      "cta cta";
    row-gap: 22px;
  }

  .reviews-hero-score {
    grid-area: score;
    padding-right: 24px;
  }

  .reviews-hero-meta {
    grid-area: meta;
  }

  .reviews-hero-cta {
    grid-area: cta;
    justify-self: start;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.38rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(9, 9, 9, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 50px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intent-row {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .intent-row a {
    grid-column: 2;
    width: fit-content;
  }

  .dispatch-panel {
    max-width: 560px;
  }

  .section-grid,
  .operation-layout,
  .evidence,
  .area,
  .quote-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .field-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .field-frame,
  .field-frame-large,
  .field-frame-wide,
  .field-frame-before {
    grid-column: span 1;
    grid-row: span 1;
  }

  .field-frame-large,
  .field-frame-wide,
  .field-frame-before {
    grid-column: span 2;
  }

  .operation-copy {
    min-height: auto;
    padding-right: 0;
  }

  .operation-media img {
    min-height: 460px;
  }

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

  .quote-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  :root {
    --container: calc(100vw - 36px);
  }

  body {
    font-size: 16px;
  }

  .nav {
    min-height: 66px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-copy strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links {
    top: calc(100% + 8px);
    right: 0;
    left: 0;
  }

  .hero {
    padding: 126px 0 50px;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.68) 0%, rgba(9, 9, 9, 0.86) 44%, rgba(9, 9, 9, 0.98) 100%),
      linear-gradient(90deg, rgba(9, 9, 9, 0.86), rgba(9, 9, 9, 0.32));
  }

  h1 {
    max-width: 100%;
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .title-accent {
    max-width: 15ch;
    font-size: 0.72em;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 1.04rem;
    max-width: 40ch;
  }

  .kicker {
    font-size: 0.73rem;
  }

  .kicker::before {
    width: 26px;
  }

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

  .hero-trust {
    gap: 14px;
  }

  .hero-trust-avatars img {
    width: 42px;
    height: 42px;
    margin-left: -12px;
  }

  .hero-trust-top strong {
    font-size: 0.98rem;
  }

  .hero-trust-bottom {
    font-size: 0.84rem;
  }

  .service-ribbon {
    overflow: hidden;
  }

  .ribbon-track {
    gap: 20px;
    padding: 12px 0;
    animation-duration: 28s;
  }

  .service-ribbon span {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .dispatch-panel {
    padding: 18px;
  }

  .dispatch-head {
    align-items: flex-start;
  }

  .dispatch-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .operation-media img {
    min-height: 420px;
  }

  .intent-row a {
    width: 100%;
  }

  .intent-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .intent-row a {
    grid-column: auto;
  }

  .process-line,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .field-frame,
  .field-frame-large,
  .field-frame-wide,
  .field-frame-before {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .field-frame-large,
  .field-frame-wide {
    aspect-ratio: 4 / 3;
  }

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

  .reviews-hero {
    padding: 26px 22px;
  }

  .reviews-hero-num {
    font-size: 3.2rem;
  }

  .process-line li {
    min-height: auto;
  }

  .quote-form {
    padding: 20px;
  }

}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
