:root {
  --lime: #cef61d;
  --lime-2: #b6e00a;
  --ink: #0d0d0d;
  --ink-2: #1a1a1a;
  --paper: #f2f2f2;
  --white: #fff;
  --muted: #5c5c5c;
  --line: rgba(13, 13, 13, 0.1);
  --shadow: 0 24px 60px rgba(13, 13, 13, 0.12);
  --radius: 28px;
  --max: 1180px;
  --sans: "DM Sans", system-ui, sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  min-width: 320px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(242, 242, 242, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: max(14px, env(safe-area-inset-top, 0px));
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 12px;
  padding-top: 8px; padding-bottom: 8px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-chip {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; padding: 5px;
  background: #0d0d0d; border-radius: 16px;
  flex-shrink: 0;
}
.brand-chip img { width: 100%; height: 100%; object-fit: contain; }
.nav { display: none; gap: 22px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.nav a { text-decoration: none; opacity: 0.72; }
.nav a:hover { opacity: 1; }
.header-cta { display: flex; gap: 8px; }
@media (max-width: 719px) {
  .brand-chip { width: 52px; height: 52px; border-radius: 14px; }
  .header-cta .btn-ink { display: none; }
}
.burger {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white);
  touch-action: manipulation;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.mobile-nav {
  display: none !important; flex-direction: column; padding: 8px 16px 18px; gap: 12px;
  text-transform: uppercase; font-weight: 700; letter-spacing: 0.06em; font-size: 14px;
}
.mobile-nav.is-open { display: flex !important; }
.mobile-nav a { 
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line);
  touch-action: manipulation; min-height: 44px; display: flex; align-items: center;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; border: 0;
  font-family: var(--cond); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; font-size: 16px;
  touch-action: manipulation;
}
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-2); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa svg { width: 18px; height: 18px; }
.btn-block { width: 100%; }

/* hero */
.hero {
  position: relative;
  padding: 28px 0 8px;
}
.hero-grid { display: grid; gap: 22px; }
.hero-copy { min-width: 0; }
.kicker {
  font-family: var(--cond); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 13px; color: var(--muted);
}
h1, h2, .display {
  font-family: var(--cond); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 0.95; margin: 0;
}
h1 { font-size: clamp(34px, 11vw, 72px); max-width: 16ch; }
.cota-letters { display: inline-flex; gap: 5px; margin-top: 10px; }
.cota-letters span {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(36px, 9vw, 58px); height: clamp(42px, 10vw, 64px);
  background: var(--lime); color: var(--ink);
  font-family: var(--cond); font-weight: 800; font-size: clamp(22px, 6vw, 36px);
}
.lead { font-size: 16px; color: var(--muted); max-width: 42ch; margin: 16px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 0;
}
.fact {
  background: var(--white); border-radius: 18px; padding: 14px 14px 12px;
  border: 1px solid var(--line);
}
.fact b { display: block; font-family: var(--cond); font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.fact span { font-size: 12px; color: var(--muted); }
.hero-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  /* taller on mobile so contain shows full ski above the price chip */
  aspect-ratio: 1 / 1.05;
  border-radius: 28px 28px 80px 28px;
  box-shadow: var(--shadow);
  background: #0a0a0a;
}
picture.fill {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
img.fill,
.hero-visual img,
.jet-card img,
.gallery img {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-visual picture.fill {
  position: absolute;
  inset: 0;
}
.hero-visual img { object-position: center center; }
.price-chip {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  background: var(--ink); color: var(--white);
  border-radius: 18px; padding: 10px 14px;
  border: 2px solid var(--lime);
  pointer-events: none;
  z-index: 2;
}
.price-chip strong {
  display: block; font-family: var(--cond); font-size: clamp(12px, 3.4vw, 15px);
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1.2; overflow-wrap: anywhere;
}
.price-chip small { color: var(--lime); font-size: 12px; }

/* sections */
section { padding: 56px 0; }
.section-head { margin-bottom: 28px; }
.section-head h2 { font-size: clamp(28px, 7vw, 48px); }
.section-head p { color: var(--muted); margin: 8px 0 0; max-width: 48ch; }

.steps { display: grid; gap: 12px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 12px;
  background: var(--white); border-radius: 22px; padding: 18px;
  border: 1px solid var(--line);
}
.step-n {
  font-family: var(--cond); font-size: 28px; font-weight: 800;
  color: var(--ink); background: var(--lime); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin: 0 0 4px; font-size: 22px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* jet cards */
.jets { display: grid; gap: 20px; }
.jet-card {
  background: var(--white); border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.jet-card picture.fill {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  background: #0a0a0a;
}
.jet-card.well-light picture.fill { background: #f5f5f5; aspect-ratio: 1024 / 727; }
.jet-card.well-dark picture.fill { background: #0a0a0a; aspect-ratio: 1400 / 931; }
.jet-card img {
  object-fit: contain;
  object-position: center center;
}
.jet-body { padding: 18px 18px 20px; }
.jet-body h3 { font-size: 28px; margin-bottom: 8px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag {
  background: var(--paper); border-radius: 999px; padding: 4px 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.tag-lime { background: var(--lime); }
.highlights { margin: 0 0 16px; padding: 0; list-style: none; display: grid; gap: 8px; }
.highlights li { font-size: 14px; padding-left: 14px; position: relative; }
.highlights li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; background: var(--lime);
}
.highlights strong { display: inline; }
.price-row {
  background: var(--ink); color: var(--white); border-radius: 18px;
  padding: 12px 14px; margin-bottom: 12px;
}
.price-row b { font-family: var(--cond); letter-spacing: 0.04em; text-transform: uppercase; font-size: 15px; }
.price-row span { display: block; color: var(--lime); font-size: 12px; margin-top: 2px; }

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery a,
.gal-item {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  background: #0a0a0a;
  touch-action: manipulation;
}
.gal-item--light { background: #ffffff; aspect-ratio: 3 / 2; }
.gal-item--dark { background: #0a0a0a; aspect-ratio: 3 / 2; }
.gallery picture.fill { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery img { object-fit: contain; object-position: center; width: 100%; height: 100%; }

/* benefits */
.benefits { display: grid; gap: 12px; }
.benefit {
  background: var(--white); border-radius: 22px; padding: 18px;
  border-top: 4px solid var(--lime);
}
.benefit h3 { font-size: 22px; margin: 0 0 6px; }
.benefit p { margin: 0; color: var(--muted); font-size: 14px; }

/* final cta */
.final {
  background: var(--ink); color: var(--white);
  border-radius: 32px; padding: 36px 22px; text-align: center;
  position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(206,246,29,.18), transparent 40%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.04) 18px 19px);
  pointer-events: none;
}
.final h2 { font-size: clamp(30px, 8vw, 52px); position: relative; }
.final p { color: #cfcfcf; position: relative; }
.final .hero-actions { justify-content: center; position: relative; }

/* footer */
.site-footer {
  padding: 40px 0 110px; font-size: 14px; color: var(--muted);
}
.foot-grid { display: grid; gap: 18px; }
.foot-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.foot-brand .brand-chip { width: 48px; height: 48px; border-radius: 12px; padding: 4px; }
.site-footer a { color: var(--ink); font-weight: 700; text-decoration: none; }
.wa-list { display: grid; gap: 8px; }
.copy { margin-top: 22px; font-size: 12px; }

/* float wa */
.float-wa {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  touch-action: manipulation;
}
.float-wa svg { width: 28px; height: 28px; }

/* lightbox */
.lb {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 80;
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.lb.is-open { display: flex; }
.lb img { max-width: 100%; max-height: 86vh; border-radius: 12px; }
.lb-close, .lb-nav {
  position: absolute; background: var(--lime); border: 0; width: 44px; height: 44px;
  border-radius: 50%; font-size: 22px; font-weight: 800;
  touch-action: manipulation;
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-nav { top: 50%; transform: translateY(-50%); }

/* mobile: keep full ski above price chip */
@media (max-width: 719px) {
  .hero-visual picture.fill { inset: 0 0 86px 0; }
}

/* tablet */
@media (min-width: 720px) {
  .wrap { width: min(var(--max), calc(100% - 48px)); }
  .burger { display: none; }
  .nav { display: flex; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "copy visual"
      "facts visual";
    align-items: start;
  }
  .hero-copy { grid-area: copy; }
  .hero-visual { grid-area: visual; height: auto; aspect-ratio: 12 / 7; }
  .hero-visual picture.fill { inset: 0; }
  .hero-facts { grid-area: facts; }
  .hero-visual img { object-position: center center; }
  .steps { grid-template-columns: 1fr 1fr; }
  .jets { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr 1fr; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* desktop */
@media (min-width: 1080px) {
  .site-header .wrap { min-height: 84px; }
  .brand-chip { width: 68px; height: 68px; }
  .hero { padding: 48px 0 24px; }
  h1 { font-size: 76px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .jet-card picture.fill { height: auto; }
}
