:root {
  --ink: #141414;
  --muted: #5d6268;
  --paper: #f6f4f1;
  --panel: #ffffff;
  --charcoal: #0d1115;
  --charcoal-2: #1b2025;
  --line: rgba(20, 20, 20, 0.12);
  --white-line: rgba(255, 255, 255, 0.2);
  --hawk-red: #d71920;
  --hawk-red-dark: #9f1015;
  --gold: #c9a766;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(13, 17, 21, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 76px;
  min-width: 76px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: #fff;
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  padding: 0 16px;
  font-size: 0.86rem;
  font-weight: 800;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--hawk-red);
  border-color: var(--hawk-red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/images/debt-recovery-office.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.02);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.9) 0%, rgba(5, 7, 10, 0.68) 42%, rgba(5, 7, 10, 0.25) 100%),
    linear-gradient(0deg, rgba(13, 17, 21, 0.92) 0%, rgba(13, 17, 21, 0) 34%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 132px;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--hawk-red);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff5258;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 10vw, 8.8rem);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.48);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 900;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 0;
  color: #f5f1ea;
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.tagline::before {
  content: "";
  width: clamp(32px, 6vw, 58px);
  height: 3px;
  flex: 0 0 auto;
  background: var(--hawk-red);
}

.hero__copy {
  max-width: 650px;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 3px solid rgba(215, 25, 32, 0.82);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--hawk-red);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--hawk-red-dark);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--hawk-red);
  color: #fff;
}

.service-strip span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 4vw, 56px);
}

.section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section__intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(20, 20, 20, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.03);
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.approach {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  background: var(--charcoal);
  color: #fff;
}

.approach__image {
  min-height: 620px;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(13, 17, 21, 0.08), rgba(13, 17, 21, 0.58)),
    url("assets/images/legal-reclaiming.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.approach__content {
  align-self: center;
}

.approach__content h2 {
  max-width: 780px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.steps article:last-child {
  border-bottom: 1px solid var(--white-line);
}

.steps span {
  display: inline-flex;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 167, 102, 0.42);
  border-radius: 50%;
  background: rgba(201, 167, 102, 0.1);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.steps h3 {
  grid-column: 2;
  margin: 1px 0 0;
}

.steps p {
  grid-column: 2;
  max-width: 58ch;
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}

.proof p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--hawk-red);
  border-bottom: 3px solid var(--hawk-red);
  transform: rotate(-45deg);
}

.poster-preview {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.poster-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}


.ad-section {
  padding: clamp(38px, 6vw, 72px) clamp(20px, 4vw, 56px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ad-shell {
  max-width: 980px;
  min-height: 120px;
  display: grid;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 16px;
  border: 1px dashed rgba(20, 20, 20, 0.18);
  border-radius: var(--radius);
  background: #fafafa;
}

.ad-shell > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-shell .adsbygoogle {
  min-height: 96px;
}

.contact {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 17, 21, 0.9), rgba(13, 17, 21, 0.64)),
    url("assets/images/repossession-vehicle.png") center / cover;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.44fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-panel {
  display: grid;
  gap: 22px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(13, 17, 21, 0.72);
  backdrop-filter: blur(10px);
}

.contact-panel span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-panel .button {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(20px, 4vw, 56px);
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 78px;
  flex: 0 0 auto;
}

.footer-brand p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.1;
}

.footer-credit {
  display: grid;
  gap: 3px;
  justify-items: end;
  text-align: right;
}

.footer-credit p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-credit a {
  color: var(--hawk-red);
  font-weight: 900;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--hawk-red-dark);
}

.footer-url {
  font-size: 0.88rem;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    justify-items: start;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(13, 17, 21, 0.96);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-call {
    display: none;
  }

  .hero__content {
    width: min(720px, calc(100% - 40px));
    margin-inline: auto;
  }

  .section__intro,
  .approach,
  .proof,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach__image {
    min-height: 440px;
  }

  .poster-preview {
    max-width: 440px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-credit {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 74px;
    min-width: 74px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.54)),
      linear-gradient(0deg, rgba(13, 17, 21, 0.92) 0%, rgba(13, 17, 21, 0) 44%);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip span {
    min-height: 66px;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-inline: 10px;
    line-height: 1.25;
  }

  .service-strip span:nth-child(2n) {
    border-right: 0;
  }

  .service-strip span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section,
  .ad-section,
  .contact {
    padding-inline: 18px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 118px 1fr;
  }

  .service-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-card div {
    padding: 18px;
  }

  .steps article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .steps span {
    grid-row: auto;
    width: 40px;
    height: 40px;
  }

  .steps h3,
  .steps p {
    grid-column: auto;
  }

  .steps p {
    margin: 0;
  }

  .approach__image {
    min-height: 310px;
  }

  .contact-panel {
    padding: 22px;
  }
}


