@font-face {
  font-family: "Oswald Local";
  src: url("./assets/Oswald.ttf") format("truetype");
  font-display: swap;
}

:root {
  --black: #050505;
  --black-2: #101010;
  --panel: rgba(18, 18, 18, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.06);
  --white: #f5f5f0;
  --muted: #b9b9b2;
  --dim: #77776f;
  --red: #d31512;
  --red-dark: #750b09;
  --line: rgba(255, 255, 255, 0.18);
  --line-red: rgba(211, 21, 18, 0.48);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --font-display: "Oswald Local", "Arial Narrow", Impact, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(211, 21, 18, 0.18) 0 1px, transparent 1px 34px),
    radial-gradient(circle at 78% 8%, rgba(211, 21, 18, 0.2), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #0e0e0e 42%, #050505 100%);
  color: var(--white);
  font-family: var(--font-body);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(95deg, transparent 0 16%, rgba(255, 255, 255, 0.03) 16% 16.4%, transparent 16.4% 100%),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.08), transparent 18rem);
  opacity: 0.75;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

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

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

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

.page-frame {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 34px;
}

.masthead,
.service-band,
.split-section,
.contact-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.96));
  box-shadow: var(--shadow);
}

.masthead {
  min-height: calc(100vh - 36px);
  display: flex;
  flex-direction: column;
}

.masthead::before,
.service-band::before,
.contact-strip::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(165deg, transparent 0 58%, rgba(211, 21, 18, 0.18) 58% 59%, transparent 59%),
    linear-gradient(15deg, rgba(211, 21, 18, 0.82) 0 2px, transparent 2px 100%);
  background-size: 100% 100%, 120px 22px;
  opacity: 0.6;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.62);
}

.brand-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.brand-link img {
  width: clamp(150px, 24vw, 265px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.7));
}

.brand-link span {
  display: none;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-actions,
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.icon-button,
.text-button,
.call-action,
.line-action,
.submit-button,
.contact-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.icon-button {
  width: 48px;
  padding: 0;
  border-color: var(--line-red);
  background: rgba(211, 21, 18, 0.12);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.text-button,
.line-action,
.contact-actions a:last-child {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
}

.call-action,
.submit-button,
.contact-actions a:first-child {
  padding: 0 20px;
  border-color: var(--red);
  background: linear-gradient(180deg, var(--red), #9a0d0b);
  box-shadow: 0 16px 26px rgba(211, 21, 18, 0.24);
}

.icon-button:hover,
.text-button:hover,
.call-action:hover,
.line-action:hover,
.submit-button:hover,
.contact-actions a:hover {
  transform: translateY(-2px);
  border-color: var(--white);
}

.dispatch-grid {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 70px) clamp(18px, 4vw, 50px) 34px;
}

.dispatch-copy {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(211, 21, 18, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    #050505;
}

.dispatch-copy::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(130deg, transparent 0 48%, rgba(211, 21, 18, 0.24) 48% 49%, transparent 49%),
    repeating-linear-gradient(170deg, transparent 0 28px, rgba(211, 21, 18, 0.18) 29px 31px, transparent 32px 74px);
  opacity: 0.72;
}

.dispatch-copy::after {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: min(520px, 52vw);
  aspect-ratio: 1;
  border: 2px solid rgba(211, 21, 18, 0.5);
  border-radius: 50%;
  pointer-events: none;
  content: "";
  box-shadow:
    inset 0 0 0 24px rgba(255, 255, 255, 0.035),
    inset 0 0 0 72px rgba(211, 21, 18, 0.08),
    0 0 60px rgba(211, 21, 18, 0.16);
}

.dispatch-copy > * {
  position: relative;
  z-index: 1;
}

.hero-brand-card {
  width: min(360px, 76vw);
  margin-bottom: auto;
}

.hero-brand-card img {
  width: 100%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.7));
}

.hero-brand-card span {
  display: inline-flex;
  margin-top: 12px;
  border-left: 4px solid var(--red);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  max-width: 8.4ch;
  margin: 12px 0;
  font-size: clamp(3.8rem, 7.4vw, 7.8rem);
  text-shadow:
    3px 3px 0 #000,
    6px 6px 0 rgba(211, 21, 18, 0.84);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  line-height: 1.58;
}

.tagline {
  max-width: 12ch;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.92);
}

.hero-actions {
  margin-top: 8px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.proof-row div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--line-red);
  background: rgba(0, 0, 0, 0.66);
}

.proof-row dt {
  margin-bottom: 7px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-row dd {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.request-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(211, 21, 18, 0.14), transparent 38%),
    rgba(0, 0, 0, 0.88);
}

.form-heading {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-red);
  margin-bottom: 18px;
}

.form-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.hidden-field {
  display: none;
}

.request-panel label,
.priority-group {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-panel input,
.request-panel select,
.request-panel textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.request-panel input,
.request-panel select {
  padding: 0 12px;
}

.request-panel textarea {
  padding: 12px;
  resize: vertical;
}

.request-panel select option {
  background: var(--black);
  color: var(--white);
}

.request-panel input:focus,
.request-panel select:focus,
.request-panel textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 21, 18, 0.22);
}

.priority-group {
  grid-template-columns: 1fr 1fr;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.priority-group legend {
  padding: 0 8px;
  color: var(--red);
  font-family: var(--font-display);
}

.priority-group label {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 8px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.priority-group input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--red);
}

.request-summary {
  min-height: 56px;
  margin: 2px 0 14px;
  padding: 12px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  line-height: 1.45;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.service-band,
.split-section,
.contact-strip {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 42px);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(211, 21, 18, 0.22), transparent 42%),
    var(--panel);
}

.service-card.is-featured {
  border-color: var(--red);
  background:
    linear-gradient(160deg, rgba(211, 21, 18, 0.78), rgba(20, 20, 20, 0.92) 58%),
    var(--panel);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line-red);
  border-radius: 50%;
  background: #050505;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card button {
  width: fit-content;
  min-height: 42px;
  border: 1px solid var(--line-red);
  border-radius: 0;
  padding: 0 13px;
  background: rgba(211, 21, 18, 0.08);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.mechanic-photo {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(211, 21, 18, 0.28), transparent 48%),
    repeating-linear-gradient(165deg, transparent 0 34px, rgba(211, 21, 18, 0.24) 35px 38px, transparent 39px 78px),
    #030303;
}

.mechanic-photo::before {
  position: absolute;
  inset: 11%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
  content: "";
  box-shadow:
    inset 0 0 0 36px rgba(211, 21, 18, 0.1),
    0 0 80px rgba(0, 0, 0, 0.9);
}

.mechanic-photo img {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.8));
}

.poster-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.poster-copy span {
  border: 1px solid var(--line-red);
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-copy h2 {
  margin: 10px 0 16px;
}

.mobile-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.trust-list article {
  display: grid;
  grid-template-columns: 70px 0.35fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.trust-list span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-red);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.trust-list h3,
.trust-list p {
  margin: 0;
}

.trust-list p {
  color: var(--muted);
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact-strip h2 {
  margin: 10px 0 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 4px 0;
  color: var(--dim);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--white);
}

@media (min-width: 1040px) {
  .brand-link span {
    display: block;
  }
}

@media (max-width: 980px) {
  .dispatch-grid,
  .split-section,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .dispatch-copy {
    min-height: 610px;
  }

  .request-panel {
    align-self: auto;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-actions {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .page-frame {
    width: min(100% - 14px, 100%);
    padding-top: 7px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .brand-link img {
    width: min(260px, 82vw);
  }

  .dispatch-grid,
  .service-band,
  .split-section,
  .contact-strip {
    padding: 14px;
  }

  .dispatch-copy {
    min-height: 560px;
    padding: 18px;
    background-position: 48% center;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .tagline {
    font-size: clamp(2rem, 11vw, 3.8rem);
  }

  .proof-row,
  .service-grid,
  .priority-group {
    grid-template-columns: 1fr;
  }

  .trust-list article {
    grid-template-columns: 58px 1fr;
  }

  .trust-list p {
    grid-column: 1 / -1;
  }

  .mechanic-photo {
    min-height: 420px;
  }

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

  .text-button,
  .call-action,
  .line-action,
  .contact-actions a {
    flex: 1 1 210px;
  }
}

@media (max-width: 430px) {
  .icon-button {
    flex: 0 0 48px;
  }

  .text-button {
    flex: 1 1 calc(100% - 60px);
  }

  .request-panel {
    padding: 16px;
  }
}
