:root {
  --ink: #111827;
  --charcoal: #18212b;
  --steel: #51606f;
  --line: #d8dee6;
  --panel: #ffffff;
  --wash: #f3f6f8;
  --teal: #0d7681;
  --teal-dark: #08515a;
  --green: #2f8c57;
  --amber: #d98919;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(17, 24, 39, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  min-width: 132px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
}

.nav a,
.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 6px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.header-call:hover {
  background: var(--wash);
}

.header-call {
  color: var(--teal-dark);
  border: 1px solid rgba(13, 118, 129, 0.25);
}

.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/recovery-hero.png");
  background-position: center right;
  background-size: cover;
}

.hero::before {
  content: "";
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.9) 0%, rgba(8, 12, 18, 0.78) 42%, rgba(8, 12, 18, 0.3) 74%, rgba(8, 12, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 12, 18, 0.28), rgba(8, 12, 18, 0));
}

.hero-content {
  padding: 72px 0 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee7df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 10vw, 7.4rem);
  font-weight: 900;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-weight: 900;
}

h3 {
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-lede {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: clamp(1.06rem, 2.2vw, 1.42rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof {
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.hero-proof div {
  min-height: 100px;
  padding: 18px 20px;
  background: rgba(10, 16, 22, 0.54);
}

.hero-proof dt {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.3vw, 1.82rem);
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.trust-strip {
  padding: 22px 0 16px;
  background: var(--charcoal);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.trust-grid div {
  min-height: 84px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-grid strong {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1;
}

.trust-note {
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.trust-note a {
  color: #9ee7df;
  font-weight: 800;
}

.section {
  padding: 90px 0;
}

.muted {
  background: var(--wash);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: start;
}

.copy-stack p,
.section-heading p,
.operations p,
.contact-section p {
  margin: 0;
  color: var(--steel);
  font-size: 1.05rem;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading h2 + p,
.contact-section h2 + p,
.operations h2 + p {
  margin-top: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.review-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-code {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.review-card p {
  margin: 14px 0 0;
  color: var(--steel);
}

.sticky-copy {
  position: sticky;
  top: 112px;
}

.industry-list {
  display: grid;
  gap: 10px;
}

.industry-list div {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: var(--wash);
  color: var(--charcoal);
  font-weight: 900;
}

.operations {
  background: var(--charcoal);
  color: var(--white);
}

.operations .eyebrow {
  color: #9ee7df;
}

.operations h2 {
  color: var(--white);
}

.operations p {
  color: rgba(255, 255, 255, 0.75);
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  min-height: 120px;
  position: relative;
  padding: 22px 22px 22px 78px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  counter-increment: steps;
}

.process-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 22px;
  color: #9ee7df;
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.72);
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
}

.review-card span {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-section {
  padding: 90px 0;
  background: #10161d;
  color: var(--white);
}

.contact-section .eyebrow {
  color: #9ee7df;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-line,
.contact-panel address {
  min-height: 76px;
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-style: normal;
  text-decoration: none;
}

.contact-line:hover {
  border-color: rgba(158, 231, 223, 0.45);
}

.contact-line span,
.contact-panel address span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong,
.contact-panel address strong {
  font-size: clamp(1.06rem, 2.3vw, 1.42rem);
}

.site-footer {
  padding: 24px 0;
  background: #0b1015;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 0.88rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .brand {
    width: 132px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(8, 12, 18, 0.92) 0%, rgba(8, 12, 18, 0.82) 56%, rgba(8, 12, 18, 0.5) 100%);
  }

  .service-grid,
  .review-grid,
  .two-column,
  .operations-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    gap: 10px 12px;
  }

  .brand {
    width: 116px;
  }

  .header-call {
    flex: 1 1 auto;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow-x: visible;
  }

  .nav a {
    min-height: 36px;
    padding: 8px 5px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding-top: 46px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 3.1rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-proof div,
  .trust-grid div {
    min-height: 86px;
  }

  .hero-proof div {
    padding: 14px 10px;
  }

  .hero-proof dt {
    font-size: 1.16rem;
  }

  .hero-proof dd {
    font-size: 0.76rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .contact-section {
    padding: 64px 0;
  }

  .reviews-head,
  .footer-inner {
    display: grid;
  }

  .service-card,
  .review-card {
    min-height: auto;
  }
}
