/* Freeman's Security Team — v4 "Lithic Dark"
   One grotesque (400/500), -0.02em tracking at every size, 24px cards,
   hairlines, deep floating shadows, concentric-arc decoration.
   Black & white first; blue structure; orange actions; green = safe. */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: var(--track);
  color: var(--text-mid);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--orange);
  color: var(--vault);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Type (Lithic scale, weights 400/500 only) ---------- */

.display {
  font-size: var(--text-display);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: var(--track);
  color: var(--text-hi);
  text-wrap: balance;
}

.h {
  font-size: var(--text-h);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: var(--track);
  color: var(--text-hi);
  text-wrap: balance;
}

.h-sm {
  font-size: var(--text-h-sm);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: var(--track);
  color: var(--text-hi);
}

.sub {
  font-size: var(--text-sub);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: var(--track);
  color: var(--text-mid);
}

.caption {
  font-size: var(--text-caption);
  letter-spacing: var(--track);
  color: var(--text-low);
}

.kicker {
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
}

.lede {
  max-width: 64ch;
  color: var(--text-mid);
}

/* ---------- Buttons (Lithic spec) ---------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--vault);
  font: 500 var(--text-body) / 1 var(--font);
  letter-spacing: var(--track);
  border: 0;
  border-radius: var(--r-card);
  padding: 14px 38px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--ease);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-primary:focus-visible {
  outline-color: var(--text-hi);
}

.btn-primary:active {
  background: var(--orange);
  filter: brightness(0.94);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-hi);
  font: 500 var(--text-body) / 1 var(--font);
  letter-spacing: var(--track);
  border: 1px solid rgba(247, 249, 252, 0.45);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease);
}

.btn-ghost:hover {
  border-color: var(--text-hi);
  background: rgba(247, 249, 252, 0.05);
}

.btn-ghost--ink {
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost--ink:hover {
  border-color: var(--ink);
  background: rgba(10, 12, 16, 0.05);
}

.arrow::after {
  content: "→";
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 9, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block: 16px;
}

.wordmark {
  text-decoration: none;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wordmark-badge {
  width: 44px;
  height: 44px;
  flex: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.wordmark-text {
  display: block;
}

.wordmark strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: var(--track);
  color: var(--text-hi);
}

.wordmark span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-low);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav > a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: var(--track);
  text-decoration: none;
  color: var(--text-mid);
  white-space: nowrap;
}

.site-nav > a:hover {
  color: var(--text-hi);
}

.nav-phone {
  font-weight: 500;
  color: var(--text-hi) !important;
  white-space: nowrap;
}

.site-nav > a.btn-primary {
  color: var(--vault);
  padding: 11px 22px;
}

.site-nav > a.btn-primary:hover {
  color: var(--vault);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  color: var(--text-hi);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font: 500 14px/1 var(--font);
  letter-spacing: var(--track);
  cursor: pointer;
}

/* ---------- Hero vault ---------- */

.hero {
  background: var(--vault);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.92) 26%, rgba(0, 0, 0, 0.55) 52%, rgba(0, 0, 0, 0.1) 78%),
    linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 30%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 26%);
}

.hero .arcs {
  position: absolute;
  left: -220px;
  bottom: -260px;
  width: 640px;
  height: 640px;
  z-index: 1;
  opacity: 0.7;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(88px, 13vh, 150px);
}

.hero-copy {
  max-width: 620px;
}

.hero h1 {
  margin-top: 18px;
}

.hero .sub {
  max-width: 44ch;
  margin-top: 22px;
  color: rgba(247, 249, 252, 0.75);
}

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

.hero-cred {
  margin-top: 32px;
  font-size: var(--text-caption);
  letter-spacing: var(--track);
  color: var(--text-low);
}

.hero .status-card {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 36px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xl);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: var(--track);
  white-space: nowrap;
}

/* ---------- Fast response strip ---------- */

.strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  padding-block: 22px;
}

.strip-title {
  font-weight: 500;
  color: var(--text-hi);
}

.strip .spacer {
  flex: 1;
}

/* ---------- Sections ---------- */

.section {
  padding-block: var(--section);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(36px, 5vh, 56px);
}

.section-head .h {
  margin-top: 14px;
}

.section-head .lede {
  margin-top: 16px;
}

/* ---------- Service cards (Lithic warm card → dark panel) ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-24);
}

.svc-card {
  background: var(--panel);
  border-radius: var(--r-card);
  padding: var(--s-32) var(--s-32) var(--s-24);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background-color 200ms var(--ease), translate 200ms var(--ease);
}

.svc-card:hover {
  background: var(--panel-2);
  translate: 0 -3px;
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(77, 127, 209, 0.07);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-bottom: 6px;
}

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

.svc-points {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: grid;
  gap: 7px;
}

.svc-points li {
  position: relative;
  padding-left: 16px;
  font-size: var(--text-caption);
  color: var(--text-low);
}

.svc-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.7;
}

.svc-card h3 {
  font-size: var(--text-h-sm);
  font-weight: 500;
  letter-spacing: var(--track);
  color: var(--text-hi);
}

.svc-card p {
  color: var(--text-low);
  flex: 1;
}

.svc-card a {
  font-weight: 500;
  color: var(--text-hi);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-card a:hover {
  color: var(--orange);
}

/* ---------- Track record (white band) ---------- */

.white-band {
  background: var(--white);
  color: var(--ink);
  padding-block: var(--section);
}

.white-band .h,
.white-band .h-sm {
  color: var(--ink);
}

.white-band .kicker {
  color: var(--blue-ink);
}

.white-band .lede {
  color: var(--ink-muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-32) var(--s-48);
  margin-top: clamp(40px, 6vh, 56px);
}

.stat {
  border-top: 1px solid var(--white-line);
  padding-top: 18px;
}

.stat dd {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: var(--track);
  line-height: 1.05;
  color: var(--ink);
}

.stat dd.act {
  color: var(--orange-ink);
}

.stat dt {
  margin-top: 8px;
  font-size: var(--text-caption);
  color: var(--ink-muted);
}

.white-band .fine {
  margin-top: 44px;
  font-size: var(--text-caption);
  color: var(--ink-muted);
  max-width: 72ch;
}

/* ---------- Advantages ---------- */

.adv-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.adv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-32) var(--s-40);
}

.adv {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
}

.adv-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.adv h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: var(--track);
  color: var(--text-hi);
}

.adv p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-low);
}

/* ---------- Feature panel + post report ---------- */

.feature {
  background: var(--panel);
  border-radius: var(--r-card);
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature .arcs {
  position: absolute;
  right: -180px;
  top: -180px;
  width: 480px;
  height: 480px;
  opacity: 0.5;
}

.feature > * {
  position: relative;
}

.check-list {
  list-style: none;
  margin-top: 28px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-mid);
}

.check-list li + li {
  margin-top: 14px;
}

.check-list li::before {
  content: "✓";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  margin-top: 2px;
}

.post-report {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-card);
  padding: 26px 28px;
  box-shadow: var(--shadow-xl);
}

.post-report header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-line);
}

.post-report header span:first-child {
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--ink-muted);
}

.post-report header span:last-child {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.post-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 12px;
  font-size: 15px;
}

.post-row + .post-row {
  border-top: 1px solid var(--white-line);
}

.post-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-caption);
  color: var(--ink-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--safe);
  flex: none;
}

.post-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------- Industries ---------- */

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-24);
}

.ind {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-24) var(--s-24);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}

.ind:hover {
  border-color: var(--blue-deep);
  background: var(--panel);
}

.ind .icon-tile {
  margin-bottom: 0;
}

.ind h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: var(--track);
  color: var(--text-hi);
}

.ind p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-low);
}

/* ---------- Statement photo band ---------- */

.statement {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.statement img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, var(--bg), transparent 24%, transparent 76%, var(--bg)),
    linear-gradient(to right, rgba(0, 0, 0, 0.55), transparent 60%);
}

.statement .h {
  max-width: 19ch;
  font-size: clamp(30px, 4.2vw, 48px);
}

.statement .caption {
  margin-top: 18px;
  color: rgba(247, 249, 252, 0.75);
}

/* ---------- Service area ---------- */

.area-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.city-list {
  columns: 3;
  column-gap: var(--s-40);
  list-style: none;
}

.city-list li {
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-mid);
  break-inside: avoid;
}

/* ---------- Careers ---------- */

.careers-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.careers-grid figure img {
  border-radius: var(--r-img);
  box-shadow: var(--shadow-xl);
}

.careers-grid .lede {
  margin-top: 18px;
}

.careers-grid .btn-ghost {
  margin-top: 30px;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: var(--track);
  color: var(--text-hi);
}

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

.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 22px;
  color: var(--orange);
  flex: none;
  transition: rotate 200ms var(--ease);
}

.faq[open] summary::after {
  rotate: 45deg;
}

.faq summary:hover {
  color: var(--text-mid);
}

.faq p {
  padding: 0 40px 24px 0;
  color: var(--text-low);
  max-width: 68ch;
}

/* ---------- Quote ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.form-card:has(form.submitted-ok) {
  display: none;
}

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-card);
  padding: clamp(24px, 3.4vw, 44px);
  box-shadow: var(--shadow-xl);
}

.form-card__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--white-line);
}

.form-card__title {
  font-size: var(--text-h-sm);
  font-weight: 500;
  letter-spacing: var(--track);
  color: var(--ink);
}

.form-card__resp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--ink-muted);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label,
.field .field-label {
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: var(--track);
  color: var(--ink-muted);
}

.field input,
.field select,
.field textarea {
  font: 400 var(--text-body) / 1.4 var(--font);
  letter-spacing: var(--track);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--input-line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 127, 209, 0.18);
}

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

.radio-row {
  display: flex;
  gap: 28px;
  padding-block: 10px;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 400 15px/1 var(--font);
  letter-spacing: var(--track);
  color: var(--ink);
  cursor: pointer;
}

.radio-row input {
  width: auto;
  accent-color: var(--orange);
}

.field-error {
  display: none;
  font-size: 13px;
  color: var(--error-ink);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--orange);
}

.field.invalid .field-error {
  display: block;
}

.form-success {
  display: none;
  background: var(--panel);
  border-radius: var(--r-card);
  padding: 32px;
  margin-top: 36px;
  box-shadow: var(--shadow-sm);
}

.form-success.visible {
  display: block;
}

form.submitted-ok {
  display: none;
}

.quote-rail {
  background: var(--panel);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 26px;
}

.rail-item .caption {
  display: block;
  margin-bottom: 6px;
}

.rail-item a {
  text-decoration: none;
  color: var(--text-hi);
}

.rail-item a:hover {
  color: var(--orange);
}

.rail-item p:not(.caption) {
  color: var(--text-hi);
}

.rail-phone {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 500;
  letter-spacing: var(--track);
  font-variant-numeric: tabular-nums;
}

.rail-steps {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
}

.rail-steps ol {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.rail-steps li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  color: var(--text-mid);
}

.rail-steps li > span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---------- CTA band + footer ---------- */

.cta-band {
  background: var(--vault);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(64px, 9vh, 96px);
  text-align: center;
}

.cta-band .arcs {
  position: absolute;
  right: -200px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  opacity: 0.6;
  z-index: 0;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.site-footer {
  background: var(--vault);
  border-top: 1px solid var(--line);
  padding-block: 44px;
  color: var(--text-low);
  font-size: 15px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  align-items: center;
  justify-content: space-between;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text-hi);
}

.footer-license {
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---------- Motion ---------- */

.rise {
  opacity: 0;
  translate: 0 24px;
  animation: rise 800ms var(--ease) forwards;
}

.rise-2 { animation-delay: 110ms; }
.rise-3 { animation-delay: 220ms; }
.rise-4 { animation-delay: 340ms; }

@keyframes rise {
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 650ms var(--ease), translate 650ms var(--ease);
}

.reveal.in {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rise,
  .reveal {
    opacity: 1;
    translate: none;
    animation: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .svc-grid,
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero .container,
  .adv-grid,
  .feature,
  .area-grid,
  .careers-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .adv-list {
    grid-template-columns: 1fr;
  }

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

  .city-list {
    columns: 2;
  }

  .hero-media .status-card {
    left: 16px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .hero-bg::after {
    background:
      rgba(0, 0, 0, 0.55),
      linear-gradient(to right, rgba(0, 0, 0, 0.92) 26%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3)),
      linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 40%);
    background-blend-mode: normal;
  }

  .svc-grid,
  .ind-grid {
    grid-template-columns: 1fr;
  }

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

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

  .city-list {
    columns: 2;
  }
}
