:root {
  --navy-950: #071522;
  --navy-900: #0b1d2c;
  --navy-800: #132c40;
  --ink: #13202b;
  --slate: #5f6d78;
  --line: #dce2e7;
  --paper: #f4f6f7;
  --white: #ffffff;
  --accent: #f4aa22;
  --accent-dark: #c87900;
  --section-space: 7rem;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  vertical-align: -0.2em;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 2000;
  padding: .75rem 1rem;
  color: var(--navy-950);
  background: var(--accent);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: #d9e2e9;
  background: var(--navy-950);
  font-size: .82rem;
  letter-spacing: .01em;
}

.topbar .container-xl {
  min-height: 40px;
}

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

.topbar a:hover {
  color: var(--accent);
}

.topbar .icon {
  margin-right: .35rem;
  color: var(--accent);
}

.navbar {
  min-height: 86px;
  border-bottom: 1px solid rgba(7, 21, 34, .08);
  box-shadow: 0 8px 30px rgba(7, 21, 34, .05);
}

.navbar-brand img {
  display: block;
  width: 172px;
  height: auto;
}

.navbar .nav-link {
  position: relative;
  padding: .65rem .85rem !important;
  color: var(--navy-900);
  font-size: .92rem;
  font-weight: 700;
}

.navbar .nav-link::after {
  position: absolute;
  right: .85rem;
  bottom: .35rem;
  left: .85rem;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}

.btn {
  --bs-btn-border-radius: .35rem;
  --bs-btn-padding-x: 1.4rem;
  --bs-btn-padding-y: .8rem;
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .01em;
}

.btn-lg {
  --bs-btn-padding-x: 1.65rem;
  --bs-btn-padding-y: .95rem;
  font-size: 1rem;
}

.btn-accent {
  --bs-btn-color: var(--navy-950);
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--accent-dark);
  --bs-btn-hover-border-color: var(--accent-dark);
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--accent-dark);
  --bs-btn-active-border-color: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: 710px;
  padding: 7rem 0;
  background-color: var(--navy-950);
  background-image: url("hero-workshop.png");
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 13, 22, .64);
  content: "";
}

.hero .row > div {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: .75rem;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.display-title,
.section-title,
.process-heading h2,
.cta-band h2 {
  color: var(--navy-950);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
}

.display-title {
  max-width: 780px;
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 6vw, 5.35rem);
}

.display-title span {
  color: var(--accent);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #e4ebf0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-meta {
  color: #d6e0e7;
  font-size: .92rem;
  font-weight: 700;
}

.hero-meta .icon {
  margin-right: .4rem;
  color: var(--accent);
}

.service-strip {
  color: var(--white);
  background: var(--navy-900);
}

.strip-item {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  min-height: 120px;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

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

.strip-number {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.strip-item strong,
.strip-item a {
  display: block;
}

.strip-item strong {
  font-size: .9rem;
}

.strip-item a {
  color: #bdc9d2;
  font-size: .93rem;
  text-decoration: none;
}

.strip-item a:hover {
  color: var(--accent);
}

.section-padding {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.pb-section {
  padding-bottom: var(--section-space);
}

.bg-light-subtle {
  background: var(--paper) !important;
}

.section-title {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 4vw, 3.85rem);
}

.section-intro,
.lead-copy {
  color: var(--slate);
  font-size: 1.08rem;
}

.lead-copy {
  color: #334554;
  font-size: 1.17rem;
}

.service-category {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy-800);
  box-shadow: 0 18px 45px rgba(20, 43, 61, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-category:hover {
  box-shadow: 0 24px 60px rgba(20, 43, 61, .12);
  transform: translateY(-6px);
}

.service-category.featured {
  color: #e4ebf0;
  background: var(--navy-900);
  border-color: var(--navy-900);
  border-top-color: var(--accent);
}

.service-category.featured h3,
.service-category.featured .text-link {
  color: var(--white);
}

.service-category.featured p {
  color: #bfcbd4;
}

.service-category.featured .service-list li {
  border-color: rgba(255, 255, 255, .1);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 2rem;
  color: var(--navy-950);
  background: var(--accent);
  place-items: center;
}

.service-icon .icon {
  width: 28px;
  height: 28px;
}

.service-kicker,
.image-service-body > span,
.contact-label {
  color: var(--accent-dark) !important;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-category h3 {
  margin-bottom: .9rem;
  color: var(--navy-950);
  font-size: 1.7rem;
  font-weight: 900;
}

.service-category > p:not(.service-kicker) {
  color: var(--slate);
}

.service-list {
  margin: 1rem 0 2rem;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: .72rem 0 .72rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}

.service-list li::before {
  position: absolute;
  top: 1.28rem;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  content: "";
}

.text-link {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--navy-950);
  font-weight: 900;
  text-decoration: none;
}

.text-link .icon {
  transition: transform .2s ease;
}

.text-link:hover {
  color: var(--accent-dark);
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.image-service {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.image-service img,
.image-service-media {
  display: block;
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.image-diagnostics {
  background-color: var(--navy-900);
  background-image: url("hero-workshop.png");
  background-position: 72% center;
  background-size: cover;
}

.image-service-body {
  padding: 1.65rem;
}

.image-service-body h3 {
  margin: .45rem 0 .7rem;
  color: var(--navy-950);
  font-size: 1.25rem;
  font-weight: 900;
}

.image-service-body p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: .92rem;
}

.process-section {
  color: var(--white);
  background: var(--navy-950);
}

.process-heading {
  padding: 4rem 3.5rem;
  background: var(--navy-800);
}

.process-heading h2 {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.2rem);
}

.process-step {
  min-height: 100%;
  padding: 4rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

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

.process-step > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: #aebdca;
  font-size: .93rem;
}

.about-media {
  position: relative;
  padding: 0 2.5rem 2.5rem 0;
}

.about-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 65%;
  height: 70%;
  background: var(--paper);
  content: "";
}

.about-media img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.experience-block {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 190px;
  height: 160px;
  padding: 1.5rem;
  color: var(--navy-950);
  background: var(--accent);
}

.experience-block strong {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
}

.experience-block span {
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.value-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.45;
}

.value-item .icon {
  flex: 0 0 auto;
  color: var(--accent-dark);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.gallery-item img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-diagram img {
  padding: 2rem;
  background: #fff;
  object-fit: contain;
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 1.25rem;
  color: var(--white);
  background: rgba(7, 21, 34, .88);
  font-size: .87rem;
  font-weight: 800;
}

.references {
  color: #cad5de;
  background: var(--navy-900);
}

.references-intro {
  max-width: 560px;
  color: #aebdca;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.partner-grid span {
  display: grid;
  min-height: 92px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
  place-items: center;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: #cfd6dc;
  --bs-accordion-btn-color: var(--navy-950);
  --bs-accordion-active-color: var(--navy-950);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-button {
  padding: 1.35rem 0;
  font-size: 1rem;
  font-weight: 900;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button::after {
  border-radius: 50%;
}

.accordion-body {
  padding: 0 0 1.5rem;
  color: var(--slate);
}

.accordion-body a {
  color: var(--accent-dark);
  font-weight: 800;
}

.cta-band {
  padding: 3.5rem 0;
  background: var(--accent);
}

.cta-band .eyebrow {
  color: var(--navy-950);
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.contact-section {
  color: #c9d5dd;
  background: var(--navy-950);
}

.contact-intro {
  max-width: 560px;
  color: #a8b7c2;
}

.map-link {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 520px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

.map-link > span {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: var(--navy-950);
  background: var(--accent);
  place-items: center;
}

.map-link small,
.map-link strong,
.map-link em {
  display: block;
}

.map-link small {
  margin-bottom: .3rem;
  color: #9fb0bd;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-link strong {
  font-size: 1.18rem;
  line-height: 1.5;
}

.map-link em {
  margin-top: .6rem;
  color: var(--accent);
  font-size: .86rem;
  font-style: normal;
  font-weight: 900;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 2rem;
  background: var(--white);
}

.contact-phone {
  display: block;
  margin-bottom: .2rem;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.2;
  text-decoration: none;
}

.contact-phone:hover,
.contact-mail:hover {
  color: var(--accent-dark);
}

.contact-mail {
  display: inline-block;
  width: fit-content;
  margin-bottom: 2rem;
  color: var(--slate);
  font-size: .9rem;
  text-decoration: none;
}

.hours-card {
  padding: 1.5rem 2rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
}

.hours-card small,
.hours-card strong {
  display: block;
}

.hours-card small {
  color: #97a9b7;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hours-card strong {
  font-size: 1.05rem;
}

.hours-card > span {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.site-footer {
  padding: 2rem 0;
  color: #667582;
  background: var(--white);
  font-size: .8rem;
}

.footer-logo {
  width: 145px;
  height: auto;
}

.payment-img {
  display: inline-block;
  width: 240px;
  height: 28px;
  object-fit: contain;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--navy-950);
  background: var(--accent);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .28);
  text-decoration: none;
  place-items: center;
}

.floating-call .icon {
  width: 25px;
  height: 25px;
}

@media (max-width: 991.98px) {
  :root {
    --section-space: 5.5rem;
  }

  .navbar {
    min-height: 76px;
  }

  .navbar-brand img {
    width: 150px;
  }

  .navbar-collapse {
    padding: 1rem 0 1.4rem;
  }

  .navbar .nav-link {
    padding: .65rem 0 !important;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding: 5.5rem 0;
    background-position: 62% center;
  }

  .hero::before {
    background: rgba(3, 13, 22, .7);
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

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

  .process-heading,
  .process-step {
    padding: 3rem 2rem;
  }

  .process-step {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

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

@media (max-width: 767.98px) {
  :root {
    --section-space: 4.5rem;
  }

  .display-title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .section-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 4rem 0;
  }

  .hero::before {
    background: rgba(3, 13, 22, .76);
  }

  .hero .btn {
    width: 100%;
  }

  .service-category {
    padding: 1.75rem;
  }

  .image-service img,
  .image-service-media {
    height: 250px;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
  }

  .about-media {
    padding: 0 1.25rem 1.25rem 0;
  }

  .about-media img {
    min-height: 350px;
  }

  .experience-block {
    width: 150px;
    height: 125px;
    padding: 1.2rem;
  }

  .experience-block strong {
    font-size: 2.5rem;
  }

  .gallery-item img {
    height: 300px;
  }

  .partner-grid span {
    min-height: 78px;
    font-size: .68rem;
  }

  .contact-card {
    min-height: 245px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
