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

:root {
  --deep: #0a1628;
  --ocean: #0c2340;
  --azure: #1a6baa;
  --sky: #4db8ff;
  --foam: #b8e4ff;
  --sand: #f5efe6;
  --pearl: #faf8f5;
  --gold: #c5973e;
  --gold-light: #e8c67a;
  --white: #ffffff;
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.scrolled {
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem; color: var(--white);
  text-decoration: none; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.01em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important; color: var(--deep) !important;
  padding: 10px 24px !important; border-radius: 100px;
  font-weight: 500 !important; font-size: 0.85rem !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.25) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  margin: 5px 0; transition: all 0.3s; border-radius: 2px;
}

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/image_01.webp');
  background-size: cover; background-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.15) 35%,
    rgba(10,22,40,0.25) 65%, rgba(10,22,40,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 860px; padding-top: 120px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 8px 20px 8px 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.9);
  margin-bottom: 28px; letter-spacing: 0.04em;
  animation: fadeSlideUp 1s 0.2s both;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--gold-light);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05; color: var(--white);
  letter-spacing: -0.03em; font-weight: 400;
  margin-bottom: 24px; animation: fadeSlideUp 1s 0.4s both;
}
.hero h1 em { font-style: italic; color: var(--foam); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7); line-height: 1.6;
  max-width: 560px; margin-bottom: 40px;
  animation: fadeSlideUp 1s 0.6s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp 1s 0.8s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--deep);
  padding: 16px 36px; border-radius: 100px;
  text-decoration: none; font-weight: 500; font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); color: var(--white);
  padding: 16px 36px; border-radius: 100px;
  text-decoration: none; font-weight: 400; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35); transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s infinite;
}

/* STATS */
.stats-bar { background: var(--deep); padding: 56px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white); letter-spacing: -0.03em; line-height: 1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 8px; }

/* SECTIONS */
section { padding: clamp(80px, 10vw, 140px) 0; }
.section-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--azure);
  font-weight: 500; margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text-primary); max-width: 680px;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.7; max-width: 520px; margin-top: 16px;
}
.section-desc.light { color: rgba(255,255,255,0.6); }

/* BOAT SECTION */
.boat-section { background: var(--pearl); }
.boat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 64px;
}
.boat-image {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/2;
  box-shadow: 0 40px 80px rgba(10,22,40,0.12);
}
.boat-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.boat-image:hover img { transform: scale(1.04); }
.boat-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(10,22,40,0.8); backdrop-filter: blur(12px);
  color: var(--white); padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 500;
}
.boat-features { display: flex; flex-direction: column; gap: 32px; }
.boat-feature {
  display: flex; gap: 20px; padding: 24px; border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(10,22,40,0.06);
  transition: all 0.4s;
}
.boat-feature:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,22,40,0.08);
}
.boat-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--azure), var(--sky));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.boat-feature-icon svg { width: 22px; height: 22px; color: var(--white); }
.boat-feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.boat-feature p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* GALLERY */
.experience-section { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto; gap: 16px; margin-top: 64px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.5));
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  color: var(--white); font-size: 0.9rem; font-weight: 500;
  opacity: 0; transform: translateY(10px); transition: all 0.4s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
.gi-1 { grid-column: 1 / 8; aspect-ratio: 16/10; }
.gi-2 { grid-column: 8 / 13; aspect-ratio: 4/3; }
.gi-3 { grid-column: 1 / 5; aspect-ratio: 1; }
.gi-4 { grid-column: 5 / 9; aspect-ratio: 1; }
.gi-5 { grid-column: 9 / 13; aspect-ratio: 1; }

/* ROUTES */
.routes-section {
  background: var(--deep); position: relative; overflow: hidden;
}
.routes-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(26,107,170,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(77,184,255,0.08) 0%, transparent 50%);
}
.routes-header { position: relative; z-index: 1; text-align: center; margin-bottom: 64px; }
.routes-header .section-title { margin: 0 auto; }
.routes-header .section-desc { margin: 16px auto 0; }
.routes-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.route-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.route-card-image { aspect-ratio: 16/10; overflow: hidden; }
.route-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.route-card:hover .route-card-image img { transform: scale(1.06); }
.route-card-body { padding: 28px; }
.route-card-duration {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold-light); margin-bottom: 12px;
}
.route-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.route-card p {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  line-height: 1.6; margin-bottom: 20px;
}
.route-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06);
}
.route-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem; color: var(--white);
}
.route-book {
  color: var(--sky); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
.route-book:hover { gap: 10px; }

/* TESTIMONIALS */
.testimonials-section { background: var(--pearl); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid rgba(10,22,40,0.04);
  transition: all 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-3px); box-shadow: 0 16px 48px rgba(10,22,40,0.08);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--white); font-weight: 600;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-origin { font-size: 0.78rem; color: var(--text-secondary); }

/* CTA */
.cta-section {
  background: var(--deep); padding: clamp(100px, 12vw, 160px) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(26,107,170,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(197,151,62,0.06) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-title { color: var(--white); margin: 0 auto 20px; max-width: 600px; }
.cta-content .section-desc { color: rgba(255,255,255,0.55); margin: 0 auto 40px; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem; color: var(--white); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand svg { width: 28px; height: 28px; }
.footer-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.4);
  line-height: 1.6; max-width: 320px;
}
.footer-col h5 {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.35);
  margin-bottom: 20px; font-weight: 500;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 0.88rem;
  padding: 6px 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.3s; text-decoration: none;
}
.footer-socials a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.footer-socials a svg { width: 16px; height: 16px; }

/* ANIMATIONS */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.reveal {
  opacity: 1; transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.hidden { opacity: 0; transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
/* === TABLET === */
@media (max-width: 1024px) {
  .boat-grid { grid-template-columns: 1fr; gap: 48px; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* === MOBILE === */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,22,40,0.97); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    justify-content: center; align-items: center; gap: 28px; z-index: 99;
  }
  .nav-links.open a { font-size: 1.3rem; color: var(--white); }
  .nav-links.open .nav-cta {
    font-size: 1rem !important; padding: 14px 36px !important;
  }
  .nav-toggle { display: block; z-index: 101; }
  /* Scroll lock while menu is open (body{overflow:hidden} is ignored by iOS Safari) */
  body.menu-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
  /* backdrop-filter on the nav turns it into the containing block for the
     fixed fullscreen menu (WebKit + Blink), collapsing it to nav-bar height.
     Drop it while the menu is open — the opaque overlay replaces it visually. */
  body.menu-open nav, body.menu-open nav.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  /* Cover the full dynamic viewport incl. iOS toolbar collapse */
  .nav-links.open { height: 100dvh; }
  /* Cookie banner (z-index 9999) must not float over the open menu */
  body.menu-open #cookieBanner { display: none; }
  .nav-logo img { height: 36px !important; }
  nav { padding: 14px 0; }
  nav.scrolled { padding: 10px 0; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding-top: 100px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-bottom: 18px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary {
    width: 100%; justify-content: center;
    padding: 16px 24px; font-size: 0.95rem;
  }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px 6px 10px; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-bar { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stat-item { border-right: none; padding: 0 12px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.72rem; }

  /* Sections */
  section { padding: clamp(60px, 8vw, 100px) 0; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-desc { font-size: 0.95rem; }

  /* Boat */
  .boat-grid { grid-template-columns: 1fr; gap: 36px; }
  .boat-image { aspect-ratio: 16/10; }
  .boat-feature { padding: 18px; gap: 14px; }
  .boat-feature-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 10px; }
  .boat-feature-icon svg { width: 20px; height: 20px; }
  .boat-feature h4 { font-size: 0.95rem; }
  .boat-feature p { font-size: 0.84rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gi-1 { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .gi-2 { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .gi-3 { grid-column: 1 / 2; aspect-ratio: 1; }
  .gi-4 { grid-column: 2 / 3; aspect-ratio: 1; }
  .gi-5 { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .gallery-item { border-radius: 10px; }

  /* Routes */
  .routes-grid { grid-template-columns: 1fr; gap: 20px; }
  .routes-header { margin-bottom: 40px; }
  .route-card-body { padding: 22px; }
  .route-card h3 { font-size: 1.3rem; }
  .route-card p { font-size: 0.84rem; margin-bottom: 16px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 28px; }
  .testimonial-text { font-size: 0.9rem; }

  /* CTA */
  .cta-section { padding: clamp(80px, 10vw, 120px) 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%; max-width: 340px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img { height: 28px !important; }
  .footer-tagline { font-size: 0.84rem; }
  .footer-col h5 { margin-bottom: 12px; }
  .footer-col a { padding: 5px 0; font-size: 0.84rem; }
  .footer-bottom {
    flex-direction: column; gap: 16px; align-items: center; text-align: center;
  }
}

/* === SMALL MOBILE === */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.88rem; }
  .stat-number { font-size: 1.5rem; }
  .stats-grid { gap: 20px 8px; }
  .section-title { font-size: 1.5rem; }
  .boat-feature { flex-direction: column; gap: 10px; }
  .route-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* === Touch device helpers === */
@media (hover: none) {
  .gallery-item::after { opacity: 0 !important; }
  .gallery-item-label { display: none; }
  .boat-feature:hover { transform: none; box-shadow: none; }
  .testimonial-card:hover { transform: none; box-shadow: none; }
  .route-card:hover { transform: none; }
}

/* === Safe area for notched phones === */
@supports (padding-top: env(safe-area-inset-top)) {
  nav { padding-top: calc(14px + env(safe-area-inset-top)); }
  nav.scrolled { padding-top: calc(10px + env(safe-area-inset-top)); }
  .hero-content { padding-top: calc(100px + env(safe-area-inset-top)); }
  footer .footer-bottom { padding-bottom: env(safe-area-inset-bottom); }
}

/* ═══ LANDING PAGES (subpages — same design language) ═══ */
.page-hero { position: relative; min-height: 64vh; display: flex; align-items: center; overflow: hidden; }
.page-hero .hero-content { padding-top: 150px; padding-bottom: 90px; max-width: 860px; }
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.07; color: var(--white);
  letter-spacing: -0.03em; font-weight: 400;
  margin-bottom: 22px; animation: fadeSlideUp 1s 0.3s both;
}
.page-hero .hero-sub { animation: fadeSlideUp 1s 0.5s both; max-width: 640px; }
.page-hero .hero-actions { animation: fadeSlideUp 1s 0.7s both; }
.steps { display: grid; gap: 22px; max-width: 800px; margin-top: 56px; }
.step { display: flex; gap: 20px; }
.step-n {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--deep); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif; font-size: 1.05rem;
}
.step h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.incl-list { list-style: none; max-width: 780px; margin-top: 48px; }
.incl-list li {
  padding: 14px 0 14px 36px; position: relative;
  color: var(--text-primary); border-bottom: 1px solid rgba(10,22,40,0.08);
  font-size: 0.98rem; line-height: 1.6;
}
.incl-list li::before { content: '✓'; position: absolute; left: 0; color: var(--azure); font-weight: 700; }
.faq-list { max-width: 800px; margin-top: 48px; }
.faq-list details { border-bottom: 1px solid rgba(10,22,40,0.12); padding: 20px 0; }
.faq-list summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--ocean); }
.faq-list details p { margin-top: 12px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 56px; }
.info-card {
  background: var(--white); border: 1px solid rgba(10,22,40,0.06);
  border-radius: var(--radius); padding: 32px; transition: all 0.4s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,22,40,0.08); }
.info-card h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; margin-bottom: 10px; color: var(--text-primary); letter-spacing: -0.02em; }
.info-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.info-card a { color: var(--azure); text-decoration: none; font-weight: 500; font-size: 0.92rem; }
.price-table { width: 100%; max-width: 800px; border-collapse: collapse; margin-top: 48px; }
.price-table th {
  text-align: left; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-secondary);
  padding: 12px 14px; border-bottom: 2px solid rgba(10,22,40,0.15); font-weight: 500;
}
.price-table td { padding: 16px 14px; border-bottom: 1px solid rgba(10,22,40,0.08); font-size: 0.95rem; color: var(--text-primary); }
.price-table td.p { font-family: 'Fraunces', Georgia, serif; font-weight: 500; color: var(--ocean); white-space: nowrap; font-size: 1.08rem; }
.note-box {
  max-width: 800px; margin-top: 24px; padding: 16px 20px;
  background: var(--pearl); border: 1px solid rgba(10,22,40,0.06);
  border-radius: 12px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}
.note-box a { color: var(--azure); }
.prose { max-width: 780px; margin-top: 32px; }
.prose p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; }
.nav-lang { display: flex; gap: 2px; align-items: center; }
.nav-lang a { font-size: 0.78rem !important; color: rgba(255,255,255,0.45) !important; padding: 0 4px; letter-spacing: 0.05em; }
.nav-lang a.active { color: var(--white) !important; font-weight: 600; }
.nav-lang a:hover { color: var(--white) !important; }
.nav-lang span { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
@media (max-width: 768px) {
  .page-hero { min-height: 72svh; }
  .page-hero .hero-content { padding-top: 120px; padding-bottom: 60px; }
  .steps { margin-top: 36px; gap: 18px; }
  .info-cards { grid-template-columns: 1fr; }
  .price-table { font-size: 0.88rem; }
  .nav-links.open .nav-lang { flex-direction: row; gap: 6px; margin-top: 6px; }
  .nav-links.open .nav-lang a { font-size: 1.05rem !important; padding: 0 8px; color: rgba(255,255,255,0.55) !important; }
  .nav-links.open .nav-lang a.active { color: var(--white) !important; }
  .nav-links.open .nav-lang span { font-size: 0.9rem; }
}
