/* tourwhalewatching.com — editorial dark navy redesign */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3 { text-transform: capitalize; }

:root {
  /* Dark palette */
  --ink:      #07111e;
  --navy:     #0d1e35;
  --navy-2:   #142944;
  --navy-3:   #1e3c5e;

  /* Accent */
  --gold:     #c9a84c;
  --gold-d:   #a8893c;
  --gold-l:   #f0d99b;

  /* Light surfaces */
  --cream:    #f7f3ed;
  --cream-2:  #efe9df;
  --white:    #ffffff;

  /* Text on dark */
  --on-dark:       rgba(255,255,255,0.95);
  --on-dark-muted: rgba(255,255,255,0.55);
  --on-dark-faint: rgba(255,255,255,0.28);
  --border-dark:   rgba(255,255,255,0.09);

  /* Text on light */
  --text:       #1c1c1c;
  --text-muted: #5a5a5a;
  --text-faint: #9a9a9a;
  --border:     #e2dbd0;

  /* Status */
  --green:    #27500A;
  --green-bg: #dff0c4;
  --amber:    #633806;
  --amber-bg: #FAEEDA;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container        { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 900px;  margin: 0 auto; padding: 0 32px; }

/* ── NAV ────────────────────────────────────────── */
.site-nav {
  background: #fff;
  position: sticky; top: 0; z-index: 200;
  height: 60px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 16px; font-weight: 800;
  color: var(--navy); letter-spacing: -.02em;
  transition: color .15s;
}
.nav-logo:hover { color: var(--navy-3); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 16px; color: var(--text-muted);
  letter-spacing: .01em; transition: color .15s;
}
.nav-links a:hover { color: var(--navy); }
.btn-nav {
  background: var(--navy);
  border: none;
  border-radius: var(--radius-xs);
  padding: 8px 18px; font-size: 13px; font-weight: 600;
  color: #fff; cursor: pointer;
  transition: background .15s;
}
.btn-nav:hover { background: var(--navy-3); }
/* ── HAMBURGER BUTTON ──────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(0,0,0,.06); }
.hbg-x { display: none; }
body.menu-open .hbg-bars { display: none; }
body.menu-open .hbg-x { display: block; }

/* ── MOBILE MENU OVERLAY ───────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  flex-direction: column;
  border-top: 1px solid #e8e4dc;
  overflow-y: auto;
}
body.menu-open .mobile-menu { display: flex; }
body.menu-open { overflow: hidden; }

.mm-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 22px 24px;
  border-bottom: 1px solid #f0ece5;
  letter-spacing: -.015em;
}
.mm-link::after { content: '›'; font-size: 26px; font-weight: 300; color: #bbb; }
.mm-link:active { background: var(--cream); }
.mm-cta-wrap {
  margin-top: auto;
  padding: 28px 24px 40px;
  border-top: 1px solid #e8e4dc;
}
.mm-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 16px 0;
  border-radius: 10px;
  margin-bottom: 10px;
}
.mm-sub {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: var(--radius-sm);
  padding: 12px 24px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--sans); letter-spacing: .02em;
  transition: background .15s;
}
.btn-primary:hover { background: var(--gold-d); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-sm);
  padding: 11px 22px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: var(--sans); transition: background .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.07); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: var(--radius-sm);
  padding: 13px 28px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--sans); letter-spacing: .02em;
  transition: background .15s;
}
.btn-cta:hover { background: var(--gold-d); }

/* ── HOMEPAGE HERO ─────────────────────────────── */
.hero-hp {
  background-color: var(--ink);
  background-size: cover; background-position: center;
  padding: 80px 32px 72px;
  position: relative; overflow: hidden;
}
.hero-hp::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(7,17,30,0.88) 0%, rgba(7,17,30,0.65) 55%, rgba(7,17,30,0.4) 100%),
    radial-gradient(ellipse 60% 80% at 100% 110%, rgba(25,55,100,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.hero-hp-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 500px; gap: 48px;
  align-items: center; position: relative;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.hero-hp h1 {
  font-family: var(--sans);
  font-size: 72px; font-weight: 800; color: var(--white);
  line-height: 1.0; margin-bottom: 22px; letter-spacing: -.04em;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.72; max-width: 460px;
}
.hero-stats {
  display: flex; gap: 36px; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid var(--border-dark);
}
.hero-stat-num {
  display: block; font-family: var(--sans);
  font-size: 28px; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-label {
  display: block; font-size: 10px; color: var(--on-dark-muted);
  margin-top: 5px; letter-spacing: .07em; text-transform: uppercase;
}

/* ── FILTER PANEL ──────────────────────────────── */
.filter-panel {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 30px;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
}
.filter-title {
  font-size: 14px; font-weight: 700; color: var(--ink);
  margin-bottom: 22px;
}
.filter-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px;
}
.filter-group label {
  display: block; font-size: 12px; color: var(--text-muted);
  margin-bottom: 7px; font-weight: 600; letter-spacing: .04em;
}
.filter-group select {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px 32px 12px 14px; font-size: 15px;
  color: var(--ink); cursor: pointer; appearance: none;
  font-family: var(--sans);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230d1e35' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color .15s;
}
.filter-group select:focus { outline: none; border-color: var(--navy); }
.filter-group select option { background: #fff; color: var(--ink); }
.filter-actions { display: flex; gap: 10px; margin-top: 6px; }
.btn-reset {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-xs); padding: 12px 20px; font-size: 15px;
  color: var(--text-muted); cursor: pointer; font-family: var(--sans);
  transition: border-color .15s, color .15s;
}
.btn-reset:hover { border-color: var(--navy); color: var(--navy); }
.btn-search {
  flex: 1;
  background: var(--navy); border: none; border-radius: var(--radius-xs);
  padding: 13px 22px; font-size: 15px; font-weight: 700;
  color: #fff; cursor: pointer; font-family: var(--sans);
  letter-spacing: .02em; transition: background .15s;
}
.btn-search:hover { background: var(--navy-3); }

/* ── DESTINATION CARDS SECTION ─────────────────── */
.results-section {
  background: #f5f3ef;
  padding: 52px 0 68px;
}
.results-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 32px;
}
.results-title {
  font-family: var(--sans);
  font-size: 22px; font-weight: 700; color: var(--ink); margin: 0;
}
.results-count { font-size: 13px; color: var(--text-muted); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* Cards — light theme */
.loc-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  display: block; color: var(--text);
  border: 1px solid #e5e0d6;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
  color: var(--text);
}
.loc-card--soon { cursor: default; opacity: .7; }
.loc-card--soon:hover { transform: none; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.loc-card--soon .loc-cta-btn { background: #aaa; }
.loc-img {
  height: 210px; position: relative; overflow: hidden;
  background: #e8e4dc;
}
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-img-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; opacity: .12;
}
.season-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 10px; padding: 4px 11px; border-radius: 20px;
  font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.badge-green { background: rgba(30,68,12,.82); color: #c2f080; backdrop-filter: blur(4px); }
.badge-blue  { background: rgba(10,40,90,.82);  color: #93c8f8; backdrop-filter: blur(4px); }
.badge-amber { background: rgba(80,44,6,.82);   color: #f5c860; backdrop-filter: blur(4px); }

.loc-body { padding: 16px 18px 20px; }

.loc-name-row {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 8px;
  margin-bottom: 3px;
}
.loc-name {
  font-family: var(--sans);
  font-size: 22px; font-weight: 700; color: var(--ink);
  line-height: 1.2;
}
.loc-rating {
  font-size: 13px; font-weight: 600; color: var(--gold);
  white-space: nowrap; flex-shrink: 0;
}
.loc-country {
  font-size: 12px; color: var(--text-muted); margin-bottom: 12px;
  font-weight: 400;
}
.species-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 15px; }
.species-tag {
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  background: #f2eeea; border: 1px solid #ddd8d0; color: #4a4a4a;
}
.card-meta-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.card-meta-pill {
  font-size: 12px; padding: 4px 10px; border-radius: 6px;
  background: #f0ece6; color: var(--text-muted);
  font-weight: 500; display: inline-flex; align-items: center; gap: 4px;
}
.card-meta-price {
  background: #edf6e8; color: #2a6412; font-weight: 700;
}
.loc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid #ede9e0; gap: 10px;
}
.loc-price { font-size: 20px; font-weight: 800; color: var(--ink); }
.loc-price-none { font-size: 13px; color: #bbb; }
.loc-meta { font-size: 11px; color: var(--text-faint); margin-top: 2px; }
.loc-cancellation { font-size: 11px; color: #3a7a1a; font-weight: 500; }
.loc-cta-btn {
  font-size: 13px; font-weight: 700; background: var(--navy);
  color: #fff; border: none; border-radius: 10px;
  padding: 10px 16px; cursor: pointer; font-family: var(--sans);
  white-space: nowrap; transition: background .15s; flex-shrink: 0;
}
.loc-cta-btn:hover { background: var(--navy-3); }
.no-results {
  text-align: center; padding: 72px 20px; color: var(--text-muted);
  grid-column: 1 / -1; font-size: 15px;
}

/* ── HOMEPAGE CONTENT SECTIONS ─────────────────── */
.section { padding: 68px 0; }
.section-sm { padding: 48px 0; }

/* Alternate light bg section */
.section-dark {
  background: #f5f3ef;
}
.section-dark .section-eyebrow,
.section-dark h2,
.section-dark .section-sub { color: inherit; }

.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-d); margin-bottom: 10px;
}
.section h2, .section-dark h2 {
  font-family: var(--sans);
  font-size: 32px; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 10px; color: var(--ink);
}
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 540px; line-height: 1.7; }
.section-header { margin-bottom: 40px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* Season cards */
.season-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  align-items: stretch;
}
.season-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
  transition: box-shadow .15s, transform .15s;
  display: flex; flex-direction: column;
  border-top: 3px solid transparent;
}
.season-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.09); transform: translateY(-2px); }

/* Per-season accent color */
.s-winter  { border-top-color: #4a8fd4; }
.s-spring  { border-top-color: #4a9e3e; }
.s-summer  { border-top-color: var(--gold); }
.s-autumn  { border-top-color: #c97840; }
.s-yearround { border-top-color: var(--navy); }

.season-icon { font-size: 22px; margin-bottom: 12px; }
.season-name {
  font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px;
}
.season-months {
  display: block; font-size: 11px; color: var(--text-faint);
  font-weight: 400; margin-bottom: 14px; letter-spacing: .02em;
}
.season-locs-list {
  list-style: none; flex: 1;
}
.season-locs-list li { border-bottom: 1px solid #f0ece8; }
.season-locs-list li:last-child { border-bottom: none; }
.season-locs-list a, .season-locs-list span {
  display: block; font-size: 13px; color: var(--text-muted);
  padding: 6px 0; transition: color .12s;
}
.season-locs-list a:hover { color: var(--navy); padding-left: 4px; }

/* year-round location links */
.s-yearround .season-locs-list a { color: var(--text-muted); }
.s-yearround .season-locs-list a:hover { color: var(--navy); padding-left: 4px; }

/* Species spotlight */
.species-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.species-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  transition: border-color .2s, box-shadow .2s, transform .2s; cursor: pointer;
}
.species-card:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.species-num {
  font-family: var(--sans);
  font-size: 44px; font-weight: 800; color: var(--navy);
  line-height: 1; margin-bottom: 6px;
}
.species-name-h {
  font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 10px;
}
.species-locs-text {
  font-size: 12px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px;
}
.species-link { font-size: 12px; color: var(--navy); font-weight: 700; }
.species-link:hover { color: var(--navy-3); text-decoration: underline; }

/* What to expect (light section) */
.expect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.expect-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.expect-icon { font-size: 24px; margin-bottom: 12px; }
.expect-title {
  font-family: var(--sans);
  font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--navy);
}
.expect-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* Trust bar — light */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.trust-card {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.trust-card:last-child { border-right: none; }
.trust-icon { font-size: 24px; margin-bottom: 10px; }
.trust-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.trust-text { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ── FAQ ───────────────────────────────────────── */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
}
.faq-item {
  border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 16px; font-weight: 600; color: var(--navy);
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px; user-select: none;
}
.faq-q span, .faq-q h3 { flex: 1; font-size: 16px; font-weight: 600; margin: 0; padding: 0; }
.faq-chevron {
  font-size: 18px; color: var(--gold); transition: transform .2s;
  flex-shrink: 0; margin-top: 2px;
}
.faq-a {
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
  margin-top: 14px; display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ── BOTTOM CTA ────────────────────────────────── */
.loc-explore-more {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 28px;
  padding: 16px 24px;
  background: var(--cream);
  border-radius: var(--radius-xs);
}
.loc-explore-more a { color: var(--navy); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.loc-explore-more a:hover { color: var(--gold); text-decoration: none; }

.bottom-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 56px 52px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
  margin: 0 0 72px;
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta-text h3 {
  font-family: var(--sans);
  font-size: 30px; font-weight: 700; color: var(--white);
  margin-bottom: 8px; line-height: 1.2;
}
.bottom-cta-text p { font-size: 14px; color: var(--on-dark-muted); }
.btn-inv {
  background: var(--gold); color: var(--ink);
  border: none; border-radius: var(--radius-sm);
  padding: 15px 34px; font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  font-family: var(--sans); letter-spacing: .02em;
  display: inline-block; flex-shrink: 0; transition: background .15s;
}
.btn-inv:hover { background: var(--gold-d); }

/* ── FOOTER ────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 36px 32px;
  border-top: 1px solid var(--border-dark);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 12px; color: var(--on-dark-muted); transition: color .15s;
}
.footer-links a:hover { color: var(--gold-l); }
.footer-seo-link {
  font-size: 13px; color: var(--on-dark-muted); margin-bottom: 10px;
}
.footer-seo-link a { color: var(--gold-l); text-decoration: none; }
.footer-seo-link a:hover { text-decoration: underline; }
.footer-disclosure {
  font-size: 11px; color: var(--on-dark-faint);
  max-width: 480px; line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   LOCATION PAGE STYLES
══════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  font-size: 12px; color: var(--text-faint); padding: 14px 0 6px;
  background: transparent;
}
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 8px; color: #ccc; }

/* Anchor nav */
.anchor-nav {
  display: flex; gap: 6px; flex-wrap: nowrap; overflow-x: auto;
  padding: 18px 20px; scrollbar-width: none;
}
.anchor-nav::-webkit-scrollbar { display: none; }
.anchor-nav a {
  font-size: 12px; padding: 5px 14px; white-space: nowrap; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 20px;
  color: var(--text-muted); background: var(--white);
  transition: all .15s;
}
.anchor-nav a:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* Location hero */
.loc-hero {
  background-color: var(--ink);
  background-size: cover;
  background-position: center right;
  min-height: 520px;
  display: flex; align-items: center;
  padding: 72px 32px 64px;
  position: relative; overflow: hidden;
}
/* Gradient: dark on left (text readable), transparent on right (whale visible) */
.loc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,17,30,0.95) 0%,
    rgba(7,17,30,0.88) 30%,
    rgba(7,17,30,0.55) 58%,
    rgba(7,17,30,0.10) 100%
  );
  pointer-events: none;
}
.loc-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; width: 100%;
}
/* Text content constrained to left half so whale shows on right */
.loc-hero-text { max-width: 560px; }

/* Split hero: text left, booking widget right */
.loc-hero-split {
  display: flex; align-items: flex-start; gap: 48px;
}
.loc-hero-split .loc-hero-text { flex: 1; min-width: 0; max-width: 540px; }
.loc-hero-widget { flex-shrink: 0; width: 680px; }
.gyg-avail-panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.gyg-avail-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-l);
  margin-bottom: 14px;
}
@media (max-width: 860px) {
  .loc-hero-split { flex-direction: column; }
  .loc-hero-widget { width: 100%; max-width: 480px; }
}
.loc-hero .eyebrow {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 14px; font-weight: 700;
}
.loc-hero h1 {
  font-family: var(--sans);
  font-size: 52px; font-weight: 800; color: var(--white);
  line-height: 1.06; margin-bottom: 20px; letter-spacing: -.035em;
}
.loc-hero-intro {
  font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.8;
  margin-bottom: 22px;
}
.pill-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: 12px; padding: 5px 14px; border-radius: 20px;
  background: rgba(255,255,255,.07); color: var(--on-dark-muted);
  border: 1px solid var(--border-dark);
}

/* Stat strip */
.stat-strip { background: var(--navy-2); border-bottom: 1px solid var(--border-dark); }
.stat-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; overflow-x: auto; justify-content: center;
}
.stat-item {
  padding: 20px 34px; border-right: 1px solid var(--border-dark);
  text-align: center; flex-shrink: 0;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--sans);
  font-size: 23px; font-weight: 800; color: var(--gold-l); display: block;
}
.stat-label {
  font-size: 10px; color: rgba(255,255,255,.6);
  letter-spacing: .06em; text-transform: uppercase; margin-top: 4px;
}

/* Full-width tour section above two-col */
.loc-tours-full { margin-bottom: 56px; }

/* Two-column layout */
.loc-content { max-width: 1200px; margin: 0 auto; padding: 44px 32px 72px; }
.two-col {
  display: grid; grid-template-columns: 1fr 296px; gap: 44px; align-items: start;
}
.main-col { min-width: 0; }
.sidebar-col { position: sticky; top: 76px; }

/* Section headings */
.loc-section { margin-bottom: 56px; }
.loc-section h2 {
  font-family: var(--sans);
  font-size: 26px; font-weight: 700; color: var(--navy);
  margin-bottom: 20px;
}
.loc-section h3 {
  font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--navy);
}
.loc-section p {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; font-size: 15px;
}

/* ── TOUR CARDS — GYG/Viator style ─────────────── */
.tour-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tours section heading */
.tours-section-h2 {
  font-family: var(--sans);
  font-size: 26px; font-weight: 700; color: var(--navy);
  margin-bottom: 20px;
}
.tour-card {
  background: var(--white);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 18px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
  border: none;
}
.tour-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.13); transform: translateY(-3px); }

/* Image */
.tour-img {
  height: 260px; position: relative; overflow: hidden; flex-shrink: 0;
  background: #d8d4cc;
}
.tour-img img { width: 100%; height: 100%; object-fit: cover; }
.tour-img-grad-1 { background: linear-gradient(135deg, #0a2a4a, #1a4a7a); }
.tour-img-grad-2 { background: linear-gradient(135deg, #0d3a5c, #1e5c8a); }
.tour-img-grad-3 { background: linear-gradient(135deg, #0f2b1f, #1a5240); }
.tour-img-grad-4 { background: linear-gradient(135deg, #1a1a3a, #2a3a6a); }
.tour-img-grad-5 { background: linear-gradient(135deg, #2a1a0a, #5a3820); }
.tour-img-grad-6 { background: linear-gradient(135deg, #0a2a3a, #0f4a5a); }
.tour-img::before { display: none; }

.tour-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: 11px; padding: 4px 12px; border-radius: 6px;
  background: var(--gold); color: var(--ink);
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.tour-price-pill {
  position: absolute; bottom: 14px; right: 14px; z-index: 1;
  background: #fff; color: var(--ink);
  font-size: 15px; font-weight: 700;
  padding: 7px 16px; border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

/* Card body */
.tour-body {
  padding: 22px 24px 24px; flex: 1;
  display: flex; flex-direction: column;
}
h3.tour-name, .tour-name {
  font-family: var(--sans);
  font-size: 16px; font-weight: 700; color: var(--ink);
  line-height: 1.3; margin-bottom: 10px;
}
.tour-meta-row {
  display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
  font-size: 14px; margin-bottom: 16px;
}
.tour-rating-stars { color: #f59e0b; letter-spacing: -.04em; }
.tour-rating-val { font-weight: 700; color: var(--ink); }
.tour-rating-count { color: var(--text-muted); }
.tour-meta-dot { color: var(--text-faint); }
.tour-duration { color: var(--text-muted); }

/* Highlights checklist */
.tour-highlights {
  list-style: none; margin-bottom: 20px; flex: 1;
}
.tour-highlights li {
  font-size: 14px; color: var(--text-muted);
  padding: 5px 0 5px 24px;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid #f5f2ee;
}
.tour-highlights li:last-child { border-bottom: none; }
.tour-highlights li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--navy); font-weight: 700; font-size: 13px;
}

/* "Read the full guide" link on tour cards */
.tour-guide-link {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 14px;
  transition: color .15s;
}
.tour-guide-link:hover { color: var(--navy-3); text-decoration: underline; }

/* CTA — pill button */
.btn-check-avail {
  display: block; text-align: center;
  background: var(--navy); color: #fff;
  border-radius: 50px;
  padding: 15px 24px; font-size: 16px; font-weight: 700;
  font-family: var(--sans); letter-spacing: .01em;
  transition: background .15s; margin-top: auto;
}
.btn-check-avail:hover { background: var(--navy-3); color: #fff; }

.gyg-badge, .viator-badge {
  font-size: 10px; padding: 3px 8px; border-radius: 4px; font-weight: 700;
}
.gyg-badge    { background: #FF5533; color: #fff; }
.viator-badge { background: #2A2A5F; color: #fff; }
.tour-perks { display: none; }
.tour-editors-pick, .tour-platform-row { display: none; }
.view-all-link { text-align: center; padding: 14px 0; font-size: 13px; font-weight: 600; color: var(--navy); }
.view-all-link:hover { color: var(--navy-3); }

/* Sidebar */
.sidebar-box {
  background: var(--navy); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 22px; margin-bottom: 14px;
}
.sidebar-box h4 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dark);
}
.sidebar-mini-booking .tour-title {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600; margin-bottom: 14px;
  color: var(--white); line-height: 1.35;
}
.sidebar-best-time { font-size: 13px; color: var(--on-dark); line-height: 1.8; }
.month-score-list { list-style: none; padding: 0; margin: 6px 0 0; }
.month-score-list li { font-size: 12px; padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,.07); color: var(--on-dark-muted); }
.month-score-list li .month-name { color: var(--gold-l); font-weight: 600; min-width: 80px; display: inline-block; }
.month-score-list li.month-score-5 .month-name { color: #fff; }
.month-score-list li.month-score-4 .month-name { color: var(--gold-l); }
.month-score-list li.month-score-3 .month-name { color: rgba(255,255,255,.7); }
.species-pill-list { display: flex; flex-wrap: wrap; gap: 6px; }
.species-pill { font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
.species-resident { background: rgba(39,80,10,.45); color: #a8d870; }
.species-seasonal  { background: rgba(20,55,110,.5);  color: #8ec8f8; }
.species-rare      { background: rgba(90,50,8,.5);    color: #f0c070; }
.depart-list { font-size: 13px; color: var(--on-dark); }
.depart-list li { padding: 8px 0; list-style: none; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border-dark); }
.depart-list li:last-child { border-bottom: none; }
.depart-list li::before { content: "→"; color: var(--gold); font-size: 12px; }
.sidebar-box .bring-list { color: var(--on-dark); }
.sidebar-box .bring-list li { border-bottom-color: var(--border-dark); }

/* Tour types */
.tour-types-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px;
}
.tour-type-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: border-color .15s, box-shadow .15s;
}
.tour-type-card.popular {
  border: 2px solid var(--gold);
  background: #fffdf5;
}
.tour-type-card:hover { border-color: #c0b8a8; box-shadow: 0 2px 10px rgba(0,0,0,.07); }
.tour-type-card.popular:hover { border-color: var(--gold-d); }
.tour-type-badge {
  font-size: 10px; background: var(--gold); color: var(--ink);
  padding: 2px 8px; border-radius: 4px; font-weight: 700;
  display: inline-block; margin-bottom: 10px; letter-spacing: .04em;
}
.tour-type-name {
  font-family: var(--sans);
  font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--navy);
}
.tour-type-sub { font-size: 12px; color: var(--text-faint); margin-bottom: 10px; }
.tour-type-features { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.tour-type-price { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 12px; }

/* Tip / info boxes */
.tip-box {
  background: #fdf8ed; border: 1px solid var(--gold-l);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 13px; color: #6b4708; line-height: 1.72; margin-top: 18px;
}
.info-box {
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 13px; color: var(--text-muted); line-height: 1.72; margin-top: 18px;
}

/* Species table */
.species-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.species-table th {
  text-align: left; padding: 11px 13px; font-size: 10px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-faint); border-bottom: 2px solid var(--border);
  background: var(--cream); white-space: nowrap;
}
.species-table td {
  padding: 11px 13px; border-bottom: 1px solid var(--border); vertical-align: middle;
}
.species-table tr:last-child td { border-bottom: none; }
.species-table tr:hover td { background: var(--cream); }
.s-tag {
  display: inline-block; font-size: 10px; padding: 2px 9px;
  border-radius: 4px; font-weight: 700; white-space: nowrap; letter-spacing: .02em;
}
.s-resident   { background: #d4edbb; color: #27500A; }
.s-seasonal   { background: #cce4f8; color: #0C447C; }
.s-occasional { background: #fae8c6; color: #633806; }
.s-none       { color: #ddd; font-size: 12px; }

/* What to expect — vertical steps */
.expect-steps { display: flex; flex-direction: column; }
.expect-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 18px 0;
}
.expect-step-num {
  font-size: 36px; font-weight: 800; color: var(--gold);
  min-width: 44px; line-height: 1; padding-top: 1px;
  font-variant-numeric: tabular-nums; letter-spacing: -.03em;
}
h3.expect-step-title, .expect-step-title {
  font-family: var(--sans);
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.2;
}
.expect-step-desc { font-size: 14px; color: var(--text); line-height: 1.68; margin-bottom: 8px; }
.expect-step-tip {
  font-size: 12px; color: var(--text-faint); line-height: 1.55;
  padding: 6px 10px; background: var(--cream); border-radius: 6px;
  display: inline-block;
}

/* Bring / leave */
.bring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bring-list { list-style: none; font-size: 14px; color: var(--text-muted); }
.bring-list li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.bring-list li:last-child { border-bottom: none; }
.bring-yes::before { content: "✓"; color: #27500A; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.bring-no::before  { content: "✗"; color: #DC2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Departure ports table */
.ports-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.ports-table th {
  text-align: left; padding: 11px 13px; font-size: 10px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-faint); border-bottom: 2px solid var(--border);
  background: var(--cream);
}
.ports-table td {
  padding: 11px 13px; border-bottom: 1px solid var(--border);
  vertical-align: top; line-height: 1.55;
}
.ports-table tr:last-child td { border-bottom: none; }
.ports-table tr:hover td { background: var(--cream); }

/* Ethics */
.ethics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ethics-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid;
}
.ethics-col.good h4 { color: var(--green); border-color: var(--green); }
.ethics-col.bad  h4 { color: #DC2626; border-color: #DC2626; }
.ethics-list { list-style: none; font-size: 13px; color: var(--text-muted); }
.ethics-list li {
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.ethics-list li:last-child { border-bottom: none; }
.ethics-col.good .ethics-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.ethics-col.bad  .ethics-list li::before { content: "✗"; color: #DC2626; font-weight: 700; flex-shrink: 0; }

/* Full-width FAQ below the two-col grid */
.loc-faq-full {
  border-top: 1px solid var(--border);
  padding-top: 48px; margin-bottom: 0;
}
.loc-faq-full h2 { margin-bottom: 28px; }

/* Location-page FAQ — 2 columns */
.loc-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
}
.loc-faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; cursor: pointer; }
.loc-faq-item:last-child { border-bottom: none; }
.loc-faq-q {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 14px; user-select: none;
}
.faq-q-text {
  font-family: var(--sans);
  font-size: 15px; font-weight: 500; color: var(--navy);
  line-height: 1.45; flex: 1; letter-spacing: 0;
}
.loc-faq-chevron { font-size: 18px; color: var(--gold); transition: transform .2s; flex-shrink: 0; margin-top: 1px; }
.loc-faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-top: 12px; display: none; }
.loc-faq-item.open .loc-faq-a { display: block; }
.loc-faq-item.open .loc-faq-chevron { transform: rotate(180deg); }
.loc-faq-a a { color: var(--navy); text-decoration: underline; }

/* No-tours page */
.no-tours-notice {
  background: var(--amber-bg); border: 1px solid #e5c087;
  border-radius: var(--radius); padding: 20px 24px;
  font-size: 14px; color: var(--amber); margin-bottom: 28px;
}

/* Section header image (above H2) */
.section-header-img {
  width: 100%; height: 260px; overflow: hidden;
  border-radius: var(--radius); margin-bottom: 20px;
  background: var(--cream);
}
.section-header-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Key takeaways strip */
.key-takeaways-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.key-takeaways-list {
  list-style: none; display: flex; flex-direction: column; gap: 0;
}
.key-takeaways-list li {
  font-size: 14px; color: var(--text); line-height: 1.6;
  padding: 10px 0 10px 28px; border-bottom: 1px solid var(--border);
  position: relative;
}
.key-takeaways-list li:last-child { border-bottom: none; }
.key-takeaways-list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  color: var(--gold-d); font-weight: 700; font-size: 14px;
}

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th {
  text-align: left; padding: 10px 14px; font-size: 10px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-faint); border-bottom: 2px solid var(--border);
  background: var(--cream); white-space: nowrap;
}
.compare-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--cream); }
.compare-detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px;
}
.compare-detail-card {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 16px 18px; border: 1px solid var(--border);
}
.compare-detail-type {
  font-size: 13px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.compare-detail-row { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-top: 6px; }
.compare-label {
  font-weight: 700; color: var(--text); display: block; font-size: 10px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px;
}

/* Month by month */
.month-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.month-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 14px;
  border-top: 4px solid var(--border);
}
.month-card.month-peak  { border-top-color: #27500A; background: #f4fced; }
.month-card.month-high  { border-top-color: var(--gold-d); }
.month-card.month-medium { border-top-color: #8ab4d4; }
.month-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.month-level-bar {
  height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 10px; overflow: hidden;
}
.month-level-fill { display: block; height: 100%; border-radius: 2px; }
.month-fill-peak   { width: 100%; background: #27500A; }
.month-fill-high   { width: 75%; background: var(--gold-d); }
.month-fill-medium { width: 45%; background: #8ab4d4; }
.month-notes { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Harbor guide */
.harbor-list { display: flex; flex-direction: column; gap: 16px; }
.harbor-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 22px;
}
.harbor-header {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px;
}
h3.harbor-name, .harbor-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 0; }
.harbor-location { font-size: 12px; color: var(--text-faint); }
.harbor-drive { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.harbor-best { font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 8px; }
.harbor-tip {
  font-size: 12px; color: var(--text-faint); padding: 6px 10px;
  background: var(--cream); border-radius: 6px; display: inline-block;
}

/* Whale behavior */
.behavior-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.behavior-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: box-shadow .15s;
}
.behavior-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.10); }
.behavior-img {
  width: 100%; height: 200px; overflow: hidden; background: var(--cream);
}
.behavior-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.behavior-body { padding: 16px 18px 18px; }
.behavior-header { margin-bottom: 8px; }
.behavior-name { font-size: 16px; font-weight: 700; color: var(--navy); }
.behavior-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 10px; }
.behavior-freq {
  font-size: 11px; font-weight: 600; color: var(--gold-d);
  background: #fdf5e0; padding: 3px 9px; border-radius: 4px; display: inline-block;
}

/* YouTube video */
.video-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; position: relative; background: #000; }
.video-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-caption { font-size: 12px; color: var(--text-faint); margin-top: 10px; }

/* Shoreline spots */
.section-lead { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.shoreline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.shoreline-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 22px;
}
.shoreline-header { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
h3.shoreline-name, .shoreline-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 0; }
.shoreline-badge {
  font-size: 10px; background: var(--gold); color: var(--ink);
  padding: 2px 8px; border-radius: 4px; font-weight: 700; flex-shrink: 0;
}
.shoreline-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 8px; }
.shoreline-tip {
  font-size: 12px; color: var(--text-faint); padding: 6px 10px;
  background: var(--cream); border-radius: 6px; display: inline-block;
}

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ── New classes for homepage sections (mobile-friendly) ── */
.wildlife-also-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.responsible-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  max-width: 920px; margin: 0 auto;
}
.responsible-mini-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1020px) {
  .hero-hp h1 { font-size: 54px; }
  .hero-hp-inner { grid-template-columns: 1fr; gap: 36px; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .season-grid { grid-template-columns: repeat(3, 1fr); }
  .species-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .expect-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-card { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .trust-card:last-child { border-bottom: none; }
  .two-col { grid-template-columns: 1fr; }
  .sidebar-col { position: static; }
  .tour-card-inner { grid-template-columns: 1fr; }
  .tour-img { height: 200px; }
  .tour-list-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-types-grid { grid-template-columns: 1fr 1fr; }
  .bring-grid { grid-template-columns: 1fr; }
  .ethics-grid { grid-template-columns: 1fr; }
  .wildlife-also-grid { grid-template-columns: repeat(3, 1fr); }
  .responsible-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 16px; gap: 8px; }
  .nav-hamburger { display: flex; }
  .btn-nav { font-size: 12px; padding: 7px 12px; white-space: nowrap; }
}
@media (max-width: 600px) {
  .hero-hp { padding: 44px 18px 36px; }
  .hero-hp h1 { font-size: 34px; letter-spacing: -.025em; }
  .hero-sub { font-size: 15px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; margin-top: 28px; padding-top: 22px; }
  .hero-stat-num { font-size: 22px; }
  .filter-panel { padding: 22px 18px 20px; border-radius: 12px; }
  .filter-grid { grid-template-columns: 1fr; gap: 12px; }
  .filter-actions { flex-direction: column; }
  .btn-search, .btn-reset { width: 100%; }
  .loc-hero { padding: 44px 20px 36px; }
  .loc-hero h1 { font-size: 34px; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .species-grid { grid-template-columns: 1fr !important; }
  .expect-grid { grid-template-columns: 1fr !important; }
  .trust-grid { grid-template-columns: 1fr !important; }
  .wildlife-also-grid { grid-template-columns: repeat(2, 1fr); }
  .responsible-mini-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tour-list-grid { grid-template-columns: 1fr; }
  .tour-types-grid { grid-template-columns: 1fr; }
  .bottom-cta { flex-direction: column; text-align: center; padding: 36px 24px; }
  .stat-strip-inner { justify-content: flex-start; }
  .anchor-nav { gap: 4px; }
  .container, .container-narrow { padding: 0 16px; }
  .loc-content { padding: 28px 16px 52px; }
  .section { padding: 40px 0; }
  .section h2 { font-size: 26px; }
  .section-sub { font-size: 14px; }
  .results-section { padding: 36px 0 48px; }
  .loc-card { border-radius: 12px; }
}

/* ── Static pages (About, Contact, Privacy, Terms, Cookie) ── */
.static-page { min-height: 60vh; }
.static-hero {
  background: var(--navy); padding: 52px 0 40px;
}
.static-h1 {
  font-family: var(--sans); font-size: 38px; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 10px;
}
.static-subtitle {
  font-size: 16px; color: rgba(255,255,255,.72); margin: 0;
}
.static-body {
  padding: 52px 0 80px;
}
.static-body h2 {
  font-family: var(--sans); font-size: 22px; font-weight: 700;
  color: var(--navy); margin: 40px 0 12px;
}
.static-body h2:first-child { margin-top: 0; }
.static-body h3 {
  font-size: 16px; font-weight: 700; color: var(--ink); margin: 24px 0 8px;
}
.static-body p {
  font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 14px;
}
.static-body ul, .static-body ol {
  font-size: 15px; color: var(--text); line-height: 1.75;
  padding-left: 24px; margin-bottom: 14px;
}
.static-body li { margin-bottom: 6px; }
.static-body a { color: var(--navy); text-decoration: underline; }
.static-body a:hover { color: var(--gold); }
.static-body .last-updated {
  font-size: 13px; color: var(--text-faint); margin-bottom: 32px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px;
}
.contact-card {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 28px 24px;
}
.contact-card h3 { margin-top: 0; }
.contact-card p { margin-bottom: 0; }
.contact-card a { color: var(--navy); font-weight: 600; }
@media (max-width: 640px) {
  .static-h1 { font-size: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── BLOG POST ───────────────────────────────── */
.blog-hero {
  background: var(--navy);
  padding: 44px 0 36px;
}
.blog-hero .container-narrow { max-width: 780px; margin: 0 auto; padding: 0 32px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb-sep { margin: 0 6px; opacity: .4; }
.blog-category-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 14px;
}
.blog-h1 {
  font-family: var(--sans); font-size: 40px; font-weight: 800;
  color: #fff; line-height: 1.12; letter-spacing: -.03em;
  margin-bottom: 18px;
}
.blog-meta-row { font-size: 14px; color: rgba(255,255,255,.55); }
.blog-meta-sep { margin: 0 8px; }
.blog-hero-img-wrap { background: #1a2332; line-height: 0; }
.blog-hero-img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.blog-figure { margin: 32px 0; line-height: 0; }
.blog-figure img { width: 100%; border-radius: 10px; display: block; }
.blog-figure figcaption { font-size: 13px; color: #7a8694; line-height: 1.5; margin-top: 8px; padding: 0 2px; }
.blog-body-wrap { padding: 56px 0 80px; }
.blog-body-wrap .container-narrow { max-width: 780px; margin: 0 auto; padding: 0 32px; }

/* Blog typography */
.blog-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.blog-lead { font-size: 18px; line-height: 1.75; color: var(--ink); font-weight: 400; margin-bottom: 22px; }
.blog-content p { margin-bottom: 18px; }
.blog-content h2 {
  font-family: var(--sans); font-size: 26px; font-weight: 700;
  color: var(--navy); margin: 52px 0 16px; padding-top: 8px;
  border-top: 2px solid var(--border); line-height: 1.25;
}
.blog-content h3 {
  font-family: var(--sans); font-size: 19px; font-weight: 700;
  color: var(--ink); margin: 32px 0 12px;
}
.blog-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.blog-content a:hover { color: var(--gold); text-decoration: none; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-content li { margin-bottom: 8px; }
.blog-content strong { color: var(--ink); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0 0 24px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '☐'; font-size: 18px; color: var(--navy);
  flex-shrink: 0; margin-top: -1px;
}

/* Tip list */
.tip-list { list-style: none; padding: 0; margin: 0 0 24px; }
.tip-list li { padding: 10px 0 10px 32px; border-bottom: 1px solid var(--border); position: relative; font-size: 15px; line-height: 1.6; }
.tip-list li:last-child { border-bottom: none; }
.tip-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-d); font-weight: 700; }

/* Tables */
.blog-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0 32px; font-size: 14px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.blog-table thead tr { background: var(--navy); color: #fff; }
.blog-table th {
  padding: 12px 16px; text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.blog-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  vertical-align: top; line-height: 1.6; color: var(--text);
}
.blog-table tr:last-child td { border-bottom: none; }
.blog-table tbody tr:nth-child(odd) { background: var(--cream); }
.blog-table tbody tr:nth-child(even) { background: #fff; }
.wear-table thead tr { background: #2a4a2a; }
.compare-table thead tr { background: #1a2a4a; }
.climate-table thead tr { background: var(--navy); }
.climate-table th { white-space: nowrap; }

/* Callout boxes */
.callout {
  border-radius: var(--radius-sm); padding: 16px 20px;
  margin: 24px 0; font-size: 14px; line-height: 1.7;
}
.callout-tip { background: #f0f9f0; border-left: 4px solid #4caf50; }
.callout-warn { background: #fff8f0; border-left: 4px solid #ff9800; }
.callout strong { font-weight: 700; }
.callout a { color: var(--navy); }

/* Packing grid */
.pack-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 20px 0 28px; }
.pack-group {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 20px 18px;
}
.pack-group h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.pack-group ul { list-style: none; padding: 0; margin: 0; }
.pack-group li { font-size: 13px; color: var(--text); padding: 5px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.pack-group li:last-child { border-bottom: none; }
.pack-group li::before { content: '✓ '; color: #4caf50; font-weight: 700; }

/* Bottom CTA */
.blog-cta-bottom {
  margin-top: 56px; padding: 32px 36px;
  background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.blog-cta-text { color: rgba(255,255,255,.9); }
.blog-cta-text strong { display: block; font-size: 18px; color: #fff; margin-bottom: 4px; }
.blog-cta-text span { font-size: 14px; }

/* Blog index */
.blog-index-sub {
  font-size: 17px; color: rgba(255,255,255,.7); margin: 12px 0 0; line-height: 1.6;
}
.blog-index-body { padding: 56px 0 80px; }
.blog-index-grid { display: flex; flex-direction: column; gap: 32px; }
.blog-card {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  background: #fff; border-radius: var(--radius);
  border: 1px solid #e8e4dc; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.blog-card-cat { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-d); }
.blog-card-dot { color: var(--text-faint); font-size: 12px; }
.blog-card-time { font-size: 12px; color: var(--text-muted); }
.blog-card-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.35; margin: 0 0 12px; letter-spacing: -.01em; }
.blog-card-desc { font-size: 14px; color: var(--text); line-height: 1.7; margin: 0 0 20px; }
.blog-card-cta { font-size: 13px; font-weight: 600; color: var(--navy); }
@media (max-width: 760px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { aspect-ratio: 16/9; }
  .blog-card-body { padding: 20px 20px 24px; }
  .blog-card-title { font-size: 19px; }
}

/* Blog responsive */
@media (max-width: 900px) {
  .pack-grid { grid-template-columns: repeat(2,1fr); }
  .blog-table { font-size: 13px; }
  .blog-table th, .blog-table td { padding: 10px 12px; }
}
@media (max-width: 640px) {
  .blog-h1 { font-size: 28px; }
  .blog-hero .container-narrow, .blog-body-wrap .container-narrow { padding: 0 18px; }
  .blog-content h2 { font-size: 22px; }
  .blog-content h3 { font-size: 17px; }
  .blog-lead { font-size: 16px; }
  .pack-grid { grid-template-columns: 1fr; }
  .blog-cta-bottom { flex-direction: column; text-align: center; padding: 24px 20px; }
  .blog-table { display: block; overflow-x: auto; }
  .climate-table th, .climate-table td { min-width: 120px; }
}

/* What to Wear section */
.wear-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.wear-col { background: #f8f7f4; border-radius: 12px; padding: 24px; }
.wear-raft { border-top: 3px solid #2563EB; }
.wear-cat { border-top: 3px solid #059669; }
.wear-col-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.wear-icon { font-size: 28px; line-height: 1; }
.wear-col-head strong { display: block; font-size: 15px; font-weight: 700; color: #1a2332; margin-bottom: 3px; }
.wear-note { display: block; font-size: 12px; color: #e55a00; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.wear-tour-list { list-style: none; margin: 0 0 16px; padding: 0; border-bottom: 1px solid #e8e4dc; padding-bottom: 14px; }
.wear-tour-list li { font-size: 13px; margin-bottom: 5px; color: #4a5568; }
.wear-tour-list a { color: #1a5276; text-decoration: underline; text-underline-offset: 2px; }
.wear-tour-list a:hover { color: #2563EB; }
.wear-items { margin-top: 4px; }
.wear-both-note { font-size: 14px; color: #6b7280; font-style: italic; background: #f0f0ec; padding: 14px 18px; border-radius: 8px; line-height: 1.6; }
@media (max-width: 700px) { .wear-grid { grid-template-columns: 1fr; } }
