/* ═══════════════════════════════════════════════════════════════
   PORT BARTON PARADISE : Page-Specific Styles
   Extracted from HTML prototypes. Does NOT duplicate anything
   already in components.css (nav, mobile menu, footer, buttons,
   sections, breadcrumb, forms, FAQ, testimonials, trust badges,
   WhatsApp float, mobile CTA, progress indicator).
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero (full-height, Ken Burns) ──────────────────────────── */

.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  overflow: hidden;
  background: #0a1a1a;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.08);
  animation: heroZoom 20s var(--ease-smooth) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,26,26,.5) 0%,
      rgba(10,26,26,.25) 30%,
      rgba(10,26,26,.2) 50%,
      rgba(10,26,26,.35) 70%,
      rgba(10,26,26,.7) 100%
    );
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  color: var(--white);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 24px;
}
.hero__kicker::before {
  content: ""; width: 40px; height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -.03em;
  max-width: 16ch;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,.35), 0 10px 44px rgba(0,0,0,.35);
}
.hero__title em {
  font-style: normal; font-weight: 200;
  color: var(--coral-soft);
}
.hero__sub {
  font-size: 17px; font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
  color: var(--white-90);
  margin-bottom: 40px;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white-40);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero__scroll svg { width: 20px; height: 20px; }

/* ─── Hero : social proof ────────────────────────────────────── */

.hero__proof {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__proof-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: var(--white-90);
}
.hero__proof-rating .stars { color: var(--gold); letter-spacing: 1px; }
.hero__proof-divider {
  width: 1px; height: 16px;
  background: var(--white-40);
}
.hero__proof-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--white-20);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  color: var(--white-90);
}
.hero__proof-badge svg { width: 14px; height: 14px; }

/* ─── Hero : breadcrumb (inner pages) ────────────────────────── */

.hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 400;
  color: var(--white-40);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.hero__breadcrumb a {
  color: var(--white-40);
  transition: color .3s;
}
.hero__breadcrumb a:hover { color: var(--white-90); }
.hero__breadcrumb svg { width: 12px; height: 12px; opacity: .5; }

/* ─── Next departure banner ──────────────────────────────────── */

.next-departure {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.3);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 13px;
  color: var(--white-90);
  margin-bottom: 20px;
}
.next-departure__dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.next-departure strong { font-weight: 600; color: var(--gold); }

/* ─── Intro grid ─────────────────────────────────────────────── */

.intro {
  background: var(--cream);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.intro__visual {
  position: relative;
}
.intro__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}
.intro__img-float {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 50%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--cream);
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.intro__text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.intro__text h2 em {
  font-style: normal; font-weight: 200;
  color: var(--ocean);
}
.intro__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.intro__stats {
  display: flex; gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-10);
}
.stat__number {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: var(--ink-40);
  margin-top: 6px;
  letter-spacing: .02em;
}

/* ─── Expedition cinematic section ───────────────────────────── */

.expedition {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ocean-deep);
  color: var(--white);
}
.expedition__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .42;
}
/* Left-side scrim so the white text and glass cards stay legible over the photo */
.expedition::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(14,61,60,.92) 0%,
    rgba(14,61,60,.82) 40%,
    rgba(14,61,60,.45) 62%,
    rgba(14,61,60,0) 85%);
}
.expedition__content {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.expedition__text .section__eyebrow {
  color: var(--gold);
}
.expedition__text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.expedition__text h2 em {
  font-style: normal; font-weight: 200;
  color: var(--coral-soft);
}
.expedition__text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--white-70);
  margin-bottom: 20px;
}
.expedition__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.highlight {
  padding: 28px;
  background: var(--white-20);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid var(--white-20);
}
.highlight__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.highlight__title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.highlight__desc {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.5;
}
.expedition__card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
}
.expedition__card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.expedition__card-body {
  padding: 36px;
}
.expedition__card-body h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
.expedition__card-meta {
  display: flex; gap: 20px;
  font-size: 13px;
  color: var(--ink-40);
  margin-bottom: 20px;
}
.expedition__card-meta span {
  display: inline-flex; align-items: center; gap: 6px;
}
.expedition__card-route {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  margin-bottom: 24px;
}
.route__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--ocean);
}
.route__dot--filled { background: var(--ocean); }
.route__line {
  flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, var(--ocean) 0, var(--ocean) 6px, transparent 6px, transparent 12px);
}
.route__label {
  font-size: 13px; font-weight: 500;
  color: var(--ink-60);
}
.expedition__card-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 20px;
}
.expedition__card-price .from {
  font-size: 13px; color: var(--ink-40);
}
.expedition__card-price .amount {
  font-family: var(--display);
  font-size: 32px; font-weight: 600;
  color: var(--ocean);
}
.expedition__card-price .per {
  font-size: 13px; color: var(--ink-40);
}

/* ─── Tours grid (homepage variant) ──────────────────────────── */

.tours { background: var(--cream-warm); }
.tours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.10);
}
.tour-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.tour-card__img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.tour-card:hover .tour-card__img {
  transform: scale(1.05);
}
.tour-card__badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--ocean);
  color: var(--white);
  border-radius: 100px;
}
.tour-card__body {
  padding: 28px;
}
.tour-card__category {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 10px;
}
.tour-card__title {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.tour-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-60);
  margin-bottom: 20px;
}
.tour-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--ink-05);
}
.tour-card__price {
  display: flex; align-items: baseline; gap: 4px;
}
.tour-card__price .from { font-size: 12px; color: var(--ink-40); }
.tour-card__price .amount {
  font-family: var(--display);
  font-size: 24px; font-weight: 600;
  color: var(--ocean);
}
.tour-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ocean);
  letter-spacing: .04em;
  transition: gap .3s var(--ease-out);
}
.tour-card__link:hover { gap: 10px; }
.tour-card__link svg { width: 14px; height: 14px; }

/* ─── Transfers feature (homepage variant) ───────────────────── */

.transfers { background: var(--cream); }
.transfers__feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  margin-top: clamp(40px, 6vw, 72px);
}
.transfers__visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ocean-deep);
}
.transfers__visual-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.transfers__visual-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.transfers__visual-caption span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(10,26,26,.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}
.transfer-routes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink-20);
}
.transfer-route {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 142px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink-20);
}
.transfer-route__number {
  align-self: start;
  padding-top: 5px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}
.transfer-route__journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.transfer-route__arrow {
  color: var(--gold);
  font-size: .9em;
  font-weight: 400;
}
.transfer-route__detail {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-40);
}
.transfer-route__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.transfer-route__price {
  text-align: right;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ocean);
  white-space: nowrap;
}
.transfer-route__price span {
  display: inline;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-40);
}
.transfer-route__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--ocean);
  border-radius: 999px;
  color: var(--ocean);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}
.transfer-route__cta:focus-visible {
  outline: 3px solid rgba(26,92,90,.22);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .transfer-route__cta:hover {
    color: var(--white);
    background: var(--ocean);
  }
}

/* ─── CTA section ────────────────────────────────────────────── */

.cta-section {
  background: var(--cream-warm);
  text-align: center;
}
.cta-section .section__heading {
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.cta-section .section__lead {
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.cta__buttons {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
}

/* ─── Cross-sell section (shared across pages) ───────────────── */

.cross-sell {
  background: var(--cream);
  text-align: center;
}
.cross-sell__inner {
  max-width: 680px;
  margin: 0 auto;
}
.cross-sell__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin-bottom: 16px;
}
.cross-sell__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 32px;
}

/* ─── Homepage responsive ────────────────────────────────────── */

@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .intro__img-float { display: none; }
  .expedition__content { grid-template-columns: 1fr; }
  .expedition__card { max-width: 480px; }
  .tours__grid { grid-template-columns: repeat(2, 1fr); }
  .transfers__feature { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 32px; }
  .transfer-route { grid-template-columns: 34px minmax(0, 1fr); min-height: 0; }
  .transfer-route__aside { grid-column: 2; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .transfer-route__price { text-align: left; }
}

@media (max-width: 768px) {
  .hero__title { max-width: 100%; }
  .tours__grid { grid-template-columns: 1fr; }
  .transfers__feature { grid-template-columns: 1fr; gap: 28px; }
  .transfers__visual { min-height: 0; aspect-ratio: 16 / 10; }
  .expedition__highlights { grid-template-columns: 1fr; }
  .intro__stats { gap: 24px; }
  .stat__number { font-size: 32px; }
}

@media (max-width: 480px) {
  .transfers__visual-caption { left: 12px; right: 12px; bottom: 12px; }
  .transfers__visual-caption span { padding: 6px 9px; font-size: 11px; }
  .transfer-route { grid-template-columns: 30px minmax(0, 1fr); gap: 12px; padding: 20px 0; }
  .transfer-route__journey { gap: 6px; }
}


/* ═══════════════════════════════════════════════════════════════
   EXPEDITION
   ═══════════════════════════════════════════════════════════════ */

/* ─── Inner hero variant (85vh) ──────────────────────────────── */

.hero--expedition {
  height: 85vh; min-height: 600px;
}
.hero--expedition .hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(10,26,26,.45) 0%,
      rgba(10,26,26,.08) 30%,
      rgba(10,26,26,0) 50%,
      rgba(10,26,26,.2) 75%,
      rgba(10,26,26,.65) 100%
    );
}
.hero--expedition .hero__kicker {
  color: var(--gold);
}
.hero--expedition .hero__title {
  font-size: clamp(40px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero--expedition .hero__title em {
  font-style: italic; font-weight: 200;
}
.hero--expedition .hero__sub {
  margin-bottom: 0;
}
.hero--expedition .hero__actions {
  margin-top: 32px;
}

/* ─── Quick facts bar ────────────────────────────────────────── */

.quick-facts {
  background: var(--ocean-deep);
  padding: 0 var(--gutter);
}
.quick-facts__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.quick-fact {
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid var(--white-20);
  transition: background .3s;
}
.quick-fact:last-child { border-right: none; }
.quick-fact:hover { background: rgba(255,255,255,.05); }
.quick-fact__icon {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}
.quick-fact__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 4px;
}
.quick-fact__value {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

/* ─── Overview section ───────────────────────────────────────── */

.overview {
  background: var(--cream);
}
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.overview__text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 24px;
}
.overview__text h2 em {
  font-style: italic;
  font-weight: 200;
  color: var(--ocean);
}
.overview__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.overview__text p:last-of-type { margin-bottom: 0; }
.overview__route-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 12px;
  margin-top: 32px;
  border: 1px solid var(--ink-05);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.overview__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 560px;
}
.overview__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.overview__collage img:first-child {
  grid-row: 1 / 3;
  border-radius: 12px;
}
.overview__collage img:nth-child(2) {
  border-radius: 12px;
}
.overview__collage img:nth-child(3) {
  border-radius: 12px;
}

/* ─── Itinerary : day cards ──────────────────────────────────── */

.itinerary {
  background: var(--cream-warm);
}
.itinerary__days {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 16px;
}
.day-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  transition: box-shadow .4s var(--ease-out), transform .4s var(--ease-out);
}
.day-card:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,.10);
  transform: translateY(-3px);
}
.day-card:nth-child(even) {
  direction: rtl;
}
.day-card:nth-child(even) > * {
  direction: ltr;
}
.day-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.day-card__img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.day-card:hover .day-card__img {
  transform: scale(1.04);
}
.day-card__day-badge {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  background: var(--ocean);
  color: var(--white);
  border-radius: 100px;
}
.day-card:nth-child(even) .day-card__day-badge {
  left: auto;
  right: 24px;
}
.day-card__body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.day-card__overline {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 10px;
}
.day-card__title {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}
.day-card__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-60);
  margin-bottom: 20px;
}
.day-card__highlights {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.day-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 500;
  background: var(--cream);
  color: var(--ink-60);
  border-radius: 100px;
  border: 1px solid var(--ink-05);
}
.day-tag svg { width: 12px; height: 12px; color: var(--ocean); }

/* ─── Packing lists (included / bring) ───────────────────────── */

.packing {
  background: var(--cream);
}
.packing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}
.packing__col {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 16px;
}
.packing__col--included {
  background: var(--ocean-deep);
  color: var(--white);
}
.packing__col--bring {
  background: var(--white);
  border: 1px solid var(--ink-05);
  color: var(--ink);
}
.packing__col h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 8px;
}
.packing__col--included h3 { color: var(--white); }
.packing__col-sub {
  font-size: 14px;
  margin-bottom: 28px;
}
.packing__col--included .packing__col-sub { color: var(--white-40); }
.packing__col--bring .packing__col-sub { color: var(--ink-40); }
.packing__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.packing__item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.packing__item-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  margin-top: 1px;
}
.packing__col--included .packing__item-icon {
  background: var(--white-20);
  color: var(--white);
}
.packing__col--included .packing__item { color: var(--white-90); }
.packing__col--bring .packing__item-icon {
  background: var(--cream-warm);
  color: var(--ocean);
}
.packing__col--bring .packing__item { color: var(--ink-60); }

/* ─── Booking card section ───────────────────────────────────── */

.booking {
  position: relative;
  background: var(--ocean-deep);
  color: var(--white);
  overflow: hidden;
}
.booking__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.booking__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.booking__text .section__eyebrow { color: var(--gold); }
.booking__text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--white);
}
.booking__text h2 em {
  font-style: italic;
  font-weight: 200;
  color: var(--coral-soft);
}
.booking__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white-70);
  margin-bottom: 16px;
  max-width: 520px;
}
.booking__trust {
  display: flex; gap: 32px;
  margin-top: 32px;
}
.booking__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--white-40);
}
.booking__trust-item svg { color: var(--gold); }

/* Booking card */
.booking-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  color: var(--ink);
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.booking-card__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.booking-card__price .from {
  font-size: 13px; color: var(--ink-40);
}
.booking-card__price .amount {
  font-family: var(--display);
  font-size: 44px; font-weight: 600;
  color: var(--ocean);
}
.booking-card__price .per {
  font-size: 14px; color: var(--ink-40);
}
.booking-card__note {
  font-size: 13px;
  color: var(--ink-40);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-10);
}
.booking-card__field {
  margin-bottom: 16px;
}
.booking-card__label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 8px;
}
.booking-card__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  border: 1px solid var(--ink-10);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .3s;
  appearance: none;
  -webkit-appearance: none;
}
.booking-card__input:focus {
  outline: none;
  border-color: var(--ocean);
}
.booking-card__input::placeholder {
  color: var(--ink-40);
}
.booking-card__select-wrap {
  position: relative;
}
.booking-card__select-wrap::after {
  content: "";
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--ink-40);
  pointer-events: none;
}
.booking-card__actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
}
.booking-card__or {
  text-align: center;
  font-size: 12px;
  color: var(--ink-40);
  text-transform: uppercase;
  letter-spacing: .15em;
}
.btn--wa-alt {
  background: none;
  border: 2px solid #25D366;
  color: #25D366;
}
.btn--wa-alt:hover {
  background: #25D366;
  color: var(--white);
}
.btn--wa-alt svg { width: 18px; height: 18px; }
.booking-card__social-proof {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-05);
  font-size: 13px;
  color: var(--ink-60);
}
.booking-card__social-proof .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ─── Expedition product cards (below the region map) ────────── */

.xp-cards {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(36px, 5vw, 56px);
}
.xp-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.xp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0,0,0,.10);
}
.xp-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.xp-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.xp-card:hover .xp-card__img { transform: scale(1.05); }
.xp-card__badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border-radius: 100px;
}
.xp-card__badge--private { background: var(--ocean); }
.xp-card__body {
  display: flex; flex-direction: column; flex: 1;
  padding: 24px 24px 26px;
}
.xp-card__routeline {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  margin-bottom: 10px;
}
.xp-card__routeline .route__line { min-width: 22px; }
.xp-card__routeline .route__dot { flex: none; }
.xp-card__desc {
  font-size: 14px; line-height: 1.65;
  color: var(--ink-60);
  margin-bottom: 14px;
}
.xp-card__meta {
  display: flex; flex-wrap: wrap; gap: 5px 14px;
  font-size: 12.5px;
  color: var(--ink-60);
  padding-top: 12px;
  border-top: 1px solid var(--ink-05);
  margin-bottom: 16px;
}
.xp-card__price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--display);
  font-size: 26px; font-weight: 500;
}
.xp-card__price .from,
.xp-card__price .per {
  font-family: var(--body);
  font-size: 13px; font-weight: 400;
  color: var(--ink-60);
}
.xp-card__deposit {
  font-size: 12px;
  color: var(--ink-40);
  margin: 4px 0 18px;
}
.xp-card__cta { margin-top: auto; }

/* ─── Expedition responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .overview__grid { grid-template-columns: 1fr; gap: 48px; }
  .overview__collage { height: 400px; }
  .xp-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .booking__inner { grid-template-columns: 1fr; }
  .booking-card { max-width: 480px; }
  .packing__grid { grid-template-columns: 1fr; }
  .quick-facts__inner { grid-template-columns: repeat(3, 1fr); }
  .quick-fact:nth-child(3) { border-right: none; }
  .quick-fact:nth-child(4) { border-right: 1px solid var(--white-20); }
}

@media (max-width: 768px) {
  .quick-facts__inner { grid-template-columns: repeat(2, 1fr); }
  .quick-fact:nth-child(odd) { border-right: 1px solid var(--white-20); }
  .quick-fact:nth-child(even) { border-right: none; }
  .quick-fact:nth-child(3) { border-right: 1px solid var(--white-20); }

  .overview__collage {
    height: 300px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .overview__collage img:first-child { grid-row: 1; }
  .overview__collage img:nth-child(3) { display: none; }

  .day-card {
    grid-template-columns: 1fr;
  }
  .day-card:nth-child(even) { direction: ltr; }
  .day-card__img { min-height: 240px; }
  .day-card__day-badge { left: 24px !important; right: auto !important; }

  .booking__inner { grid-template-columns: 1fr; }
  .booking-card { max-width: 100%; }
  .booking__trust { flex-wrap: wrap; gap: 20px; }

  .packing__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .quick-facts__inner { grid-template-columns: 1fr 1fr; }
  .overview__collage { height: 220px; }
}


/* ═══════════════════════════════════════════════════════════════
   TOURS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tours hero (shorter, 60vh) ─────────────────────────────── */

.hero--tours {
  position: relative;
  height: 60vh; min-height: 440px;
  overflow: hidden;
  background: #0a1a1a;
}
.hero--tours .hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease-smooth) forwards;
}
.hero--tours .hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,26,26,.45) 0%,
      rgba(10,26,26,.08) 40%,
      rgba(10,26,26,0) 55%,
      rgba(10,26,26,.2) 78%,
      rgba(10,26,26,.65) 100%
    );
}
.hero--tours .hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
  color: var(--white);
}
.hero--tours .hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.02em;
  max-width: 16ch;
  margin-bottom: 16px;
}
.hero--tours .hero__title em {
  font-style: italic; font-weight: 200;
  color: var(--coral-soft);
}
.hero--tours .hero__sub {
  font-size: 17px; font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
  color: var(--white-90);
}

/* ─── Tours intro strip ──────────────────────────────────────── */

.tours-intro {
  background: var(--cream);
}
.tours-intro__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.tours-intro__text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-60);
  max-width: 680px;
}
.tours-intro__text p + p {
  margin-top: 12px;
}
.tours-intro__quick-facts {
  display: flex; gap: 32px;
}
/* Quick fact variant for tours page (card style, not bar) */
.tours-intro .quick-fact {
  text-align: center;
  padding: 24px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--ink-05);
  min-width: 120px;
  color: var(--ink);
}
.quick-fact__number {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1;
}
/* On the light tours-intro cards, the label must be dark (the global
   .quick-fact__label is white, meant for the dark expedition bar). */
.tours-intro .quick-fact__label {
  color: var(--ink);
  opacity: .55;
  margin-top: 6px;
}

/* ─── Tour detail cards (alternating layout) ─────────────────── */

.tour-listing {
  background: var(--cream-warm);
}
.tour-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .5s var(--ease-out);
}
.tour-detail-card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,.08);
}
.tour-detail-card + .tour-detail-card {
  margin-top: 48px;
}
.tour-detail-card:nth-child(even) {
  direction: rtl;
}
.tour-detail-card:nth-child(even) > * {
  direction: ltr;
}
.tour-detail-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.tour-detail-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.tour-detail-card:hover .tour-detail-card__img {
  transform: scale(1.04);
}
.tour-detail-card__badge {
  position: absolute; top: 24px; left: 24px;
  padding: 8px 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--coral);
  color: var(--white);
  border-radius: 100px;
  z-index: 2;
}
.tour-detail-card:nth-child(even) .tour-detail-card__badge {
  left: auto;
  right: 24px;
}
.tour-detail-card__body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tour-detail-card__category {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}
.tour-detail-card__category::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--gold);
}
.tour-detail-card__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 16px;
}
.tour-detail-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.tour-detail-card__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
}
.info-item {
  display: flex; align-items: flex-start; gap: 10px;
}
.info-item__icon {
  width: 20px; height: 20px;
  color: var(--ocean);
  flex-shrink: 0;
  margin-top: 1px;
}
.info-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-40);
  line-height: 1.2;
}
.info-item__value {
  font-size: 14px;
  color: var(--ink-80);
  line-height: 1.4;
  margin-top: 2px;
}
.tour-detail-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.tour-detail-card__price {
  display: flex; align-items: baseline; gap: 6px;
}
.tour-detail-card__price .from {
  font-size: 13px; color: var(--ink-40);
}
.tour-detail-card__price .amount {
  font-family: var(--display);
  font-size: 36px; font-weight: 600;
  color: var(--ocean);
}
.tour-detail-card__price .per {
  font-size: 13px; color: var(--ink-40);
}
.tour-detail-card__known {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--ocean-deep);
  color: var(--white-90);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.tour-detail-card__known svg {
  width: 14px; height: 14px;
  color: var(--gold);
}

/* ─── Star ratings ───────────────────────────────────────────── */

.tour-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-40);
  margin-bottom: 16px;
}
.tour-rating .star {
  color: var(--gold);
  font-size: 14px;
}

/* ─── Comparison table ───────────────────────────────────────── */

.compare {
  background: var(--cream);
}
.compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 8px;
}
.compare__table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.compare__table thead th {
  padding: 20px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ocean-deep);
  text-align: left;
  border-bottom: none;
}
.compare__table thead th:first-child {
  border-radius: 16px 0 0 0;
}
.compare__table thead th:last-child {
  border-radius: 0 16px 0 0;
  text-align: center;
}
.compare__table tbody td {
  padding: 22px 24px;
  font-size: 15px;
  color: var(--ink-80);
  border-bottom: 1px solid var(--ink-05);
  vertical-align: middle;
}
.compare__table tbody tr:last-child td {
  border-bottom: none;
}
.compare__table tbody tr {
  transition: background .3s;
}
.compare__table tbody tr:hover {
  background: var(--cream);
}
.compare__tour-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.compare__tour-name .popular-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--coral);
  color: var(--white);
  border-radius: 100px;
  vertical-align: middle;
}
.compare__highlight {
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.4;
}
.compare__price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ocean);
}
.compare__table td:last-child {
  text-align: center;
}
.compare__book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--ocean);
  color: var(--white);
  border-radius: 100px;
  transition: all .3s var(--ease-out);
}
.compare__book-btn:hover {
  background: var(--ocean-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,92,90,.25);
}
.compare__book-btn svg {
  width: 14px;
  height: 14px;
}

/* ─── Private charter section ────────────────────────────────── */

.private-tour {
  position: relative;
  background: var(--ocean-deep);
  color: var(--white);
  overflow: hidden;
}
.private-tour__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.private-tour__content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.private-tour__text .section__eyebrow {
  color: var(--gold);
}
.private-tour__text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.private-tour__text h2 em {
  font-style: italic;
  font-weight: 200;
  color: var(--coral-soft);
}
.private-tour__text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--white-70);
  margin-bottom: 16px;
}
.private-tour__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}
.private-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px;
  background: var(--white-20);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  border: 1px solid var(--white-20);
}
.private-feature__icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.private-feature__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-90);
  line-height: 1.4;
}
.private-tour__visual {
  position: relative;
}
.private-tour__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.private-tour__price-hint {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  padding: 16px 32px;
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  text-align: center;
  white-space: nowrap;
}
.private-tour__price-hint .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.private-tour__price-hint .amount {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ocean);
}
.private-tour__price-hint .per {
  font-size: 12px;
  color: var(--ink-40);
}

/* ─── Practical info cards ───────────────────────────────────── */

.practical {
  background: var(--cream);
}
.practical__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.practical-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--ink-05);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.practical-card:hover {
  border-color: var(--ocean);
  box-shadow: 0 12px 40px rgba(26,92,90,.06);
  transform: translateY(-4px);
}
.practical-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ocean);
  color: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
}
.practical-card__icon svg {
  width: 22px; height: 22px;
}
.practical-card__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.practical-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
}
.practical-card__list {
  list-style: none;
  margin-top: 12px;
}
.practical-card__list li {
  font-size: 14px;
  color: var(--ink-60);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink-05);
  display: flex; align-items: center; gap: 8px;
}
.practical-card__list li:last-child { border-bottom: none; }
.practical-card__list li svg {
  width: 14px; height: 14px;
  color: var(--ocean);
  flex-shrink: 0;
}

/* ─── Tours page responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .tours-intro__grid { grid-template-columns: 1fr; }
  .tours-intro__quick-facts { justify-content: flex-start; }
  .tour-detail-card { grid-template-columns: 1fr; }
  .tour-detail-card:nth-child(even) { direction: ltr; }
  .tour-detail-card__img { aspect-ratio: 16/9; height: auto; }
  .tour-detail-card__badge { left: 24px !important; right: auto !important; }
  .private-tour__content { grid-template-columns: 1fr; }
  .private-tour__visual { max-width: 480px; margin: 0 auto; }
  .practical__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero--tours { height: 50vh; min-height: 380px; }
  .hero--tours .hero__title { max-width: 100%; }

  .tours-intro__quick-facts { flex-wrap: wrap; }
  .tours-intro .quick-fact { min-width: 100px; }

  .compare__table-wrap {
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    padding: 0 var(--gutter);
  }

  .tour-detail-card__info { grid-template-columns: 1fr; }
  .tour-detail-card__footer { flex-direction: column; align-items: flex-start; gap: 16px; }

  .private-tour__features { grid-template-columns: 1fr; }
  .practical__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   TRANSFERS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Transfers hero (50vh short) ────────────────────────────── */

.hero--transfers {
  height: 50vh; min-height: 400px;
}
.hero--transfers .hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(10,26,26,.45) 0%,
      rgba(10,26,26,.15) 40%,
      rgba(10,26,26,.1) 60%,
      rgba(10,26,26,.55) 100%
    );
}
.hero--transfers .hero__content {
  padding-bottom: 60px;
}
.hero--transfers .hero__title {
  max-width: 14ch;
}

/* ─── Route cards ────────────────────────────────────────────── */

.routes { background: var(--cream); }
.routes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.route-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.route-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.route-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform .8s var(--ease-out);
}
.route-card:hover .route-card__img {
  transform: scale(1.04);
}
.route-card__badge {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 18px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--ocean);
  color: var(--white);
  border-radius: 100px;
}
.route-card__body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.route-card__route-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.route-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2.5px solid var(--ocean);
  flex-shrink: 0;
}
.route-dot--filled { background: var(--ocean); }
.route-line {
  flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, var(--ocean) 0, var(--ocean) 6px, transparent 6px, transparent 12px);
}
.route-label {
  font-size: 13px; font-weight: 500;
  color: var(--ink-60);
  white-space: nowrap;
}
.route-card__title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 8px;
}
.route-card__subtitle {
  font-size: 14px;
  color: var(--ink-40);
  margin-bottom: 24px;
  font-style: italic;
}
.route-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 28px;
}
.detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.detail__icon {
  width: 20px; height: 20px;
  color: var(--ocean);
  flex-shrink: 0;
  margin-top: 2px;
}
.detail__label {
  font-size: 12px;
  color: var(--ink-40);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}
.detail__value {
  font-size: 14px;
  color: var(--ink-80);
  line-height: 1.4;
}
.route-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-10);
  margin-bottom: 24px;
}
.route-card__price {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  color: var(--ocean);
}
.route-card__per {
  font-size: 14px;
  color: var(--ink-40);
}
.route-card__price-note {
  font-size: 13px;
  color: var(--ink-40);
  line-height: 1.5;
  margin-top: -16px;
  margin-bottom: 24px;
}
.route-card__per-person {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-40);
  margin-top: -16px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.route-card__per-person strong {
  color: var(--ocean-soft);
  font-weight: 600;
}

/* ─── Expedition cross-sell callout (in route cards) ─────────── */

.route-card__upsell {
  margin-top: -8px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(26,92,90,.06) 0%, rgba(201,169,110,.08) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-60);
}
.route-card__upsell strong {
  color: var(--ink-80);
  font-weight: 500;
}
.route-card__upsell a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ocean);
  transition: color .3s, gap .3s;
}
.route-card__upsell a:hover {
  color: var(--ocean-soft);
  gap: 10px;
}

/* ─── How it works steps ─────────────────────────────────────── */

.how-it-works { background: var(--cream-warm); }
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how-it-works__grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--driftwood) 0, var(--driftwood) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ocean);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(26,92,90,.2);
}
.step__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 280px;
  margin: 0 auto;
}

/* ─── Why private section ────────────────────────────────────── */

.why-private {
  background: var(--ocean-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-private__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.why-private__content {
  position: relative;
  z-index: 2;
}
.why-private .section__eyebrow {
  color: var(--gold);
}
.why-private .section__heading {
  color: var(--white);
}
.why-private .section__lead {
  color: var(--white-40);
}
.why-private__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit {
  padding: 32px;
  background: var(--white-20);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid var(--white-20);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background .3s;
}
.benefit:hover {
  background: rgba(255,255,255,.15);
}
.benefit__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--white-20);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
}
.benefit__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.benefit__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-70);
}
.benefit--wide {
  grid-column: 1 / -1;
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Transfers page : testimonials variant (light bg) ───────── */

.transfers .testimonials { background: var(--cream-warm); }
.transfers .testimonials__grid {
  gap: 32px;
}
.transfers .testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  position: relative;
  border: none;
  backdrop-filter: none;
}
.transfers .testimonial::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--ocean);
  opacity: .15;
}
.transfers .testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-80);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.transfers .testimonial__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.transfers .testimonial__origin {
  font-size: 12px;
  color: var(--ink-40);
  margin-top: 2px;
}

/* ─── Transfers page : FAQ variant (open class) ──────────────── */

.transfers .faq { background: var(--cream); }
.transfers .faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.transfers .faq__header .section__eyebrow {
  justify-content: center;
}
.transfers .faq__header .section__heading {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.transfers .faq__icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--ink-20);
  background: transparent;
}
.transfers .faq__item.active .faq__icon {
  transform: rotate(45deg);
  border-color: var(--ocean);
  color: var(--ocean);
}

/* ─── Transfers responsive ───────────────────────────────────── */

@media (max-width: 1024px) {
  .route-card { grid-template-columns: 1fr; }
  .route-card__img { min-height: 260px; }
  .route-card__details { grid-template-columns: 1fr; }
  .how-it-works__grid::before { display: none; }
  .why-private__grid { grid-template-columns: 1fr; }
  .benefit--wide { max-width: 100%; }
}

@media (max-width: 768px) {
  .hero--transfers { min-height: 340px; }
  .how-it-works__grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */

/* ─── About hero (50vh, centered text) ───────────────────────── */

.hero--about {
  height: 50vh; min-height: 400px;
}
.hero--about .hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(10,26,26,.45) 0%,
      rgba(10,26,26,.15) 40%,
      rgba(10,26,26,.1) 60%,
      rgba(10,26,26,.5) 100%
    );
}
.hero--about .hero__content {
  align-items: center; text-align: center;
  padding-bottom: 60px;
}
.hero--about .hero__kicker::before,
.hero--about .hero__kicker::after {
  content: ""; width: 32px; height: 1px;
  background: var(--gold);
}
.hero--about .hero__title {
  font-size: clamp(44px, 7vw, 90px);
}
.hero--about .hero__sub {
  max-width: 620px;
}

/* ─── Our story section ──────────────────────────────────────── */

.story { background: var(--cream); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.story__visual { position: relative; }
.story__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}
.story__img-float {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 48%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--cream);
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.story__text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 24px;
}
.story__text h2 em {
  font-style: normal;
  font-weight: 200;
  color: var(--ocean);
}
.story__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.story__sites {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-10);
}
.site-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-80);
  transition: border-color .3s, box-shadow .3s;
}
.site-tag:hover {
  border-color: var(--ocean);
  box-shadow: 0 4px 16px rgba(26,92,90,.08);
}
.site-tag__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.site-tag__dot--coron { background: var(--coral); }
.site-tag__dot--elnido { background: var(--lagoon); }
.site-tag__dot--pb { background: var(--ocean); }

/* ─── Why Port Barton cards ──────────────────────────────────── */

.why-pb {
  background: var(--ocean-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-pb__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.why-pb .section__inner { position: relative; z-index: 2; }
.why-pb .section__eyebrow { color: var(--gold); }
.why-pb .section__heading { color: var(--white); }
.why-pb .section__heading em {
  font-style: normal;
  font-weight: 200;
  color: var(--coral-soft);
}
.why-pb .section__lead { color: var(--white-40); }
.why-pb__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-pb__card {
  padding: 36px;
  background: var(--white-20);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid var(--white-20);
}
.why-pb__card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white-20);
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
}
.why-pb__card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-pb__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white-70);
}

/* ─── Team cards ─────────────────────────────────────────────── */

.team { background: var(--cream-warm); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.08);
}
.team-card__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.team-card__body {
  padding: 28px;
}
.team-card__role {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 8px;
}
.team-card__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.25;
}
.team-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
}

/* ─── Trust stats ────────────────────────────────────────────── */

.trust { background: var(--cream); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.trust-stat {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--ink-05);
  transition: border-color .3s, box-shadow .3s;
}
.trust-stat:hover {
  border-color: var(--ocean);
  box-shadow: 0 12px 40px rgba(26,92,90,.06);
}
.trust-stat__number {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat__label {
  font-size: 13px;
  color: var(--ink-40);
  letter-spacing: .02em;
}
.trust__badges {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--ink-05);
}
/* About-page trust badge (different from components.css generic trust-badge) */
.trust .trust-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--ink-10);
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-80);
}
.trust-badge__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ocean);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-badge__text { line-height: 1.3; }
.trust-badge__text small {
  display: block;
  font-size: 12px; font-weight: 400;
  color: var(--ink-40);
}

/* ─── Contact section ────────────────────────────────────────── */

.contact { background: var(--cream-warm); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact__info h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact__info > p {
  font-size: 16px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__channels {
  list-style: none;
  margin-bottom: 32px;
}
.contact__channels li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-05);
}
.contact__channels li:first-child { padding-top: 0; }
.contact__channel-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
}
.contact__channel-icon--wa { background: #25D366; color: var(--white); }
.contact__channel-icon--email { background: var(--ocean); color: var(--white); }
.contact__channel-icon--phone { background: var(--teak); color: var(--white); }
.contact__channel-icon--pin { background: var(--coral); color: var(--white); }
.contact__channel-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 2px;
}
.contact__channel-value {
  font-size: 16px; font-weight: 500;
  color: var(--ink);
}
.contact__channel-value a {
  color: var(--ocean);
  transition: color .2s;
}
.contact__channel-value a:hover { color: var(--ocean-soft); }
.contact__social {
  display: flex; gap: 12px;
}
.contact__social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white-70);
  font-size: 14px; font-weight: 600;
  transition: background .3s, color .3s;
}
.contact__social a:hover {
  background: var(--ocean);
  color: var(--white);
}

/* ─── Contact form ───────────────────────────────────────────── */

.contact__form-wrap {
  display: flex; flex-direction: column; gap: 32px;
}
.contact__map {
  width: 100%;
  height: 340px;
  background: var(--sand);
  border-radius: 12px;
  overflow: hidden;
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact__form {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--ink-05);
}
.contact__form h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact__form .form-group {
  margin-bottom: 20px;
}
.contact__form .form-group label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 8px;
}
.contact__form .form-group input,
.contact__form .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  border: 1px solid var(--ink-10);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.contact__form .form-group input:focus,
.contact__form .form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26,92,90,.1);
}
.contact__form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn--submit {
  width: 100%;
  justify-content: center;
}
.btn--whatsapp-big {
  background: #25D366;
  color: var(--white);
  padding: 18px 40px;
  font-size: 15px;
  margin-bottom: 24px;
  width: 100%;
  justify-content: center;
}
.btn--whatsapp-big:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
}
.btn--whatsapp-big svg { width: 22px; height: 22px; }

/* ─── Office cards ───────────────────────────────────────────── */

.offices { background: var(--cream); }
.offices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.office-card {
  padding: 36px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--ink-05);
  text-align: center;
  transition: border-color .3s, box-shadow .3s;
}
.office-card:hover {
  border-color: var(--ocean);
  box-shadow: 0 12px 40px rgba(26,92,90,.06);
}
.office-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ocean);
  color: var(--white);
  border-radius: 50%;
}
.office-card__icon--active {
  background: var(--coral);
}
.office-card__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.office-card__site {
  font-size: 13px;
  color: var(--ocean);
  font-weight: 500;
  margin-bottom: 14px;
}
.office-card__address {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-40);
}

/* ─── About responsive ───────────────────────────────────────── */

@media (max-width: 1024px) {
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__img-float { display: none; }
  .why-pb__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .offices__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero--about { height: 45vh; min-height: 340px; }
  .hero--about .hero__title { font-size: clamp(36px, 9vw, 56px); }

  .why-pb__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .offices__grid { grid-template-columns: 1fr; }

  .trust__badges { flex-direction: column; gap: 16px; }
}

/* ─── Expedition region map ──────────────────────────────────── */

.expedition-map .section__lead {
  margin-bottom: 40px;
}
.expedition-map__frame {
  width: 100%;
  height: 460px;
  background: var(--sand);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ink-10);
}
.expedition-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .expedition-map__frame { height: 340px; }
}

/* Alt-direction link under the expedition booking card CTA */
.expedition__card-alt {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-40);
  text-align: center;
}
.expedition__card-alt a {
  color: var(--ocean);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Booking card: the two directions + private option */
.booking-card__options { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 18px; }
.booking-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  transition: border-color .3s, box-shadow .3s, transform .2s;
}
.booking-option:hover {
  border-color: var(--ocean);
  box-shadow: 0 6px 20px rgba(26,92,90,.10);
  transform: translateY(-1px);
}
.booking-option__title { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.booking-option__route { display: block; font-size: 13px; color: var(--ink-40); margin-top: 2px; }
.booking-option > svg, .booking-option > span + svg { flex: none; color: var(--ocean); }
.booking-option--private { border-style: dashed; background: rgba(26,92,90,.04); }

/* Map waypoint chips */
.expedition-map__points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.map-point {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--ink);
}
.map-point__num {
  width: 20px; height: 20px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ocean); color: var(--white);
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
}

/* Static expedition map (with numbered pins) */
.expedition-map__img { display: block; width: 100%; height: auto; }

/* Named pins overlaid on the static expedition map */
.expedition-map__frame { position: relative; }
.map-pin { position: absolute; width: 0; height: 0; }
.map-pin__dot {
  position: absolute; left: 0; top: 0;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(0,0,0,.5);
}
.map-pin__label {
  position: absolute; left: 12px; top: 0;
  transform: translateY(-50%);
  background: rgba(255,255,255,.95);
  color: var(--ink);
  font-size: 12px; font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.map-pin--left .map-pin__label { left: auto; right: 12px; }
@media (max-width: 640px) {
  .map-pin__label { font-size: 10px; padding: 2px 7px; }
}

/* Interactive expedition map (Maps JS API) */
#pbp-expedition-map { width: 100%; height: 520px; }
@media (max-width: 768px) { #pbp-expedition-map { height: 380px; } }
.pbp-map-label {
  background: rgba(255,255,255,.95);
  color: #1C1A17 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 3px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  white-space: nowrap;
}

/* Contact form: honeypot + notices */
.contact__hp { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }
.contact__notice {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 18px;
}
.contact__notice--ok { background: rgba(26,92,90,.10); color: var(--ocean-deep); border: 1px solid rgba(26,92,90,.25); }
.contact__notice--err { background: rgba(180,60,40,.08); color: #8a3324; border: 1px solid rgba(180,60,40,.25); }

/* Route badge: the dotted line needs real width inside the inline-flex pill */
.overview__route-badge .route__line { min-width: 110px; }

/* Booking option cards with photos + route visuals */
.booking-option__img {
  width: 64px; height: 64px;
  flex: none;
  object-fit: cover;
  border-radius: 10px;
}
.booking-option__body { flex: 1; min-width: 0; }
.booking-option__routeline {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.booking-option__routeline .route__line { min-width: 22px; }
.booking-option__routeline .route__dot { flex: none; }
.booking-option__place { white-space: nowrap; }
