/* ============================================================
   Good Skipper — Main Stylesheet
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:      #0B1F3A;
  --gold:      #F5A623;
  --gold-dk:   #D4911A;
  --blue:      #1A8FD1;
  --seafoam:   #F0F7FF;
  --charcoal:  #1C2B3A;
  --slate:     #5A7184;
  --border:    #CBD8E4;
  --border-lt: #E8EFF5;
  --white:     #FFFFFF;
  --green:     #27AE60;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 16px rgba(11,31,58,0.06);
  --shadow-md: 0 4px 24px rgba(11,31,58,0.10);
  --shadow-lg: 0 8px 40px rgba(11,31,58,0.16);

  --section-pad: 88px;
  --container:   1200px;
  --gap:         32px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-pad) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}

/* Section header */
.sh { margin-bottom: 52px; text-align: center; }
.sh .eyebrow { margin-bottom: 12px; }
.sh h2 {
  font-size: 38px; font-weight: 800;
  color: var(--navy); margin-bottom: 14px;
}
.sh h2.light { color: var(--white); }
.sh p { font-size: 17px; color: var(--slate); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.sh p.light { color: rgba(255,255,255,.65); }
/* Left-align .sh inside grid columns and sidebar contexts */
.grid-2 > div .sh,
.charter-body .sh { text-align: left; }
.grid-2 > div .sh p,
.charter-body .sh p { margin-left: 0; margin-right: 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 32px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: .02em; cursor: pointer; border: none;
  transition: all 200ms ease; white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--navy); }
.btn-primary:hover  { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,.4); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-ghost  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; }
.btn-sm { height: 42px; padding: 0 22px; font-size: 14px; }
.btn-full { width: 100%; }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  height: 72px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(11,31,58,.06);
}
.site-header .container {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.logo {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--navy); display: flex; align-items: center; gap: 10px;
}
.logo-img {
  width: 40px; height: 40px;
  object-fit: contain; display: block;
}
.logo em { color: var(--blue); font-style: normal; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  color: var(--slate); transition: color 200ms;
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

.header-right { display: flex; align-items: center; gap: 20px; }
.header-socials { display: flex; gap: 6px; align-items: center; }
.header-social-link {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 150ms; flex-shrink: 0;
}
.header-social-link:hover { opacity: .82; }
.header-social-ig { background: #E1306C; color: #fff; }
.header-social-wa { background: #25D366; color: #fff; }

.lang-sw { display: flex; gap: 4px; }
.lang-sw a {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--slate); padding: 5px 9px; border-radius: 6px;
  transition: all 150ms;
}
.lang-sw a.active { color: var(--navy); background: var(--seafoam); }

.phone-link {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--navy); display: flex; align-items: center; gap: 6px;
}
.phone-link:hover { color: var(--blue); }

/* ── TRANSPARENT HEADER (homepage) ──────────────────────────── */
.site-header--transparent {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
  transition: background 350ms, border-color 350ms, box-shadow 350ms;
}
.site-header--transparent .logo { color: var(--white); }
.site-header--transparent .logo em { color: var(--gold); }
.site-header--transparent .nav a { color: rgba(255,255,255,.8); }
.site-header--transparent .nav a:hover,
.site-header--transparent .nav a.active { color: var(--white); }
.site-header--transparent .nav a.active { border-bottom-color: var(--gold); }
.site-header--transparent .phone-link { color: rgba(255,255,255,.85); }
.site-header--transparent .lang-sw a { color: rgba(255,255,255,.6); }
.site-header--transparent .lang-sw a.active { color: var(--white); background: rgba(255,255,255,.12); }
.site-header--transparent.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-lt);
  box-shadow: 0 2px 20px rgba(11,31,58,.08);
}
.site-header--transparent.scrolled .logo { color: var(--navy); }
.site-header--transparent.scrolled .logo em { color: var(--blue); }
.site-header--transparent.scrolled .nav a { color: var(--slate); }
.site-header--transparent.scrolled .nav a:hover,
.site-header--transparent.scrolled .nav a.active { color: var(--navy); }
.site-header--transparent.scrolled .phone-link { color: var(--navy); }
.site-header--transparent.scrolled .lang-sw a { color: var(--slate); }
.site-header--transparent.scrolled .lang-sw a.active { color: var(--navy); background: var(--seafoam); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  background-size: cover; background-position: center 35%;
  background-attachment: scroll; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,15,30,.25) 0%, rgba(5,15,30,.55) 40%, rgba(5,15,30,.84) 70%, rgba(5,15,30,.96) 100%);
}
.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero-inner {
  text-align: center; padding: 80px 0 230px;
  max-width: 860px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.35);
  color: var(--gold); font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero h1 {
  font-size: 86px; font-weight: 900; line-height: .92;
  color: var(--white); letter-spacing: -.025em;
  text-shadow: 0 4px 32px rgba(0,0,0,.28); margin-bottom: 26px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 19px; color: rgba(255,255,255,.82);
  line-height: 1.6; margin-bottom: 12px; max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-meta {
  font-size: 13px; color: rgba(255,255,255,.5);
  font-family: var(--font-head); font-weight: 600; letter-spacing: .04em;
  margin-bottom: 40px; display: flex; gap: 16px; align-items: center;
  justify-content: center;
}
.hero-meta strong { color: rgba(255,255,255,.85); }
.hero-meta .dot { width: 3px; height: 3px; background: rgba(255,255,255,.3); border-radius: 50%; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── HERO STATS FLOAT ────────────────────────────────────────── */
.hero-stats-float { position: relative; z-index: 10; margin-top: -80px; }
.hero-stats-grid {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 16px 64px rgba(11,31,58,.22);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.hero-stat {
  padding: 28px 16px; text-align: center;
  border-right: 1px solid var(--border-lt);
  transition: background 200ms;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--seafoam); }
.hero-stat strong {
  font-family: var(--font-head); font-size: 36px; font-weight: 900;
  color: var(--navy); display: block; line-height: 1; margin-bottom: 6px;
}
.hero-stat span {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--slate);
}

/* ── CAPTAIN SECTION ─────────────────────────────────────────── */
.captain-section { background: var(--seafoam); }
.captain-layout {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 72px; align-items: center;
}
.captain-photo-wrap { position: relative; }
.captain-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #0d2d52 0%, #1a5276 50%, #2471a3 100%);
  display: flex; align-items: center; justify-content: center;
}
.captain-photo img { width: 100%; height: 100%; object-fit: cover; }
.captain-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(11,31,58,.75); backdrop-filter: blur(8px);
  border-radius: 0 0 20px 20px; padding: 20px 24px;
}
.captain-photo-label strong {
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--white); display: block; margin-bottom: 4px;
}
.captain-photo-label span {
  font-size: 13px; color: var(--gold);
  font-family: var(--font-head); font-weight: 600;
}
.captain-badge {
  position: absolute; top: 20px; right: -16px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 12px 16px; text-align: center;
}
.captain-badge strong {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--navy); display: block;
}
.captain-badge span { font-size: 11px; color: var(--slate); font-family: var(--font-head); font-weight: 600; }
.captain-name {
  font-family: var(--font-head); font-size: 40px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px; line-height: 1.1;
}
.captain-title {
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  color: var(--gold); margin-bottom: 24px;
}
.captain-bio { font-size: 16px; color: var(--charcoal); line-height: 1.75; margin-bottom: 32px; }
.captain-certs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.cert-tag {
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; letter-spacing: .04em;
}
.captain-stats { display: flex; gap: 36px; }
.captain-stat strong {
  font-family: var(--font-head); font-size: 30px; font-weight: 800;
  color: var(--navy); display: block;
}
.captain-stat span {
  font-size: 13px; color: var(--slate);
  font-family: var(--font-head); font-weight: 500;
}

/* ── COURSES ─────────────────────────────────────────────────── */
.courses-section { background: var(--navy); }
.course-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 20px; overflow: hidden;
  transition: all 300ms ease;
}
.course-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
}
.course-img { aspect-ratio: 3/4; height: auto; overflow: hidden; position: relative; background: var(--navy); }
.course-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course-body { padding: 28px 28px 32px; }
.course-type {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.course-card h3 {
  font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.course-card h3 em { color: var(--gold); font-style: normal; }
.course-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.course-spec { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.spec-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
}
.course-price { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--white); }
.course-price small { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.4); }

/* ── WHY US / FEATURES ───────────────────────────────────────── */
.feature-item { display: flex; align-items: flex-start; gap: 20px; }
.feature-ico {
  width: 52px; height: 52px;
  background: var(--seafoam); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.feature-item p { font-size: 14px; color: var(--slate); line-height: 1.65; }
.features-list { display: flex; flex-direction: column; gap: 28px; }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item { border-radius: 16px; overflow: hidden; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-img { width: 100%; height: 100%; overflow: hidden; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms ease; }
.gallery-item:hover .gallery-img img { transform: scale(1.06); }

/* ── CHARTER SPLIT ───────────────────────────────────────────── */
.charter-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-items: start;
}
.charter-photo { aspect-ratio: 1/1; overflow: hidden; }
.charter-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.charter-body {
  background: var(--white); padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.charter-body .sh { margin-bottom: 32px; }
.charter-body .sh h2 { font-size: 32px; }
.charter-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.charter-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--border-lt); border-radius: 12px;
  transition: all 200ms; cursor: pointer;
}
.charter-opt:hover { border-color: var(--gold); background: #fffdf7; }
.charter-opt-ico { width: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.charter-opt-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); }
.charter-opt-price { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--slate); }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 28px;
  border: 1px solid var(--border-lt);
  transition: box-shadow 200ms;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 15px; color: var(--charcoal);
  line-height: 1.75; font-style: italic; margin-bottom: 20px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--seafoam); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--blue);
}
.rev-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy); }
.rev-meta { font-size: 13px; color: var(--slate); }
.rev-tag {
  display: inline-block; margin-top: 16px;
  background: var(--seafoam); color: var(--blue);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border-lt); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 22px 0; cursor: pointer;
  font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy);
  user-select: none;
}
.faq-arrow { color: var(--blue); font-size: 22px; flex-shrink: 0; transition: transform 250ms; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; font-size: 15px; color: var(--charcoal); line-height: 1.75; padding-bottom: 20px; }
.faq-item.open .faq-a { display: block; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: var(--font-head);
  font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; height: 52px; padding: 0 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  background: var(--white); outline: none; transition: border-color 200ms;
  appearance: none;
}
.form-group textarea { height: 120px; padding: 14px 16px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,143,209,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section { background: var(--navy); padding: 96px 0; }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-text h2 {
  font-size: 42px; font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.cta-text h2 em { color: var(--gold); font-style: normal; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 32px; }
.cta-contacts { display: flex; flex-direction: column; gap: 14px; }
.cta-contact {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.8);
}
.cta-contact a { color: rgba(255,255,255,.8); transition: color 200ms; }
.cta-contact a:hover { color: var(--gold); }
.cta-contact-ico {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cta-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 36px;
}
.cta-form .form-group input,
.cta-form .form-group select,
.cta-form .form-group textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}
.cta-form .form-group input::placeholder,
.cta-form .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.cta-form .form-group label { color: rgba(255,255,255,.75); }

/* ── BOOKING WIDGET ─────────────────────────────────────────── */
.booking-discount-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.4);
  color: var(--gold); font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.booking-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.booking-price-old { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: rgba(255,255,255,.55); text-decoration: line-through; }
.booking-price-new { font-family: var(--font-head); font-size: 46px; font-weight: 900; color: var(--white); line-height: 1; }
.turitop-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  border-radius: var(--radius-md);
  transition: max-height 0.55s ease, opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}
.turitop-wrap.open {
  max-height: 1800px;
  opacity: 1;
  margin-top: 20px;
}
.booking-toggle.is-open { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); border: 2px solid rgba(255,255,255,.25); }

/* ── COURSE CARD PRICES ──────────────────────────────────────── */
.course-price-old { text-decoration: line-through; color: rgba(255,255,255,.55); font-size: 16px; font-weight: 400; margin-left: 4px; }
.hero-stat--gold strong { color: var(--gold); }

/* ── BREADCRUMBS ─────────────────────────────────────────────── */
.breadcrumbs {
  background: var(--seafoam);
  border-bottom: 1px solid var(--border-lt);
  padding: 14px 0;
}
.breadcrumbs ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--slate);
}
.breadcrumbs li a { color: var(--blue); transition: color 200ms; }
.breadcrumbs li a:hover { color: var(--navy); }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--border); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--navy); padding: 64px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,143,209,.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 48px; font-weight: 800;
  color: var(--white); margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 600px; line-height: 1.65; }

/* ── COURSE PAGES ─────────────────────────────────────────────── */
.course-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.course-list li { position: relative; padding-left: 20px; font-size: 15px; color: var(--charcoal); line-height: 1.55; }
.course-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: #071628; padding: 72px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--white); margin-bottom: 18px;
}
.footer-logo .logo-img { filter: brightness(0) invert(1) opacity(.9); }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 260px; }
.footer-col h5 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,.65); margin-bottom: 10px; transition: color 200ms;
}
.footer-col a:hover { color: var(--white); }
.footer-nap { font-size: 14px; color: rgba(255,255,255,.55); }
.footer-nap strong { color: rgba(255,255,255,.85); font-family: var(--font-head); font-weight: 600; }
.footer-nap-line { display: block; line-height: 1; margin-bottom: 7px; }
.footer-nap-line a { color: inherit; transition: color 200ms; }
.footer-nap-line a:hover { color: rgba(255,255,255,.85); }
.footer-nap-sep { display: block; height: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.footer-langs { display: flex; gap: 8px; }
.footer-langs a {
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  color: rgba(255,255,255,.4); padding: 5px 10px; border-radius: 6px;
  transition: all 150ms;
}
.footer-langs a.active { color: var(--white); background: rgba(255,255,255,.1); }
.footer-langs a:hover { color: var(--white); }

/* ── SOCIAL FOLLOW ────────────────────────────────────────────── */
.social-follow { background: var(--charcoal); padding: 72px 0; text-align: center; }
.social-follow .eyebrow { color: var(--gold); }
.social-follow .sh h2 { color: var(--white); }
.social-follow .sh p { color: rgba(255,255,255,.6); margin: 0 auto; }
.social-icons-row { display: flex; gap: 16px; justify-content: center; margin-top: 36px; }
.social-icon-btn {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms, opacity 150ms;
}
.social-icon-btn:hover { transform: translateY(-3px); opacity: .85; }
.social-icon-fb { background: #1877F2; }
.social-icon-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* ── BOAT SECTION ─────────────────────────────────────────────── */
.boat-section { background: var(--navy); }
.boat-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.boat-photo { min-height: 480px; position: relative; overflow: hidden; }
.boat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.boat-name-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(11,31,58,.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(245,166,35,.4);
  padding: 10px 22px; border-radius: 100px;
  font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--gold);
  letter-spacing: .06em;
}
.boat-body {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.boat-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.boat-spec { background: rgba(255,255,255,.06); border-radius: 12px; padding: 16px 18px; }
.boat-spec-val {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--white); display: block; margin-bottom: 4px;
}
.boat-spec-label {
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em;
}
.boat-features { display: flex; flex-wrap: wrap; gap: 10px; }
.boat-feature {
  background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.25);
  color: var(--gold); font-family: var(--font-head); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
}

/* ── LEGAL PAGES ──────────────────────────────────────────────── */
.legal-body h2 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--navy); margin: 36px 0 12px;
}
.legal-body p { font-size: 15px; color: var(--charcoal); line-height: 1.75; margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 20px; }
.legal-body ul li { font-size: 15px; color: var(--charcoal); line-height: 1.75; margin-bottom: 6px; }
.legal-body a { color: var(--blue); }
.legal-body a:hover { color: var(--navy); }
.cookie-table {
  width: 100%; border-collapse: collapse; margin: 20px 0 14px;
  font-size: 14px;
}
.cookie-table th, .cookie-table td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--border-lt);
}
.cookie-table th {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--slate); background: var(--seafoam);
}
.cookie-table td code {
  font-family: monospace; font-size: 13px;
  background: var(--seafoam); padding: 2px 8px; border-radius: 4px;
  color: var(--navy);
}

/* ── MOBILE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 24px; }
  .hero { background-attachment: scroll; }
  .hero h1 { font-size: 58px; }
  .hero-inner { padding: 60px 0 200px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .captain-layout { grid-template-columns: 1fr; }
  .captain-photo-wrap { max-width: 320px; }
  .captain-badge { right: 0; }
  .boat-layout { grid-template-columns: 1fr; }
  .boat-photo { min-height: 300px; }
  .charter-layout { grid-template-columns: 1fr; }
  .charter-photo { min-height: 300px; }
  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .social-follow-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px; }
  .hero h1 { font-size: 38px; }
  .hero-inner { padding: 40px 0 160px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item:first-child { grid-row: auto; }
  .nav { display: none; }
  .phone-link span { display: none; }
  .sh h2 { font-size: 28px; }
  .cta-text h2 { font-size: 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .captain-stats { flex-wrap: wrap; gap: 24px; }
  .trust-bar .container { gap: 20px; }
  .trust-sep { display: none; }
  /* mobile header */
  .hamburger { display: flex; }
  .header-right .lang-sw { display: none; }
  .header-right > a.btn-primary { display: none; }
  .header-right { gap: 8px; }
  .header-socials { display: none; }
  .phone-link { display: none; }
  /* page-hero */
  .page-hero h1 { font-size: 34px; }
  .page-hero p { font-size: 16px; }
  /* boat/charter body padding */
  .boat-body { padding: 32px 24px; }
  .charter-body { padding: 36px 28px; }
}

/* ── HAMBURGER BUTTON ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
  transition: background 150ms; flex-shrink: 0;
}
.hamburger:hover { background: var(--seafoam); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 300ms, opacity 300ms;
  pointer-events: none;
}
.site-header--transparent .hamburger span { background: rgba(255,255,255,.9); }
.site-header--transparent.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ───────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 98; padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(11,31,58,.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  display: flex; align-items: center;
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--navy); padding: 16px 0;
  border-bottom: 1px solid var(--border-lt);
  transition: color 200ms;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--blue); }
.mobile-nav-bottom { margin-top: 24px; }
.mobile-nav-langs {
  display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap;
}
.mobile-nav-langs a {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--slate); padding: 7px 14px; border-radius: 8px;
  border: 1.5px solid var(--border-lt); transition: all 150ms;
  text-decoration: none;
}
.mobile-nav-langs a.active { color: var(--navy); background: var(--seafoam); border-color: var(--border); }

/* ── BOOKING MODAL ────────────────────────────────────────────── */
.booking-modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,31,58,.8);
  z-index: 10000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.booking-modal-overlay.open { display: flex; }
.booking-modal-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  max-width: 580px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.booking-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--seafoam); border: none; cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; color: var(--navy);
  transition: background 200ms;
}
.booking-modal-close:hover { background: var(--border-lt); }
.booking-modal-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.booking-modal-sub { font-size: 14px; color: var(--slate); margin-bottom: 24px; }
