:root {
  --bg: #080b10;
  --panel: #101720;
  --panel-soft: #172231;
  --text: #f6f8fb;
  --muted: #a7b2c1;
  --brand: #f7a928;
  --brand-2: #31c4f3;
  --error: #ff9b9b;
  --success: #7de2ad;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
  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:
    radial-gradient(circle at 15% 10%, rgba(49, 196, 243, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(247, 169, 40, 0.12), transparent 22rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-200%);
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 11, 16, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0.9rem 1.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 1 14rem;
  text-decoration: none;
}

.brand img {
  height: auto;
  width: min(14rem, 46vw);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

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

.button {
  align-items: center;
  background: linear-gradient(135deg, var(--brand), #ff7a3d);
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 0.4rem;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button:hover,
.filter:hover {
  filter: brightness(1.08);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brand-2);
  outline-offset: 3px;
}

.hero {
  min-height: 76vh;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.92), rgba(8, 11, 16, 0.52)),
    url("/assets/images/hero.webp");
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
}

.hero-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 8rem 1.25rem 5rem;
  position: relative;
}

.eyebrow {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin: 1.5rem 0 0;
  max-width: 44rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 5rem 1.25rem;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 34rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

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

.split {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.image-card {
  aspect-ratio: 4 / 3;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.gear-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gear-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  margin: 0;
  overflow: hidden;
}

.gear-card img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.gear-card figcaption {
  color: var(--muted);
  font-weight: 800;
  padding: 0.9rem 1rem;
}

.media-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.video-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  overflow: hidden;
}

.video-thumb {
  aspect-ratio: 16 / 9;
  background: #151515;
  position: relative;
}

.video-thumb img,
.video-thumb iframe {
  border: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.play {
  align-items: center;
  background: rgba(247, 169, 40, 0.92);
  border: 0;
  border-radius: 50%;
  color: #111;
  cursor: pointer;
  display: grid;
  font-size: 1.4rem;
  height: 4rem;
  inset: 50% auto auto 50%;
  place-items: center;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 4rem;
}

.video-meta {
  padding: 1rem;
}

.pill {
  color: var(--brand-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.gallery-status {
  color: var(--muted);
  margin: -0.75rem 0 1.5rem;
}

.filter {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  padding: 0.48rem 0.85rem;
}

.filter[aria-pressed="true"] {
  background: var(--brand);
  color: #111;
  font-weight: 900;
}

.contact-panel {
  background: linear-gradient(135deg, rgba(49, 196, 243, 0.12), rgba(247, 169, 40, 0.12));
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  padding: 1.5rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  color: var(--muted);
  display: grid;
  font-weight: 800;
  gap: 0.35rem;
}

input,
textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.hp-field {
  display: none;
}

.form-status {
  color: var(--muted);
  min-height: 1.5rem;
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 2rem 1.25rem;
  text-align: center;
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

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

  .brand {
    flex: 0 0 auto;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }

  .section-head,
  .split,
  .contact-panel {
    display: block;
  }

  .contact-panel form,
  .split > * + *,
  .contact-panel > * + * {
    margin-top: 1.5rem;
  }
}

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