:root {
    --navy: #0d2438;
    --navy-deep: #0a1c2c;
    --gold: #c9a668;
    --gold-light: #e0c088;
    --bg: #ffffff;
    --bg-alt: #f6f5f1;
    --ink: #15222c;
    --ink-soft: #45525c;
    --muted: #7b8590;
    --line: #e7e3d9;
    --display: 'Jost', ui-sans-serif, system-ui, sans-serif;
    --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: var(--bg); font-family: var(--sans); color: var(--ink); min-height: 100vh; -webkit-font-smoothing: antialiased; }
  a { color: var(--gold); text-decoration: none; }
  a:hover { color: var(--gold-light); }
  ::selection { background: var(--gold); color: var(--navy); }
  img { max-width: 100%; display: block; }
  [hidden] { display: none !important; }

  /* ---- reusable ---- */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
  .eyebrow { color: var(--gold); font-family: var(--display); font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 500; }
  .h-sec { font-family: var(--display); font-size: clamp(30px, 4vw, 46px); font-weight: 400; line-height: 1.1; margin: 14px 0 0; letter-spacing: 0.5px; }
  .lead { font-size: 17px; line-height: 1.8; color: var(--ink-soft); font-weight: 300; }
  .section { padding: clamp(72px, 9vw, 130px) 0; }
  .center { text-align: center; }
  .center-head { max-width: 640px; margin: 0 auto clamp(48px, 6vw, 72px); }

  .btn {
    cursor: pointer; display: inline-block; font-family: var(--display); font-size: 12.5px;
    letter-spacing: 2px; text-transform: uppercase; font-weight: 500; padding: 15px 34px;
    border-radius: 100px; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; text-align: center;
  }
  .btn-gold { background: var(--gold); color: var(--navy); }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,166,104,0.4); color: var(--navy); }
  .btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
  .btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
  .btn-dark { background: var(--navy); color: #fff; }
  .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(13,36,56,0.28); color: #fff; }
  .btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
  .btn-ghost:hover { border-color: var(--gold); color: var(--ink); }

  /* ---- NAV ---- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 40px; transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  }
  .nav.solid { background: rgba(255,255,255,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding: 14px 40px; }
  .brand { cursor: pointer; display: flex; align-items: center; }
  .brand img { height: 40px; width: auto; display: block; }
  .nav-right { display: flex; align-items: center; gap: 30px; }
  .nav-links { display: flex; gap: 28px; }
  .nav-link {
    cursor: pointer; font-family: var(--sans); font-size: 13.5px; letter-spacing: 0.6px; font-weight: 400;
    color: rgba(255,255,255,0.82); background: none; border: none; padding: 4px 0; position: relative; transition: color .3s ease;
  }
  .nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--gold); transition: width .3s ease; }
  .nav-link:hover::after, .nav-link.active::after { width: 100%; }
  .nav.solid .nav-link { color: var(--ink-soft); }
  .nav.solid .nav-link:hover, .nav.solid .nav-link.active { color: var(--navy); }
  .lang { display: flex; align-items: center; gap: 4px; padding: 4px; background: rgba(255,255,255,0.14); border-radius: 999px; }
  .lang-btn { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-family: var(--display); font-size: 11px; letter-spacing: 1px; font-weight: 500; color: rgba(255,255,255,0.85); background: transparent; border: none; border-radius: 999px; padding: 6px 11px; transition: background .2s ease, color .2s ease; }
  .lang-btn svg { display: block; flex-shrink: 0; border-radius: 2px; }
  .lang-btn:hover { color: #fff; }
  .lang-btn.active { background: #fff; color: var(--navy); }
  .nav.solid .lang { background: rgba(13,36,56,0.07); }
  .nav.solid .lang-btn { color: var(--ink-soft); }
  .nav.solid .lang-btn:hover { color: var(--navy); }
  .nav.solid .lang-btn.active { background: var(--navy); color: #fff; }
  .nav .btn { padding: 11px 24px; font-size: 11.5px; }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; z-index: 101; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }
  .nav.solid .nav-toggle span { background: var(--navy); }

  /* ---- HERO ---- */
  .hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--navy); }
  .hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
  .hero video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
  .hero video::-webkit-media-controls, .hero video::-webkit-media-controls-panel { display: none !important; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,28,44,0.55) 0%, rgba(10,28,44,0.25) 40%, rgba(10,28,44,0.7) 100%); }
  .hero-inner { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px; }
  .hero-inner .eyebrow { color: var(--gold-light); }
  .hero-title { font-family: var(--display); font-weight: 500; font-size: clamp(68px, 15vw, 168px); letter-spacing: clamp(8px, 2vw, 22px); line-height: 0.95; margin: 18px 0 0; text-indent: clamp(8px, 2vw, 22px); }
  .hero-rule { width: 66px; height: 2px; background: var(--gold); margin: 26px auto; }
  .hero-sub { font-size: clamp(16px, 2vw, 20px); font-weight: 300; color: #eef1f3; max-width: 560px; margin: 0 auto; line-height: 1.6; }
  .hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
  .scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.7); font-family: var(--display); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

  /* ---- SPLIT (image + text) ---- */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
  .split.reverse .split-media { order: 2; }
  .split-media { position: relative; }
  .split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; aspect-ratio: 3 / 2; }
  .split-media .badge { position: absolute; top: 18px; left: 18px; z-index: 3; background: rgba(13,36,56,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.18); color: #fff; font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; padding: 8px 14px; border-radius: 100px; }
  .split-media .badge b { color: var(--gold); font-weight: 500; }

  /* GALERÍA del barco */
  .gallery { position: relative; width: 100%; aspect-ratio: 3 / 2; border-radius: 3px; overflow: hidden; background: var(--navy); }
  .gal-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
  .gal-img.on { opacity: 1; }
  .gal-img.flip { transform: scaleX(-1); }
  .gal-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(13,36,56,0.45); color: #fff; font-family: var(--display); font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .2s ease; }
  .gal-btn:hover { background: rgba(13,36,56,0.82); }
  .gal-prev { left: 14px; } .gal-next { right: 14px; }
  .gal-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
  .gal-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,0.55); cursor: pointer; transition: background .2s ease, transform .2s ease; }
  .gal-dot.on { background: var(--gold); transform: scale(1.25); }

  .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 34px; margin-top: 42px; }
  .stat-value { font-family: var(--display); font-size: 30px; font-weight: 500; color: var(--navy); }
  .stat-label { font-size: 13px; color: var(--muted); letter-spacing: 0.4px; margin-top: 3px; }

  /* ---- ONBOARD ---- */
  .onboard { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
  .onboard::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 0%, rgba(201,166,104,0.10), transparent 45%), radial-gradient(circle at 88% 100%, rgba(201,166,104,0.08), transparent 45%); pointer-events: none; }
  .onboard .eyebrow { color: var(--gold); position: relative; }
  .onboard .h-sec { color: #fff; position: relative; }
  .onboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
  .ob-item {
    background: linear-gradient(165deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px; padding: 38px 22px; text-align: center;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
  }
  .ob-item:hover {
    transform: translateY(-4px);
    border-color: rgba(201,166,104,0.5);
    background: linear-gradient(165deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  }
  .ob-letter {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px; color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at 30% 25%, rgba(201,166,104,0.28), rgba(201,166,104,0.06));
    border: 1px solid rgba(201,166,104,0.55);
    box-shadow: inset 0 0 14px rgba(201,166,104,0.12);
    transition: box-shadow .3s ease, transform .3s ease;
  }
  .ob-item:hover .ob-letter { transform: scale(1.06); box-shadow: inset 0 0 18px rgba(201,166,104,0.22), 0 0 16px rgba(201,166,104,0.25); }
  .ob-letter svg { width: 26px; height: 26px; }
  .ob-item .t { font-size: 15px; letter-spacing: 0.5px; color: #eef1f3; font-weight: 300; }

  /* ---- EXCURSIONS ---- */
  .exc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .exc-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
  .exc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(13,36,56,0.14); }
  .exc-card .media { position: relative; height: 230px; overflow: hidden; }
  .exc-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .exc-card:hover .media img { transform: scale(1.05); }
  .exc-card .media .dur { position: absolute; top: 16px; left: 16px; background: rgba(13,36,56,0.85); color: #fff; font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; padding: 7px 13px; text-transform: uppercase; }
  .exc-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
  .exc-name { font-family: var(--display); font-size: 26px; font-weight: 500; }
  .exc-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin-top: 10px; font-weight: 300; }
  .exc-inc { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 9px; }
  .exc-inc li { font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
  .exc-inc li::before { content: "—"; color: var(--gold); }
  .exc-foot { margin-top: auto; padding-top: 24px; }
  .exc-price-row { display: flex; align-items: baseline; gap: 8px; padding-top: 20px; border-top: 1px solid var(--line); }
  .exc-price { font-family: var(--display); font-size: 25px; font-weight: 500; color: var(--navy); }
  .exc-price-note { font-size: 12px; color: var(--muted); }
  .exc-card .btn { margin-top: 18px; width: 100%; }
  .exc-extras { margin-top: clamp(48px, 6vw, 72px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); }
  .exc-extras h3 { font-family: var(--display); font-size: 22px; font-weight: 500; margin: 0 0 20px; }
  .extras-list, .notes-list { display: flex; flex-direction: column; gap: 13px; }
  .extras-list .x { font-size: 15px; color: var(--ink-soft); display: flex; gap: 12px; align-items: center; }
  .extras-list .x .d { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .notes-list .n { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }

  /* ---- FULL-BLEED BAND ---- */
  .band { position: relative; height: 62vh; min-height: 380px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: var(--navy); }
  .band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .band .overlay { position: absolute; inset: 0; background: rgba(10,28,44,0.5); }
  .band .band-inner { position: relative; z-index: 2; color: #fff; padding: 0 24px; }
  .band .h-sec { color: #fff; max-width: 760px; }

  /* ---- REVIEWS ---- */
  .reviews { background: var(--bg-alt); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .review { background: #fff; padding: 34px 32px; border-radius: 4px; border-top: 3px solid var(--gold); box-shadow: 0 8px 30px rgba(13,36,56,0.06); }
  .review .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
  .review .q { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-top: 16px; font-weight: 300; }
  .review .who { font-family: var(--display); font-size: 13px; letter-spacing: 0.6px; color: var(--navy); margin-top: 18px; }
  .review-cta { max-width: 560px; margin: clamp(48px, 6vw, 72px) auto 0; text-align: center; }
  .review-cta-title { font-family: var(--display); font-size: 24px; font-weight: 500; }
  .review-cta .lead { margin: 12px 0 26px; font-size: 15px; }
  .review-form { text-align: left; }
  .stars-input { display: inline-flex; gap: 6px; }
  .stars-input button { background: none; border: none; cursor: pointer; font-size: 28px; line-height: 1; color: #d7d0c0; padding: 0 2px; transition: color .15s ease; font-family: inherit; }
  .stars-input button:hover, .stars-input button.on { color: var(--gold); }

  /* ---- LOCATION ---- */
  .loc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
  .loc-map { border-radius: 4px; overflow: hidden; height: 420px; border: 1px solid var(--line); }
  .loc-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25); }

  /* ---- CTA BANNER ---- */
  .cta { background: var(--navy); color: #fff; text-align: center; }
  .cta .h-sec { color: #fff; }
  .cta .lead { color: #cdd6dd; max-width: 560px; margin: 16px auto 0; }
  .cta .btn { margin-top: 34px; }

  /* ---- CONTACT ---- */
  .page-head { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: var(--navy); }
  .page-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .page-head .overlay { position: absolute; inset: 0; background: rgba(10,28,44,0.6); }
  .page-head .ph-inner { position: relative; z-index: 2; color: #fff; }
  .page-head .title { font-family: var(--display); font-size: clamp(34px, 6vw, 52px); font-weight: 500; margin-top: 12px; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); }
  .contact-grid h3 { font-family: var(--display); font-size: 22px; font-weight: 500; margin: 0 0 26px; }
  .contact-info { display: flex; flex-direction: column; gap: 22px; }
  .ci-label { font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
  .ci-value { font-size: 16.5px; margin-top: 5px; line-height: 1.6; color: var(--ink); }
  .contact-map { margin-top: 30px; height: 240px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
  .contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25); }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-family: var(--display); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
  .field input, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 3px; background: #fff; font-family: var(--sans); font-size: 15px; color: var(--ink); transition: border-color .2s ease; }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
  .form-status { display: none; padding: 13px 16px; font-size: 14px; line-height: 1.5; margin: 6px 0 14px; border-radius: 3px; }
  .form-status.ok { display: block; background: rgba(201,166,104,0.14); color: #7a5f2a; border: 1px solid rgba(201,166,104,0.4); }
  .form-status.err { display: block; background: rgba(179,69,44,0.09); color: #b3452c; border: 1px solid rgba(179,69,44,0.3); }

  /* ---- FOOTER ---- */
  .footer { background: var(--navy-deep); color: #fff; padding: 56px 40px 34px; text-align: center; }
  .footer .flogo { height: 104px; width: auto; margin: 0 auto 4px; display: block; }
  .footer .fline { color: #93a0ab; font-size: 13.5px; margin-top: 14px; }
  .footer .fline a { color: #cdd6dd; }
  .footer .fcopy { color: #5f6d78; font-size: 12px; margin-top: 20px; }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 900px) {
    .wrap { padding: 0 22px; }
    .nav { padding: 14px 16px; }
    .nav.solid { padding: 11px 16px; }
    .nav-right { gap: 12px; }
    .brand img { height: 34px; }
    .nav-link { font-size: 12.5px; }
    .lang { gap: 3px; padding: 3px; }
    .lang-btn { gap: 5px; padding: 6px 9px; }
    .nav .btn.nav-reservas { padding: 10px 18px; }
    .split, .split.reverse .split-media { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .split-media img { aspect-ratio: 16 / 11; }
    .onboard-grid { grid-template-columns: 1fr 1fr; }
    .exc-grid, .reviews-grid { grid-template-columns: 1fr; }
    .exc-extras, .loc, .contact-grid { grid-template-columns: 1fr; }
    .loc-map { height: 320px; }
    .stats { gap: 22px; }
  }
  @media (max-width: 520px) {
    .onboard-grid { grid-template-columns: 1fr; }
    .hero-ctas .btn { width: 100%; }
    .brand img { height: 30px; }
    .nav-link { font-size: 11.5px; }
    .lang-btn { font-size: 0; letter-spacing: 0; gap: 0; padding: 6px 7px; }
    .nav .btn.nav-reservas { padding: 9px 15px; font-size: 10.5px; }
    .nav-right { gap: 9px; }
  }

/* --- Excursion card actions (Más info + Reservar) --- */
.exc-actions { display: flex; gap: 10px; margin-top: 18px; }
.exc-actions .btn { flex: 1; margin-top: 0; width: auto; padding-left: 10px; padding-right: 10px; }

/* --- Tour detail pages --- */
.page-head .sub { color: #cdd3d8; font-size: 15px; margin-top: 12px; font-weight: 300; }
.tour-body { max-width: 820px; margin: 0 auto; }
.tour-facts { display: flex; flex-wrap: wrap; gap: 22px 44px; margin: 30px 0 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tour-fact .k { font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.tour-fact .v { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--navy); margin-top: 4px; }
.tour-section { margin-top: 44px; }
.tour-section h3 { font-family: var(--display); font-size: 24px; font-weight: 500; margin: 0 0 14px; }
.tour-includes { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tour-includes li { font-size: 15px; color: var(--ink-soft); display: flex; gap: 10px; }
.tour-includes li::before { content: "\2014"; color: var(--gold); }
.tour-note { background: var(--bg-alt); border-left: 3px solid var(--gold); padding: 16px 20px; font-size: 14px; color: var(--ink-soft); margin-top: 44px; line-height: 1.6; }
.tour-cta { margin-top: 40px; }
@media (max-width: 700px) { .tour-includes { grid-template-columns: 1fr; } }

/* --- Legal pages --- */
.loc-map, .contact-map { position: relative; }
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: var(--display); font-size: 21px; font-weight: 500; margin: 38px 0 10px; color: var(--navy); }
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 20px; }
.legal li { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 6px; }
.legal a { color: var(--gold); }
.legal .updated { font-size: 13px; color: var(--muted); margin-bottom: 30px; }
.legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 13px; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; color: var(--ink-soft); vertical-align: top; }
.legal-table th { background: var(--bg-alt); font-family: var(--display); font-weight: 500; color: var(--navy); }
.legal-table-wrap { overflow-x: auto; }

/* --- Footer legal links --- */
.footer .flegal { margin-top: 16px; display: flex; gap: 8px 18px; justify-content: center; flex-wrap: wrap; }
.footer .flegal a { color: #93a0ab; font-size: 12.5px; }
.footer .flegal a:hover { color: #cdd6dd; }

/* --- Cookie banner + map consent --- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 720px; margin: 0 auto; background: var(--navy); color: #eef1f3; border: 1px solid rgba(201,166,104,0.35); border-radius: 6px; padding: 20px 22px; box-shadow: 0 16px 40px rgba(0,0,0,0.35); display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { margin: 0 0 14px; font-size: 13px; line-height: 1.6; color: #cdd6dd; }
.cookie-banner a { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 22px; font-size: 11.5px; }
.cookie-reject { background: transparent; border: 1px solid rgba(255,255,255,0.45); color: #eef1f3; }
.cookie-reject:hover { background: rgba(255,255,255,0.12); color: #fff; }
.map-consent { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 20px; background: var(--bg-alt); color: var(--ink-soft); font-size: 13.5px; }
.map-consent .btn { padding: 10px 20px; font-size: 11.5px; }

/* --- Google review button --- */
.google-review { margin-top: 4px; }
.google-review::before { content: "\2605  "; }
.review-or { font-size: 13px; color: var(--muted); margin: 12px 0 20px; }

.gal-img.contain { object-fit: contain; }

/* --- El Barco (detail page) --- */
.boat-intro { max-width: 780px; margin: 0 auto; text-align: center; }
.boat-zone { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; margin-top: clamp(44px, 6vw, 80px); }
.boat-zone.rev .bz-media { order: 2; }
.bz-media img { width: 100%; border-radius: 4px; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.bz-text .eyebrow { color: var(--gold); }
.bz-text h2 { font-family: var(--display); font-size: clamp(23px, 3vw, 31px); font-weight: 400; margin: 12px 0 14px; line-height: 1.15; }
.bz-text p { font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); font-weight: 300; margin: 0; }
.equip { background: var(--bg-alt); }
.equip-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; max-width: 760px; }
.equip-list li { font-size: 15.5px; color: var(--ink-soft); display: flex; gap: 12px; align-items: flex-start; }
.equip-list li::before { content: "\2014"; color: var(--gold); }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.photo-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 3px; display: block; }
@media (max-width: 800px) {
  .boat-zone, .boat-zone.rev .bz-media { grid-template-columns: 1fr; }
  .boat-zone.rev .bz-media { order: 0; }
  .equip-list { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Tour route (itinerary) --- */
.route { margin-top: 22px; max-width: 720px; }
.route-stop { position: relative; padding: 0 0 26px 42px; border-left: 1px solid var(--line); }
.route-stop:last-child { border-left-color: transparent; padding-bottom: 0; }
.route-num { position: absolute; left: -15px; top: -2px; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--display); font-size: 12.5px; display: flex; align-items: center; justify-content: center; }
.route-stop h4 { font-family: var(--display); font-size: 17px; font-weight: 500; margin: 4px 0 6px; color: var(--navy); }
.route-stop p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); font-weight: 300; margin: 0; }
.route-stop em { color: var(--ink); font-style: italic; }

/* --- Videos --- */
.band video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-block { max-width: 480px; margin: 0 auto; border-radius: 8px; overflow: hidden; display: block; background: var(--navy); box-shadow: 0 14px 40px rgba(13,36,56,0.16); line-height: 0; }
.video-block video { width: 100%; display: block; }

/* --- Live weather widget --- */
.weather-card { background: var(--navy); border-radius: 10px; padding: clamp(28px, 4vw, 48px); color: #fff; max-width: 860px; margin: 0 auto; position: relative; overflow: hidden; }
.weather-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(201,166,104,0.14), transparent 55%); pointer-events: none; }
.weather-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; position: relative; z-index: 1; flex-wrap: wrap; }
.weather-head .h-sec { color: #fff; font-size: clamp(22px, 3vw, 28px); margin-top: 6px; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; color: var(--gold-light); border: 1px solid rgba(201,166,104,0.4); border-radius: 100px; padding: 6px 14px; flex-shrink: 0; }
.live-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #6fe08a; box-shadow: 0 0 0 rgba(111,224,138,0.6); animation: livepulse 1.8s ease-out infinite; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(111,224,138,0.55); } 70% { box-shadow: 0 0 0 6px rgba(111,224,138,0); } 100% { box-shadow: 0 0 0 0 rgba(111,224,138,0); } }
.weather-main { display: flex; align-items: center; gap: 22px; margin-top: clamp(24px, 4vw, 40px); position: relative; z-index: 1; }
.weather-icon { color: var(--gold); width: 56px; height: 56px; flex-shrink: 0; }
.weather-icon svg { width: 100%; height: 100%; }
.weather-temp { display: flex; align-items: baseline; gap: 4px; font-family: var(--display); font-weight: 500; }
.weather-temp #w-temp { font-size: clamp(48px, 8vw, 72px); line-height: 1; }
.weather-temp .deg { font-size: clamp(26px, 4vw, 36px); color: var(--gold-light); }
.weather-sub { font-family: var(--sans); font-size: 14.5px; color: #cdd6dd; font-weight: 300; margin-top: 6px; }
.weather-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(28px, 4vw, 40px); border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; position: relative; z-index: 1; }
.w-tile { text-align: center; border-left: 1px solid rgba(255,255,255,0.14); padding: 0 8px; }
.w-tile:first-child { border-left: none; }
.w-k { font-family: var(--display); font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-light); }
.w-v { font-family: var(--display); font-size: clamp(16px, 2vw, 19px); font-weight: 500; margin-top: 7px; color: #fff; display: inline-flex; align-items: center; gap: 5px; }
#w-arrow { display: inline-block; transition: transform .4s ease; }
.weather-updated { text-align: center; font-size: 11.5px; color: #7d8b96; margin-top: 22px; position: relative; z-index: 1; }
.weather-card.w-error .weather-main, .weather-card.w-error .weather-grid { opacity: 0.35; }
@media (max-width: 640px) { .weather-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; } .w-tile:nth-child(3) { border-left: none; } }

/* --- FAQ accordion --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 30px 20px 0; position: relative; font-family: var(--display); font-size: 16.5px; font-weight: 500; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 18px; font-family: var(--display); font-size: 22px; color: var(--gold); transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 30px 22px 0; font-size: 15px; line-height: 1.75; color: var(--ink-soft); font-weight: 300; }

.tour-fact .v.small { font-size: 16px; line-height: 1.4; }

/* SEO: hero titles promoted to h1 keep their visual size */
h1.title{margin:0;}
