:root {
  --ink: #151923;
  --muted: #667085;
  --paper: #f7f5f1;
  --white: #ffffff;
  --charcoal: #202632;
  --red: #d71920;
  --red-dark: #a70f16;
  --teal: #0f9d8f;
  --gold: #f3b229;
  --line: rgba(21, 25, 35, 0.12);
  --shadow: 0 24px 70px rgba(21, 25, 35, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 96px;
}

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

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 24, 32, 0.92), rgba(20, 24, 32, 0.34));
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(218px, 22vw, 300px);
  height: auto;
}

.main-nav {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.header-call:hover {
  color: var(--white);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 18, 25, 0.95) 0%, rgba(16, 18, 25, 0.74) 42%, rgba(16, 18, 25, 0.28) 100%),
    linear-gradient(0deg, rgba(16, 18, 25, 0.92), rgba(16, 18, 25, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 36px));
  margin: 0 0 140px clamp(18px, 6vw, 88px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 900;
}

h1 > span {
  display: block;
}

.mobile-title-line {
  display: inline;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 36px rgba(215, 25, 32, 0.28);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.btn.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 6vw, 88px);
  right: clamp(18px, 6vw, 88px);
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: center;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section-band,
.services,
.vehicle-scope,
.gallery,
.faq,
.location {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.intro-grid article {
  min-height: 150px;
  padding: 26px;
  background: var(--paper);
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid strong {
  margin-bottom: 12px;
  font-size: 20px;
}

.intro-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.vehicle-scope {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  color: var(--white);
  background: #151923;
}

.scope-media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.scope-content {
  max-width: 680px;
}

.scope-content .eyebrow {
  color: var(--gold);
}

.scope-content h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.02;
}

.scope-content p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scope-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(21, 25, 35, 0.08);
}

.service-card.featured {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.12;
}

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

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 16px 14px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(16, 18, 25, 0.86));
  font-size: 14px;
  font-weight: 900;
}

.process {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 38, 50, 0.97), rgba(32, 38, 50, 0.94)),
    radial-gradient(circle at top right, rgba(15, 157, 143, 0.28), transparent 38%);
}

.process .eyebrow {
  color: var(--gold);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step {
  min-height: 230px;
  padding: 28px 24px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--gold);
  font-weight: 900;
}

.process-step h3 {
  margin: 44px 0 10px;
  font-size: 28px;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(21, 25, 35, 0.06);
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  background: var(--white);
}

.location > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.location-card h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.contact-list svg {
  color: var(--red);
}

.contact-list strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.contact-list a {
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #151923;
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.footer-credit {
  position: relative;
  display: inline-flex;
  width: max-content;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-credit::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0.65);
  transform-origin: left;
  opacity: 0.72;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-credit:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.footer-credit:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    margin-bottom: 220px;
  }

  .hero-strip,
  .intro-grid,
  .process-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .gallery-grid,
  .vehicle-scope,
  .location {
    grid-template-columns: 1fr;
  }

  .service-card.featured,
  .gallery-item.wide {
    grid-column: auto;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .location {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 10px;
    padding: 14px clamp(12px, 4vw, 18px) 18px;
  }

  .brand-logo {
    width: clamp(124px, 58vw, 186px);
  }

  .header-call {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    justify-content: center;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    top: -8%;
    right: auto;
    bottom: auto;
    left: -22%;
    width: 144%;
    height: 116%;
    max-width: none;
    object-position: 60% 58%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 18, 25, 0.96) 0%, rgba(16, 18, 25, 0.76) 56%, rgba(16, 18, 25, 0.42) 100%),
      linear-gradient(0deg, rgba(16, 18, 25, 0.92), rgba(16, 18, 25, 0.1) 46%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 288px;
  }

  h1 {
    font-size: clamp(36px, 9.8vw, 40px);
    line-height: 1;
  }

  .mobile-title-line {
    display: block;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-strip,
  .intro-grid,
  .process-row {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-strip span:last-child {
    border-bottom: 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .process-step {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 20px;
  }

  .location {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vehicle-scope,
  .faq,
  .gallery {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .gallery-item {
    min-height: 210px;
  }

  .scope-media img {
    min-height: 320px;
  }

  .location > img {
    min-height: 310px;
  }

  .site-footer {
    display: grid;
  }
}
