﻿:root {
  --bg: #f6f4f1;
  --ink: #1e2128;
  --muted: #5c616b;
  --accent: #2f6bff;
  --glass: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, #f1eef0 55%, #e8e5e0 100%);
  letter-spacing: 0.02em;
  position: relative;
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 28, 35, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(47, 107, 255, 0.12), transparent 55%);
  background-size: 48px 48px, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.site-header,
.hero {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 28px 8vw 36px;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
  margin-bottom: 16px;
}

.site-footer__title {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.site-footer__text {
  max-width: 42ch;
  line-height: 1.5;
}

.site-footer__form {
  display: grid;
  gap: 8px;
  background: var(--glass);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(24, 28, 35, 0.08);
  box-shadow: 0 12px 28px rgba(24, 28, 35, 0.08);
}

.site-footer__form.is-flash {
  animation: heroFlash 1.2s ease;
}

.site-footer__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer__input {
  border-radius: 999px;
  border: 1px solid rgba(24, 28, 35, 0.12);
  padding: 10px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.site-footer__submit {
  justify-self: start;
  border-radius: 999px;
  border: 1px solid rgba(47, 107, 255, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  padding: 10px 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
  cursor: pointer;
}

.product {
  position: relative;
  z-index: 1;
  padding: 14px 8vw 36px;
  display: grid;
  gap: 16px;
}

.product__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.product__title {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(12px, 2.2vw, 22px);
  align-items: stretch;
}

.product__media-row {
  display: grid;
  grid-template-columns: minmax(0, calc(50% - 30px)) minmax(0, calc(50% + 30px));
  gap: clamp(10px, 2vw, 18px);
  align-items: start;
  height: auto;
  max-height: min(70vh, 620px);
}

.product__media-card {
  margin: 0;
  border-radius: 16px;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 6px;
  height: auto;
  align-content: start;
  height: 100%;
}

.product__media-card img,
.product__media-card video {
  width: 100%;
  flex: 0 0 auto;
  height: clamp(280px, 42vh, 520px);
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(24, 28, 35, 0.12);
}

.product__media-card figcaption {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product__specs-media {
  margin: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px;
  box-shadow: 0 10px 24px rgba(24, 28, 35, 0.08);
  display: grid;
  gap: 6px;
}

.product__specs-media img {
  width: 100%;
  max-height: 220px;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

.product__specs-media figcaption {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product__specs {
  background: var(--glass);
  border-radius: 18px;
  padding: clamp(12px, 2vw, 20px) clamp(12px, 2vw, 20px) clamp(6px, 1.4vw, 12px);
  box-shadow: 0 12px 32px rgba(24, 28, 35, 0.1);
  border: 1px solid rgba(24, 28, 35, 0.06);
  height: auto;
  align-self: stretch;
}

.product__specs-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.product__specs-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 12px;
  align-items: start;
  height: 100%;
}

.product__specs-list {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.35;
}

.product--adventure {
  padding-top: 24px;
}

.adventure__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 2.2vw, 24px);
  align-items: start;
}

.adventure__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2.2vw, 24px);
  align-items: start;
}

.adventure__photo {
  margin: 0;
  display: grid;
  gap: 8px;
}

.adventure__photo img {
  width: 100%;
  height: clamp(360px, 52vh, 620px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(24, 28, 35, 0.12);
}

.adventure__photo figcaption,
.adventure__video figcaption {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.adventure__media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: clamp(10px, 2vw, 18px);
  align-items: start;
}

.adventure__video {
  margin: 0;
  display: grid;
  gap: 6px;
}

.adventure__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(24, 28, 35, 0.12);
}


.adventure__details {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 22px);
}

.adventure__detail {
  background: var(--glass);
  border-radius: 18px;
  padding: clamp(10px, 1.6vw, 14px);
  box-shadow: 0 12px 28px rgba(24, 28, 35, 0.1);
  border: 1px solid rgba(24, 28, 35, 0.06);
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
}

.adventure__detail-media {
  margin: 0;
  height: auto;
}

.adventure__detail-media img {
  width: min(100%, 200px);
  height: auto;
  max-height: 220px;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(24, 28, 35, 0.12);
}

.adventure__detail--knee .adventure__detail-media img {
  width: auto;
  height: 260px;
  max-width: 100%;
}

.adventure__detail-body {
  display: grid;
  gap: 8px;
}

.adventure__detail-title {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adventure__detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.adventure__detail-list {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-footer__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}

.site-footer__link:hover {
  border-bottom-color: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
  z-index: 50;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 28, 35, 0.45);
  backdrop-filter: blur(2px);
}

.modal__content {
  position: relative;
  width: min(640px, 92vw);
  max-height: min(80vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(24, 28, 35, 0.2);
  z-index: 1;
}

.modal__title {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--ink);
}

.modal__body {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(24, 28, 35, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: calc(clamp(96px, 12vh, 160px) - 20px);
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: clamp(14px, 2.4vh, 24px) 8vw;
  gap: 24px;
  z-index: 5;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, backdrop-filter 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-sticky {
  background: linear-gradient(90deg, rgba(246, 244, 241, 0) 0%, rgba(246, 244, 241, 0.4) 100%);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--bg);
  box-shadow: 0 10px 30px rgba(24, 28, 35, 0.08);
}

.site-header.is-sticky .site-header__nav,
.site-header.is-sticky .site-header__menu-btn,
.site-header.is-sticky .site-header__link {
  color: var(--ink);
}

.site-header__nav {
  grid-column: 1;
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.95rem;
  color: var(--muted);
  justify-content: flex-start;
  text-align: left;
  align-self: center;
  position: relative;
}

.site-header__links {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.site-header__link {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 28, 35, 0.12);
  background: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.site-header__link:hover {
  border-color: rgba(24, 28, 35, 0.2);
}

.site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 0 16px;
  height: 34px;
  line-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(24, 28, 35, 0.12);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.site-header__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__chevron {
  transform: rotate(225deg);
}

.site-header__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateX(0);
  min-width: min(360px, 80vw);
  padding: 12px;
  border-radius: 14px;
  background: var(--glass);
  box-shadow: 0 16px 32px rgba(24, 28, 35, 0.12);
  border: 1px solid rgba(24, 28, 35, 0.08);
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
}

.site-header__menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(4px);
}

.site-header__menu-link {
  color: var(--ink);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.25;
  transition: background 150ms ease;
}

.site-header__menu-link:hover {
  background: rgba(47, 107, 255, 0.08);
}

.site-header__actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.9rem;
  align-self: center;
}

.site-header__email {
  color: var(--muted);
  text-decoration: none;
}

.site-header__cta {
  border: 1px solid rgba(47, 107, 255, 0.35);
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent);
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  height: 34px;
  line-height: 34px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  margin-top: -6px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
  gap: clamp(12px, 2vh, 28px);
  overflow: hidden;
  padding: calc(clamp(12px, 3vh, 36px) - 20px) 8vw;
}

.hero__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 48px);
  align-items: end;
  position: relative;
  z-index: 3;
}

.hero__brand {
  max-width: 100%;
}

.hero__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}

.hero__title-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 38%;
  flex: 0 1 38%;
}

.hero__tech {
  display: inline-flex;
  gap: 6px;
  transform: translateY(3px);
}

.hero__tech span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
}

.hero__tech span:nth-child(2) {
  opacity: 0.7;
}

.hero__tech span:nth-child(3) {
  opacity: 0.95;
}

.hero__mission--inline {
  margin: 0;
  font-size: clamp(0.55rem, 0.75vw, 0.85rem);
  color: var(--muted);
  flex: 1 1 auto;
  max-width: none;
  text-align: right;
  white-space: nowrap;
  transform: translateX(-90px);
}

.hero__gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.44fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  grid-template-rows: 1fr;
  gap: clamp(10px, 1.8vw, 22px);
  padding: clamp(6px, 1.5vh, 18px) 0 clamp(10px, 2vh, 22px);
  filter: saturate(1.05);
  height: min(58vh, 520px);
}

.hero__gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.02));
  pointer-events: none;
  z-index: 1;
}

.hero__img {
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 32px rgba(24, 28, 35, 0.12);
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  z-index: 2;
  transition: transform 220ms ease;
}

.hero__img.is-flash {
  animation: heroFlash 1.2s ease;
}

@keyframes heroFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 107, 255, 0.55);
  }
  40% {
    box-shadow: 0 0 0 10px rgba(47, 107, 255, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 255, 0);
  }
}

.hero__video {
  border: 0;
  padding: 0;
  background-color: #000;
  cursor: pointer;
  position: relative;
}

.hero__video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: transparent;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 200ms ease;
}

.hero__video--adventure .hero__video-el {
  transform: scale(1.2);
  transform-origin: center;
}

.hero__video--stand .hero__video-el {
  transform: scale(1.12);
  transform-origin: center;
}

.hero__play {
  position: absolute;
  inset: auto auto 28px 28px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(24, 28, 35, 0.15);
  z-index: 4;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 28, 35, 0.88);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 6;
  box-shadow: 0 6px 16px rgba(24, 28, 35, 0.12);
  opacity: 1;
  visibility: visible;
}

.hero__video.is-playing .hero__play {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.hero__video.is-playing .hero__video-el {
  opacity: 1;
}


.hero__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(15, 18, 24, 0.18));
  z-index: 3;
}

.hero__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 45%, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 2;
}

.hero__img:hover::before {
  opacity: 1;
}

.hero__img--one {
  grid-column: 1;
  grid-row: 1;
  background-image: url("PC-1A Knee Photo.png");
  background-size: cover;
  background-position: center;
}

.hero__img--two {
  grid-column: 2;
  grid-row: 1;
  background-image: url("Bion Adventure Leg.jpeg");
  background-size: cover;
  background-position: center;
}

.hero__img--three {
  background-image:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 50% 85%, rgba(46, 52, 64, 0.08), rgba(255, 255, 255, 0) 60%),
    url("Automatic Assamble Stand.jpg");
  background-size: 140% 140%, 140% 140%, 115% auto;
  background-repeat: no-repeat;
  background-position: 60% center;
  background-color: transparent;
  background-blend-mode: normal, normal, normal;
  grid-column: 3;
  grid-row: 1;
  transform: scaleX(-1);
}

.hero__img--three .hero__label,
.hero__img--three .hero__play {
  transform: scaleX(-1);
}

.hero__img--three .hero__label {
  left: auto;
  right: 18px;
  top: 18px;
  bottom: auto;
}

.hero__img--three .hero__play {
  left: auto;
  right: 18px;
  bottom: 18px;
}

.hero__glow {
  position: absolute;
  inset: auto 0 0;
  height: 45vh;
  background: radial-gradient(circle at 50% 0%, rgba(47, 107, 255, 0.22), transparent 70%);
  filter: blur(32px);
  opacity: 0.65;
}

.hero__content {
  position: relative;
  max-width: 480px;
  padding-right: 24px;
  z-index: 3;
}

.hero__eyebrow {
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: clamp(0.08em, 0.2vw, 0.14em);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}

.hero__title {
  font-size: clamp(0.95rem, 1.4vw, 1.4rem);
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 500;
}

.hero__mission {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 26ch;
}

@media (max-width: 1200px) {
  .hero {
    padding: clamp(24px, 4vh, 48px) 6vw;
  }

  .hero__intro {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 300px);
  }

  .hero__gallery {
    height: min(56vh, 480px);
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(47, 107, 255, 0.35);
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 12px 6vw 8px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
  }

  .site-header__nav {
    order: 1;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    overflow-x: visible;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .site-header__nav::-webkit-scrollbar {
    display: none;
  }

  .site-header__actions {
    order: 2;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 0.78rem;
  }

  .site-header__links {
    display: none;
  }

  .site-header__menu-btn {
    display: inline-flex;
  }

  .site-header__menu {
    left: 0;
    transform: translateX(0);
    min-width: min(320px, 92vw);
    background: rgba(255, 255, 255, 0.9);
  }

  .site-header__menu.is-open {
    transform: translateY(4px);
  }

  .site-header__cta {
    padding: 6px 12px;
    font-size: 0.6rem;
  }

  .hero {
    padding: 28px 6vw 36px;
    grid-template-rows: auto auto;
    gap: 32px;
    min-height: auto;
    overflow: visible;
  }

  .hero__intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__title-group {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .hero__mission--inline {
    margin-left: 0;
    text-align: left;
    transform: none;
  }

  .hero__gallery {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 14px;
    padding-top: 16px;
    height: auto;
  }

  .hero__img {
    width: 100%;
    min-height: 260px;
    height: auto;
  }

  .hero__label {
    font-size: 0.7rem;
  }

  .product {
    padding: 16px 6vw 44px;
  }

  .product__grid {
    grid-template-columns: 1fr;
  }

  .product__media-row {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .product__media-card {
    height: auto;
  }

  .product__media-card img,
  .product__media-card video {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .product__specs-row {
    grid-template-columns: 1fr;
  }

  .adventure__top {
    grid-template-columns: 1fr;
  }

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

  .adventure__grid {
    grid-template-columns: 1fr;
  }

  .adventure__photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .adventure__media {
    grid-template-columns: 1fr;
  }

  .adventure__video video {
    aspect-ratio: 16 / 9;
  }

  .adventure__detail {
    grid-template-columns: 1fr;
  }

  .adventure__detail-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .site-header__nav {
    grid-column: 2;
    justify-content: center;
    text-align: center;
  }

  .site-header__menu-btn,
  .site-header__menu {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 28px 6vw 36px;
    gap: 20px;
  }

  .hero__eyebrow {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .hero__title {
    font-size: 1rem;
  }

  .hero__mission--inline {
    font-size: 0.9rem;
    white-space: normal;
    text-align: left;
    max-width: 100%;
    transform: none;
  }
  .hero__title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (min-width: 1400px) {
  .hero__gallery {
    height: min(60vh, 620px);
  }

  .hero__img {
    border-radius: 18px;
  }
}

