:root {
  --primary: #0B3C5D;
  --primary-dark: #082d46;
  --accent: #2EC4B6;
  --accent-dark: #25a99d;
  --bg: #F5F9FC;
  --bg2: #e8f2f8;
  --text: #1a2a3a;
  --text-light: #5a7080;
  --white: #ffffff;
  --card-shadow: 0 4px 20px rgba(11,60,93,0.10);
  --radius: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary  { background: var(--accent); color: var(--white); border: 2px solid var(--accent); }
.btn-primary:hover  { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-secondary { background: transparent; border: 2px solid var(--accent); color: var(--white); }
.btn-secondary:hover { background: var(--accent); color: var(--white); }
.btn-accent   { background: var(--accent); color: var(--white); border: 2px solid var(--accent); }
.btn-accent:hover   { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-outline  { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover  { background: var(--primary); color: var(--white); }
.footer-link { color: var(--accent); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 600; font-size: 1.05rem; flex-shrink: 0; }
.logo:hover { color: var(--accent); }
.logo-whale { font-size: 1.5rem; }
.logo-text { display: block; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 2px; flex-wrap: nowrap; }
.main-nav a {
  color: rgba(255,255,255,0.82);
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 0.87rem;
  transition: all 0.15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.main-nav .nav-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 4px 6px; align-self: stretch; }
.header-cta { margin-left: 10px; padding: 9px 18px; font-size: 0.88rem; flex-shrink: 0; }
html { scroll-padding-top: 80px; }
.hamburger { display: none; background: none; border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 1.2rem; margin-left: auto; }
.nav-close { display: none; }
.mobile-book-now { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0B3C5D 0%, #0d4e78 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 60px 0;
}
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.hero-content .tagline { font-size: 1.15rem; opacity: 0.9; margin-bottom: 12px; font-family: 'Source Sans 3', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); }
.hero-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Tour page hero */
.hero-tour { min-height: 60vh; }
.hero-tour .hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.hero-badge { display: inline-block; background: var(--accent); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }

/* ── SECTIONS ── */
section { padding: 80px 0; }
.section-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--primary); margin-bottom: 16px; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 620px; margin-bottom: 48px; }

/* ── ADVANTAGES ── */
.advantages { background: var(--white); }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 48px; }
.adv-card { background: var(--bg); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; border: 1px solid #dde8f0; }
.adv-icon { font-size: 2.8rem; margin-bottom: 16px; }
.adv-card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; }
.adv-card p { color: var(--text-light); font-size: 0.97rem; }

/* ── ABOUT ── */
.about-section { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.about-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--primary); margin-bottom: 24px; }
.about-text p { color: var(--text-light); margin-bottom: 18px; }
.facts-row { display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); margin-top: 36px; }
.fact-box { flex: 1; background: var(--primary); color: var(--white); padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.fact-box:last-child { border-right: none; }
.fact-value { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--accent); font-weight: 700; }
.fact-label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 360px; object-fit: cover; }

/* ── TOURS HUB ── */
.tours-hub { background: var(--white); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 48px; }
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid #dde8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(11,60,93,0.15); }
.tour-card-img { width: 100%; height: 220px; object-fit: cover; }
.tour-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-card-badge { display: inline-block; background: var(--accent); color: var(--white); padding: 3px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.tour-card-body h2 { font-size: 1.25rem; color: var(--primary); margin-bottom: 8px; }
.tour-card-meta { display: flex; gap: 14px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; flex-wrap: wrap; }
.tour-card-meta span { display: flex; align-items: center; gap: 4px; }
.tour-card-hook { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.tour-card-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--primary); color: var(--white); text-align: center; padding: 64px 24px; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p { opacity: 0.85; font-size: 1.05rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { min-width: 200px; }

/* ── REVIEWS ── */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--card-shadow); border: 1px solid #dde8f0; }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-portrait { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg2); }
.review-author strong { display: block; color: var(--primary); }
.review-author span { font-size: 0.85rem; color: var(--text-light); }
.review-stars { color: #f5a623; font-size: 1rem; margin-bottom: 8px; }
.review-text { color: var(--text-light); font-size: 0.95rem; font-style: italic; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { border: 1px solid #dde8f0; border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  background: var(--white);
  user-select: none;
}
.faq-question:hover { background: var(--bg); }
.faq-icon { font-size: 1.2rem; transition: transform 0.2s; flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 24px 18px; color: var(--text-light); }

/* ── INTERNAL PAGE ── */
.tour-intro { background: var(--white); padding: 64px 0; }
.tour-intro-inner { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.tour-intro-text h2 { font-size: 1.85rem; color: var(--primary); margin-bottom: 16px; }
.tour-intro-text .desc-block h3 { font-size: 1.15rem; color: var(--primary); margin: 20px 0 8px; }
.tour-intro-text .desc-block p { color: var(--text-light); margin-bottom: 10px; }

/* Booking Card */
.booking-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: sticky;
  top: 90px;
}
.booking-card .price-block { margin-bottom: 20px; }
.booking-card .price-from { font-size: 0.85rem; opacity: 0.7; }
.booking-card .price-main { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.booking-card .price-per { font-size: 0.82rem; opacity: 0.7; }
.booking-card .card-meta { list-style: none; margin-bottom: 22px; }
.booking-card .card-meta li { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.booking-card .card-meta li:last-child { border-bottom: none; }
.booking-card .card-meta .meta-icon { font-size: 1rem; width: 22px; text-align: center; }
.booking-card .btn { width: 100%; text-align: center; margin-bottom: 10px; }
.booking-card .badge-top { display: inline-block; background: var(--accent); color: var(--white); padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }

/* Tour Details */
.tour-details-section { background: var(--bg); padding: 64px 0; }
.details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }
.detail-card { background: var(--white); border-radius: var(--radius); padding: 20px; text-align: center; border: 1px solid #dde8f0; }
.detail-icon { font-size: 1.6rem; margin-bottom: 8px; }
.detail-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin-bottom: 4px; }
.detail-value { font-weight: 600; color: var(--primary); font-size: 0.97rem; }

/* Tour Route */
.tour-route-section { background: var(--white); padding: 64px 0; }
.route-timeline { max-width: 700px; margin-top: 32px; }
.route-stop { display: flex; gap: 20px; margin-bottom: 28px; position: relative; }
.route-stop::before { content: ''; position: absolute; left: 17px; top: 36px; bottom: -28px; width: 2px; background: var(--bg2); }
.route-stop:last-child::before { display: none; }
.stop-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; border: 3px solid var(--accent); }
.stop-body h4 { color: var(--primary); font-size: 1rem; margin-bottom: 2px; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.stop-time { font-size: 0.8rem; color: var(--accent); margin-bottom: 4px; font-weight: 600; }
.stop-desc { color: var(--text-light); font-size: 0.93rem; }

/* Experience Cards */
.experience-section { background: var(--bg); padding: 64px 0; }
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.exp-card { background: var(--white); border-radius: var(--radius); padding: 22px 20px; border-left: 4px solid var(--accent); }
.exp-card p { color: var(--text-light); font-size: 0.93rem; }

/* Includes & Excludes */
.inc-exc-section { background: var(--white); padding: 64px 0; }
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.inc-list, .exc-list { list-style: none; }
.inc-list h3, .exc-list h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bg2); }
.inc-list li, .exc-list li { padding: 8px 0; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; color: var(--text-light); border-bottom: 1px solid var(--bg2); }
.inc-list li:last-child, .exc-list li:last-child { border-bottom: none; }
.inc-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.exc-list li::before { content: '✗'; color: #e05555; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Meeting Point */
.meeting-section { background: var(--bg); padding: 64px 0; }
.meeting-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 32px; }
.meeting-info h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 8px; }
.meeting-info p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 14px; }
.meeting-coords { font-size: 0.82rem; color: var(--text-light); background: var(--white); padding: 8px 12px; border-radius: 6px; display: inline-block; font-family: monospace; }
.meeting-inner > * { min-width: 0; }
.osm-map { border-radius: var(--radius); overflow: hidden; border: 1px solid #dde8f0; width: 100%; display: block; }
.osm-map iframe { width: 100%; height: 320px; border: none; display: block; min-width: 0; }

/* Good to Know Accordion */
.good-to-know-section { background: var(--white); padding: 64px 0; }

/* Tour Reviews */
.tour-reviews-section { background: var(--bg); padding: 64px 0; }

/* ── SEASON CALENDAR ── */
.season-section { background: var(--bg); padding: 80px 0; }
.season-intro { color: var(--text-light); font-size: 1.03rem; max-width: 760px; margin-bottom: 40px; line-height: 1.8; }
.season-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #dde8f0;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.season-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.season-table { width: 100%; border-collapse: collapse; min-width: 580px; }
.season-table thead th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.season-table thead th:first-child { text-align: left; padding-left: 28px; min-width: 72px; }
.col-icon { font-size: 1.3rem; display: block; margin-bottom: 5px; }
.season-table tbody tr { border-bottom: 1px solid #eaf0f5; transition: background 0.15s; }
.season-table tbody tr:last-child { border-bottom: none; }
.season-table tbody tr:hover { background: #f0f7fb; }
.season-table td { padding: 13px 20px; text-align: center; vertical-align: middle; }
.season-table td:first-child {
  text-align: left;
  padding-left: 28px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  font-family: 'Source Sans 3', sans-serif;
}
.cal-badge {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cal-peak     { background: var(--accent); color: #fff; }
.cal-possible { background: #f5a623; color: #2a1800; }
.cal-rare     { background: #dde8f0; color: #7a8fa0; }
.season-legend {
  display: flex;
  gap: 24px;
  padding: 14px 28px;
  background: var(--bg);
  border-top: 1px solid #eaf0f5;
  flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-light); }
.season-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.season-tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid #dde8f0;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tip-icon { font-size: 1.8rem; margin-bottom: 4px; }
.tip-label { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent); font-weight: 700; }
.tip-value { color: var(--primary); font-weight: 700; font-size: 1.05rem; font-family: 'Playfair Display', serif; }
.tip-desc { color: var(--text-light); font-size: 0.86rem; margin-top: 2px; }
@media (max-width: 700px) {
  .season-tips { grid-template-columns: 1fr; }
  .season-legend { gap: 12px; }
}

/* ── MINI SEASON CALENDAR (tour pages) ── */
.mini-season-section { background: var(--white); padding: 64px 0; }
.mini-season-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #dde8f0;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.mini-card-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mini-row-label-bar {
  padding: 12px 24px 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-top: 1px solid var(--bg2);
}
.mini-row-label-bar:first-of-type { border-top: none; padding-top: 20px; }
.mini-season-row {
  display: flex;
  min-width: 600px;
}
.mini-month {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 2px 16px;
  border-right: 1px solid #eaf0f5;
  transition: background 0.15s;
}
.mini-month:last-child { border-right: none; }
.mini-month:hover { background: var(--bg); }
.mini-month-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
}
.mini-pill {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-align: center;
}
.mp-peak     { background: var(--accent); color: #fff; }
.mp-possible { background: #f5a623; color: #2a1800; }
.mp-rare     { background: #dde8f0; color: #7a8fa0; }
.mini-season-legend {
  display: flex;
  gap: 20px;
  padding: 11px 24px;
  background: var(--bg);
  border-top: 1px solid #eaf0f5;
  flex-wrap: wrap;
}
.mini-season-caption {
  padding: 16px 24px 20px;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.72;
  border-top: 1px solid #eaf0f5;
}
@media (max-width: 700px) { .mini-season-legend { gap: 10px; } }

/* ── FOOTER ── */
.site-footer {
  background: var(--primary-dark, #082d46);
  color: rgba(255,255,255,0.82);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .footer-logo .logo-whale { font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 9px;
}
.footer-contact-item .fci-icon { flex-shrink: 0; width: 18px; text-align: center; margin-top: 1px; opacity: 0.7; }
.footer-contact-item a { color: var(--accent); }
.footer-contact-item a:hover { color: #fff; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.15s, padding-left 0.15s;
  display: block;
}
.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner .copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.affiliate-disclosure {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  max-width: 480px;
}

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .affiliate-disclosure { text-align: center; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 260px; }
  .tour-intro-inner { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .meeting-inner { grid-template-columns: 1fr; }
  .inc-exc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  section { padding: 56px 0; }
  .hamburger { display: block; }
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 200;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 13px 24px; border-radius: 0; font-size: 0.95rem; }
  .main-nav .nav-divider { display: none; }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 18px 6px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.6rem;
    cursor: pointer;
    width: 100%;
    line-height: 1;
  }
  .nav-close:hover { color: var(--white); }
  .mobile-book-now { display: block; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 4px; padding: 8px 0 4px; }
  .mobile-book-now a { color: var(--accent) !important; font-weight: 700; }
  body.menu-open { overflow: hidden; }
  .header-cta { display: none; }
  .facts-row { flex-direction: column; }
  .fact-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fact-box:last-child { border-bottom: none; }
  .hero-btns { flex-direction: column; }
  .tour-card-btns { flex-direction: column; }
}
