*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-deep: #0d2818;
  --green-light: #40916c;
  --green-bright: #52b788;
  --green-glow: rgba(82, 183, 136, 0.18);
  --black: #080808;
  --gray-900: #121212;
  --gray-850: #181818;
  --gray-800: #1e1e1e;
  --gray-600: #7a7a7a;
  --white: #f2f2f0;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(82, 183, 136, 0.22);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', system-ui, sans-serif;

  /* assets/images/ — PNGs from your uploads */
  --img-hero-poster: url('assets/images/feature-waterproof.png');
  --img-waterproof: url('assets/images/feature-waterproof.png');
  --img-valve: url('assets/images/feature-valve.png');
  --img-capacity: url('assets/images/feature-capacity.png');
  --img-carry: url('assets/images/feature-carry.png');
  --img-anchor: url('assets/images/feature-anchor.png');
  --img-zippers: url('assets/images/feature-zippers.png');
  --img-gallery-1: url('assets/images/feature-waterproof.png');
  --img-gallery-2: url('assets/images/feature-carry.png');
  --img-gallery-3: url('assets/images/feature-valve.png');
  --img-gallery-4: url('assets/images/feature-capacity.png');
}

html {
  scroll-behavior: smooth;
  --nav-offset: 72px;
  scroll-padding-top: var(--nav-offset);
}

#top,
#mission,
#features,
#video,
#gallery,
#shop {
  scroll-margin-top: var(--nav-offset);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(82, 183, 136, 0.35);
  color: var(--white);
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.narrow { max-width: 700px; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  background: var(--black);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--img-hero-poster) center 30% / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,8,8,.68) 0%, rgba(8,8,8,.42) 28%, rgba(8,8,8,.55) 55%, rgba(8,8,8,.82) 78%, var(--black) 100%),
    radial-gradient(ellipse 80% 55% at 50% 38%, rgba(45,106,79,.12) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 42%, rgba(8,8,8,.1) 0%, rgba(8,8,8,.75) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero > *:not(.hero-media):not(.nav) { position: relative; z-index: 2; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(8,8,8,.85), transparent);
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.nav.scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .2s;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: clamp(26px, 5vw, 34px);
  max-width: min(150px, 42vw);
  object-fit: contain;
}

.logo:hover { opacity: .85; }

.nav-cta {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem 1.35rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(242,242,240,.75);
  border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-1px);
}

.hero-content {
  margin-top: 3rem;
  width: 100%;
  max-width: 720px;
  padding-inline: clamp(.25rem, 3vw, 1rem);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.75rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 1.35rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.85);
}

.hero-sub {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: rgba(242,242,240,.88);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
  text-shadow: 0 1px 16px rgba(0,0,0,.65);
}

.hero-specs {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0 auto 2rem;
  max-width: 520px;
}

.hero-specs li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  min-width: 96px;
  padding: .7rem 1rem;
  background: rgba(8, 8, 8, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  backdrop-filter: blur(8px);
  transition: opacity .35s ease, transform .35s ease;
}

.hero-specs.is-fading li {
  opacity: 0;
  transform: translateY(8px);
}

.hero-spec-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.hero-spec-label {
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-bright);
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 2.1rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: transform .25s, background .25s, color .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.btn-primary:hover {
  background: var(--green-bright);
  color: var(--black);
  box-shadow: 0 8px 28px rgba(82,183,136,.35);
}

.btn-lg {
  padding: 1.05rem 2.5rem;
  font-size: .86rem;
  min-height: 52px;
}

.btn-ghost {
  border-color: rgba(242,242,240,.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: rgba(242,242,240,.7);
  background: rgba(255,255,255,.06);
}

.hero-scroll {
  position: absolute;
  bottom: clamp(1.25rem, 3vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,242,240,.45);
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-bright), transparent);
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .35; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.12); }
}

/* ── Trust bar ── */
.trust-bar {
  background:
    linear-gradient(90deg, var(--green-deep) 0%, var(--green-dark) 35%, var(--green) 65%, var(--green-dark) 100%);
  padding: clamp(1rem, 2.5vw, 1.2rem) 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.3);
}

/* ── Sections ── */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: .85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  line-height: 1.1;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin: .85rem auto 0;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  border-radius: 2px;
}

.mission .section-title::after,
.section-header .section-title::after {
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.mission {
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(45, 106, 79, 0.08) 0%, transparent 70%),
    var(--black);
}

.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='%2352b788' stroke-width='.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.mission .container { position: relative; z-index: 1; }

.mission-lead {
  font-size: clamp(1.12rem, 2.2vw, 1.28rem);
  color: rgba(242, 242, 240, 0.9);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.mission p {
  font-size: clamp(1rem, 2vw, 1.08rem);
  color: rgba(242,242,240,.65);
  line-height: 1.85;
}

/* ── Features ── */
.features {
  background:
    linear-gradient(180deg, var(--gray-900) 0%, #0f0f0f 50%, var(--gray-900) 100%);
  border-block: 1px solid var(--border-subtle);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: linear-gradient(165deg, rgba(30, 30, 30, 0.95) 0%, var(--gray-850) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-accent);
  border-color: var(--border-accent);
}

.feature-card:hover::before { opacity: 1; }

.feature-img {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  padding: 0;
  border: none;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
  overflow: hidden;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
}

.feature-img::before {
  content: '';
  position: absolute;
  inset: auto 0.75rem 0.75rem auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1;
  pointer-events: none;
}

.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 8, 0.55) 100%);
  pointer-events: none;
}

.feature-img:hover::before,
.feature-img:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2f2f0' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35M11 8v6M8 11h6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.feature-card:hover .feature-img { transform: scale(1.06); }

.feature-img:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: -2px;
}

.feature-img--waterproof { background-image: var(--img-waterproof); }
.feature-img--valve { background-image: var(--img-valve); }
.feature-img--capacity { background-image: var(--img-capacity); }
.feature-img--carry { background-image: var(--img-carry); }
.feature-img--anchor { background-image: var(--img-anchor); }
.feature-img--zippers { background-image: var(--img-zippers); }

.feature-body {
  position: relative;
  padding: 1.55rem 1.45rem 1.7rem;
}

.feature-index {
  position: absolute;
  top: -0.15rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: rgba(82, 183, 136, 0.12);
  pointer-events: none;
  user-select: none;
}

.feature-body h3 {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .55rem;
  color: var(--green-bright);
}

.feature-body p {
  font-size: .92rem;
  color: rgba(242,242,240,.7);
  line-height: 1.7;
}

/* ── Feature lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  background: var(--gray-850);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  animation: lightbox-in .28s ease;
}

.lightbox-close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.65);
  color: var(--white);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}

.lightbox-close:hover {
  background: rgba(82, 183, 136, 0.18);
  border-color: var(--border-accent);
  transform: scale(1.05);
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 0;
}

.lightbox-img {
  display: block;
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  background: var(--black);
}

.lightbox-title {
  padding: 1rem 1.25rem 1.15rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Gallery ── */
.gallery { text-align: center; }

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: .35rem;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin: .75rem auto 0;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  border-radius: 2px;
}

.gallery-sub {
  margin-bottom: 2rem;
  font-size: .95rem;
}

.gallery-sub a {
  color: var(--green-bright);
  letter-spacing: .04em;
  transition: color .2s;
}

.gallery-sub a:hover { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.45);
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  background-color: var(--white);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .3s ease, transform .3s ease;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.78C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.78C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.gallery-item:hover {
  transform: scale(1.025);
  border-color: var(--border-accent);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover::after {
  transform: scale(1);
}

.gallery-item--1 { background-image: var(--img-gallery-1); }
.gallery-item--2 { background-image: var(--img-gallery-2); }
.gallery-item--3 { background-image: var(--img-gallery-3); }
.gallery-item--4 { background-image: var(--img-gallery-4); }

.gallery-item--live {
  background-size: cover;
  background-position: center;
}

/* ── Info band ── */
.info-band {
  background: var(--gray-800);
  padding: clamp(3rem, 6vw, 4.25rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.info-eyebrow {
  margin-bottom: 1.25rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.info-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(8, 8, 8, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  border-left: 3px solid var(--green);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.info-card:hover {
  border-left-color: var(--green-bright);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.info-card p strong {
  color: rgba(242,242,240,.92);
  font-weight: 600;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  color: var(--green-bright);
}

.info-card p {
  font-size: .92rem;
  color: rgba(242,242,240,.7);
  line-height: 1.75;
}

/* ── Product video ── */
.product-video {
  background: var(--gray-900);
  border-top: 1px solid var(--border-subtle);
}

.video-player {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: var(--black);
}

.product-video-el {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  vertical-align: middle;
  background: var(--black);
}

.video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  border: none;
  background: rgba(8, 8, 8, 0.42);
  color: var(--white);
  cursor: pointer;
  transition: background .25s ease, opacity .25s ease;
}

.video-play:hover {
  background: rgba(8, 8, 8, 0.55);
}

.video-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.85);
  border: 1px solid var(--border-accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.video-play:hover .video-play-icon {
  transform: scale(1.06);
  background: rgba(64, 145, 108, 0.92);
  border-color: var(--green-bright);
}

.video-play-label {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 242, 240, 0.92);
}

.video-player.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.product-video-el:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 2px;
}

.video-play:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: -2px;
}

/* ── CTA band ── */
.cta-band {
  position: relative;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(45, 106, 79, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, var(--black) 0%, var(--green-deep) 100%);
  border-top: 1px solid var(--border-subtle);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: rgba(242, 242, 240, 0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

.social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: rgba(242,242,240,.5);
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}

.social a:hover {
  color: var(--green-bright);
  border-color: rgba(82,183,136,.4);
  background: rgba(82,183,136,.08);
  transform: translateY(-2px);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(82, 183, 136, 0.75);
  margin-bottom: 1.25rem;
}

.copyright {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(242,242,240,.32);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 72svh;
    padding: 5rem 1.25rem 2.5rem;
    justify-content: flex-end;
  }

  .hero-content { margin-top: 1.25rem; }

  .hero-sub {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-specs { margin-bottom: 1.35rem; }

  .hero-actions { margin-bottom: 1rem; }

  .hero-scroll { display: none; }
}

@media (max-width: 600px) {
  .hero {
    min-height: 68svh;
    padding: 5.25rem 1.25rem 2rem;
  }
  .hero-content { margin-top: 0.75rem; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.5rem); }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    margin-bottom: 0;
  }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .trust-items { gap: .35rem; }
  .divider { display: none; }
  .hero-specs { gap: .5rem; }
  .hero-specs li { min-width: 88px; padding: .6rem .75rem; }
  .trust-items .trust-item {
    width: 100%;
    text-align: center;
    padding: .35rem 0;
    font-size: .7rem;
    letter-spacing: .12em;
  }
  .cta-inner .btn { width: 100%; max-width: 320px; }
  .feature-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-scroll { display: none; }
  .nav { padding-inline: 1rem; gap: .75rem; }
  .nav-cta { padding: .5rem .9rem; font-size: .72rem; letter-spacing: .1em; }
  .logo-mark { height: 28px; max-width: 120px; }
  .video-play-icon {
    width: 60px;
    height: 60px;
  }
  .video-play-label { font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line { animation: none; }
  .btn:hover, .feature-card:hover, .gallery-item:hover, .nav-cta:hover, .social a:hover,
  .lightbox-close:hover {
    transform: none;
  }
  .feature-img,
  .feature-card:hover .feature-img,
  .lightbox-panel,
  .video-play:hover .video-play-icon,
  .hero-specs li {
    transition: none;
    animation: none;
  }

  .hero-specs.is-fading li {
    opacity: 1;
    transform: none;
  }
}
