:root {
  --red-900: #5a030e;
  --red-700: #8f0818;
  --red-500: #cf1029;
  --red-400: #ef2a45;
  --ink-950: #0b0a0a;
  --ink-900: #121111;
  --ink-800: #1c1a1a;
  --ink-300: #c2b7b7;
  --ink-100: #f3ecec;
  --white: #fff;
  --max: 1180px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: linear-gradient(160deg, #0e0b0c 0%, #1b0d10 40%, #130f10 100%);
  color: var(--ink-100);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 8, 8, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  letter-spacing: 0.08em;
}

.brand span {
  color: var(--red-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 1.7rem);
  font-weight: 600;
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  opacity: 0.85;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  height: 2px;
  width: 0;
  background: var(--red-400);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 6rem 0 4rem;
  background-image:
    linear-gradient(120deg, rgba(90, 3, 14, 0.88) 0%, rgba(14, 10, 10, 0.72) 48%, rgba(12, 8, 8, 0.94) 100%),
    url("../../stock images/garage-worker-concept-auto-mechanic-with-working-t-2026-01-11-10-02-19-utc.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 120px;
  background: linear-gradient(to top, #100d0d 15%, transparent 100%);
}

.hero-content {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  max-width: 11ch;
  letter-spacing: 0.02em;
}

.hero-subline {
  max-width: 48ch;
  font-size: clamp(1rem, 2.1vw, 1.28rem);
  color: #f9dce0;
  margin: 1rem 0 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.82rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(130deg, var(--red-700), var(--red-400));
  box-shadow: 0 12px 30px rgba(207, 16, 41, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(239, 42, 69, 0.47);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(14, 10, 10, 0.4);
}

.hero-trust {
  margin-top: 1.2rem;
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
}

.section {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.section-intro {
  color: #dacdcd;
  max-width: 58ch;
  margin: 0;
}

.services-signature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 4vw, 2.3rem);
  align-items: stretch;
  margin-top: 2.2rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}

.service-num {
  color: var(--red-400);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.4rem;
}

.service-name {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.45rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-tag {
  color: #d8c2c4;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-item.active .service-name,
.service-btn:hover .service-name,
.service-btn:focus-visible .service-name {
  color: var(--red-400);
}

.service-media {
  border-radius: var(--radius);
  min-height: 420px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
}

.service-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 1;
}

.service-copy h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-copy p {
  margin: 0.4rem 0 0;
  color: #edd7d9;
}

.timeline {
  margin-top: 2.6rem;
  display: grid;
  gap: 1rem;
}

.timeline-step {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--red-400);
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  transform: skewX(-2deg);
}

.timeline-step h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.timeline-step p {
  margin: 0.3rem 0 0;
  color: #dfd1d1;
}

.timeline-num {
  color: var(--red-400);
  font-size: 2.2rem;
  margin-right: 0.35rem;
  line-height: 1;
}

.proof-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-card h3 {
  margin-top: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.7rem;
}

.editorial-quotes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.editorial-quote {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--red-400);
  background: rgba(0, 0, 0, 0.18);
}

.editorial-quote p {
  margin: 0;
  font-size: 1.03rem;
}

.editorial-quote cite {
  margin-top: 0.6rem;
  display: block;
  color: #f1c9ce;
  font-size: 0.85rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strip-link {
  margin-top: 3rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  background: linear-gradient(135deg, rgba(207, 16, 41, 0.15), rgba(0, 0, 0, 0.2));
}

.strip-link strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.8vw, 2.1rem);
}

.strip-link span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #f0c6cb;
}

.photo-break {
  position: relative;
  min-height: 56vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.photo-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 11, 11, 0.78), rgba(141, 7, 25, 0.5));
}

.photo-break-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.photo-break h1,
.photo-break h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.7rem, 9vw, 6.3rem);
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 10ch;
}

.photo-break p {
  max-width: 54ch;
  color: #f8dddd;
}

.zig {
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}

.zag {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.panel {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.panel h3 {
  margin-top: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.panel-image {
  margin: 0 0 0.9rem;
  border-radius: 12px;
  width: 100%;
  max-height: 230px;
  object-fit: cover;
}

.beliefs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.beliefs li {
  padding-left: 1rem;
  position: relative;
}

.beliefs li::before {
  content: "";
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  left: 0;
  top: 0.55rem;
  background: var(--red-400);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-form {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.form-row {
  margin-bottom: 0.85rem;
}

label {
  display: block;
  margin-bottom: 0.33rem;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0cbcf;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(12, 10, 10, 0.9);
  color: var(--white);
  padding: 0.72rem;
  border-radius: 10px;
  font: inherit;
}

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

.map-frame {
  border: 0;
  width: 100%;
  min-height: 300px;
  border-radius: 16px;
}

.page-title {
  padding-top: 6.2rem;
}

.nexus-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.nexus-highlight {
  padding: 1.1rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(207, 16, 41, 0.18), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem;
}

th {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq {
  margin-top: 2rem;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  margin-bottom: 0.7rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b0a0a;
}

.footer-inner {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 2rem 0 4.8rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.footer-inner h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-mini {
  margin-top: 0.8rem;
  color: var(--ink-300);
}

.mobile-call {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.8rem;
  z-index: 30;
  width: min(92vw, 420px);
  padding: 0.9rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(130deg, #d0132f, #fd455f);
  color: var(--white);
  box-shadow: 0 22px 34px rgba(208, 19, 47, 0.46);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .services-signature,
  .proof-grid,
  .about-grid,
  .contact-wrap,
  .nexus-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-media {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--white);
    border-radius: 999px;
    padding: 0.35rem 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 4vw;
    right: 4vw;
    background: #130f10;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 0.6rem;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    background-attachment: scroll;
  }

  .hero h1,
  .photo-break h1,
  .photo-break h2,
  .section h2 {
    line-height: 0.94;
  }

  .mobile-call {
    display: block;
  }
}
