:root {
  --bg: #07151d;
  --bg-2: #0d2530;
  --text: #10222b;
  --muted: #5e717c;
  --line: rgba(255,255,255,.18);
  --paper: #f6f3ee;
  --paper-2: #ffffff;
  --aqua: #25d2d0;
  --aqua-dark: #0a8f92;
  --gold: #e8b85a;
  --shadow: 0 24px 70px rgba(0,0,0,.18);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(var(--container), calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7, 21, 29, .72);
  color: #fff;
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 45px rgba(0,0,0,.18);
  transition: .25s ease;
}
.site-header.is-scrolled { top: 8px; background: rgba(7,21,29,.9); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .02em; }
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav { display: flex; align-items: center; gap: 18px; font-size: 14px; color: rgba(255,255,255,.86); }
.nav a { transition: color .2s; }
.nav a:hover { color: var(--aqua); }
.header-cta { padding: 12px 18px; border-radius: 999px; background: #fff; color: var(--text); font-weight: 800; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 9px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,29,.92) 0%, rgba(7,21,29,.72) 43%, rgba(7,21,29,.24) 100%),
    linear-gradient(0deg, rgba(7,21,29,.55), rgba(7,21,29,.12)),
    url('../img/hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%; bottom: -18%;
  width: 58vw; height: 58vw;
  background: radial-gradient(circle, rgba(37,210,208,.24), transparent 62%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 42px; align-items: center; }
.eyebrow { margin: 0 0 14px; font-size: 13px; line-height: 1.2; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; color: var(--aqua); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(44px, 7vw, 92px); line-height: .93; letter-spacing: -.07em; }
.lead { max-width: 640px; color: rgba(255,255,255,.82); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #052328; background: linear-gradient(135deg, var(--aqua), #9af3e4); box-shadow: 0 14px 38px rgba(37,210,208,.26); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.btn-ghost.light { background: rgba(255,255,255,.08); }
.btn-dark { color: #fff; background: var(--bg); }
.btn-wide { width: 100%; border: 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-points span { padding: 10px 12px; border-radius: 999px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); }

.booking-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.card-label { margin-bottom: 8px; color: var(--aqua-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
.booking-card h2 { margin-bottom: 20px; font-size: 28px; letter-spacing: -.04em; }
.lead-form { display: grid; gap: 13px; }
.lead-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; color: #263d46; }
.lead-form input, .lead-form select {
  width: 100%;
  border: 1px solid #dfe7e8;
  border-radius: 16px;
  padding: 14px 14px;
  outline: none;
  background: #fff;
  color: var(--text);
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(37,210,208,.13); }
.form-note { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.ticker { overflow: hidden; color: #fff; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker-track { display: flex; width: max-content; white-space: nowrap; animation: ticker 24s linear infinite; }
.ticker-group { display: flex; flex-shrink: 0; gap: 36px; padding: 18px 36px 18px 0; }
.ticker-track span { font-weight: 850; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.78); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.section-head h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 58px); line-height: .98; letter-spacing: -.06em; }
.section-head p, .intro-text p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.centered { text-align: center; max-width: 820px; }
.feature-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .occasion, .step, .contact-card, .captain-card {
  border: 1px solid rgba(12,52,63,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 60px rgba(7,21,29,.06);
}
.feature-card { padding: 28px; }
.icon { display: inline-grid; place-items: center; width: 56px; height: 56px; margin-bottom: 22px; border-radius: 18px; background: rgba(37,210,208,.13); font-size: 26px; }
.feature-card h3, .occasion h3, .step h3 { margin-bottom: 10px; font-size: 21px; letter-spacing: -.03em; }
.feature-card p, .occasion p, .step p { margin: 0; color: var(--muted); line-height: 1.6; }

.fleet { background: #fff; }
.fleet-grid { display: grid; gap: 26px; margin-top: 46px; }
.boat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 36px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.boat-card.reverse .boat-media { order: 2; }
.boat-media { min-height: 520px; }
.boat-media img { width: 100%; height: 100%; object-fit: cover; }
.boat-body { padding: clamp(28px, 5vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.boat-topline { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.badge { display: inline-flex; padding: 9px 12px; border-radius: 999px; background: rgba(37,210,208,.15); color: #087e80; font-weight: 850; font-size: 13px; }
.badge-gold { background: rgba(232,184,90,.18); color: #8d5a00; }
.capacity { color: var(--muted); font-weight: 800; }
.boat-body h3 { margin-bottom: 14px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.06em; }
.boat-body p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.check-list { display: grid; gap: 10px; margin: 8px 0 26px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: #29404a; line-height: 1.45; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--aqua); color: var(--bg); font-weight: 900; font-size: 12px; }

.captain { color: #fff; background: var(--bg); }
.captain-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 42px; background: linear-gradient(135deg, rgba(37,210,208,.16), rgba(255,255,255,.06)); border-color: rgba(255,255,255,.12); }
.captain-card h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 14px; letter-spacing: -.06em; }
.captain-card p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.65; }

.process { background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 42px; }
.step { padding: 28px; }
.step span { display: inline-block; margin-bottom: 34px; color: var(--aqua-dark); font-size: 13px; font-weight: 900; letter-spacing: .16em; }

.gallery-section { background: var(--bg); color: #fff; }
.gallery-section .section-head p { color: rgba(255,255,255,.68); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px; }
.gallery a { overflow: hidden; min-height: 280px; border-radius: 24px; background: #102833; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery a:hover img { transform: scale(1.05); }

.occasion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.occasion { padding: 30px; min-height: 210px; }
.occasion h3 { font-size: 24px; }

.faq { background: #fff; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid #e2e9ea; border-radius: 20px; padding: 18px 20px; background: #fff; }
summary { cursor: pointer; font-weight: 850; font-size: 18px; }
details p { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }

.final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,210,208,.24), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(232,184,90,.18), transparent 24%),
    var(--bg);
}
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
.contact-copy h2 { max-width: 780px; font-size: clamp(40px, 6vw, 78px); line-height: .94; letter-spacing: -.07em; margin-bottom: 20px; }
.contact-copy p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.7; }
.contact-card { display: grid; gap: 15px; padding: 34px; color: var(--text); background: #fff; }
.contact-card h3 { font-size: 32px; margin-bottom: 6px; letter-spacing: -.04em; }
.contact-card a { padding-bottom: 12px; border-bottom: 1px solid #e4eaeb; color: #18303a; }
.muted { color: var(--muted); }

.footer { padding: 24px 0; background: #051117; color: rgba(255,255,255,.72); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer p { margin: 0; }
.footer a { color: #fff; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7,21,29,.96);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 8px; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .booking-card { max-width: 560px; }
  .feature-grid, .steps, .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .boat-card, .boat-card.reverse { grid-template-columns: 1fr; }
  .boat-card.reverse .boat-media { order: 0; }
  .boat-media { min-height: 420px; }
  .captain-card { align-items: flex-start; flex-direction: column; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 68px 0; }
  .site-header { border-radius: 24px; }
  .brand span { display: none; }
  h1 { font-size: clamp(42px, 15vw, 64px); }
  .hero { padding-top: 118px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .booking-card { padding: 22px; }
  .feature-grid, .steps, .occasion-grid, .gallery { grid-template-columns: 1fr; }
  .gallery a { min-height: 340px; }
  .boat-media { min-height: 360px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* DonCap selling refresh */
.hero-bg {
  background:
    linear-gradient(90deg, rgba(5,17,23,.94) 0%, rgba(5,17,23,.78) 43%, rgba(5,17,23,.22) 100%),
    linear-gradient(0deg, rgba(5,17,23,.5), rgba(5,17,23,.08)),
    url('../img/hero.jpg') center/cover no-repeat;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-stats span {
  display: block;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.35;
}

.trust-strip {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid rgba(12,52,63,.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid div {
  padding: 20px 22px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid rgba(12,52,63,.08);
}

.trust-grid strong,
.route-card strong {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 16px;
}

.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.routes {
  background:
    radial-gradient(circle at 16% 20%, rgba(37,210,208,.12), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}

.route-wrap {
  align-items: center;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(12,52,63,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 60px rgba(7,21,29,.06);
}

.route-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--aqua-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.route-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -.04em;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-featured {
  grid-auto-flow: dense;
}

.gallery-featured .wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-featured .wide img {
  object-position: center;
}

.cta-banner-section {
  background: #fff;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 50px);
  border-radius: 36px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,17,23,.92), rgba(5,17,23,.7)),
    url('../img/brat-sunset-wide.jpg') center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-banner h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.06em;
}

.cta-banner p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.65;
}

.cta-banner .btn {
  flex: 0 0 auto;
}

.boat-card:hover .boat-media img,
.gallery a:hover img {
  transform: scale(1.045);
}

.boat-media img {
  transition: transform .45s ease;
}

@media (max-width: 980px) {
  .hero-stats,
  .trust-grid,
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .hero-stats,
  .trust-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .gallery-featured .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-points span {
    width: 100%;
  }
}
