/* ============================================================
   vladivostok_boat — Light Maritime Theme
   Fonts: Playfair Display (headings) + Inter (body)
   Palette: white/sky · teal accent · navy headings
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f0f7fb;
  --bg-teal:     #e8f5f3;
  --bg-dark:     #0b2240;

  --navy:        #0b2240;
  --navy-mid:    #14365a;
  --teal:        #0a9488;
  --teal-dark:   #077268;
  --teal-light:  #e8f5f3;
  --teal-mid:    #5bbdb6;
  --gold:        #d9780a;

  --text:        #1a3347;
  --text-muted:  #5a7a90;
  --text-light:  #8aaab8;
  --border:      #d4e4ed;
  --border-light:#eaf2f7;

  --white:       #ffffff;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, sans-serif;

  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 2px 8px rgba(10,40,80,.07);
  --shadow:      0 4px 20px rgba(10,40,80,.10);
  --shadow-lg:   0 8px 40px rgba(10,40,80,.14);
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-teal { background: var(--bg-teal); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,148,136,.30);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}


/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddeef7 0%, #c8e4f2 100%);
  border: 2px dashed #90b8d0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  border-radius: inherit;
  min-height: 220px;
}
@media (max-width: 600px) {
  .photo-placeholder { min-height: 140px; padding: 16px; }
  .photo-placeholder-text { display: none; }
}
.photo-placeholder--round {
  border-radius: 50%;
}
.photo-placeholder--boat {
  min-height: 300px;
}
.photo-placeholder-icon { font-size: 2rem; opacity: 0.5; }
.photo-placeholder-text {
  font-size: 12px;
  font-family: var(--font-body);
  color: #4a7a90;
  line-height: 1.5;
}
.photo-placeholder-text strong { display: block; margin-bottom: 2px; color: #2a5570; }

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddeef7 0%, #c8e4f2 100%);
  border: 2px dashed #90b8d0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
  border-radius: inherit;
  transition: background var(--transition);
}
.gallery-placeholder span { font-size: 1.8rem; opacity: 0.5; }
.gallery-placeholder strong { font-size: 12px; color: #2a5570; font-family: var(--font-body); }
.gallery-placeholder em { font-size: 11px; color: #4a7a90; font-style: normal; }
.gallery-item:hover .gallery-placeholder { background: linear-gradient(135deg, #c8e0ed 0%, #b0d4e8 100%); }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  --h-color: #fff;
}
.header.scrolled {
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  --h-color: var(--navy);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--h-color);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.logo-text strong {
  font-weight: 700;
}
.logo--light .logo-text { color: rgba(255,255,255,.9); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--h-color);
  opacity: 0.85;
  transition: color var(--transition), opacity var(--transition);
  border-radius: 6px;
}
.nav-link:hover { opacity: 1; }
.header.scrolled .nav-link { color: var(--navy); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--h-color);
  opacity: 0.9;
  transition: color var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.header-phone:hover { opacity: 1; }
.header.scrolled .header-phone { color: var(--navy); }
.header-cta { flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 8px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--h-color);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.burger.active span { background: var(--navy); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* HERO PHOTO */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      170deg,
      rgba(8, 22, 50, 0.70) 0%,
      rgba(5, 30, 58, 0.48) 40%,
      rgba(5, 48, 52, 0.62) 100%
    ),
    url('../images/hero-sunset-hq.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,45,.35) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--teal-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--teal-mid);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.80);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.br-desktop { display: none; }
@media (min-width: 640px) { .br-desktop { display: block; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
  margin-bottom: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

.hero-departure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
}
.hero-departure svg { opacity: 0.7; flex-shrink: 0; }
.hero-departure strong { color: #fff; }
.hero-departure a { color: var(--teal-mid); text-decoration: underline; margin-left: 4px; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip {
  background: var(--bg-dark);
  padding: 48px 0;
}
.usp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.usp-card {
  padding: 28px 24px;
  background: rgba(255,255,255,.05);
  border-radius: 2px;
  transition: background var(--transition);
}
.usp-card--accent {
  background: var(--teal);
}
.usp-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1;
}
.usp-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.usp-card-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.usp-card-text em { font-style: normal; font-weight: 600; color: rgba(255,255,255,.95); }
@media (max-width: 900px) {
  .usp-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .usp-cards { grid-template-columns: 1fr; gap: 1px; }
  .usp-strip { padding: 32px 0; }
}


/* ============================================================
   TOUR CARDS
   ============================================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .tours-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

.tour-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tour-card--featured {
  border-color: var(--teal);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(10,148,136,.15);
}

.tour-photo {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.tour-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-photo img { transform: scale(1.04); }

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 1;
}

.tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.tag--wildlife {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: rgba(10,148,136,.2);
}

.tour-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.tour-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.tour-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.tour-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}
.tour-details svg { color: var(--teal); flex-shrink: 0; }

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.price-amount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.price-per {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 4px;
}


/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 32px;
}
.schedule-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
}
.schedule-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.schedule-row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.schedule-row:hover { box-shadow: var(--shadow); }
.schedule-row--full { opacity: 0.6; }
.schedule-row--last { border-color: var(--gold); }

.schedule-date {
  text-align: center;
  background: var(--teal-light);
  border-radius: 8px;
  padding: 8px 6px;
}
.schedule-day-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: block;
}
.schedule-day-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  display: block;
}
.schedule-month {
  font-size: 11px;
  color: var(--teal-dark);
  display: block;
}

.schedule-info { min-width: 0; }
.schedule-tour-name {
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.schedule-meta {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.schedule-seats {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.schedule-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.schedule-badge--last { background: #fff3cd; color: #8a5700; }
.schedule-badge--full { background: #f0f0f0; color: #888; }

.schedule-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  text-align: right;
}

.schedule-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}
.schedule-note a { color: var(--teal); text-decoration: underline; }

@media (max-width: 600px) {
  .schedule-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 14px 16px;
  }
  .schedule-date {
    flex: 0 0 56px;
    align-self: flex-start;
    margin-top: 2px;
  }
  .schedule-info {
    flex: 1 1 calc(100% - 68px);
    min-width: 0;
  }
  .schedule-price {
    flex: 0 0 auto;
    margin-left: 68px;
    font-size: 1rem;
  }
  .schedule-row > div:last-child {
    flex: 0 0 auto;
  }
  .schedule-meta { flex-wrap: wrap; row-gap: 4px; }
}


/* ============================================================
   ITINERARY
   ============================================================ */
.itinerary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 700px) { .itinerary { grid-template-columns: 1fr; } }

.itinerary-day {}
.itinerary-day-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}
.itinerary-day-label span {
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}
.itinerary-events { display: flex; flex-direction: column; }
.itin-event {
  display: grid;
  grid-template-columns: 52px 24px 1fr;
  gap: 0 12px;
}
.itin-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  padding-top: 2px;
  text-align: right;
  white-space: nowrap;
}
.itin-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.itin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.itin-dot--special {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,120,10,.2);
}
.itin-dot--end { background: var(--navy); }
.itin-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 4px 0;
  min-height: 24px;
}
.itin-content {
  padding-bottom: 28px;
}
.itin-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.itin-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Wildlife cards */
/* ---- Advantage compare block ---- */
.advantage-compare {
  margin: 40px 0 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid var(--border);
}
.advantage-compare-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}
.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-col {
  padding: 20px 22px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.7;
}
.compare-col--us {
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
}
.compare-col--them {
  background: #fff4f4;
  border: 1.5px solid #e0b0b0;
}
.compare-col-header { margin-bottom: 12px; }
.compare-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.compare-badge--us { background: var(--teal); color: #fff; }
.compare-badge--them { background: #c0505033; color: #8b2020; }
.compare-col ul { padding: 0; }
.compare-col li { padding: 2px 0; }
.compare-col li em { color: var(--text-muted); font-style: italic; font-size: 0.8rem; }
@media (max-width: 600px) {
  .compare-cols { grid-template-columns: 1fr; gap: 12px; }
  .advantage-compare { padding: 20px 16px; margin: 24px 0 32px; }
  .compare-col { padding: 16px; }
}

.itinerary-wildlife {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .itinerary-wildlife { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .itinerary-wildlife { grid-template-columns: 1fr; } }

.wildlife-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.wildlife-card--accent {
  border-color: var(--teal);
  background: var(--teal-light);
}
.wildlife-only-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.wildlife-emoji { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.wildlife-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.wildlife-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 8/3;
}
@media (max-width: 700px) {
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 4/3; }
}
@media (max-width: 420px) {
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-more { text-align: center; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  position: relative;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.25);
}
.lightbox-close { top: 16px; right: 16px; font-size: 1rem; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  white-space: nowrap;
}


/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.team-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
}
@media (max-width: 500px) { .team-card { flex-direction: column; align-items: center; text-align: center; } }

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}
.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Boat block */
.boat-block {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 700px) { .boat-block { grid-template-columns: 1fr; } }

.boat-photo {
  min-height: 300px;
  overflow: hidden;
}
.boat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .boat-photo { min-height: 220px; }
}

.boat-info { padding: 32px 32px 32px 0; }
@media (max-width: 700px) { .boat-info { padding: 24px; } }

.boat-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.boat-specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.boat-specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.boat-specs svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.boat-specs strong { color: var(--navy); }


/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--teal-light);
  line-height: 1;
}
.review-stars {
  color: #f5c518;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; }
.review-meta strong { font-size: 0.9rem; color: var(--navy); }
.review-meta span { font-size: 0.78rem; color: var(--text-muted); }

.reviews-cta { text-align: center; }
.reviews-cta p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.review-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.review-platform-link {
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.review-platform-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-item.open .faq-question { background: var(--teal-light); color: var(--teal-dark); }
.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--teal);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer a { color: var(--teal); text-decoration: underline; }


/* ============================================================
   BOOKING
   ============================================================ */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) { .booking-wrap { grid-template-columns: 1fr; gap: 40px; } }

.booking-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.booking-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.booking-contacts { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-row:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.contact-row svg { color: var(--teal); flex-shrink: 0; }

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }
.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,148,136,.12);
}
input::placeholder { color: var(--text-light); }
select { cursor: pointer; }

.booking-form .btn { margin-top: 8px; margin-bottom: 16px; }
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.form-note a { color: var(--teal); text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.form-success a { color: var(--teal); text-decoration: underline; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 32px;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-text { color: rgba(255,255,255,.9); }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.6; }
.footer-season { color: var(--teal-mid); font-weight: 600; margin-top: 8px; font-size: 0.85rem; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-col li a:hover { color: #fff; }

.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-contact p { font-size: 0.875rem; margin-bottom: 8px; }
.footer-phone {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.footer-phone:hover { color: #fff; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover {
  background: var(--teal);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; }


/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 90;
  padding: 10px 12px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: #fff;
  box-shadow: 0 -2px 20px rgba(10,40,80,.12);
  gap: 8px;
  box-sizing: border-box;
  overflow: hidden;
}
.sticky-bar.visible { display: flex; }

.sticky-btn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 8px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}
.sticky-btn--call {
  background: var(--bg-alt);
  color: var(--navy);
  border: 1px solid var(--border);
}
.sticky-btn--call:hover { background: var(--border-light); }
.sticky-btn--tg {
  background: var(--teal);
  color: #fff;
}
.sticky-btn--tg:hover { background: var(--teal-dark); }


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }


/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 900px) {
  .header-phone span { display: none; }
  .header-cta { display: none; }
}
@media (max-width: 700px) {
  .burger { display: flex; margin-left: auto; z-index: 101; }
  .header-phone { display: none; }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 100;
  }
  .nav.open { display: flex; }
  .nav-link {
    font-size: 1.3rem;
    padding: 12px 24px;
    color: var(--navy) !important;
    opacity: 1;
  }
  .sticky-bar.visible { display: flex; }
}
@media (min-width: 701px) {
  .sticky-bar { display: none !important; }
}


/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .hero-title { font-size: clamp(2.6rem, 8vw, 4.5rem); }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 18px; }
  .stat-num { font-size: 1.4rem; }
  .booking-form-wrap { padding: 24px; }
}

/* ---- Mobile hero compact (≤480px) ---- */
@media (max-width: 480px) {
  .hero { padding-top: 64px; }
  .hero-content { padding-top: 24px; padding-bottom: 20px; }
  .hero-eyebrow { font-size: 0.68rem; margin-bottom: 10px; letter-spacing: 0.12em; }
  .hero-title { font-size: 2.2rem; line-height: 1.05; margin-bottom: 12px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 16px; }
  .hero-actions { gap: 8px; margin-bottom: 20px; }
  .hero-actions .btn-lg { padding: 11px 20px; font-size: 0.9rem; }
  .hero-stats { margin-bottom: 12px; row-gap: 10px; }
  .hero-stat { padding: 0 10px; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: 0.68rem; }
  .stat-div { height: 28px; }
  .hero-departure { font-size: 0.78rem; padding: 8px 12px; }
  .hero-scroll { bottom: 14px; }
}
