/* ============================================================
   SoFlo Fun Rentals — styles.css
   Mobile-first. Brand: deep navy, sunset orange/gold, ocean
   blue, turquoise, white foam. Premium, tropical, clean.
   ============================================================ */

:root {
  /* Brand palette — Option 1: "Sunset Terracotta" (warm) */
  --navy:        #1B1310;  /* warm espresso base */
  --navy-2:      #241813;
  --navy-3:      #3A2118;
  --orange:      #FF6B2C;
  --gold:        #FFC24B;
  --ocean:       #C0552E;  /* terracotta (was ocean blue) */
  --turq:        #FF9E5E;  /* warm amber-coral (was turquoise) */
  --foam:        #FFF6EF;  /* warm foam */
  --ink:         #140C08;

  --text:        #FBEFE7;  /* warm white */
  --muted:       #C9A897;  /* warm taupe */
  --card:        rgba(255,255,255,0.05);
  --card-brd:    rgba(255,255,255,0.10);
  --glass:       rgba(27,19,16,0.55);

  --sunset:      linear-gradient(120deg, #FF6B2C 0%, #FFC24B 100%);
  --sunset-soft: linear-gradient(120deg, rgba(255,107,44,.16), rgba(255,194,75,.16));
  --deep:        linear-gradient(180deg, #241813 0%, #1B1310 100%);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --shadow:    0 20px 50px -20px rgba(0,0,0,.55);
  --shadow-sm: 0 8px 24px -12px rgba(0,0,0,.5);

  --maxw: 1160px;
  --header-h: 68px;

  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.12; font-weight: 800; letter-spacing: -0.01em; }
section { position: relative; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 300; background: var(--sunset);
  color: var(--ink); font-weight: 700; padding: 12px 18px; border-radius: 0 0 12px 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--turq); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 3px; }

/* ---------- Reading progress (page-wide) ---------- */
.read-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 101;
  background: var(--sunset); box-shadow: 0 0 12px rgba(255,107,44,.6); transition: width .05s linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  min-height: 52px; transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--sunset); color: var(--ink);
  box-shadow: 0 10px 26px -8px rgba(255,107,44,.6);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 14px 34px -8px rgba(255,107,44,.7); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: var(--foam);
  border: 1px solid var(--card-brd); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-turq { background: var(--turq); color: var(--ink); box-shadow: 0 10px 26px -10px rgba(255,158,94,.6); }
.btn-block { width: 100%; }
.btn-sm { min-height: 44px; padding: 10px 18px; font-size: .92rem; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--turq); margin-bottom: 12px;
}
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 5.5vw, 2.6rem); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.02rem; }
.pad { padding: 72px 0; }
.pad-sm { padding: 52px 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
}
.site-header.scrolled {
  background: var(--glass); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { height: 42px; display: inline-flex; align-items: center; }
.brand svg, .brand img { height: 42px; width: auto; }
.nav { display: none; align-items: center; gap: 26px; }
.nav a { font-size: .95rem; font-weight: 600; color: var(--text); opacity: .85; transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--turq); }
.header-cta { display: none; }
.hamburger {
  display: inline-flex; flex-direction: column; gap: 5px; background: rgba(255,255,255,.06);
  border: 1px solid var(--card-brd); border-radius: 12px; padding: 12px; cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: var(--foam); border-radius: 2px; transition: .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 99;
  background: var(--navy-2); border-left: 1px solid var(--card-brd);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  padding: calc(var(--header-h) + 20px) 24px 24px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { padding: 14px 8px; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav .btn { margin-top: 18px; }
.scrim { position: fixed; inset: 0; background: rgba(3,10,18,.6); backdrop-filter: blur(2px); z-index: 98; opacity: 0; visibility: hidden; transition: .3s; }
.scrim.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO — scroll-controlled video
   The .hero is tall; the .hero-stage is sticky (pinned) for the
   full scroll. JS maps scroll progress -> video.currentTime and
   reveals staged text. See js/hero.js.
   ============================================================ */
.hero { position: relative; height: 100vh; }
.hero-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
/* ▶▶ HERO VIDEO — replace assets/hero.mp4 (see README). Poster = SVG fallback. */
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video,
.hero-media .hero-fallback {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
}
.hero-fallback { position: absolute; inset: 0; }
/* Darkening + readability overlay — dims the video so the CTAs stand out.
   Warm-tinted (espresso) to match the palette. */
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,12,8,.60) 0%, rgba(20,12,8,.15) 30%),
    linear-gradient(0deg, rgba(20,12,8,.94) 4%, rgba(20,12,8,.55) 42%, rgba(20,12,8,.18) 74%),
    rgba(20,12,8,.28); /* flat scrim to darken the whole frame a bit */
}

.hero-content { position: relative; z-index: 3; width: 100%; padding-bottom: 8vh; }
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.hero-brandline {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.1rem, 8.5vw, 4.6rem); color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero .sub { color: #F4E0D3; font-size: clamp(1rem, 3.6vw, 1.28rem); max-width: 640px; margin: 16px 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-actions .btn { flex: 1 1 auto; min-width: 200px; }
/* Draw the eye to the primary call-to-action */
.hero-actions .btn-primary {
  font-size: 1.06rem; padding: 16px 28px;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.hero-actions .btn-primary:hover { animation-play-state: paused; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 26px -8px rgba(255,107,44,.6), 0 0 0 0 rgba(255,107,44,.55); }
  50%      { box-shadow: 0 14px 34px -8px rgba(255,107,44,.75), 0 0 0 12px rgba(255,107,44,0); }
}
@media (prefers-reduced-motion: reduce) { .hero-actions .btn-primary { animation: none; } }

.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-badges span {
  font-size: .8rem; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,.08); border: 1px solid var(--card-brd);
  padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(6px);
}
.trust-badges span::before { content: "✦ "; color: var(--turq); }

/* Staged reveals (driven by data-stage attr from hero.js) */
.stage { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.stage.in { opacity: 1; transform: none; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: var(--foam); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; background: var(--foam); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:1;top:6px} 100%{opacity:0;top:16px} }
.progress-rail { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: rgba(255,255,255,.12); z-index: 4; }
.progress-rail i { display: block; height: 100%; width: 0; background: var(--sunset); }

/* ============================================================
   REVEAL on scroll (generic)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   BRAND INTRO STRIP
   ============================================================ */
.intro { background: var(--deep); text-align: center; }
.intro p { max-width: 720px; margin: 0 auto; font-size: clamp(1.05rem,3.4vw,1.35rem); color: var(--text); }
.intro .accent { color: var(--gold); font-weight: 700; }

/* ---------- Stats / trust bar ---------- */
.stats-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 760px;
  margin: 40px auto 0; padding: 22px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.04); border: 1px solid var(--card-brd);
}
.stat { text-align: center; }
.stat .num { display: block; font-size: clamp(1.8rem,7vw,2.6rem); font-weight: 800; background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
.stat .lbl { display: block; font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.fleet-card {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s;
}
.fleet-card:hover { transform: translateY(-4px); border-color: rgba(255,194,75,.5); box-shadow: var(--shadow); }
.fleet-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; }
.fleet-thumb .boat-mark { width: 58%; opacity: .9; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.fleet-thumb .ph { position: absolute; bottom: 10px; right: 12px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.fleet-thumb .tag { position: absolute; top: 12px; left: 12px; background: var(--glass); backdrop-filter: blur(6px); border: 1px solid var(--card-brd); color: var(--foam); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; }
.fleet-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fleet-body h3 { font-size: 1.25rem; color: #fff; }
.fleet-body p { color: var(--muted); font-size: .95rem; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.fleet-specs span { font-size: .78rem; color: var(--text); background: rgba(255,255,255,.06); padding: 6px 11px; border-radius: 10px; border: 1px solid var(--card-brd); }
.fleet-specs b { color: var(--gold); }
.fleet-body .btn { margin-top: 4px; }

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.g-tile {
  position: relative; border: 1px solid var(--card-brd); border-radius: var(--r);
  overflow: hidden; aspect-ratio: 1; cursor: pointer; padding: 0;
  display: flex; align-items: flex-end; transition: transform .25s ease, box-shadow .25s;
}
.g-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.g-tile::after { content: "⤢"; position: absolute; top: 10px; right: 12px; color: rgba(255,255,255,.85); font-size: 1.1rem; opacity: 0; transition: opacity .2s; }
.g-tile:hover::after { opacity: 1; }
.g-cap {
  position: relative; z-index: 2; width: 100%; text-align: left; padding: 14px;
  color: #fff; font-weight: 600; font-size: .9rem; text-shadow: 0 2px 10px rgba(0,0,0,.5);
  background: linear-gradient(180deg, rgba(10,27,42,0), rgba(10,27,42,.85));
}
.g-wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(3,10,18,.92); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lb-figure { margin: 0; max-width: min(1000px, 92vw); width: 100%; text-align: center; }
.lb-media {
  width: 100%; aspect-ratio: 16 / 10; border-radius: var(--r-lg);
  border: 1px solid var(--card-brd); background-size: cover; background-position: center;
  box-shadow: var(--shadow);
}
.lb-figure figcaption { color: var(--foam); margin-top: 14px; font-weight: 600; letter-spacing: .02em; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid var(--card-brd);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; display: grid; place-items: center; backdrop-filter: blur(8px); transition: background .2s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 20px; right: 20px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ============================================================
   FORM — review summary (step 10)
   ============================================================ */
.review-summary {
  border: 1px solid var(--card-brd); border-radius: var(--r); overflow: hidden; margin-bottom: 20px;
  background: rgba(255,255,255,.03);
}
.review-summary .rrow {
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  width: 100%; text-align: left; padding: 13px 16px; background: none; border: 0;
  border-bottom: 1px solid rgba(255,255,255,.06); color: var(--text); cursor: pointer; font-family: var(--font);
}
.review-summary .rrow:last-child { border-bottom: 0; }
.review-summary .rrow:hover { background: rgba(255,255,255,.04); }
.review-summary .rk { font-size: .8rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; flex: 0 0 auto; }
.review-summary .rv { font-weight: 600; text-align: right; }
.review-summary .rv.empty { color: var(--gold); font-weight: 500; }
.review-summary .rrow .edit { color: var(--turq); font-size: .78rem; flex: 0 0 auto; }

/* ============================================================
   EXPERIENCE CARDS
   ============================================================ */
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.exp-card {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s;
}
.exp-card:hover { transform: translateY(-4px); border-color: rgba(255,158,94,.5); box-shadow: var(--shadow); }
.exp-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--navy-3); }
.exp-thumb .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.5); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.exp-thumb .scene { position: absolute; inset: 0; }
.exp-thumb .tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--glass); backdrop-filter: blur(6px); border: 1px solid var(--card-brd); color: var(--foam); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; }
.exp-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.exp-body h3 { font-size: 1.25rem; color: #fff; }
.exp-body p { color: var(--muted); font-size: .96rem; }
.exp-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.exp-meta span { font-size: .78rem; color: var(--text); background: rgba(255,255,255,.06); padding: 6px 11px; border-radius: 10px; border: 1px solid var(--card-brd); }
.exp-meta span b { color: var(--turq); font-weight: 700; }
.exp-body .btn { margin-top: 6px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
.step {
  display: flex; gap: 16px; align-items: flex-start; background: var(--card);
  border: 1px solid var(--card-brd); border-radius: var(--r); padding: 20px;
}
.step .num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem; color: var(--ink); background: var(--sunset);
}
.step h3 { font-size: 1.08rem; color: #fff; }
.step p { color: var(--muted); font-size: .92rem; margin-top: 2px; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dest {
  position: relative; border-radius: var(--r); overflow: hidden; min-height: 150px;
  border: 1px solid var(--card-brd); display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(180deg, rgba(10,27,42,0) 30%, rgba(10,27,42,.9) 100%), var(--navy-3);
}
.dest .scene { position: absolute; inset: 0; z-index: -1; }
.dest span { position: relative; z-index: 2; font-weight: 700; color: #fff; font-size: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.dest:first-child { grid-column: 1 / -1; min-height: 180px; }

/* ============================================================
   BOOKING FORM (multi-step)
   ============================================================ */
.booking { background: var(--deep); }
.form-card {
  max-width: 720px; margin: 0 auto; background: rgba(255,255,255,.04);
  border: 1px solid var(--card-brd); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--shadow);
}
.form-progress { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }
.form-progress .dot { flex: 1; height: 5px; border-radius: 999px; background: rgba(255,255,255,.12); transition: background .3s; }
.form-progress .dot.done { background: var(--turq); }
.form-progress .dot.active { background: var(--sunset); }
.step-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--turq); margin-bottom: 6px; }
.fstep { display: none; animation: fade .35s ease; }
.fstep.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fstep h3 { font-size: 1.35rem; color: #fff; margin-bottom: 4px; }
.fstep .hint { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.opt {
  position: relative; border: 1px solid var(--card-brd); background: rgba(255,255,255,.04);
  border-radius: var(--r-sm); padding: 15px 14px; cursor: pointer; font-weight: 600; font-size: .95rem;
  transition: border-color .2s, background .2s; display: flex; align-items: center; gap: 10px; min-height: 54px;
}
.opt:hover { border-color: rgba(255,158,94,.5); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .mark { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--muted); display: grid; place-items: center; transition: .2s; }
.opt.radio .mark { border-radius: 50%; }
.opt input:checked ~ .mark { border-color: var(--turq); background: var(--turq); }
.opt input:checked ~ .mark::after { content: "✓"; color: var(--ink); font-size: .8rem; font-weight: 900; }
.opt:has(input:checked) { border-color: var(--turq); background: rgba(255,158,94,.12); }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--text);
  background: rgba(255,255,255,.05); border: 1px solid var(--card-brd); border-radius: var(--r-sm);
  padding: 14px; min-height: 52px; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--turq); }
.field textarea { min-height: 96px; resize: vertical; }
.field.row2 { display: grid; grid-template-columns: 1fr; gap: 14px; }

.compliance { display: flex; flex-direction: column; gap: 10px; }
.compliance .opt { min-height: auto; align-items: flex-start; }
.compliance .opt span:last-child { font-weight: 500; font-size: .9rem; color: var(--text); line-height: 1.4; }

.form-nav { display: flex; gap: 12px; margin-top: 22px; }
.form-nav .btn { flex: 1; }
.form-nav .back { flex: 0 0 auto; }

.form-success { text-align: center; padding: 20px 6px; display: none; }
.form-success.show { display: block; animation: fade .4s ease; }
.form-success .check { width: 76px; height: 76px; border-radius: 50%; background: var(--sunset); display: grid; place-items: center; margin: 0 auto 18px; font-size: 2.2rem; color: var(--ink); }
.form-success h3 { font-size: 1.5rem; color: #fff; }
.form-success p { color: var(--muted); margin: 10px auto 0; max-width: 420px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.price-card { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.price-card.feat { border-color: var(--gold); background: var(--sunset-soft); }
.price-card h3 { font-size: 1.1rem; color: #fff; }
.price-card .amt { font-size: 1.9rem; font-weight: 800; color: var(--gold); }
.price-card .amt small { font-size: .82rem; font-weight: 600; color: var(--muted); }
.price-card p { color: var(--muted); font-size: .9rem; }
.price-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 22px; }

/* ============================================================
   SAFETY
   ============================================================ */
.safety { background: var(--deep); }
.safety-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.safety-item { display: flex; gap: 12px; align-items: flex-start; background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r-sm); padding: 16px; }
.safety-item .ic { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; background: rgba(255,158,94,.15); color: var(--turq); display: grid; place-items: center; font-size: 1.1rem; }
.safety-item h4 { font-size: .98rem; color: #fff; }
.safety-item p { font-size: .88rem; color: var(--muted); margin-top: 2px; }
.safety-disclaimer { margin-top: 20px; font-size: .82rem; color: var(--muted); text-align: center; font-style: italic; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: var(--font); font-size: 1.02rem; font-weight: 600; padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q .plus { flex: 0 0 auto; font-size: 1.4rem; color: var(--turq); transition: transform .25s; line-height: 1; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 20px 18px; color: var(--muted); font-size: .95rem; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r); padding: 22px; }
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.review-card p { color: var(--text); font-style: italic; }
.review-card .who { color: var(--muted); font-size: .86rem; margin-top: 10px; font-style: normal; }
.review-card.placeholder { border-style: dashed; display: grid; place-items: center; text-align: center; color: var(--muted); min-height: 150px; }
.ig-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 22px; }
.ig-tile { aspect-ratio: 1; border-radius: var(--r-sm); border: 1px solid var(--card-brd); position: relative; overflow: hidden; }
.ig-tile .scene { position: absolute; inset: 0; }
.ig-tile .ig-ic { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.75); font-size: 1.4rem; z-index: 2; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { text-align: center; background: linear-gradient(160deg, #3A2118 0%, #1B1310 60%); }
.final-cta h2 { font-size: clamp(1.8rem, 6vw, 3rem); color: #fff; }
.final-cta p { color: var(--muted); max-width: 520px; margin: 14px auto 26px; }
.final-cta .cta-row { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); padding: 46px 0 120px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer-grid a, .footer-grid p { color: var(--muted); font-size: .92rem; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--turq); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 30px; padding-top: 20px; color: var(--muted); font-size: .82rem; text-align: center; }

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--glass); backdrop-filter: blur(16px); border-top: 1px solid var(--card-brd);
}
.sticky-cta .btn { flex: 1; min-height: 50px; }

/* ============================================================
   FLOATING ACTION BUTTONS (WhatsApp + back-to-top)
   ============================================================ */
.fab {
  position: fixed; right: 16px; z-index: 92; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; border: 0;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.55); transition: transform .2s ease, opacity .3s ease, visibility .3s;
}
.fab:active { transform: scale(.94); }
.fab-wa { bottom: calc(84px + env(safe-area-inset-bottom)); background: #25D366; color: #fff; }
.fab-wa svg { width: 30px; height: 30px; }
.fab-wa:hover { transform: scale(1.06); }
.fab-top {
  bottom: calc(146px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.1);
  color: var(--foam); border: 1px solid var(--card-brd); backdrop-filter: blur(8px);
  font-size: 1.3rem; opacity: 0; visibility: hidden; width: 46px; height: 46px;
}
.fab-top.show { opacity: 1; visibility: visible; }
.fab-top:hover { background: rgba(255,255,255,.18); }

/* Active nav link (scrollspy) */
.nav a.active { color: var(--turq); opacity: 1; }
.nav a.active::after { content: ""; display: block; height: 2px; background: var(--turq); border-radius: 2px; margin-top: 3px; }
.mobile-nav a.active { color: var(--turq); }

/* ============================================================
   RESPONSIVE — tablet / desktop
   ============================================================ */
@media (min-width: 720px) {
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .field.row2 { grid-template-columns: 1fr 1fr; }
  .final-cta .cta-row { flex-direction: row; max-width: none; justify-content: center; flex-wrap: wrap; }
  .final-cta .cta-row .btn { flex: 0 0 auto; }
}
@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
  .sticky-cta { display: none; }         /* desktop: header CTA is enough */
  .site-footer { padding-bottom: 46px; }
  .exp-grid { grid-template-columns: repeat(3,1fr); }
  .fleet-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(4,1fr); }
  .steps { grid-template-columns: repeat(3,1fr); }
  .price-grid { grid-template-columns: repeat(3,1fr); }
  .dest-grid { grid-template-columns: repeat(3,1fr); }
  .dest:first-child { grid-column: 1 / -1; }
  .hero-actions .btn { flex: 0 0 auto; }
  /* No sticky bar on desktop → drop the FABs to the corner */
  .fab-wa { bottom: 20px; }
  .fab-top { bottom: 84px; }
}

/* ============================================================
   ACCESSIBILITY — reduced motion
   Disable scroll-scrub scrub jank; just show poster + all text.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero { height: 100vh; }
  .hero-stage { position: relative; }
  .stage, .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .scroll-hint, .progress-rail { display: none; }
}
