  :root {
    --anchor:     #080e18;
    --deep-navy:  #091c2e;
    --mid-navy:   #0e2d45;
    --light-navy: #163d5a;
    --lift:       #1e4d6a;
    --teal:       #52c4d8;
    --teal-mid:   #2a8fa8;
    --gold:       #c9a84c;
    --orange:     #e8622a;
    --white:      #ffffff;
    --mist:       #c8d4dc;
    --steel:      #8aa0b0;
    --ocean-mist: #4a6a82;
    --muted:      #2a4a62;
    --border:     #0f2235;
    --footer-text: #9db3c2;
  }

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

  html { scroll-behavior: smooth; }
  section[id] { scroll-margin-top: 96px; }

  body {
    background: var(--anchor);
    color: var(--steel);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── UTILITIES ─── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
  .eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--mist);
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .teal-rule {
    width: 48px; height: 2px;
    background: var(--teal);
    margin: 16px 0 24px;
  }
  .btn-primary {
    display: inline-block;
    background: var(--teal);
    color: var(--deep-navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); }

  .btn-orange {
    display: inline-block;
    background: var(--orange);
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-orange:hover { background: #c94e1e; transform: translateY(-1px); }

  /* ─── WHATSAPP ─── */
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-1px); }
  .btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; display: block; }
  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .whatsapp-float:hover { background: #1ebe5b; transform: translateY(-2px); }
  .whatsapp-float svg { width: 28px; height: 28px; }
  @media (max-width: 600px) {
    .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
  }
  .btn-outline {
    display: inline-block;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 32px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    background: transparent;
  }
  .btn-outline:hover { background: var(--teal); color: var(--deep-navy); }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--light-navy);
    border-bottom: 2px solid var(--teal);
    height: 96px;
    display: flex; align-items: center;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px;
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; height: 92px; padding: 8px 0; }
  .nav-logo img { height: 85px; width: auto; display: block; }
  .nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta { margin-left: 16px; }
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--mist);
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background:
      linear-gradient(180deg, rgba(8,14,24,0.3) 0%, rgba(9,28,46,0.5) 55%, rgba(9,28,46,0.72) 100%),
      url('/images/hero-bg.jpg') center/cover no-repeat;
    display: flex; align-items: center;
    padding-top: 96px;
    position: relative;
    overflow: hidden;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 700px;
    animation: fadeUp 0.9s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1.5px;
    background: var(--teal);
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 7.5rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
  }
  .hero-title em {
    color: var(--teal);
    font-style: normal;
    display: block;
  }
  .hero-sub {
    font-size: 1.05rem;
    color: var(--mist);
    font-weight: 300;
    max-width: 520px;
    margin: 20px 0 36px;
    line-height: 1.7;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--ocean-mist);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }
  .hero-scroll::after {
    content: '';
    display: block;
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--teal), transparent);
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }
  /* wave divider */
  .wave-divider {
    width: 100%; overflow: hidden;
    line-height: 0;
    margin-top: -2px;
  }
  .wave-divider svg { display: block; }

  /* ─── TRIPS ─── */
  #trips { background: var(--anchor); padding: 100px 0 80px; }
  .trips-header { text-align: center; margin-bottom: 56px; }
  .trips-header .teal-rule { margin: 16px auto 0; }
  .trips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .trip-card {
    background: var(--mid-navy);
    border-top: 3px solid var(--border);
    padding: 36px 28px 32px;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
    display: flex; flex-direction: column;
  }
  .trip-card:hover {
    border-top-color: var(--teal);
    transform: translateY(-4px);
  }
  .trip-card.featured { border-top-color: var(--gold); background: var(--light-navy); }
  .trip-badge {
    position: absolute; top: -1px; right: 24px;
    background: var(--gold);
    color: var(--deep-navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 3px 10px;
  }
  .trip-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }
  .trip-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    line-height: 1;
  }
  .trip-desc {
    font-size: 0.88rem;
    color: var(--steel);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 24px;
  }
  .trip-meta {
    display: flex; gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
  }
  .trip-meta-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    color: var(--ocean-mist);
    letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 5px;
  }
  .trip-meta-item::before {
    content: '·';
    color: var(--teal);
    font-size: 1.2rem;
  }
  .trips-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--ocean-mist);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.03em;
  }
  .trips-cbuk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto 0;
    padding: 18px 34px;
    background: #25D366;
    border-radius: 2px;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.09rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
  }
  .trips-cbuk:hover { background: #1ebe5b; transform: translateY(-1px); }
  .trips-cbuk-arrow { flex-shrink: 0; font-size: 2.4rem; font-weight: 800; line-height: 1; }

  /* ─── ABOUT ─── */
  #about {
    background: var(--deep-navy);
    padding: 100px 0;
    border-top: 1px solid var(--border);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image {
    position: relative;
  }
  .about-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
  }
  .about-image-accent {
    position: absolute;
    bottom: -24px; right: -24px;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid var(--deep-navy);
  }
  .about-img-placeholder {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--mid-navy), var(--light-navy));
    display: flex; align-items: center; justify-content: center;
    color: var(--ocean-mist);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
  .about-text .eyebrow { margin-bottom: 12px; }
  .about-text p {
    color: var(--steel);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .about-badges {
    display: flex; flex-direction: column; gap: 10px;
    margin: 28px 0 36px;
  }
  .about-badge {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--mist);
    letter-spacing: 0.06em;
  }
  .about-badge::before {
    content: '✓';
    color: var(--teal);
    font-size: 0.85rem;
    background: rgba(82, 196, 216, 0.12);
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* ─── VESSEL ─── */
  #vessel {
    background: var(--anchor);
    padding: 100px 0;
    border-top: 1px solid var(--border);
  }
  .vessel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .vessel-text .eyebrow { margin-bottom: 12px; }
  .vessel-features {
    list-style: none;
    margin: 28px 0 36px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .vessel-features li {
    display: flex; align-items: center; gap: 14px;
    font-size: 0.9rem;
    color: var(--steel);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teal);
  }
  .vessel-features li::before {
    content: '⚓';
    font-size: 0.8rem;
    color: var(--teal);
    flex-shrink: 0;
  }
  .vessel-img-placeholder {
    width: 100%; aspect-ratio: 3/2;
    background: linear-gradient(135deg, var(--mid-navy), var(--lift));
    display: flex; align-items: center; justify-content: center;
    color: var(--ocean-mist);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
  }
  .vessel-img-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(82,196,216,0.03) 40px,
      rgba(82,196,216,0.03) 80px
    );
  }

  /* ─── INCLUDED ─── */
  #included {
    background: var(--deep-navy);
    padding: 100px 0;
    border-top: 1px solid var(--border);
  }
  .included-header { text-align: center; margin-bottom: 56px; }
  .included-header .teal-rule { margin: 16px auto 0; }
  .included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .included-card {
    background: var(--mid-navy);
    padding: 36px 28px;
    border-left: 3px solid transparent;
    transition: border-color 0.25s;
  }
  .included-card:hover { border-left-color: var(--teal); }
  .included-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
  }
  .included-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--mist);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .included-body {
    font-size: 0.87rem;
    color: var(--steel);
    line-height: 1.65;
  }

  /* ─── GALLERY ─── */
  #gallery {
    background: var(--anchor);
    padding: 100px 0;
    border-top: 1px solid var(--border);
  }
  .gallery-header { text-align: center; margin-bottom: 48px; }
  .gallery-header .teal-rule { margin: 16px auto 0; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 3px;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
    background: var(--mid-navy);
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item img,
  .gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .gallery-item:hover img,
  .gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
  .gallery-placeholder {
    background: linear-gradient(135deg, var(--mid-navy), var(--lift));
    display: flex; align-items: center; justify-content: center;
    color: var(--ocean-mist);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 16px;
  }
  .gallery-item:first-child .gallery-placeholder { min-height: 460px; }
  .gallery-hero-img { min-height: 460px; }
  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(8,14,24,0.85), transparent);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    color: var(--mist);
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; }

  /* ─── FAQ ─── */
  #faq {
    background: var(--deep-navy);
    padding: 100px 0;
    border-top: 1px solid var(--border);
  }
  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .faq-sidebar .eyebrow { margin-bottom: 12px; }
  .faq-sidebar p {
    font-size: 0.9rem;
    color: var(--steel);
    line-height: 1.75;
    margin-top: 16px;
  }
  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    background: var(--mid-navy);
    border-left: 3px solid var(--border);
    transition: border-color 0.2s;
  }
  .faq-item.open { border-left-color: var(--teal); }
  .faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--mist);
    text-align: left;
  }
  .faq-question:hover { color: var(--white); }
  .faq-icon {
    font-size: 1.2rem;
    color: var(--teal);
    flex-shrink: 0;
    transition: transform 0.25s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 24px;
    font-size: 0.88rem;
    color: var(--steel);
    line-height: 1.75;
  }
  .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 22px;
  }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--anchor);
    padding: 100px 0;
    border-top: 1px solid var(--border);
  }

  /* ─── GIFT VOUCHERS ─── */
  #gift-vouchers {
    background: var(--mid-navy);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .vouchers-content { max-width: 560px; margin: 0 auto; }
  .vouchers-content .section-title { margin: 8px 0 16px; }
  .vouchers-content p {
    font-size: 0.9rem;
    color: var(--steel);
    line-height: 1.75;
  }
  .contact-grid {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .contact-info .contact-details { align-items: center; }
  .contact-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .contact-info .eyebrow { margin-bottom: 12px; }
  .contact-info .section-title { margin-bottom: 8px; }
  .contact-info p {
    font-size: 0.9rem;
    color: var(--steel);
    line-height: 1.75;
    margin-top: 16px;
    margin-bottom: 32px;
  }
  .contact-details { display: flex; flex-direction: column; gap: 16px; }
  .contact-detail {
    display: flex; align-items: center; gap: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--mist);
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
  }
  .contact-detail a { color: inherit; text-decoration: none; }
  .contact-detail a:hover { color: var(--teal); }
  .contact-detail-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-detail-icon svg { width: 16px; height: 16px; display: block; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--light-navy);
    border-top: 2px solid var(--teal);
    padding: 60px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }
  .footer-brand p {
    font-size: 0.87rem;
    color: var(--footer-text);
    line-height: 1.75;
    margin-top: 12px;
    max-width: 280px;
  }
  .footer-logo { display: flex; align-items: center; }
  .footer-logo img { height: 130px; width: auto; }
  .footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 0.87rem;
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--teal); }
  .footer-contact { display: flex; flex-direction: column; gap: 10px; }
  .footer-contact-item {
    font-size: 0.87rem;
    color: var(--footer-text);
    display: flex; align-items: center; gap: 10px;
    overflow-wrap: anywhere;
  }
  .icon-badge {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .icon-badge svg { width: 14px; height: 14px; display: block; }
  .footer-contact-item a { color: inherit; text-decoration: none; }
  .footer-contact-item a:hover { color: var(--teal); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: var(--footer-text);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.06em;
  }
  .footer-teal-bar { display: none; }


  /* ─── AVAILABILITY ─── */
  #availability {
    background: var(--deep-navy);
    padding: 100px 0;
    border-top: 1px solid var(--border);
  }
  .avail-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 72px;
    align-items: start;
  }
  .avail-sidebar p {
    font-size: 0.9rem;
    color: var(--steel);
    line-height: 1.8;
    margin: 16px 0 28px;
  }
  .avail-cta-stack { display: flex; flex-direction: column; gap: 12px; }
  .avail-notice {
    margin-top: 24px;
    background: var(--mid-navy);
    border-left: 3px solid var(--teal);
    padding: 18px 20px;
    font-size: 0.86rem;
    color: var(--steel);
    line-height: 1.7;
  }
  .avail-notice strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 5px;
  }
  .cal-panel {
    background: var(--mid-navy);
    border-top: 3px solid var(--teal);
    overflow: hidden;
  }
  .cal-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border-bottom: 2px solid var(--teal);
  }
  .cal-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
  }
  .cal-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ocean-mist);
  }
  .cal-frame-wrap {
    width: 100%;
    background: var(--mid-navy);
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  .cal-frame-wrap iframe {
    width: 100%;
    max-width: 480px;
    height: 680px;
    border: none;
    display: block;
    background: #ffffff;
  }
  .cal-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    background: #25D366;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .cal-trust:hover { background: #1ebe5b; }
  .cal-trust-badge { flex-shrink: 0; display: flex; }
  .cal-trust-body { flex: 1; min-width: 0; }
  .cal-trust-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin-bottom: 4px;
  }
  .cal-trust-items {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.85);
  }
  .cal-trust-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
  }
  @media (max-width: 600px) {
    .cal-trust { flex-wrap: wrap; }
    .cal-trust-cta { width: 100%; margin-top: 4px; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .trips-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .vessel-grid, .faq-layout, .avail-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .gallery-hero-img { min-height: 260px; }
    .trips-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      position: absolute;
      top: 96px;
      left: 0;
      right: 0;
      background: var(--light-navy);
      border-bottom: 2px solid var(--teal);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
    }
    .nav-links.open { max-height: 500px; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
    }
    .hero-title { font-size: 3.5rem; }
  }

  /* ─── LEGAL PAGES ─── */
  .legal-hero {
    background: var(--mid-navy);
    padding: 140px 0 60px;
    text-align: center;
  }
  .legal-hero .section-title { margin: 8px 0 4px; }
  .legal-hero .teal-rule { margin-left: auto; margin-right: auto; }
  .legal-updated {
    font-size: 0.8rem;
    color: var(--ocean-mist);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
  }
  .legal-body { background: var(--anchor); padding: 60px 0 100px; }
  .legal-notice {
    background: var(--mid-navy);
    border-left: 3px solid var(--teal);
    padding: 18px 22px;
    font-size: 0.86rem;
    color: var(--steel);
    line-height: 1.7;
    margin: 0 auto 48px;
    max-width: 760px;
  }
  .legal-content { max-width: 760px; margin: 0 auto; }
  .legal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    color: var(--mist);
    margin: 40px 0 14px;
  }
  .legal-content h2:first-child { margin-top: 0; }
  .legal-content p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--steel);
    margin-bottom: 14px;
  }
  .legal-content ul { margin: 0 0 14px 20px; }
  .legal-content li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--steel);
    margin-bottom: 6px;
  }
  .legal-back { display: inline-block; margin: 40px auto 0; }
