/* ============================================================
   TOUR Z PALAWAN — REDESIGNED STYLESHEET
   Inspired by: Harmont (framed hero) + Voices United (bold cards)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300&display=swap');

/* === VARIABLES === */
:root {
  --primary:      #002c40;
  --accent:       #fa3d1b;
  --white:        #ffffff;
  --cream:        #f0eeeb;
  --off-white:    #f7f6f3;
  --border:       rgba(0, 44, 64, 0.10);
  --border-dark:  rgba(255, 255, 255, 0.12);
  --muted:        rgba(0, 44, 64, 0.55);
  --font:         'Nunito', system-ui, sans-serif;
  --h1:           clamp(40px, 7vw, 86px);
  --h2:           clamp(30px, 4.5vw, 54px);
  --h3:           clamp(18px, 2.5vw, 26px);
  --section-py:   clamp(72px, 10vw, 128px);
  --container:    1200px;
  --gutter:       clamp(20px, 5vw, 80px);
  --radius-lg:    24px;
  --radius:       16px;
  --radius-pill:  999px;
  --shadow:       0 4px 24px rgba(0, 44, 64, 0.08);
  --shadow-md:    0 8px 40px rgba(0, 44, 64, 0.14);
  --shadow-lg:    0 16px 60px rgba(0, 44, 64, 0.20);
  --transition:   0.24s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--primary);
  background: var(--cream); /* warm cream — shows around framed hero */
  font-size: 18px;
  line-height: 1.72;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.1; }
h1 { font-size: var(--h1); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--h2); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: var(--h3); font-weight: 700; }
p { max-width: 65ch; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.text-accent { color: var(--accent); }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-py) 0; background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--primary); color: var(--white); }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(250, 61, 27, 0.32);
}
.btn--primary:hover { box-shadow: 0 8px 28px rgba(250, 61, 27, 0.46); }

.btn--dark {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 44, 64, 0.22);
}
.btn--dark:hover { background: #003a54; }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.60);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.10); border-color: var(--white); }

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline-dark:hover { background: var(--primary); color: var(--white); }

/* === NAV — transparent at top, frosted white on scroll === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 88px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  transition: background 0.38s ease, box-shadow 0.38s ease, height 0.38s ease;
}

/* Scrolled: floating pill */
.nav.scrolled {
  left: 14px;
  right: 14px;
  top: 8px;
  border-radius: 18px;
  padding: 0 24px;
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 2px 24px rgba(0, 44, 64, 0.12), 0 0 0 1px rgba(0, 44, 64, 0.08);
}

/* Logo — overflow-crop technique (both files are 1080×1080, logo at same position) */
.nav__logo {
  justify-self: start;
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 48px;
  flex-shrink: 0;
}
.nav__logo .logo--light,
.nav__logo .logo--dark {
  position: absolute;
  height: 173px;
  width: auto;
  max-width: none;
  left: -22px;
  top: -61px;
}
/* Toggle: show white on dark bg, dark on frosted white */
.logo--dark { display: none; }
.nav.scrolled .logo--light { display: none; }
.nav.scrolled .logo--dark  { display: block; }

/* Links — center column */
.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Right column: CTA + hamburger */
.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a       { color: rgba(0, 44, 64, 0.62); }
.nav.scrolled .nav__links a:hover { color: var(--primary); }

/* CTA pill */
.nav__cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(250,61,27,0.32);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav__cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(250,61,27,0.46) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 201;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--primary); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HOME PAGE NAV — hidden until scrolled past hero === */
.nav--home {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.38s ease, transform 0.38s ease, box-shadow 0.38s ease;
}
.nav--home .nav__logo  { justify-self: start; }
.nav--home .nav__links { justify-self: center; }
.nav--home .nav__right { justify-self: end; }
.nav--home .nav__links a       { color: rgba(0, 44, 64, 0.62); }
.nav--home .nav__links a:hover { color: var(--primary); }
.nav--home .nav__hamburger span { background: var(--primary); }
.nav--home.scrolled {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  left: 14px;
  right: 14px;
  top: 8px;
  border-radius: 18px;
  padding: 0 24px;
  height: 68px;
  box-shadow: 0 2px 24px rgba(0, 44, 64, 0.12), 0 0 0 1px rgba(0, 44, 64, 0.08);
}

/* Mobile overlay */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav__mobile-overlay.open { opacity: 1; pointer-events: all; }
.nav__mobile-overlay a { color: var(--white); font-size: 26px; font-weight: 700; opacity: 0.82; }
.nav__mobile-overlay a:hover { opacity: 1; }
.nav__mobile-overlay .btn--primary { font-size: 18px; padding: 16px 40px; margin-top: 12px; opacity: 1 !important; }

/* === HERO NAV — transparent, inside framed hero card (home page only) === */
.hero-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.hero-nav__logo {
  justify-self: start;
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 48px;
  flex-shrink: 0;
}
.hero-nav__logo img {
  position: absolute;
  height: 173px;
  width: auto;
  max-width: none;
  left: -22px;
  top: -61px;
  /* Always on dark hero background — logo-white.png used directly */
}
.hero-nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.hero-nav__link:hover { color: var(--white); }
.hero-nav__cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(250,61,27,0.32);
}
.hero-nav__cta:hover { background: #e0340f; transform: translateY(-1px); }
.hero-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 201;
}
.hero-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hero-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hero-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.hero-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO — BASE (inner pages: full bleed behind nav) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.hero--medium { min-height: 68vh; }
.hero--short  { min-height: 50vh; }

/* Blog hero — solid brand colour, no background image */
.hero--blog {
  min-height: 34vh;
  background: var(--primary);
  justify-content: center;
}
.hero--blog .hero__content {
  padding: 110px var(--gutter) 56px;
}
.hero--blog .hero__content h1 {
  font-size: clamp(21px, 3vw, 40px);
  line-height: 1.15;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--primary); /* shows if image missing */
}
.hero__bg img,
.hero__bg video { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 44, 64, 0.60);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px var(--gutter) 180px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero__content h1 { color: var(--white); margin-bottom: 18px; }

.hero__sub {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  margin: 0 auto 36px;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Booking bar — bottom of hero */
.hero__booking-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 0 40px 36px;
  display: flex;
  justify-content: center;
}

.booking-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,0.24);
  display: flex;
  align-items: center;
  padding: 8px 10px;
  gap: 4px;
  max-width: 680px;
  width: 100%;
}
.booking-bar__item {
  flex: 1;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: 10px;
  transition: background var(--transition);
}
.booking-bar__item:hover { background: var(--off-white); }
.booking-bar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-bar__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.booking-bar__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.booking-bar .btn { padding: 11px 20px; font-size: 14px; margin-left: 4px; flex-shrink: 0; }

/* === HERO — FRAMED VARIANT (home page) === */
.hero--framed {
  margin: 16px;
  border-radius: var(--radius-lg);
  min-height: calc(100vh - 32px);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.25), 0 24px 80px rgba(0,0,0,0.18);
  justify-content: center;
}
.hero--framed .hero__content {
  padding-top: 80px;
  padding-bottom: 100px;
}

/* Floating badge pills — sit over the hero image */
.hero__badges {
  position: absolute;
  bottom: 160px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.hero__badge {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* Floating rating — top right of hero */
.hero__rating {
  position: absolute;
  bottom: 160px;
  right: 40px;
  z-index: 3;
  text-align: right;
  color: var(--white);
}
.hero__rating-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: flex-end;
}
.hero__rating-star {
  font-size: 22px;
  color: #f5a623;
  line-height: 1;
}
.hero__rating-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__rating-from {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--primary);
  overflow: hidden;
  padding: 12px 0;
}
.trust-strip__track {
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
  animation: marquee 34s linear infinite;
  white-space: nowrap;
}
.trust-strip__track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.72);
}
.trust-strip__dot { color: var(--accent) !important; font-size: 18px !important; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === STATS PILLS === */
.stats-pills-section {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.stats-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
.stat-pill__num {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-pill__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header > p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 auto;
  max-width: 560px;
}
.section-header--white .eyebrow { color: rgba(255,255,255,0.40); }
.section-header--white h2  { color: var(--white); }
.section-header--white > p { color: rgba(255,255,255,0.60); }

/* === TOUR CARDS V2 — full-height image overlay (Voices United style) === */
.tour-card-v2 {
  display: block;
  position: relative;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  transition: transform var(--transition);
}
.tour-card-v2:hover { transform: translateY(-4px); }

.tour-card-v2__bg {
  position: absolute;
  inset: 0;
  background: var(--primary); /* dark teal fallback — looks good without image */
}
.tour-card-v2__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card-v2:hover .tour-card-v2__bg img { transform: scale(1.05); }

.tour-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 20, 32, 0.92) 0%,
    rgba(0, 20, 32, 0.50) 40%,
    rgba(0, 20, 32, 0.10) 70%,
    transparent 100%
  );
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Arrow icon top-right */
.tour-card-v2__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  transition: background var(--transition);
}
.tour-card-v2:hover .tour-card-v2__arrow {
  background: var(--accent);
  border-color: var(--accent);
}

.tour-card-v2__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.tour-card-v2__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.tour-card-v2__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.tour-card-v2__meta-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 2px;
}
.tour-card-v2__meta-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.tour-card-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(250,61,27,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card-v2:hover .tour-card-v2__cta {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250,61,27,0.48);
}

/* === BOLD STATEMENT SECTION (dark, editorial) === */
.bold-section {
  background: var(--primary);
  color: var(--white);
  padding: var(--section-py) 0;
  text-align: center;
}
.bold-section h2 {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.bold-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.60);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* === TESTIMONIALS (minimal, editorial) === */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.testimonial-card__stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,44,64,0.75);
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card__name     { font-weight: 700; font-size: 15px; }
.testimonial-card__location { font-size: 13px; color: var(--muted); }

/* === BLOG CARDS === */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--primary);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card__img { height: 200px; overflow: hidden; }
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.blog-card__title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.blog-card__excerpt { font-size: 14px; color: var(--muted); flex: 1; max-width: none; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* === FEATURE SECTION (two-col image + text) === */
.feature-section { padding: var(--section-py) 0; }
.feature-section--dark { background: var(--primary); color: var(--white); }
.feature-section--cream { background: var(--cream); }

.feature-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-section__inner--reversed { direction: rtl; }
.feature-section__inner--reversed > * { direction: ltr; }

.feature-section__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.feature-section__img img { width: 100%; height: 100%; object-fit: cover; }

.feature-section__text h2 { margin-bottom: 18px; }
.feature-section__text p  { color: var(--muted); margin-bottom: 14px; }
.feature-section--dark .feature-section__text p { color: rgba(255,255,255,0.65); }
.feature-section__text .btn { margin-top: 10px; }

/* === STAT ITEMS (about page dark section) === */
.stat-item { text-align: center; }
.stat-item__number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
}

/* === STATS BAR (tour page hero bottom) === */
.stats-bar {
  background: var(--primary);
  color: var(--white);
  padding: 20px var(--gutter);
}
.stats-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stats-bar__item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stats-bar__value { font-size: 20px; font-weight: 800; color: var(--accent); }
.stats-bar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* === TIMELINE === */
.timeline { padding: var(--section-py) 0; background: var(--cream); }
.timeline__list {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.timeline__list::before {
  content: '';
  position: absolute;
  left: calc(var(--gutter) + 19px);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline__time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline__content h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.timeline__content p  { font-size: 15px; color: var(--muted); max-width: none; }

/* === INCLUSIONS GRID === */
.inclusions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.inclusion-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.inclusion-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inclusion-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.inclusion-text span   { font-size: 13px; color: var(--muted); }

/* === GUARANTEE SECTION === */
.guarantee-section { background: var(--primary); color: var(--white); padding: var(--section-py) 0; }
.guarantee-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.guarantee-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.guarantee-card__emoji { font-size: 36px; margin-bottom: 14px; }
.guarantee-card__title { font-size: 17px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.guarantee-card__desc  { font-size: 14px; color: rgba(255,255,255,0.60); max-width: none; }

/* === STOPS GRID (Port Barton) === */
.stops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stop-card__img { height: 180px; overflow: hidden; position: relative; }
.stop-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.stop-card:hover .stop-card__img img { transform: scale(1.06); }
.stop-card__number {
  position: absolute; top: 12px; left: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.stop-card__body { padding: 18px; }
.stop-card__name { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.stop-card__desc { font-size: 13px; color: var(--muted); max-width: none; }

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  gap: 16px;
  user-select: none;
}
.faq-item__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-item__question::after { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-item__answer { max-height: 600px; padding-bottom: 22px; }
.faq-item__answer p { font-size: 16px; color: var(--muted); max-width: none; line-height: 1.75; }

/* === BOOKING WIDGET SECTION === */
.booking-section { padding: clamp(36px, 5vw, 64px) 0 var(--section-py); background: var(--cream); }
.booking-section__inner { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }
.booking-section__widget {
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* === COMPARISON TABLE === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: rgba(255,255,255,0.55);
}
.comparison-table th.comparison-table__us { color: var(--accent); }
.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  color: rgba(0,44,64,0.80);
  vertical-align: top;
}
.comparison-table td.comparison-table__us { color: var(--primary); font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--off-white); }

/* === SEASON GRID === */
.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.season-item {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.season-item--peak { background: rgba(250, 61, 27, 0.04); border-color: rgba(250, 61, 27, 0.20); }
.season-item--good { background: var(--cream); }
.season-item--off  { background: var(--white); }
.season-item__label {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.season-item__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.season-item--peak .season-item__tag { color: var(--accent); }
.season-item p { font-size: 14px; color: var(--muted); max-width: none; }

/* === CTA SECTION === */
.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 14px; }
.cta-section > .container > p { color: rgba(255,255,255,0.60); font-size: 18px; margin: 0 auto 36px; }
.cta-section__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === ETHICS BOX === */
.ethics-box {
  background: rgba(250,61,27,0.05);
  border: 1px solid rgba(250,61,27,0.18);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
}
.ethics-box ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.ethics-box li {
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ethics-box li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }

/* === VALUES GRID === */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-item {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.value-item__icon { font-size: 38px; margin-bottom: 14px; }
.value-item h3    { font-size: 18px; margin-bottom: 10px; }
.value-item p     { font-size: 15px; color: var(--muted); max-width: none; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-method {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: transform var(--transition);
}
.contact-method:hover { transform: translateY(-2px); }
.contact-method__icon { font-size: 26px; flex-shrink: 0; }
.contact-method h3    { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.contact-method a     { color: var(--accent); font-weight: 600; font-size: 16px; }
.contact-method p     { font-size: 14px; color: var(--muted); max-width: none; }

.meeting-point {
  background: rgba(0,44,64,0.04);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 14px;
}
.meeting-point h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 5px;
}
.meeting-point p { font-size: 15px; max-width: none; }

/* === PRACTICAL INFO CARDS (Port Barton Before You Book) === */
.info-alert {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(250, 61, 27, 0.05);
  border: 1.5px solid rgba(250, 61, 27, 0.22);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.info-alert__icon { font-size: 22px; flex-shrink: 0; line-height: 1.5; }
.info-alert__content strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--primary); }
.info-alert__content p { font-size: 15px; color: var(--muted); max-width: none; }

.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.practical-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.practical-card--dark {
  background: var(--primary);
  border-color: transparent;
}
.practical-card__emoji {
  font-size: 26px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.practical-card h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.practical-card__headline {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  max-width: none;
  color: var(--primary);
}
.practical-card--dark .practical-card__headline { color: var(--white); }
.practical-card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.practical-card__list span {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.practical-card__list span::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.practical-card--dark .practical-card__list span { color: rgba(255,255,255,0.60); }

/* === TRUST SECTION (About page) === */
.trust-section {
  background: var(--primary);
  padding: var(--section-py) 0;
  text-align: center;
}
.trust-section .section-header { margin-bottom: 48px; }
.trust-section .section-header h2 { color: var(--white); }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 36px 20px 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.trust-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.trust-card__number {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.trust-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}
.trust-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.68;
  max-width: none;
}
.trust-section__foot {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  margin: 0 auto;
  max-width: none;
}

/* === BLOG LIST === */
.blog-grid-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* === ARTICLE === */
.article-layout {
  max-width: 700px;
  margin: 0 auto;
  padding: calc(72px + var(--section-py)) var(--gutter) var(--section-py);
}
.article-layout h1 { font-size: clamp(28px, 4.5vw, 50px); line-height: 1.15; margin-bottom: 18px; }
.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.article-content h2 { font-size: clamp(22px, 3vw, 32px); margin: 48px 0 14px; }
.article-content h3 { font-size: 20px; margin: 32px 0 10px; }
.article-content p  { font-size: 17px; line-height: 1.82; color: rgba(0,44,64,0.82); margin-bottom: 18px; max-width: none; }
.article-content ul,
.article-content ol { padding-left: 24px; margin-bottom: 18px; list-style: disc; }
.article-content li { font-size: 17px; line-height: 1.8; margin-bottom: 7px; color: rgba(0,44,64,0.82); }
.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 22px;
  margin: 30px 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
}

/* === PHOTO BREAK === */
.photo-break { height: 46vh; min-height: 260px; position: relative; overflow: hidden; background: var(--primary); }
.photo-break__img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.photo-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,44,64,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-break__text {
  color: var(--white);
  font-size: clamp(20px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 800px;
  line-height: 1.3;
}

/* === FOOTER === */
.footer { background: var(--primary); color: var(--white); padding: 80px 0 calc(28px + env(safe-area-inset-bottom)); }
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
/* Footer logo wrapper — same overflow-crop technique */
.footer__logo-wrap {
  position: relative;
  overflow: hidden;
  width: 130px;
  height: 52px;
  margin-bottom: 20px;
  display: block;
}
.footer__logo {
  position: absolute;
  height: 187px;
  width: auto;
  max-width: none;
  left: -23px;
  top: -66px;
}
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 22px; line-height: 1.65; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background var(--transition), border-color var(--transition);
}
.footer__social a:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.30); }
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 15px; color: rgba(255,255,255,0.70); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact-item { margin-bottom: 12px; }
.footer__contact-item span:first-child {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}
.footer__contact-item a,
.footer__contact-item span:last-child { font-size: 15px; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--gutter) 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.32);
}

/* === NAV BOOK DROPDOWN === */
.nav__book-dropdown { position: relative; }
.nav__book-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,44,64,0.20);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 300;
}
.nav__book-dropdown.open .nav__book-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav__book-menu a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--primary);
  transition: background var(--transition);
}
.nav__book-menu a:hover { background: var(--cream); }
.nav__book-menu a + a { margin-top: 2px; }
.nav__book-menu__title { font-size: 14px; font-weight: 700; }
.nav__book-menu__price { font-size: 12px; color: var(--muted); }

/* === BOOKING BAR WHATSAPP BUTTON === */
.booking-bar__whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #25d366;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.booking-bar__whatsapp:hover { background: #1ebe5b; transform: translateY(-1px); }
.booking-bar__whatsapp span { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.booking-bar__whatsapp strong { font-size: 13px; }
.booking-bar__whatsapp small { font-size: 10px; font-weight: 600; opacity: 0.85; }

/* === BOOKING BAR TOUR BUTTONS === */
.booking-bar__actions { display: flex; gap: 8px; padding: 0 4px; flex-shrink: 0; }
.booking-bar__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
  background: var(--accent);
  color: var(--white);
}
.booking-bar__btn:hover { background: #e0340f; }
.booking-bar__btn--alt {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.booking-bar__btn--alt:hover { background: var(--off-white); border-color: rgba(0,44,64,0.25); }

/* === BOKUN WIDGET OVERRIDES === */
.bokunButton a,
.bokunButton button,
a.bokunButton,
button.bokunButton {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--white) !important;
  font-family: var(--font) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-pill) !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.bokunButton a:hover,
.bokunButton button:hover {
  background-color: #e0340f !important;
  border-color: #e0340f !important;
}

/* === MONTH CALENDAR (When to Visit) === */
.month-calendar { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 32px; }
.month-cell {
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  position: relative;
}
.month-cell__name { font-size: 13px; font-weight: 700; display: block; margin-bottom: 4px; }
.month-cell__label { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; display: block; }
.month-cell--peak { background: var(--primary); color: var(--white); }
.month-cell--peak .month-cell__label { color: var(--accent); }
.month-cell--good { background: #e0f2f1; color: var(--primary); }
.month-cell--good .month-cell__label { color: #00796b; }
.month-cell--off  { background: #e8e8e8; color: rgba(0,44,64,0.45); }
.month-cell--off  .month-cell__label { color: rgba(0,44,64,0.4); }
@media (max-width: 600px) { .month-calendar { grid-template-columns: repeat(3, 1fr); } }

/* === AUTHOR BIO (blog single) === */
.author-bio {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  margin-top: 64px;
  color: var(--white);
}
.author-bio__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.15);
}
.author-bio__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.author-bio__text { flex: 1; min-width: 0; }
.author-bio__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.author-bio__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.author-bio__desc {
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255,255,255,0.68);
  margin-bottom: 18px;
  max-width: none;
}
.author-bio__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  transition: background var(--transition), border-color var(--transition);
}
.author-bio__link:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.45); }
@media (max-width: 480px) {
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  .author-bio__role { display: block; }
}

/* === RELATED ARTICLES (card overlay style — Voices United inspired) === */
.related-articles { margin-top: 64px; }
.related-articles__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  background: var(--primary);
}
.related-card__img {
  position: absolute;
  inset: 0;
}
.related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.related-card:hover .related-card__img img { transform: scale(1.06); }
.related-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,15,30,0.90) 0%, rgba(0,15,30,0.35) 55%, rgba(0,0,0,0.08) 100%);
}
.related-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 18px;
  z-index: 1;
}
.related-card__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.related-card__title {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  max-width: none;
}
.related-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--white);
  font-size: 15px;
  transition: background var(--transition), border-color var(--transition);
}
.related-card:hover .related-card__arrow { background: var(--accent); border-color: var(--accent); }
@media (max-width: 600px) {
  .related-articles__grid { grid-template-columns: repeat(2, 1fr); }
  .related-card { aspect-ratio: 3/4; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4           { grid-template-columns: repeat(2, 1fr); }
  .inclusions-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid      { grid-template-columns: repeat(2, 1fr); }
  .stops-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer__grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(48px, 8vw, 80px); }

  .nav__links          { display: none; }
  .nav__hamburger      { display: flex; }
  .hero-nav__links     { display: none; }
  .hero-nav__hamburger { display: flex; }
  /* Both navs: switch to flexbox so logo+right stay left/right when links are hidden */
  .nav { display: flex; justify-content: space-between; align-items: center; }
  /* Transparent nav on mobile: keep hamburger white */
  .nav:not(.scrolled):not(.nav--home) .nav__hamburger span { background: var(--white); }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .inclusions-grid  { grid-template-columns: 1fr; }
  .guarantee-cards  { grid-template-columns: 1fr; }
  .stops-grid       { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid-main   { grid-template-columns: 1fr; }
  .footer__grid     { grid-template-columns: 1fr; gap: 28px; }
  .feature-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .feature-section__inner--reversed { direction: ltr; }
  .ethics-box ul    { grid-template-columns: 1fr; }

  /* Framed hero on mobile — remove all margins */
  .hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(12px + env(safe-area-inset-top)) 20px 12px;
  }

  .hero--framed { margin: 0; border-radius: 0; box-shadow: none; justify-content: flex-start; min-height: 100svh; }
  .hero--framed .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: calc(72px + env(safe-area-inset-top));
    padding-bottom: 24px;
  }
  .hero--framed .hero__content h1 { font-size: clamp(30px, 9vw, 40px); }

  .hero__badges  { left: 20px; bottom: 120px; }
  .hero__rating  { right: 20px; bottom: 120px; }
  .hero__rating-num { font-size: 36px; }

  .hero__booking-bar { position: static; padding: 0; }
  .booking-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: var(--primary);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .booking-bar .booking-bar__label { color: rgba(255,255,255,0.55); }
  .booking-bar .booking-bar__value { color: var(--white); }
  .booking-bar__item { padding: 16px 20px; border-radius: 0; }
  .booking-bar__item:hover { background: rgba(255,255,255,0.08); }
  .booking-bar__divider { display: none; }
  .booking-bar__whatsapp { grid-column: 1 / -1; border-radius: 0; justify-content: center; padding: 16px 20px; }

  .tour-card-v2 { height: 460px; }

  .stats-pills { gap: 8px; }
  .stat-pill   { padding: 11px 18px; }
  .stat-pill__num { font-size: 17px; }

  .stats-bar__inner  { gap: 24px; }
  .footer__bottom    { flex-direction: column; text-align: center; }
  .season-grid       { grid-template-columns: 1fr; }
  .comparison-table  { font-size: 13px; }

  .hero--blog { min-height: 26vh; }
  .hero--blog .hero__content { padding: 90px var(--gutter) 40px; }

  /* Blog article tables — scroll horizontally on mobile */
  .article-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
}

@media (max-width: 480px) {
  .grid-4       { grid-template-columns: 1fr; }
  .hero__ctas   { flex-direction: column; align-items: center; }
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .hero__badges { display: none; } /* too crowded on very small screens */
  .hero__rating { display: none; }
  .trust-cards  { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .practical-grid { grid-template-columns: 1fr; }
}

/* === SCROLL-REVEAL ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .pre-reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .pre-reveal.is-in-view {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  }
}
