/* =====================================================
   Stedfast Automotive — shared stylesheet
   Charcoal/black · metallic silver · blue accent
   ===================================================== */
:root {
  --ink: #16181c;
  --ink-2: #1e2127;
  --ink-3: #262a32;
  --steel: #9aa3ad;
  --steel-light: #c7ced6;
  --paper: #f5f3ef;
  --paper-2: #ffffff;
  --amber: #008fff;
  --amber-deep: #0070cc;
  --line: rgba(154, 163, 173, 0.22);
  --line-dark: rgba(0, 0, 0, 0.08);
  --maxw: 1200px;
  --display: "Oswald", sans-serif;
  --body: "Inter", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--amber);
}
.eyebrow.center {
  justify-content: center;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.h-sec {
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 30px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.18s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.btn-primary {
  background: var(--amber);
  color: #001a33;
}
.btn-primary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--amber);
  color: #001a33;
  transform: translateY(-2px);
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
  padding: 18px 0;
}
header.scrolled,
header.solid {
  background: rgba(22, 24, 28, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.brand img {
  height: 106px;
  width: auto;
  max-height: 106px;
}
.brand-txt {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 1;
}
.brand-txt b {
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.brand-txt span {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--steel);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--amber);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(22, 24, 28, 0.99);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.08em;
  padding: 10px;
}
.mobile-menu a:hover {
  color: var(--amber);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- HERO (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  animation: kenburns 9s ease-in-out infinite alternate;
}
.hero-bg .slide.active {
  opacity: 1;
}
@keyframes kenburns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.14);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg .slide {
    animation: none;
    transform: none;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(22, 24, 28, 0.96) 0%,
    rgba(22, 24, 28, 0.82) 42%,
    rgba(22, 24, 28, 0.45) 75%,
    rgba(22, 24, 28, 0.25) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.012) 0 1px,
    transparent 1px 3px
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 900px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  text-transform: uppercase;
  margin: 22px 0 0;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
  display: block;
}
.hero p {
  color: var(--steel-light);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 540px;
  margin: 22px 0 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--steel-light);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.hero-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--amber);
  flex-shrink: 0;
}
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--steel);
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint span {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--amber), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(22, 24, 28, 0.97) 0%,
    rgba(22, 24, 28, 0.72) 45%,
    rgba(22, 24, 28, 0.5) 100%
  );
  z-index: 1;
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 52px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  text-transform: uppercase;
  margin-top: 18px;
}
.crumbs {
  margin-top: 16px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--steel);
}
.crumbs a {
  color: var(--steel-light);
}
.crumbs a:hover {
  color: var(--amber);
}
.crumbs span {
  color: var(--amber);
}

/* ---------- SECTION SHELL ---------- */
section {
  position: relative;
}
.pad {
  padding: clamp(70px, 10vw, 120px) 0;
}
.sec-head {
  max-width: 680px;
  margin-bottom: 54px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head.center .eyebrow {
  justify-content: center;
}
.sec-head h2 {
  margin-top: 18px;
}
.sec-head p {
  margin-top: 18px;
  color: #4b5159;
  font-size: 1.05rem;
}
.dark {
  background: var(--ink);
  color: #fff;
}
.dark .sec-head p {
  color: var(--steel-light);
}
.white {
  background: var(--paper-2);
}

/* ---------- STATS ---------- */
.stats {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 46px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat .num span {
  color: var(--amber);
}
.stat .lbl {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--steel);
  margin-top: 10px;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media .main {
  border-radius: 3px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}
.about-media .float {
  position: absolute;
  bottom: -34px;
  right: -20px;
  width: 46%;
  border-radius: 3px;
  border: 6px solid var(--paper);
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}
.dark .about-media .float {
  border-color: var(--ink);
}
.about-media .est {
  position: absolute;
  top: -26px;
  left: -22px;
  background: var(--amber);
  color: #001a33;
  padding: 16px 20px;
  border-radius: 2px;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}
.about-media .est b {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
.about-media .est i {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}
.about-copy h2 {
  margin: 18px 0;
}
.about-copy p {
  color: #4b5159;
  margin-bottom: 16px;
}
.dark .about-copy p {
  color: var(--steel-light);
}
.about-points {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.about-points li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-weight: 500;
}
.dark .about-points li {
  color: #fff;
}
.about-points svg {
  width: 21px;
  height: 21px;
  fill: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- SERVICES CARDS ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
}
.svc-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(0.25);
}
.svc-card:hover .svc-img img {
  transform: scale(1.08);
  filter: grayscale(0);
}
.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 24, 28, 0.85), transparent 55%);
}
.svc-num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}
.svc-body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-body h3 {
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.svc-body p {
  color: var(--steel-light);
  font-size: 0.94rem;
  margin: 12px 0 20px;
  flex: 1;
}
.svc-link {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-link svg {
  width: 15px;
  height: 15px;
  fill: var(--amber);
  transition: transform 0.25s;
}
.svc-card:hover .svc-link svg {
  transform: translateX(5px);
}

/* ---------- DETAIL ROWS (services/classic inner) ---------- */
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 64px;
}
.detail:last-child {
  margin-bottom: 0;
}
.detail.flip .detail-media {
  order: 2;
}
.detail-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.detail-copy .tag {
  font-family: var(--display);
  font-weight: 700;
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}
.detail-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin: 10px 0 14px;
}
.detail-copy p {
  color: #4b5159;
}
.dark .detail-copy p {
  color: var(--steel-light);
}
@media (max-width: 860px) {
  .detail {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .detail.flip .detail-media {
    order: 0;
  }
}

/* ---------- WHY ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  overflow: hidden;
}
.why-cell {
  background: var(--paper-2);
  padding: 38px 32px;
  transition: background 0.3s;
}
.why-cell:hover {
  background: var(--paper);
}
.why-cell .ic {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-cell .ic svg {
  width: 26px;
  height: 26px;
  fill: var(--amber);
}
.why-cell h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-cell p {
  color: #5a606a;
  font-size: 0.95rem;
}

/* ---------- PROCESS ---------- */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
}
.proc-step {
  padding: 0 18px;
  position: relative;
  text-align: center;
}
.proc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--line));
}
.proc-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 22px;
  background: var(--ink);
  position: relative;
  z-index: 2;
  counter-increment: step;
}
.proc-dot::before {
  content: counter(step, decimal-leading-zero);
}
.proc-step h3 {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proc-step p {
  color: var(--steel-light);
  font-size: 0.88rem;
}

/* ---------- PARALLAX BANNER ---------- */
.parallax {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 40px 0px;
}
@media (hover: none) {
  .parallax {
    background-attachment: scroll;
  }
}
.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 24, 28, 0.93),
    rgba(22, 24, 28, 0.6)
  );
}
.parallax .wrap {
  position: relative;
  z-index: 2;
}
.parallax h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  text-transform: uppercase;
  max-width: 680px;
}
.parallax h2 em {
  font-style: normal;
  color: var(--amber);
}
.parallax p {
  color: var(--steel-light);
  max-width: 520px;
  margin: 18px 0 30px;
  font-size: 1.05rem;
}

/* ---------- GALLERY ---------- */
.gallery-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-tab {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 11px 24px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--steel-light);
  border-radius: 2px;
  cursor: pointer;
  transition: 0.25s;
}
.gallery-tab:hover {
  border-color: var(--amber);
  color: #fff;
}
.gallery-tab.active {
  background: var(--amber);
  border-color: var(--amber);
  color: #001a33;
}
.masonry {
  columns: 4;
  column-gap: 14px;
}
.masonry .tile {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-3);
}
.masonry .tile img {
  width: 100%;
  transition: transform 0.6s ease;
  filter: grayscale(0.2);
}
.masonry .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 28, 0);
  transition: background 0.3s;
}
.masonry .tile:hover img {
  transform: scale(1.07);
  filter: grayscale(0);
}
.masonry .tile:hover::after {
  background: rgba(22, 24, 28, 0.15);
}
.masonry .tile .zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.masonry .tile:hover .zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.masonry .tile .zoom svg {
  width: 20px;
  height: 20px;
  fill: #001a33;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 13, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-nav:hover {
  background: var(--amber);
  color: #001a33;
  border-color: var(--amber);
}
.lb-prev {
  left: 24px;
}
.lb-next {
  right: 24px;
}

/* ---------- TESTIMONIALS ---------- */
.tst-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
}
.tst-card {
  scroll-snap-align: start;
  min-width: min(420px, 85vw);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
}
.tst-stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.tst-card blockquote {
  font-size: 1.06rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.tst-who {
  display: flex;
  align-items: center;
  gap: 13px;
}
.tst-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
}
.tst-who b {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}
.tst-who span {
  font-size: 0.82rem;
  color: #7a808a;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-dark);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-q .pm {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .pm::before,
.faq-q .pm::after {
  content: "";
  position: absolute;
  background: var(--amber);
  transition: transform 0.3s;
}
.faq-q .pm::before {
  top: 12px;
  left: 3px;
  width: 20px;
  height: 2px;
}
.faq-q .pm::after {
  top: 3px;
  left: 12px;
  width: 2px;
  height: 20px;
}
.faq-item.open .pm::after {
  transform: scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 0 24px;
  color: #5a606a;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}
.contact-info h2 {
  margin: 18px 0;
}
.contact-info > p {
  color: var(--steel-light);
  max-width: 440px;
  margin-bottom: 30px;
}
.info-list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}
.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-list .ic {
  width: 46px;
  height: 46px;
  border-radius: 2px;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-list .ic svg {
  width: 21px;
  height: 21px;
  fill: var(--amber);
}
.info-list b {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--steel);
  display: block;
  margin-bottom: 3px;
}
.info-list a,
.info-list span {
  color: #fff;
  font-size: 1.05rem;
}
.info-list a:hover {
  color: var(--amber);
}
.map-embed {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 8px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}
.map-full iframe {
  height: 420px;
}
.form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 38px 34px;
}
.form h3 {
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form > p {
  color: var(--steel-light);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--steel);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  color: #fff;
  padding: 13px 15px;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--steel);
  text-align: center;
  margin-top: 14px;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--amber);
  text-align: center;
  padding: 56px 0;
}
.cta-strip h2 {
  color: #001a33;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  text-transform: uppercase;
}
.cta-strip p {
  color: #002a52;
  margin: 12px 0 26px;
  font-size: 1.05rem;
}
.cta-strip .btn-dark {
  background: var(--ink);
}

/* ---------- FOOTER ---------- */
footer {
  background: #101216;
  color: var(--steel-light);
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.foot-brand .brand {
  margin-bottom: 18px;
}
.foot-brand p {
  font-size: 0.92rem;
  max-width: 300px;
}
.foot-col h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 18px;
}
.foot-col ul {
  /* list-style: none; */
  display: grid;
  gap: 11px;
}
.foot-col a {
  font-size: 0.92rem;
  color: var(--steel-light);
}
.foot-col a:hover {
  color: var(--amber);
}
.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.foot-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}
.foot-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
}
.foot-social svg {
  width: 18px;
  height: 18px;
  fill: var(--steel-light);
}
.foot-social a:hover svg {
  fill: #001a33;
}
.review-badge {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.review-badge .g {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.review-badge .stars {
  color: var(--amber);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.review-badge small {
  display: block;
  color: var(--steel);
  font-size: 0.74rem;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--steel);
}

/* ---------- FLOATERS ---------- */
.floaters {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s;
}
.float-btn:hover {
  transform: scale(1.08);
}
.float-btn svg {
  width: 24px;
  height: 24px;
}
.float-call {
  background: var(--amber);
}
.float-call svg {
  fill: #001a33;
}
.float-quote {
  background: #fff;
  border: 1px solid var(--line-dark);
}
.float-quote svg {
  fill: var(--ink);
}
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 85;
  display: none;
  background: rgba(22, 24, 28, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px;
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  justify-content: center;
  font-size: 0.82rem;
  padding: 13px;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .masonry {
    columns: 3;
  }
  .about-grid {
    gap: 40px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}
@media (max-width: 860px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .burger {
    display: flex;
  }
  .brand img {
    height: 80px;
    max-height: 80px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat {
    border-bottom: 1px solid var(--line);
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    max-width: 560px;
    margin: 0 auto 40px;
  }
  .proc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 18px;
  }
  .proc-step::after {
    display: none;
  }
  .masonry {
    columns: 2;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }
  .brand img {
    height: 64px;
    max-height: 64px;
  }
  .svc-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .proc-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .floaters {
    bottom: 78px;
  }
  .mobile-bar {
    display: flex;
  }
  .about-media .float {
    display: none;
  }
}
