/* ==========================================================================
   Project Cyprus Tours — design system
   Palette: ink navy / porcelain / brand blue / cta orange. Type: Playfair Display + Inter
   ========================================================================== */

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 600;
  src: url("/assets/fonts/playfair-display-latin.woff2") format("woff2");
}

:root {
  --ink: #0f1d2b;
  --ink-soft: #1a2e42;
  --ivory: #f5f8fb;
  --white: #ffffff;
  --brand: #0f71b7;
  --brand-deep: #07588f;
  --brand-night: #06466f;
  --brand-surface: #eaf5fc;
  --cta: #ee7b30;
  --cta-deep: #d9662a;
  --gold: #e0a93f;
  --slate: #5a6b7a;
  --line: #e0e8ef;
  --mist: #f2f6f9;
  --sea: #1f6f8b;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(15, 29, 43, 0.25);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f7b26d;
  outline-offset: 3px;
}

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

/* ---------- typography ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }

.display-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.display-lg { font-size: clamp(2rem, 4vw, 3rem); }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.overline::before { content: ""; width: 34px; height: 1px; background: var(--brand); }
.overline.on-dark { color: #9ed4f5; text-shadow: 0 1px 12px rgba(15, 29, 43, 0.55); }
.overline.on-dark::before { background: #9ed4f5; }

.lede { font-size: 1.15rem; color: var(--slate); max-width: 56ch; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cta); color: var(--white); }
.btn-primary:hover { background: var(--cta-deep); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline { border-color: var(--brand); color: var(--brand-deep); }
.btn-outline:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }

.text-link {
  font-weight: 600;
  color: var(--brand-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--brand-deep); }

/* ---------- header ---------- */

.site-header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 18px 0;
}
.site-header.is-solid { position: fixed; top: 0; }
@media (max-width: 720px) {
  .site-header { top: 0; }
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header.is-solid {
  background: rgba(247, 250, 252, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}

.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.brand img { flex: none; height: 44px; width: auto; }
/* white logo treatment while header floats over the hero */
.site-header:not(.is-solid) .brand img { filter: brightness(0) invert(1); }

.main-nav { margin-left: auto; }
.nav-primary { display: flex; align-items: center; gap: 22px; }
.nav-primary a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-primary a:hover { opacity: 1; }
.site-header.is-solid .nav-primary a { color: var(--ink); }
.nav-mobile-content { display: none; }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone { font-size: 0.92rem; font-weight: 600; color: var(--white); }
.site-header.is-solid .header-phone { color: var(--ink); }
.header-cta .btn { padding: 11px 24px; }

.nav-toggle { display: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Ken Burns slideshow: crossfading slides with a slow drifting zoom */
.slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  will-change: opacity, transform;
}
.slideshow img.is-active {
  opacity: 1;
}
.slideshow.is-ready img.is-active {
  animation: kenburns 16s ease-out forwards;
}
.slideshow.is-ready img:nth-child(even).is-active { animation-name: kenburns-alt; }
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.6%, 1.2%); }
}
@keyframes kenburns-alt {
  from { transform: scale(1.14) translate(1.4%, -1%); }
  to { transform: scale(1) translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .slideshow.is-ready img.is-active { animation: none; }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(75deg, rgba(15, 29, 43, 0.72) 0%, rgba(15, 29, 43, 0.38) 45%, rgba(15, 29, 43, 0.08) 75%),
    linear-gradient(180deg, rgba(15, 29, 43, 0.45) 0%, rgba(15, 29, 43, 0.12) 40%, rgba(15, 29, 43, 0.85) 100%);
}

.hero h1, .hero .lede { text-shadow: 0 2px 24px rgba(15, 29, 43, 0.45); }

.hero-inner { padding-top: 140px; padding-bottom: 112px; width: 100%; }
.hero h1 { max-width: 15ch; margin: 18px 0 20px; }
.hero .lede { color: rgba(255, 255, 255, 0.88); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  align-items: stretch;
  display: grid;
  gap: 18px 34px;
  grid-template-columns: 1.15fr 1.15fr 1fr 1fr;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust strong { color: var(--white); font-weight: 600; }
.hero-rating, .hero-proof { display: grid; align-content: start; gap: 1px; }
.hero-rating {
  border-radius: 8px;
  margin: -8px;
  padding: 8px;
  transition: background 0.2s ease;
}
.hero-rating:hover { background: rgba(255, 255, 255, 0.1); }
.hero-rating-stars {
  background: linear-gradient(90deg, #f8c74f 0 96%, rgba(255, 255, 255, 0.32) 96%);
  background-clip: text;
  color: transparent;
  font-size: 0.7rem;
  letter-spacing: 1px;
  line-height: 1.2;
  width: max-content;
  -webkit-background-clip: text;
}
.hero-rating small, .hero-proof small {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.7rem;
}

/* ---------- sections ---------- */

.section { padding: 104px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 56px; }
.section-head h2 { max-width: 18ch; margin-top: 14px; }
.section-head .aside { max-width: 40ch; color: var(--slate); padding-bottom: 6px; }

/* ---------- intro ---------- */

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.intro-grid h2 { margin-top: 14px; }
.intro-copy p { color: var(--slate); margin-bottom: 18px; }
.intro-copy a { color: var(--brand-deep); font-weight: 500; }
.intro-copy a:hover { text-decoration: underline; }

.intro-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; margin-top: 34px; }
.intro-actions .btn { min-width: 170px; }

/* ---------- early platform trust ---------- */

.platform-trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.platform-trust-inner {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(190px, 0.52fr) minmax(0, 2fr);
}
.platform-trust-copy .overline { margin-bottom: 9px; }
.platform-trust-copy h2 { font-size: 1.35rem; line-height: 1.28; max-width: 16ch; }
.platform-trust-strip .trust-platforms { margin-top: 0; }
.platform-trust-strip .trust-platforms a { min-height: 132px; padding: 18px 20px; }

/* ---------- lower accreditation strip ---------- */

.trust-logo-strip {
  background: var(--mist);
  border-top: 1px solid var(--line);
  padding: 52px 0;
}
.trust-logo-title {
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  text-align: center;
  text-transform: uppercase;
}
.accreditation-grid {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
.accreditation-item {
  align-items: center;
  background: var(--white);
  border: 1px solid #d7e3eb;
  border-radius: 14px;
  box-shadow: 0 12px 28px -24px rgba(15, 29, 43, 0.52);
  display: flex;
  height: 124px;
  justify-content: center;
  overflow: hidden;
}
.accreditation-mark {
  background-image: url("/assets/img/client/trust-accreditations-platforms.png");
  background-repeat: no-repeat;
  background-size: 879px 116px;
  display: block;
  flex: none;
  height: 92px;
  transform: scale(1.2);
}
.accreditation-acta { background-position: 0 -10px; width: 150px; }
.accreditation-cyprus-tourism { background-position: -225px -10px; width: 180px; }
.accreditation-tripadvisor { background-position: -478px -10px; width: 130px; }
.accreditation-kayak { background-position: -685px -10px; width: 150px; }

/* ---------- tour cards ---------- */

.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

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

.tour-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; }
.badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(247, 250, 252, 0.94);
  color: var(--ink);
}
.badge.seasonal { background: rgba(31, 111, 139, 0.92); color: var(--white); }
.badge.popular { background: var(--cta); color: var(--white); }

.tour-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.tour-days { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: 10px; }
.tour-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.tour-stops { font-size: 0.9rem; color: var(--slate); margin-bottom: 18px; flex: 1; }

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--slate);
}
.tour-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 2px 10px;
  min-width: 92px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.tour-price strong {
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  text-align: right;
}
.tour-price span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.tour-cta { margin-top: 18px; display: flex; gap: 12px; }
.tour-cta .btn { flex: 1; padding: 12px 18px; font-size: 0.88rem; }

/* ---------- weekly rhythm ---------- */

.week { background: linear-gradient(135deg, var(--brand-night) 0%, var(--brand) 100%); color: var(--white); }
.week .overline { color: var(--white); }
.week .overline::before { background: var(--white); }
.week .section-head .aside { color: rgba(255, 255, 255, 0.65); }

.week-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; border-radius: var(--radius); overflow: hidden; }
.week-day { background: rgba(4, 48, 80, 0.48); padding: 26px 18px 30px; min-height: 168px; position: relative; transition: background 0.25s; }
.week-day:hover { background: rgba(255, 255, 255, 0.12); }
.week-day .dow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #8fc9ee; }
.week-day h3 { font-size: 1.05rem; margin-top: 12px; line-height: 1.3; }
.week-day .alt { display: block; margin-top: 6px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); font-family: var(--font-body); }
.week-day .tag { position: absolute; bottom: 14px; left: 18px; font-size: 0.7rem; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.08em; text-transform: uppercase; }

.week-note { margin-top: 26px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- values / why us ---------- */

.values { background: var(--white); }
.values-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.values-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.values-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }

.value-items { display: grid; gap: 8px; margin-top: 40px; }
.value-item { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.value-item .num { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--brand); min-width: 32px; }
.value-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.value-item p { font-size: 0.92rem; color: var(--slate); }

/* ---------- transfers ---------- */

.transfers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.transfer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.transfer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.transfer-media { aspect-ratio: 16 / 8; overflow: hidden; }
.transfer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.transfer-card:hover .transfer-media img { transform: scale(1.05); }
.transfer-body { padding: 32px 36px 36px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.transfer-card h3 { font-size: 1.4rem; }
.transfer-card p { color: var(--slate); font-size: 0.95rem; flex: 1; }

/* ---------- private tour feature ---------- */

.private-feature {
  background: linear-gradient(135deg, var(--brand-night) 0%, var(--brand) 72%, #1686cb 100%);
  color: var(--white);
  overflow: hidden;
}
.private-feature-grid { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 72px; }
.private-feature-media { border-radius: 22px; overflow: hidden; min-height: 590px; position: relative; }
.private-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(15, 29, 43, 0.86) 100%);
}
.private-feature-media img { height: 100%; left: 0; object-fit: cover; position: absolute; top: 0; width: 100%; }
.private-feature-tag { bottom: 28px; display: grid; left: 30px; position: absolute; z-index: 1; }
.private-feature-tag span { color: #9ed4f5; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.private-feature-tag strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.private-feature-copy .overline { color: var(--white); }
.private-feature-copy .overline::before { background: var(--white); }
.private-feature-copy h2 { margin: 14px 0 18px; max-width: 13ch; }
.private-feature-copy .lede { color: rgba(255, 255, 255, 0.88); margin-bottom: 16px; }
.private-feature-copy > p:not(.overline):not(.lede) { color: rgba(255, 255, 255, 0.64); }
.private-feature-points { display: grid; gap: 0; margin: 30px 0 32px; }
.private-feature-points > div {
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 16px;
  grid-template-columns: 32px 1fr;
  padding: 16px 0;
}
.private-feature-points > div > span { color: #9ed4f5; font-size: 0.7rem; letter-spacing: 0.1em; padding-top: 3px; }
.private-feature-points p { color: rgba(255, 255, 255, 0.62); font-size: 0.85rem; }
.private-feature-points strong { color: var(--white); display: block; font-size: 0.92rem; margin-bottom: 1px; }
.private-feature .btn-outline { border-color: rgba(255, 255, 255, 0.52); color: var(--white); }
.private-feature .btn-outline:hover { background: var(--white); color: var(--ink); }

/* ---------- verified reviews ---------- */

.reviews { background: var(--brand-surface); }
.review-carousel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 55px -28px rgba(15, 29, 43, 0.32);
  padding: 30px;
}
.review-carousel-head, .review-carousel-foot { align-items: center; display: flex; justify-content: space-between; gap: 24px; }
.review-carousel-head { margin-bottom: 24px; }
.review-source { align-items: center; display: flex; gap: 13px; }
.review-source-logo { display: block; flex: none; height: 32px; width: 32px; }
.review-source strong, .review-source span { display: block; }
.review-source span { color: var(--slate); font-size: 0.75rem; }
.review-controls { display: flex; gap: 8px; }
.review-controls button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  height: 42px;
  justify-content: center;
  transition: all 0.2s;
  width: 42px;
}
.review-controls button:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.review-controls button:disabled { cursor: default; opacity: 0.35; }
.review-viewport { overflow: hidden; }
.review-track {
  display: grid;
  gap: 20px;
  grid-auto-columns: calc((100% - 40px) / 3);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 2px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 245px;
  padding: 26px;
  scroll-snap-align: start;
}
.review-card-head { align-items: center; display: flex; gap: 12px; }
.review-card-head strong, .review-card-head span { display: block; }
.review-card-head strong { font-size: 0.9rem; }
.review-card-head span { color: var(--slate); font-size: 0.72rem; }
.review-platform-icon { display: block; flex: none; height: 24px; width: 24px; }
.review-card .stars { color: #f4b400; font-size: 0.88rem; letter-spacing: 2px; }
.review-card blockquote { color: var(--ink-soft); flex: 1; font-family: var(--font-display); font-size: 1.04rem; line-height: 1.5; }
.review-carousel-foot { margin-top: 22px; }
.review-dots { display: flex; gap: 2px; }
.review-dots button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  padding: 0;
  width: 28px;
}
.review-dots button::before {
  background: var(--line);
  border-radius: 999px;
  content: "";
  height: 7px;
  transition: width 0.2s, background 0.2s;
  width: 7px;
}
.review-dots button.is-active::before { background: var(--brand); width: 20px; }
.trust-platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.trust-platforms a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  padding: 22px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.trust-platforms a:hover { border-color: var(--brand); transform: translateY(-2px); }
.platform-logo-frame { align-items: center; display: flex; height: 46px; margin-bottom: 12px; }
.platform-logo { display: block; height: auto; max-height: 40px; max-width: 196px; object-fit: contain; object-position: left center; width: auto; }
.platform-logo-google { height: 34px; width: 34px; }
.platform-logo-tripadvisor { height: 30px; width: 196px; }
.platform-logo-getyourguide { height: 44px; width: 55px; }
.trust-platforms strong { font-family: var(--font-display); font-size: 1.22rem; font-weight: 500; margin: 3px 0; }
.trust-platforms span:last-child { color: var(--slate); font-size: 0.77rem; }
.platform-kicker { color: var(--brand-deep); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- journal ---------- */

.journal { background: var(--white); }
.tour-related { border-top: 1px solid var(--line); }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { display: flex; flex-direction: column; gap: 16px; }
.post-card .post-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; }
.post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover img { transform: scale(1.04); }
.post-card .cat { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-deep); }
.post-card h3 { font-size: 1.2rem; line-height: 1.35; }
.post-card:hover h3 { text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 4px; }

/* ---------- faq ---------- */

.faq .container { max-width: 860px; }
.faq-list { display: grid; gap: 14px; margin-top: 8px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 28px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.4rem; color: var(--brand); transition: transform 0.25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--slate); padding-bottom: 24px; font-size: 0.95rem; }
.faq-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 24px; margin-top: 32px; }

/* ---------- FAQ library ---------- */

.faq-library { background: var(--mist); }
.faq-library-intro { max-width: 760px; margin-bottom: 48px; }
.faq-library-intro h2 { margin: 14px 0 16px; }
.faq-library-intro p { color: var(--slate); }
.faq-search-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(15, 29, 43, 0.08);
  margin-top: -46px;
  margin-bottom: 56px;
  padding: 24px;
  position: relative;
  z-index: 2;
}
.faq-search-label { display: block; color: var(--ink); font-size: 0.85rem; font-weight: 600; margin-bottom: 9px; }
.faq-search-field { position: relative; }
.faq-search-field .icon-svg { color: var(--brand-deep); left: 16px; position: absolute; top: 50%; transform: translateY(-50%); }
.faq-search-field input {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 15px 16px 15px 48px;
  width: 100%;
}
.faq-search-field input:focus { border-color: var(--brand); outline: 3px solid rgba(31, 111, 139, 0.18); }
.faq-search-status { color: var(--slate); font-size: 0.82rem; margin-top: 9px; min-height: 1.25em; }
.faq-library-grid { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 56px; align-items: start; }
.faq-category-nav { position: sticky; top: 104px; }
.faq-category-nav p { color: var(--ink); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em; margin-bottom: 14px; text-transform: uppercase; }
.faq-category-nav nav { display: grid; gap: 7px; }
.faq-category-nav a {
  border-left: 2px solid var(--line);
  color: var(--slate);
  font-size: 0.9rem;
  padding: 8px 0 8px 16px;
}
.faq-category-nav a:hover, .faq-category-nav a:focus-visible { border-color: var(--brand); color: var(--brand-deep); }
.faq-groups { display: grid; gap: 58px; }
.faq-group { scroll-margin-top: 110px; }
.faq-group-head { margin-bottom: 22px; }
.faq-group-head .overline { margin-bottom: 9px; }
.faq-group-head h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
.faq-group .faq-list { margin: 0; }
.faq-group[hidden], .faq-item[hidden] { display: none; }
.faq-empty {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--slate);
  padding: 34px;
  text-align: center;
}
.faq-empty[hidden] { display: none; }
.faq-support-card {
  align-items: center;
  background: linear-gradient(135deg, var(--brand-night), var(--brand));
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-top: 64px;
  padding: 36px 40px;
}
.faq-support-card h2 { font-size: 1.55rem; margin-bottom: 6px; }
.faq-support-card p { color: rgba(255, 255, 255, 0.68); font-size: 0.92rem; }
.faq-support-card .hero-actions { flex-shrink: 0; }

/* ---------- cta band ---------- */

.cta-band { overflow: hidden; position: relative; color: var(--white); isolation: isolate; }
.cta-band .cta-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cta-band .cta-media img { transform: scale(1.015); width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 29, 45, 0.76), rgba(8, 29, 45, 0.9)),
    linear-gradient(110deg, rgba(15, 113, 183, 0.25), transparent 55%);
}
.cta-band .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  text-align: center;
}
.cta-band .container::before {
  background: linear-gradient(90deg, transparent, rgba(158, 212, 245, 0.75), transparent);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: min(560px, 72vw);
}
.cta-band .overline { margin: 0; }
.cta-band h2 {
  font-size: clamp(2.35rem, 4.6vw, 3.65rem);
  margin: 18px auto 20px;
  max-width: 28ch;
  text-wrap: balance;
}
.cta-title-line { display: block; white-space: nowrap; }
.cta-band p:not(.overline) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 62ch;
  margin: 0 auto 34px;
  text-wrap: balance;
}
.cta-band .hero-actions { justify-content: center; }

/* ---------- footer ---------- */

.site-footer {
  background: linear-gradient(145deg, var(--brand-night) 0%, var(--brand-deep) 58%, var(--brand) 145%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding: 72px 0 56px; }
.site-footer h2 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-credit { color: rgba(255, 255, 255, 0.82); font-weight: 600; }
.footer-credit:hover { color: var(--white); }

/* ---------- persistent WhatsApp contact ---------- */

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 14px 34px -12px rgba(15, 29, 43, 0.48);
  color: #083d20;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 10px;
  left: 22px;
  min-height: 54px;
  padding: 10px 19px 10px 14px;
  position: fixed;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 90;
}
.whatsapp-float:hover {
  background: #35df76;
  box-shadow: 0 18px 38px -12px rgba(15, 29, 43, 0.58);
  transform: translateY(-2px);
}
.whatsapp-float svg {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  fill: none;
  height: 30px;
  padding: 6px;
  stroke: #148a45;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 30px;
}

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .tours-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .week-grid { grid-template-columns: repeat(4, 1fr); }
  .intro-grid, .values-grid { grid-template-columns: 1fr; gap: 48px; }
  .private-feature-grid { grid-template-columns: 1fr; gap: 44px; }
  .private-feature-media { min-height: 480px; }
  .private-feature-copy h2 { max-width: 18ch; }
  .review-track { grid-auto-columns: calc((100% - 20px) / 2); }
}

@media (min-width: 721px) and (max-width: 860px) {
  .site-header .container { gap: 15px; }
  .brand img { height: 38px; }
  .nav-primary { gap: 12px; }
  .nav-primary a {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .header-cta { display: none; }
  .accreditation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .accreditation-item { height: 120px; }
  .accreditation-mark { transform: scale(1.14); }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .main-nav, .header-phone, .header-cta { display: none; }
  .site-header .container { gap: 18px; }
  .brand, .nav-toggle { position: relative; z-index: 103; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 46px;
    height: 46px;
    background: rgba(15, 29, 43, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .site-header.is-solid .nav-toggle {
    background: var(--white);
    border-color: var(--line);
    color: var(--ink);
  }
  .site-header.nav-open {
    position: fixed;
    top: 0;
    padding: 14px 0;
  }
  .site-header.nav-open .brand img { filter: brightness(0) invert(1); }
  .site-header.nav-open .nav-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
  }
  .site-header.nav-open .main-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 102;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 100px 24px 30px;
    background:
      radial-gradient(circle at 88% 8%, rgba(31, 111, 139, 0.42), transparent 36%),
      radial-gradient(circle at 8% 90%, rgba(238, 123, 48, 0.15), transparent 32%),
      var(--brand-night);
  }
  .site-header.nav-open .main-nav::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.035), transparent 40%);
  }
  .site-header.nav-open .nav-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .site-header.nav-open .nav-primary a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.12;
    opacity: 1;
    padding: 13px 0;
  }
  .nav-mobile-content { display: block; color: var(--white); padding-top: 25px; }
  .nav-mobile-heading { display: grid; gap: 10px; margin-bottom: 28px; }
  .nav-mobile-heading > p:last-child { color: rgba(255, 255, 255, 0.66); font-size: 0.88rem; max-width: 46ch; }
  .nav-mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
  .nav-mobile-label {
    color: #9ed4f5;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .nav-mobile-links { display: grid; gap: 8px; }
  .site-header.nav-open .nav-mobile-links a,
  .site-header.nav-open .nav-mobile-email {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    line-height: 1.35;
  }
  .site-header.nav-open .nav-mobile-links a:hover,
  .site-header.nav-open .nav-mobile-email:hover { color: var(--white); }
  .nav-mobile-contact {
    align-items: end;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .site-header.nav-open .nav-mobile-phone {
    color: var(--white);
    display: block;
    font-family: var(--font-body);
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 2px;
  }
  .nav-mobile-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
  .nav-mobile-actions .btn { font-size: 0.8rem; padding: 11px 17px; }
  body.nav-locked { overflow: hidden; }
  .platform-trust-inner { grid-template-columns: 1fr; }
  .platform-trust-copy h2 { max-width: none; }
  .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tours-grid, .journal-grid, .transfers-grid { grid-template-columns: 1fr; }
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .hero-inner { padding-top: 120px; padding-bottom: 104px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 40px; }
  .private-feature-media { min-height: 390px; }
  .private-feature-tag { bottom: 22px; left: 22px; }
  .private-feature .hero-actions { align-items: stretch; flex-direction: column; }
  .private-feature .hero-actions .btn { width: 100%; }
  .review-carousel { border-radius: var(--radius); padding: 20px; }
  .review-track { grid-auto-columns: 100%; }
  .review-card { min-height: 230px; padding: 24px; }
  .review-carousel-foot { align-items: flex-start; flex-direction: column; }
  .trust-platforms { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-header.nav-open .main-nav { padding-left: 20px; padding-right: 20px; }
  .nav-mobile-grid { grid-template-columns: 1fr; gap: 22px; }
  .nav-mobile-contact { align-items: start; grid-template-columns: 1fr; }
  .nav-mobile-actions { justify-content: flex-start; }
}

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* ---------- compact page hero ---------- */

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.page-hero .hero-media::after {
  background:
    linear-gradient(75deg, rgba(15, 29, 43, 0.75) 0%, rgba(15, 29, 43, 0.42) 45%, rgba(15, 29, 43, 0.15) 75%),
    linear-gradient(180deg, rgba(15, 29, 43, 0.5) 0%, rgba(15, 29, 43, 0.2) 45%, rgba(15, 29, 43, 0.82) 100%);
}
.page-hero-inner { padding-top: 150px; padding-bottom: 48px; width: 100%; }
.page-hero h1 { max-width: 22ch; margin: 16px 0 12px; text-shadow: 0 2px 24px rgba(15, 29, 43, 0.45); }
.page-hero .lede { color: rgba(255, 255, 255, 0.88); text-shadow: 0 1px 16px rgba(15, 29, 43, 0.5); }
.breadcrumb { font-size: 0.82rem; color: rgba(255, 255, 255, 0.75); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }

.page-hero.plain {
  background: linear-gradient(120deg, var(--brand-night) 0%, var(--brand-deep) 65%, var(--brand) 125%);
  min-height: 0;
}
.page-hero.plain .page-hero-inner { padding-top: 120px; padding-bottom: 44px; }

/* ---------- inline SVG icons ---------- */

.icon-svg { width: 20px; height: 20px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-svg.lg { width: 28px; height: 28px; }

/* ---------- scrollable pill nav (services) ---------- */

.pill-nav-wrap {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(247, 250, 252, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.pill-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pill-nav::-webkit-scrollbar { display: none; }
.pill-nav a {
  flex: none;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s ease;
}
.pill-nav a:hover { border-color: var(--brand); color: var(--brand-deep); }
.pill-nav a.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---------- service blocks ---------- */

.service-block { padding: 88px 0; scroll-margin-top: 130px; }
.service-block:nth-child(even) { background: var(--white); }
.service-head { max-width: 62ch; margin-bottom: 40px; }
.service-head h2 { margin: 14px 0 14px; }
.service-head .desc { color: var(--slate); }
.service-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.service-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 32px; }
.service-block:nth-child(even) .service-panel { background: var(--ivory); }
.service-panel h3 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: 16px; }
.service-cta { margin-top: 36px; }

/* ---------- icon lists ---------- */

.check-list, .plain-list { list-style: none; display: grid; gap: 10px; }
.check-list li, .plain-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--ink-soft); }
.check-list .icon-svg { color: var(--brand); margin-top: 2px; width: 17px; height: 17px; }
.x-list .icon-svg { color: #b3675c; }
.plain-list .icon-svg { color: var(--brand); margin-top: 2px; width: 17px; height: 17px; }

/* ---------- tour detail ---------- */

.tour-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr); gap: 56px; align-items: start; }
.tour-layout > *, .tour-content { min-width: 0; }
.tour-content { overflow-wrap: break-word; }
.tour-content > * { max-width: 100%; }
.tour-content h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.tour-content h2:first-child { margin-top: 0; }
.tour-content p { color: var(--slate); margin-bottom: 16px; }

.tour-experience {
  background: linear-gradient(145deg, var(--white), var(--brand-surface));
  border: 1px solid #cfe3f0;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  margin: 34px 0 10px;
  padding: 30px 32px 28px;
}
.tour-experience .overline {
  color: var(--brand-deep);
  font-size: 0.7rem;
  margin: 0 0 12px;
}
.tour-experience h2 {
  font-size: 1.72rem;
  margin: 0 0 15px;
}
.tour-experience p:not(.overline) {
  font-size: 1rem;
  line-height: 1.72;
  max-width: 70ch;
}
.tour-experience p:last-child { margin-bottom: 0; }

.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border-radius: var(--radius); overflow: hidden; margin: 26px 0 8px; }
.fact { background: var(--white); padding: 18px 20px; display: flex; gap: 12px; align-items: center; }
.fact > div { min-width: 0; }
.fact .icon-svg { color: var(--brand); }
.fact strong { display: block; font-size: 0.92rem; line-height: 1.32; }
.fact span { display: block; margin-top: 5px; font-size: 0.8rem; line-height: 1.4; color: var(--slate); }
.fact span .text-link { line-height: 1.35; }

.itinerary { list-style: none; display: grid; gap: 0; margin: 8px 0 12px; }
.itinerary li { position: relative; padding: 0 0 22px 34px; }
.itinerary li::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}
.itinerary li::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 22px;
  bottom: -4px;
  width: 1px;
  background: var(--line);
}
.itinerary li:last-child::after { display: none; }
.itinerary strong { display: block; font-size: 0.98rem; }
.itinerary span { font-size: 0.88rem; color: var(--slate); }

.book-card {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 32px;
  box-shadow: var(--shadow);
}
@media (min-width: 1025px) {
  .book-card {
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) var(--mist);
  }
  .book-card::-webkit-scrollbar { width: 8px; }
  .book-card::-webkit-scrollbar-track { background: var(--mist); }
  .book-card::-webkit-scrollbar-thumb {
    background: var(--brand);
    border: 2px solid var(--mist);
    border-radius: 999px;
  }
}
.book-card .from { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.price-rows { display: grid; gap: 0; margin: 14px 0 20px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.price-row strong {
  font-family: var(--font-body);
  font-size: 1.38rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-row span { font-size: 0.88rem; color: var(--slate); }
.book-card .btn { width: 100%; margin-top: 10px; }
.book-note { font-size: 0.82rem; color: var(--slate); margin-top: 16px; text-align: center; }
.booking-loader { margin-top: 4px; }
.booking-loader .btn[aria-busy="true"] { cursor: wait; opacity: 0.78; }
.booking-status { color: var(--slate); font-size: 0.78rem; line-height: 1.45; margin-top: 10px; text-align: center; }
.bokunWidget:not(:empty) { margin-top: 14px; }

/* ---------- tour-page review proof ---------- */

.tour-proof { background: linear-gradient(135deg, var(--brand-night), var(--brand)); color: var(--white); }
.tour-proof .overline { color: var(--white); }
.tour-proof .overline::before { background: var(--white); }
.tour-proof-head { align-items: end; display: flex; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.tour-proof-head h2 { margin-top: 12px; }
.tour-proof-head > p { color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; max-width: 40ch; }
.tour-proof-grid { display: grid; grid-template-columns: 1fr 1fr 0.85fr; gap: 18px; }
.tour-proof blockquote, .tour-proof-links {
  background: rgba(4, 48, 80, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 26px;
}
.tour-proof blockquote { display: flex; flex-direction: column; gap: 14px; }
.tour-proof-source { align-items: center; color: rgba(255, 255, 255, 0.68); display: flex; font-size: 0.7rem; gap: 8px; }
.tour-proof-source img { background: var(--white); border-radius: 50%; height: 24px; padding: 4px; width: 24px; }
.tour-proof .stars { color: #f4b400; letter-spacing: 2px; }
.tour-proof blockquote p { flex: 1; font-family: var(--font-display); font-size: 1rem; line-height: 1.52; }
.tour-proof cite { font-style: normal; }
.tour-proof cite strong, .tour-proof cite span { display: block; }
.tour-proof cite strong { font-size: 0.82rem; }
.tour-proof cite span { color: rgba(255, 255, 255, 0.52); font-size: 0.7rem; }
.tour-proof-links { display: grid; align-content: start; gap: 0; }
.tour-proof-links a {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-size: 0.79rem;
  gap: 12px;
  justify-content: space-between;
  line-height: 1.35;
  padding: 14px 0;
}
.tour-proof-links a:hover { color: var(--white); }
.tour-proof-links a span { color: #9ed4f5; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; display: flex; gap: 18px; align-items: flex-start; }
.contact-card .icon-svg { color: var(--brand); margin-top: 3px; }
.contact-card strong { display: block; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--slate); font-size: 0.94rem; }
.contact-card a:hover { color: var(--brand-deep); text-decoration: underline; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  font-size: 0.94rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--brand); outline-offset: 0; border-color: var(--brand); }
.form-card .btn { margin-top: 24px; }
.form-note { color: var(--slate); font-size: 0.84rem; margin-top: 14px; }
.form-status { color: var(--brand-deep); font-size: 0.9rem; font-weight: 600; margin-top: 14px; min-height: 1.5em; }
.form-contact-help {
  background: var(--brand-surface);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  color: var(--brand-night);
  font-size: 0.84rem;
  padding: 10px 12px;
}
.form-consent label {
  align-items: flex-start;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  font-size: 0.84rem;
  font-weight: 400;
  gap: 10px;
  line-height: 1.55;
}
.form-consent input {
  accent-color: var(--brand);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  width: 18px;
}
.form-consent a { color: var(--brand-deep); font-weight: 600; text-decoration: underline; }
.hp-field {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.turnstile-wrap { margin-top: 20px; min-height: 0; }
.turnstile-wrap:not(:empty) { min-height: 65px; }
.form-card button[aria-busy="true"] { cursor: wait; opacity: 0.72; }
.form-success {
  background: linear-gradient(145deg, var(--brand-surface), var(--white));
  border: 1px solid #b9dcef;
  border-radius: 12px;
  color: var(--ink);
  padding: 30px;
}
.form-success-icon {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 1.15rem;
  height: 38px;
  justify-content: center;
  margin-bottom: 16px;
  width: 38px;
}
.form-success h3 { font-size: 1.45rem; margin-bottom: 10px; }
.form-success p { color: var(--slate); margin-top: 8px; }
.form-success .form-reference { color: var(--brand-night); font-size: 0.84rem; }
.form-success .btn { margin-top: 22px; }
.lightbox-locked { overflow: hidden; }

.map-embed { background: var(--brand-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 56px; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.map-placeholder {
  align-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(15, 113, 183, 0.16), transparent 34%),
    linear-gradient(135deg, var(--white), var(--brand-surface));
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  padding: 42px 24px;
  text-align: center;
}
.map-placeholder .icon-svg { color: var(--brand); height: 34px; margin-bottom: 14px; width: 34px; }
.map-placeholder h2 { font-size: 1.45rem; margin-bottom: 8px; }
.map-placeholder p { color: var(--slate); max-width: 46ch; }
.map-placeholder-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 22px; }
.map-placeholder-actions .btn { min-width: 190px; }

/* ---------- privacy preferences ---------- */

.consent-banner {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #cbdce8;
  border-radius: 16px;
  bottom: max(18px, env(safe-area-inset-bottom));
  box-shadow: 0 22px 70px -20px rgba(15, 29, 43, 0.52);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 50%;
  max-width: 1180px;
  padding: 22px 24px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  z-index: 400;
}
.consent-banner[hidden] { display: none; }
.consent-copy { align-items: flex-start; display: flex; gap: 16px; }
.consent-copy img { border-radius: 10px; flex: 0 0 auto; }
.consent-copy h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.consent-copy p { color: var(--slate); font-size: 0.82rem; line-height: 1.5; max-width: 76ch; }
.consent-copy .consent-note { font-size: 0.76rem; margin-top: 4px; }
.consent-copy a { color: var(--brand-deep); font-weight: 600; text-decoration: underline; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.consent-actions .btn { margin: 0; min-height: 46px; white-space: nowrap; }
.consent-necessary {
  background: var(--white);
  border: 1px solid var(--brand);
  color: var(--brand-deep);
}
.consent-necessary:hover { background: var(--brand-surface); }
.cookie-settings-link {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.cookie-settings-link:hover { color: var(--white); text-decoration: underline; }
.consent-open .whatsapp-float { bottom: 190px; }

/* ---------- inner responsive ---------- */

@media (max-width: 1024px) {
  .service-cols, .tour-layout, .contact-grid { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-proof-grid { grid-template-columns: 1fr 1fr; }
  .tour-proof-links { grid-column: 1 / -1; }
  .faq-library-grid { grid-template-columns: 1fr; gap: 34px; }
  .faq-category-nav { position: static; }
  .faq-category-nav nav { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; }
  .faq-category-nav a { border: 1px solid var(--line); border-radius: 999px; flex: 0 0 auto; padding: 9px 14px; }
}
@media (max-width: 720px) {
  .pill-nav-wrap { top: 58px; }
  .form-grid { grid-template-columns: 1fr; }
  .page-hero-inner { padding-top: 130px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .tour-proof-head { align-items: flex-start; flex-direction: column; }
  .tour-proof-grid { grid-template-columns: 1fr; }
  .tour-proof-links { grid-column: auto; }
  .faq-search-card { margin-top: -32px; padding: 18px; }
  .faq-library-intro { margin-bottom: 38px; }
  .faq-groups { gap: 44px; }
  .faq-support-card { align-items: flex-start; flex-direction: column; padding: 30px 24px; }
  .consent-banner {
    align-items: stretch;
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 16px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 18px;
    width: calc(100% - 20px);
  }
  .consent-copy img { height: 40px; width: 40px; }
  .consent-copy p { font-size: 0.78rem; }
  .consent-copy .consent-note { display: none; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-actions .btn { font-size: 0.78rem; padding: 10px; white-space: normal; }
  .consent-open .whatsapp-float { display: none; }
}

/* clickable tour cards: image + title link to the tour */
.tour-media a { display: block; height: 100%; }
.tour-body h3 a { transition: color 0.2s; }
.tour-body h3 a:hover { color: var(--brand-deep); }

/* ---------- top bar: standalone strip above the header ---------- */

.top-bar-wrap { background: var(--brand-night); position: relative; z-index: 101; }
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7px 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}
.top-bar-contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar a { display: inline-flex; align-items: center; gap: 7px; }
.top-bar a:hover { color: var(--white); }
.top-bar .icon-svg { width: 14px; height: 14px; }
.top-bar-social { display: flex; gap: 14px; }
.top-bar-social .icon-svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .top-bar-wrap { display: none; }
}

/* ---------- footer social ---------- */

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); }
.footer-social .icon-svg { width: 17px; height: 17px; }

/* ---------- service block media ---------- */

.service-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 6; margin-bottom: 40px; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- tour gallery ---------- */

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 10px 0 8px; }
.gallery-grid figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; margin: 0; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-media { aspect-ratio: 16 / 9; }
}

/* ---------- legal pages ---------- */

.legal .container { max-width: 820px; }
.legal-content h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.legal-content h3 { font-size: 1.15rem; margin: 30px 0 10px; }
.legal-content p, .legal-content li { color: var(--slate); font-size: 0.96rem; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 16px; }
.legal-content a { color: var(--brand-deep); text-decoration: underline; }
.legal-updated { font-size: 0.85rem; color: var(--slate); margin-bottom: 28px; }

/* ---------- blog post ---------- */

.post .container, .post-body { max-width: 820px; }
.post-body h2 { font-size: 1.6rem; margin: 44px 0 16px; }
.post-body h3 { font-size: 1.2rem; margin: 30px 0 12px; }
.post-body p, .post-body li { color: var(--slate); margin-bottom: 16px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 18px; }
.post-body a { color: var(--brand-deep); text-decoration: underline; }
.post-body img { border-radius: var(--radius); margin: 26px 0; }
.post-meta { font-size: 0.85rem; color: var(--slate); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- tour hero mosaic + lightbox ---------- */

.mosaic-section { padding: 26px 0 0; }
.mosaic {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 460px;
}
.mosaic figure { margin: 0; overflow: hidden; cursor: zoom-in; position: relative; }
.mosaic figure:first-child { grid-row: 1 / 3; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic figure { min-height: 0; }
.mosaic figure:first-child img { min-height: 460px; }
.mosaic figure:not(:first-child) img { min-height: 224px; }
@media (max-width: 720px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; max-height: none; }
  .mosaic figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .mosaic figure:first-child img { min-height: 220px; }
  .mosaic figure:not(:first-child) img { min-height: 130px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 18, 27, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  width: 92vw;
  height: 86vh;
  max-width: 1400px;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* mosaic: hidden extra photos feed the lightbox; badge shows the count */
.mosaic figure.extra { display: none; }
.more-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(15, 29, 43, 0.78);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  pointer-events: none;
}

/* itinerary thumbnails */
.itinerary li { display: grid; grid-template-columns: 1fr auto; column-gap: 18px; align-items: start; }
.itinerary li strong, .itinerary li span { grid-column: 1; }
.itinerary-copy { display: block; line-height: 1.65; }
.itinerary-copy b {
  color: var(--ink);
  display: block;
  font-size: 0.92rem;
  margin: 4px 0 5px;
}
.itinerary-copy em {
  color: var(--brand-deep);
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 8px;
}
.it-thumb { grid-column: 2; grid-row: 1 / 3; width: 122px; height: 86px; object-fit: cover; border-radius: 10px; }
.tour-condition-note {
  border-left: 3px solid var(--brand);
  color: var(--slate);
  font-size: 0.88rem !important;
  margin: 4px 0 30px;
  padding: 9px 0 9px 14px;
}
@media (max-width: 720px) { .it-thumb { width: 92px; height: 66px; } }

/* clickable weekly schedule tiles */
.week-day h3 a:hover, .week-day .alt a:hover { color: #9ed4f5; text-decoration: underline; text-underline-offset: 3px; }

/* pickup table with search */
.pickup-box { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; margin-top: 8px; }
.pickup-search { padding: 16px; border-bottom: 1px solid var(--line); }
.pickup-search input {
  width: 100%;
  font: inherit;
  font-size: 0.94rem;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
}
.pickup-search input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.pickup-scroll { max-height: 420px; overflow-y: auto; }
.pickup-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.pickup-table th {
  position: sticky;
  top: 0;
  background: var(--brand-deep);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pickup-table td { padding: 10px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.pickup-table tr:nth-child(even) td { background: var(--ivory); }
.pickup-table .no-results td { text-align: center; color: var(--slate); padding: 22px; }
.pickup-box, .pickup-scroll { max-width: 100%; min-width: 0; width: 100%; }

/* ---------- private-tour cross-sell ---------- */

.private-cross-sell {
  background: var(--white);
  padding: 0 0 88px;
}
.private-cross-sell-card {
  align-items: center;
  background:
    radial-gradient(circle at 92% 12%, rgba(15, 113, 183, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fcff, var(--brand-surface));
  border: 1px solid #cfe3f0;
  border-radius: 22px;
  box-shadow: 0 22px 50px -34px rgba(15, 29, 43, 0.48);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 44px 48px;
}
.private-cross-sell-copy { min-width: 0; }
.private-cross-sell-copy h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 14px 0 16px;
  max-width: 18ch;
}
.private-cross-sell-copy > p:last-child {
  color: var(--slate);
  line-height: 1.7;
  max-width: 66ch;
}
.private-cross-sell-actions {
  align-items: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 245px;
}
.private-cross-sell-actions .btn { width: 100%; }
.private-cross-sell-actions .text-link {
  color: var(--brand-deep);
  font-size: 0.87rem;
  font-weight: 600;
}

/* ---------- comprehensive mobile refinements ---------- */

.faq-library > .container { max-width: 1120px; }

@media (max-width: 720px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .brand img { height: 38px; }
  .display-xl { font-size: clamp(2.35rem, 12vw, 3.1rem); }
  .display-lg { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .lede { font-size: 1rem; }
  .page-hero { min-height: 430px; }
  .page-hero-inner { padding-bottom: 36px; padding-top: 118px; }
  .page-hero h1 { font-size: clamp(1.85rem, 8.8vw, 2.3rem); max-width: 100%; }
  .page-hero .lede { font-size: 0.98rem; line-height: 1.55; }
  .page-hero.plain .page-hero-inner { padding-bottom: 36px; padding-top: 108px; }
  .breadcrumb { font-size: 0.74rem; }

  .hero-actions .btn { flex: 1 1 100%; width: 100%; }
  .hero-trust { gap: 16px 20px; margin-top: 40px; padding-top: 22px; }
  .hero-rating, .hero-proof { min-width: 0; }
  .hero-rating { margin: -6px; padding: 6px; }
  .hero-trust strong { font-size: 0.78rem; line-height: 1.35; }
  .hero-rating small, .hero-proof small { font-size: 0.66rem; }
  .intro-actions { align-items: stretch; flex-direction: column; }
  .intro-actions .btn { width: 100%; }
  .cta-band .container { min-height: 0; padding-bottom: 76px; padding-top: 76px; }
  .cta-band h2 { font-size: clamp(1.9rem, 8.6vw, 2.65rem); max-width: 100%; }
  .cta-band p:not(.overline) { font-size: 0.96rem; line-height: 1.65; }
  .platform-trust-strip { padding: 28px 0; }
  .platform-trust-strip .trust-platforms { grid-template-columns: 1fr; }
  .platform-trust-strip .trust-platforms a { min-height: 0; }
  .trust-logo-strip { padding: 42px 0; }
  .accreditation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .accreditation-item { height: 112px; }
  .accreditation-mark { transform: scale(1); }

  .tour-body { padding: 22px 20px 24px; }
  .tour-meta { align-items: flex-end; gap: 12px; }
  .tour-meta > span { font-size: 0.8rem; }
  .tour-cta { flex-direction: column; }
  .tour-cta .btn { width: 100%; }
  .week-day { min-height: 154px; padding: 22px 15px 28px; }

  .facts-grid { grid-template-columns: 1fr; }
  .fact { padding: 16px 18px; }
  .tour-layout { gap: 38px; }
  .tour-content h2 { font-size: 1.42rem; margin: 34px 0 14px; }
  .tour-content p { font-size: 0.96rem; line-height: 1.68; }
  .tour-experience {
    margin: 28px 0 8px;
    padding: 22px 20px 20px;
  }
  .tour-experience .overline { font-size: 0.66rem; margin-bottom: 10px; }
  .tour-experience h2 { font-size: 1.48rem; margin: 0 0 13px; }
  .tour-experience p:not(.overline) { font-size: 0.94rem; line-height: 1.68; }
  .book-card { padding: 26px 22px 28px; }
  .price-row strong { font-family: var(--font-body); font-size: 1.25rem; font-weight: 700; }
  .itinerary li { column-gap: 12px; padding-left: 28px; }
  .it-thumb { height: 58px; width: 78px; }
  .pickup-search { padding: 12px; }
  .pickup-search input {
    border-radius: 12px;
    font-size: 0.92rem;
    min-width: 0;
    padding: 12px 14px;
  }
  .pickup-scroll {
    max-height: 430px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .pickup-table,
  .pickup-table tbody { display: block; width: 100%; }
  .pickup-table { min-width: 0; }
  .pickup-table thead { display: none; }
  .pickup-table tr {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 7px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 15px 16px;
  }
  .pickup-table tr:nth-child(even) { background: var(--ivory); }
  .pickup-table td {
    background: transparent !important;
    border: 0;
    min-width: 0;
    padding: 0;
  }
  .pickup-table td:first-child {
    color: var(--ink);
    font-size: 0.91rem;
    font-weight: 600;
    overflow-wrap: anywhere;
  }
  .pickup-table td:nth-child(2) {
    align-self: start;
    background: var(--brand-surface) !important;
    border-radius: 999px;
    color: var(--brand-deep);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    padding: 5px 9px;
    white-space: nowrap;
  }
  .pickup-table td:nth-child(3) {
    color: var(--slate);
    font-size: 0.79rem;
    grid-column: 1 / -1;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
  .pickup-table td:nth-child(3)::before {
    color: var(--brand-deep);
    content: "Meeting point";
    display: block;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    text-transform: uppercase;
  }
  .pickup-table .no-results {
    display: block;
    padding: 20px 16px;
  }
  .pickup-table .no-results td {
    display: block;
    font-size: 0.86rem;
    padding: 0;
    text-align: center;
  }

  .form-card { padding: 28px 22px; }
  .form-card .btn { width: 100%; }
  .map-embed iframe { height: 310px; }
  .private-cross-sell { padding-bottom: 62px; }
  .private-cross-sell-card {
    gap: 28px;
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  .private-cross-sell-copy h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.25rem);
    max-width: 100%;
  }
  .private-cross-sell-copy > p:last-child { font-size: 0.94rem; }
  .private-cross-sell-actions { min-width: 0; width: 100%; }
  .private-cross-sell-actions .btn { width: 100%; }

  .faq-library { padding-top: 54px; }
  .faq-search-card { margin-bottom: 42px; margin-top: 0; }
  .faq-search-field input { font-size: 1rem; padding-right: 12px; }
  .faq-library-intro h2 { font-size: 1.9rem; }
  .faq-category-nav p { margin-bottom: 10px; }
  .faq-category-nav nav {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    padding: 0;
  }
  .faq-category-nav a {
    align-items: center;
    display: flex;
    font-size: 0.76rem;
    line-height: 1.3;
    min-height: 48px;
    padding: 9px 12px;
    white-space: normal;
  }
  .faq-group { scroll-margin-top: 82px; }
  .faq-group-head { margin-bottom: 16px; }
  .faq-group-head h2 { font-size: 1.65rem; }
  .faq details { padding: 0 19px; }
  .faq summary { align-items: flex-start; font-size: 0.94rem; line-height: 1.4; padding: 18px 0; }
  .faq summary::after { flex: none; line-height: 1; }
  .faq details p { font-size: 0.9rem; line-height: 1.65; padding-bottom: 20px; }
  .faq-support-card .hero-actions { flex-direction: column; width: 100%; }
  .faq-support-card .btn { width: 100%; }

  .legal-content h2, .post-body h2 { font-size: 1.35rem; margin-top: 34px; }
  .legal-content p, .legal-content li, .post-body p, .post-body li { overflow-wrap: anywhere; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float {
    bottom: max(16px, env(safe-area-inset-bottom));
    height: 54px;
    justify-content: center;
    left: 16px;
    min-height: 52px;
    padding: 0;
    width: 54px;
  }
  .whatsapp-float span { display: none; }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .consent-banner {
    align-items: stretch;
    gap: 18px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    max-width: 760px;
    overflow: auto;
    padding: 20px 22px;
  }
  .consent-actions { justify-content: flex-end; }
  .consent-open .whatsapp-float { display: none; }
  .tour-layout { gap: 42px; }
  .tour-experience { padding: 28px 30px 26px; }
  .private-cross-sell-card {
    align-items: start;
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 38px 40px;
  }
  .private-cross-sell-actions {
    display: flex;
    justify-content: flex-start;
    min-width: 0;
  }
  .private-cross-sell-actions .btn { width: auto; }
}

@media (max-width: 390px) {
  .site-header.nav-open .nav-primary a { font-size: 1.5rem; }
  .nav-mobile-heading .overline { font-size: 0.66rem; letter-spacing: 0.16em; }
  .faq-category-nav nav { grid-template-columns: 1fr; }
  .trust-logo-title { font-size: 0.61rem; }
}

/* ---------- 404 ---------- */

.not-found {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.not-found-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.not-found-media img { width: 100%; height: 100%; object-fit: cover; }
.not-found-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 29, 43, 0.94) 0%, rgba(15, 29, 43, 0.78) 48%, rgba(15, 29, 43, 0.42) 100%);
}
.not-found-content { padding-top: 64px; padding-bottom: 64px; }
.not-found-brand { margin-bottom: 72px; width: fit-content; }
.not-found-brand img { width: auto; height: 54px; filter: brightness(0) invert(1); }
.not-found h1 { max-width: 13ch; margin: 18px 0 22px; }
.not-found p:not(.overline) { max-width: 58ch; color: rgba(255, 255, 255, 0.86); margin-bottom: 32px; }
