:root {
  --ink: #111317;
  --muted: #5e6673;
  --line: #d8dde5;
  --paper: #f4f6f8;
  --white: #ffffff;
  --charcoal: #16191f;
  --charcoal-2: #20252d;
  --accent: #e31b23;
  --accent-dark: #b9141b;
  --max: 1180px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(330px, 56vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: none;
  min-width: 290px;
  transform: translateX(-50%);
  background: #292929;
  border: 0;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 28px;
  color: var(--white);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-subdropdown:hover > a {
  background: #050505;
  color: var(--white);
}

.nav-caret {
  font-size: 12px;
  line-height: 1;
}

.nav-subdropdown {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 31;
  display: none;
  min-width: 330px;
  background: #292929;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.nav-subdropdown:hover .nav-submenu,
.nav-subdropdown:focus-within .nav-submenu {
  display: grid;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero picture,
.hero picture::after,
.hero picture img,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero picture::after {
  content: "";
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.86), rgba(7, 9, 12, 0.42) 52%, rgba(7, 9, 12, 0.12));
  z-index: 2;
}

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

.hero-video {
  z-index: 1;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 84px;
  color: var(--white);
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  font-size: 19px;
  color: #e5e9ee;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.logo-row,
.vehicle-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.dark-button {
  border-color: var(--ink);
  color: var(--ink);
}

.band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 48px);
}

.band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.dark {
  background: var(--charcoal);
  color: var(--white);
}

.dark .section-head p {
  color: #c4cad3;
}

.dark .service-card p {
  color: #4b5563;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  margin-bottom: clamp(50px, 8vw, 96px);
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.split.reverse > div {
  order: 2;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

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

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.package-accordions {
  display: grid;
  gap: 14px;
}

.package-accordions details {
  border: 1px solid var(--line);
  background: var(--white);
}

.package-accordions summary {
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.package-accordions .package-list {
  padding: 0 18px 18px;
}

.service-card,
.package-list article {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.service-card div,
.package-list article {
  padding: 22px;
}

.service-card strong,
.package-list strong {
  color: var(--accent);
}

.package-list article {
  min-height: 230px;
}

.package-list ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.package-list li {
  margin-bottom: 7px;
}

.packages-intro {
  background: var(--paper);
}

.packages-intro .section-head {
  display: grid;
  gap: 12px;
  align-items: start;
  max-width: var(--max);
}

.package-detail-grid {
  display: grid;
  gap: 34px;
}

.package-detail-section:nth-of-type(even) {
  background: var(--white);
}

.package-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.package-detail-card.reverse img {
  order: 2;
}

.package-detail-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.package-detail-card > div {
  display: grid;
  gap: 16px;
}

.package-detail-card h2,
.package-detail-card h3 {
  margin: 0;
  text-transform: uppercase;
}

.package-detail-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.package-detail-card li {
  margin-bottom: 8px;
}

.package-detail-card strong {
  color: var(--accent);
  font-size: 22px;
}

.package-detail-card .button {
  justify-self: start;
}

.package-cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

.package-cta p {
  color: var(--white);
}

.package-cta .button {
  background: var(--white);
  color: var(--accent);
}

.package-page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 88px 24px;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.package-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.package-page-hero div {
  position: relative;
  z-index: 1;
}

.package-page-hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 90px 24px;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.page-hero div {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  text-transform: uppercase;
}

.about-page p {
  font-size: 18px;
}

.review-page {
  background: var(--paper);
}

.review-slider {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.review-slide {
  display: none;
  padding: clamp(28px, 6vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.review-slide.active {
  display: block;
}

.review-rating {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-slide blockquote {
  margin: 0 auto 22px;
  max-width: 760px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.review-slide cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.review-controls span {
  color: var(--muted);
  font-weight: 800;
}

.package-showcase {
  background: #eeeeee;
  padding: 0 clamp(18px, 4vw, 48px) 48px;
}

.package-showcase.protection {
  padding-top: 36px;
}

.package-band-heading {
  max-width: none;
  margin: 0 calc(clamp(18px, 4vw, 48px) * -1) -26px;
  padding: 70px 24px 82px;
  background: #ef0e08;
  color: var(--white);
  text-align: center;
}

.package-band-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  text-transform: uppercase;
}

.package-band-heading p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.package-card-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto 26px;
  align-items: stretch;
}

.package-card-row.narrow {
  grid-template-columns: minmax(0, 1fr);
  max-width: 390px;
}

.package-feature-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 410px;
  background: #202020;
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.package-feature-card:hover {
  z-index: 3;
  transform: scale(1.08);
  background: #050505;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.28);
}

.package-feature-card strong {
  padding: 42px 26px 12px;
  color: #ef0e08;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.package-feature-card h3 {
  padding: 0 26px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
}

.package-feature-card ul {
  margin: 26px 26px 22px;
  padding: 0;
  list-style: none;
  color: #777;
  font-weight: 800;
}

.package-feature-card li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.package-feature-card a {
  display: grid;
  min-height: 62px;
  place-items: center;
  background: #ef0e08;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.package-feature-card p {
  margin: 14px 26px;
  color: #777;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 0;
  border: 0;
  background: var(--charcoal-2);
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.lightbox {
  width: min(1100px, calc(100vw - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.84);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  float: right;
  margin-bottom: 10px;
  border: 0;
  padding: 9px 12px;
  background: var(--white);
  font-weight: 900;
}

.distributors {
  background: var(--charcoal-2);
  color: var(--white);
  text-align: center;
}

.logo-row {
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 7vw, 88px);
}

.logo-row img {
  max-width: 220px;
  max-height: 90px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.contact-list div {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 800;
}

iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  font: inherit;
  text-transform: none;
  background: #fbfcfd;
}

textarea {
  resize: vertical;
}

.package-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
}

.package-options legend {
  padding: 0 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.package-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: none;
}

.package-options input {
  width: auto;
}

.vehicle-fields > label {
  flex: 1 1 150px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin: 0;
  font-weight: 800;
}

.thank-you-panel {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.thank-you-panel h2 {
  margin-bottom: 12px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 36px 18px;
  background: #090b0f;
  color: var(--white);
  text-align: center;
}

.site-footer img {
  width: min(360px, 80vw);
}

.site-footer p {
  margin: 0;
  color: #c4cad3;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 15px 22px;
    border-top: 1px solid var(--line);
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding-left: 38px;
  }

  .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    box-shadow: none;
  }

  .nav-submenu a {
    padding-left: 58px;
  }

  .split,
  .split.reverse,
  .contact-grid,
  .package-detail-card {
    grid-template-columns: 1fr;
  }

  .split.reverse > div {
    order: 0;
  }

  .package-detail-card.reverse img {
    order: 0;
  }

  .service-grid,
  .package-list,
  .package-card-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .service-grid,
  .package-list,
  .package-card-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .package-feature-card:hover {
    transform: none;
  }

  .gallery-item.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .enquiry-form {
    padding: 18px;
  }

  .package-options {
    grid-template-columns: 1fr;
  }
}
