:root {
  --red: #d71920;
  --red-deep: #9f1016;
  --ink: #171717;
  --charcoal: #262626;
  --smoke: #f4f4f2;
  --paper: #ffffff;
  --steel: #6b7280;
  --safety: #d7ff38;
  --rescue: #15b8a6;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 7px clamp(14px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: clamp(14px, 4vw, 56px);
  bottom: -1px;
  left: clamp(14px, 4vw, 56px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), rgba(215, 25, 32, 0));
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 54px);
  max-width: 1500px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(160px, 14vw, 220px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 14px);
  color: var(--charcoal);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  border-radius: 6px;
  padding: 8px 11px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(215, 25, 32, 0.08);
  transform: translateY(-1px);
}

.site-nav a::after {
  display: none;
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--red);
  padding-inline: 16px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--red-deep);
}

.nav-toggle {
  display: none;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: #101010;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: clamp(90px, 14vw, 150px);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0), rgba(13, 13, 13, 0.96));
  content: "";
  pointer-events: none;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.56) 46%, rgba(10, 10, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.06) 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 108px clamp(18px, 5vw, 72px) 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(1.65rem, 3.8vw, 3.25rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 5.4vw, 4.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
}

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

.hero-slideshow {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(104px, 15vh, 168px);
  z-index: 1;
  width: clamp(310px, 27vw, 430px);
  padding: 3px;
  color: var(--paper);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 0 0.5px rgba(255, 255, 255, 0.34) inset;
  backdrop-filter: blur(14px);
  isolation: isolate;
  animation: hero-slide-entry 720ms ease both;
}

.hero-slideshow::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  z-index: 3;
  height: 2px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transform-origin: left center;
  animation: hero-slide-progress 5s linear infinite;
}

.hero-slideshow.is-resetting::after {
  animation: none;
}

.hero-slides {
  position: relative;
  aspect-ratio: 1 / 1.08;
  border-radius: 6px;
  overflow: hidden;
  background: #070707;
  box-shadow: 0 0 0 0.5px rgba(23, 23, 23, 0.06) inset;
}

.hero-slides::before,
.hero-slides::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero-slides::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.3)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 26%);
}

.hero-slides::after {
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  border-right: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 0 4px 0 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.04);
  transition: transform 5s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide-control {
  position: absolute;
  bottom: 22px;
  z-index: 4;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(12px);
}

.hero-slide-control:hover,
.hero-slide-control:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.hero-slide-control span {
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.hero-slide-prev {
  right: 62px;
}

.hero-slide-next {
  right: 22px;
}

.hero-slide-dots {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  width: min(42%, 140px);
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-slide-dots span {
  flex: 1;
  width: auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  transition:
    flex 220ms ease,
    background 220ms ease;
}

.hero-slide-dots span.is-active {
  flex: 2.5;
  background: var(--red);
}

@keyframes hero-slide-entry {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-slide-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow,
  .hero-slide,
  .hero-slide img,
  .hero-slide-dots span {
    animation: none;
    transition: none;
  }

  .hero-slideshow::after {
    animation: none;
    transform: scaleX(1);
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-deep);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading .eyebrow {
  padding-top: 10px;
}

.contact-copy p,
.band-content p {
  color: var(--charcoal);
  font-size: 0.94rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(36px, 5.5vw, 68px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.about-heading h2 {
  max-width: 18ch;
  color: var(--charcoal);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}

.about-cert {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-cert span {
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-cert img {
  width: clamp(92px, 9vw, 132px);
  height: auto;
  object-fit: contain;
}

.about-cert small {
  grid-column: 1 / -1;
  max-width: 62ch;
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.35;
}

.about-content {
  position: relative;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: clamp(18px, 2.6vw, 26px);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.about-content p {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
}

.about-cert-copy {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(38, 38, 38, 0.12);
  padding-bottom: 18px;
}

.about-cert-copy p {
  color: var(--charcoal);
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
}

.about-preview {
  font-weight: 700;
}

.about-more {
  display: grid;
  max-height: 0;
  gap: 14px;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease,
    margin-top 220ms ease;
}

.about-content.is-open .about-more {
  max-height: 620px;
  margin-top: 16px;
  opacity: 1;
}

.about-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  color: var(--paper);
  background: var(--charcoal);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.about-toggle:hover,
.about-toggle:focus-visible {
  background: var(--red);
  transform: translateY(-2px);
}

.products {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  padding-top: clamp(18px, 3vw, 30px);
  padding-bottom: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(180deg, var(--paper), var(--smoke)),
    var(--paper);
}

.products-media {
  position: relative;
  min-height: clamp(280px, 34vw, 430px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.14);
}

.products-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.products-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5));
  content: "";
}

.products-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--red);
  border-radius: 0 0 8px 8px;
  padding: 12px 16px 14px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.82), rgba(12, 12, 12, 0.94));
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06) inset;
}

.products-badge span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.products-badge strong {
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.15;
}

.products-content h2 {
  max-width: 32ch;
  color: var(--charcoal);
  font-size: clamp(1.26rem, 2vw, 1.9rem);
}

.products-content > p:not(.eyebrow) {
  max-width: 66ch;
  margin: 8px 0 0;
  color: var(--charcoal);
  font-size: clamp(0.86rem, 0.95vw, 0.92rem);
}

.products-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.products-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  padding: 9px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.products-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--red);
  font-size: 0.68rem;
  font-weight: 950;
}

.products-list h3 {
  color: var(--charcoal);
  font-size: clamp(0.86rem, 0.95vw, 0.96rem);
}

.products-list p {
  margin: 3px 0 0;
  color: var(--steel);
  font-size: 0.75rem;
  line-height: 1.28;
}

.products-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 12px;
}

.button-products {
  min-height: 38px;
  padding: 9px 15px;
  color: var(--paper);
  background: var(--ink);
}

.button-products:hover,
.button-products:focus-visible {
  background: var(--red);
}

.services {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  padding-top: clamp(28px, 4.4vw, 56px);
  padding-bottom: clamp(28px, 4.4vw, 56px);
  background: var(--ink);
  color: var(--paper);
}

.services-heading h2 {
  max-width: 16ch;
  color: var(--paper);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.services-heading p:not(.eyebrow) {
  max-width: 58ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
}

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

.services-list article {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.06);
}

.services-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--red);
  font-size: 0.68rem;
  font-weight: 950;
}

.services-list h3 {
  color: var(--paper);
  font-size: clamp(0.88rem, 1vw, 1rem);
}

.services-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.32;
}

.button-services {
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  color: var(--paper);
  background: var(--red);
}

.button-services:hover,
.button-services:focus-visible {
  background: var(--red-deep);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
}

.band-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.band-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: center center;
}

.band-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.04));
  content: "";
  pointer-events: none;
}

.band-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  width: min(100%, 520px);
  padding: clamp(16px, 2.4vw, 28px) clamp(24px, 4.5vw, 60px) clamp(16px, 2.4vw, 28px) clamp(18px, 3vw, 36px);
}

.band-content h2 {
  font-size: clamp(1.85rem, 3.7vw, 3.35rem);
}

.band-content p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.training-overlay {
  position: absolute;
  bottom: clamp(16px, 3vw, 34px);
  left: clamp(16px, 3vw, 34px);
  z-index: 1;
  display: grid;
  width: min(380px, calc(100% - 40px));
  max-height: calc(100% - 32px);
  gap: 7px;
  overflow: auto;
  overscroll-behavior: contain;
}

.training-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.training-item button {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  border: 0;
  padding: 10px 12px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0;
  text-align: left;
}

.training-item button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--red);
  font-size: 0.78rem;
}

.training-detail {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease,
    padding 220ms ease;
}

.training-item.is-open .training-detail {
  max-height: 230px;
  padding: 0 12px 12px 50px;
  opacity: 1;
}

.training-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.45;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 6px;
  color: var(--paper);
  background: var(--red);
  content: ">";
  font-size: 0.78rem;
  font-weight: 950;
}

.location {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 3.5vw, 42px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.location h2 {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}

.location-copy p {
  max-width: 60ch;
  color: var(--charcoal);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
}

.location-details {
  display: grid;
  gap: 9px;
  border-left: 4px solid var(--red);
  padding-left: clamp(14px, 2.5vw, 22px);
}

.location-details div {
  display: grid;
  gap: 4px;
}

.location-details span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-details strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.65vw, 1.36rem);
  line-height: 1.15;
}

.location-details p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.45;
}

.location-map {
  align-self: stretch;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(0.2) contrast(1.04);
}

.button-map {
  margin-top: 8px;
  width: fit-content;
  color: var(--paper);
  background: var(--ink);
}

.button-map:hover,
.button-map:focus-visible {
  background: var(--red);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5.5vw, 72px);
  padding: clamp(54px, 7.5vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--paper);
}

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

.contact-copy {
  align-self: center;
}

.contact h2 {
  font-size: clamp(1.95rem, 3.9vw, 3.55rem);
}

.contact-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}

.contact-kicker {
  margin: 18px 0 8px;
  color: var(--paper);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  font-weight: 900;
  line-height: 1.25;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.contact-method {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-method span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--paper);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-method:hover,
.contact-method:focus-visible {
  border-color: var(--red);
  background: rgba(215, 25, 32, 0.18);
  transform: translateY(-2px);
}

.social-link {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--paper);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 400;
}

.form-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(38, 38, 38, 0.14);
}

.form-heading span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--charcoal);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.12;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 38, 38, 0.22);
  border-radius: 8px;
  padding: 12px 12px;
  background: #f7f7f7;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.03);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(215, 25, 32, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button-primary {
  color: var(--paper);
  background: var(--red);
}

.contact-form .button-primary:hover,
.contact-form .button-primary:focus-visible {
  background: var(--red-deep);
}

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

.contact-form .button {
  border: 0;
}

.form-note {
  margin: -4px 0 0;
  color: var(--steel);
  font-size: 0.86rem;
}

.form-note.is-success {
  color: var(--red-deep);
  font-weight: 700;
}

.form-note.is-error {
  color: var(--red);
  font-weight: 700;
}

.form-honey {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  margin-right: 82px;
  color: var(--paper);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--paper);
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .hero-slideshow {
    display: none;
  }

  .hero-content {
    width: min(920px, 100%);
  }

}

@media (max-width: 920px) {
  .header-shell {
    position: relative;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    display: none;
    width: min(280px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--paper) !important;
    background: #171717;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    color: var(--paper) !important;
    padding: 12px;
  }

  .site-header .site-nav a:not(.nav-cta),
  .site-header .site-nav a:not(.nav-cta):visited {
    color: var(--paper) !important;
  }

  .site-header .site-nav a:not(.nav-cta):hover,
  .site-header .site-nav a:not(.nav-cta):focus-visible {
    color: var(--paper) !important;
    background: rgba(255, 255, 255, 0.1);
  }

  .site-nav .nav-cta {
    color: var(--paper) !important;
    background: var(--red);
    text-align: center;
  }

  .section-heading,
  .about,
  .products,
  .services,
  .band,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .band {
    min-height: auto;
  }

  .band-image {
    min-height: 360px;
  }

  .training-overlay {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  .products-media {
    min-height: 330px;
  }

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

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

}

@media (max-width: 640px) {
  .brand img {
    width: 144px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding: 104px 18px 104px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(1.55rem, 8.6vw, 2.65rem);
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .products-list {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .products-media {
    min-height: 280px;
  }

  .band-image {
    min-height: 390px;
  }

  .training-item button {
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .training-detail p {
    font-size: 0.8rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer a {
    margin-right: 72px;
  }
}
