:root {
  color-scheme: dark light;
  --ink: #050607;
  --panel: #0d1117;
  --panel-2: #121923;
  --line: #253140;
  --text: #f7fbff;
  --muted: #aab5c3;
  --soft: #e8eef6;
  --paper: #f5f7fa;
  --blue: #007f7e;
  --cyan: #60dfda;
  --green: #22c7a9;
  --teal-deep: #006f70;
  --gold: #f0c45a;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--text);
  color: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 6, 7, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: #d9e2ed;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cyan);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
}

.button,
.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.button.primary,
.quote-button {
  background: linear-gradient(135deg, var(--blue), var(--teal-deep));
  border-color: rgba(96, 223, 218, 0.24);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 127, 126, 0.24);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(96, 223, 218, 0.45);
  color: var(--cyan);
}

.button.light {
  background: var(--text);
  color: var(--ink);
}

.button:hover,
.quote-button:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #050607;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.95), rgba(5, 6, 7, 0.62) 42%, rgba(5, 6, 7, 0.1)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.8), rgba(5, 6, 7, 0.02) 46%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 88px 0 132px;
}

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

.hero h1,
.page-hero h1 {
  max-width: 860px;
  overflow-wrap: break-word;
  margin: 16px 0 18px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 700px;
  overflow-wrap: break-word;
  color: #d9e2ed;
  font-size: 21px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: #e8eef6;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.quick-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(5, 6, 7, 0.93);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-strip-inner {
  width: min(1180px, calc(100% - 32px));
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  min-height: 104px;
}

.quick-item {
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.quick-item:first-child {
  border-left: 0;
}

.quick-item b {
  color: #fff;
  font-size: 15px;
}

.quick-item span {
  color: var(--muted);
  font-size: 13px;
}

.band {
  padding: 82px 0;
}

.band.light {
  background: var(--paper);
  color: #111827;
}

.band.light p,
.band.light .section-kicker {
  color: #4a5565;
}

.band.light .section-kicker,
.band.white .section-kicker {
  color: var(--teal-deep);
}

.band.steel {
  background: linear-gradient(180deg, #111820, #07090c);
}

.band.white {
  background: #fff;
  color: #10141a;
}

.band.white p {
  color: #536070;
}

.container {
  width: min(1180px, calc(100% - 32px));
  max-width: calc(100vw - 32px);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head h2,
.copy-block h2 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  font-size: 19px;
  overflow-wrap: break-word;
}

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

.tile {
  min-height: 260px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.96)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.52), transparent 58%),
    var(--tile-image, none),
    var(--tile-bg, linear-gradient(135deg, #192231, #0a0e14));
  background-position: center;
  background-size: cover;
  color: var(--text);
  box-shadow: var(--shadow);
}

.tile h2,
.tile h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.tile p {
  margin: 0;
  color: #d4deea;
}

.tile.full-front {
  --tile-image: url("/assets/service-full-front.jpg");
  --tile-bg: linear-gradient(135deg, #20344c, #08121d);
}

.tile.track {
  --tile-image: url("/assets/service-track-pack.jpg");
  --tile-bg: linear-gradient(135deg, #172314, #143e4c);
}

.tile.stealth {
  --tile-image: url("/assets/service-stealth-film.jpg");
  --tile-bg: linear-gradient(135deg, #30343c, #090b0f);
}

.tile.body {
  --tile-image: url("/assets/service-full-body.jpg");
  --tile-bg: linear-gradient(135deg, #10264a, #101114);
}

.tile.impact {
  --tile-image: url("/assets/service-impact-areas.jpg");
  --tile-bg: linear-gradient(135deg, #3b2e16, #08111c);
}

.tile.care {
  --tile-image: url("/assets/service-ceramic-topper.jpg");
  --tile-bg: linear-gradient(135deg, #172e35, #0b0d11);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}

.band.light .check-list li,
.band.white .check-list li {
  color: #536070;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(184, 255, 92, 0.15);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.process article {
  counter-increment: step;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.process article::before {
  content: counter(step, decimal-leading-zero);
  color: var(--cyan);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.process h3 {
  margin-bottom: 8px;
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius);
  background: #0b1118;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.quote-direct {
  display: grid;
  gap: 12px;
}

.quote-direct {
  align-content: start;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.2), rgba(5, 6, 7, 0.96)),
    url("/assets/contact-studio.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.quote-direct h2,
.quote-direct h3 {
  margin: 0;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-details {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
}

.quote-details div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(5, 6, 7, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-details dt {
  margin-bottom: 2px;
  color: var(--text);
  font-weight: 900;
}

.quote-details dd {
  margin: 0;
  color: #d4deea;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  color: #c8d3e1;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 11px 12px;
  color: #fff;
  background: #111923;
  font: inherit;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.quote-note {
  margin-top: 10px;
  font-size: 13px;
}

.page-hero {
  padding: 82px 0 64px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.93), rgba(5, 6, 7, 0.8)),
    url("/assets/hero-ppf-san-diego.jpg") center / cover;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 42px;
}

.copy-block h2 {
  font-size: 34px;
  margin: 36px 0 12px;
}

.copy-block h3 {
  margin: 28px 0 8px;
  font-size: 24px;
}

.side-panel {
  position: sticky;
  top: 98px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #0b1118;
  padding: 20px;
}

.side-panel h2,
.side-panel h3 {
  margin-top: 0;
  font-size: 22px;
}

.side-panel a {
  color: var(--cyan);
  font-weight: 800;
}

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

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 20px;
}

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

.faq-list p {
  margin: 12px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b1118;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

.map-box {
  min-height: 260px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.2), rgba(5, 6, 7, 0.94)),
    url("/assets/contact-studio.jpg") center / cover;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

.map-box strong {
  display: block;
  font-size: 22px;
}

.site-footer {
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.site-footer a,
.site-footer p {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-links {
  display: grid;
  gap: 6px;
}

.legal {
  margin-top: 28px;
  color: #758296;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav {
    min-height: 66px;
    position: relative;
  }

  .menu-button {
    display: inline-grid;
    flex: 0 0 44px;
    margin-left: auto;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    z-index: 35;
    display: none;
    padding: 12px;
    background: rgba(5, 6, 7, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: start;
    gap: 2px;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(96, 223, 218, 0.08);
  }

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

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .quick-strip {
    position: static;
  }

  .quick-strip-inner,
  .tile-grid,
  .process,
  .split,
  .quote-panel,
  .content-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .quick-item:first-child {
    border-top: 0;
  }

  .section-head {
    display: block;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 72px 0 88px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
    max-width: 100%;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
    max-width: 100%;
  }

  .band {
    padding: 58px 0;
  }

  .section-head h2,
  .copy-block h2 {
    font-size: 30px;
  }

}
