/* ================================================
   Go Beyond — Product Page System
   Brand: Red #E32028 · Teal #0C9294 · Black #040707
   ================================================ */

:root {
  --gb-red: #E32028;
  --gb-red-dark: #B81820;
  --gb-teal: #0C9294;
  --gb-teal-dark: #086D6F;
  --gb-black: #040707;
  --gb-ink: #1A1A1A;
  --gb-charcoal: #2C2C2C;
  --gb-graphite: #555555;
  --gb-stone: #888888;
  --gb-bone: #FAF7F2;
  --gb-cream: #F4EFE6;
  --gb-line: #E5E0D6;
  --gb-white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.18);

  --radius: 0;
  --radius-soft: 4px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  color: var(--gb-ink);
  background: var(--gb-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s ease, color .25s ease; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }

/* ============== Typography ============== */

h1, h2, h3, h4, .display {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gb-ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

p { font-size: 1.05rem; line-height: 1.75; color: var(--gb-charcoal); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gb-red);
  display: inline-block;
}
.eyebrow.muted { color: var(--gb-graphite); }
.eyebrow.light { color: rgba(255,255,255,0.85); }

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--gb-charcoal);
  font-weight: 400;
}

/* ============== Layout ============== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(70px, 9vw, 130px) 0; }

/* ============== Navigation ============== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity .25s ease;
}
.nav-logo .logo-dark { display: none; }
.nav.scrolled .logo-light { display: none; }
.nav.scrolled .logo-dark { display: block; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gb-red);
  color: var(--gb-white);
  border: 1px solid var(--gb-red);
  border-radius: var(--radius-soft);
  transition: all .25s ease;
}
.nav-cta:hover {
  background: var(--gb-red-dark);
  border-color: var(--gb-red-dark);
  transform: translateY(-1px);
}
.nav.scrolled .nav-cta { /* same */ }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta-secondary {
  background: transparent;
  color: var(--gb-white);
  border-color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
}
.nav-cta-secondary:hover {
  background: var(--gb-white);
  color: var(--gb-ink);
  border-color: var(--gb-white);
}
.nav.scrolled .nav-cta-secondary {
  color: var(--gb-ink);
  border-color: var(--gb-ink);
  background: transparent;
}
.nav.scrolled .nav-cta-secondary:hover {
  background: var(--gb-ink);
  color: var(--gb-white);
}

@media (max-width: 560px) {
  /* On mobile, hide both CTAs entirely (overlapped the logo). Logo alone. */
  .nav-actions { display: none; }
  .hero-scroll { display: none; }
}

/* ============== Hero ============== */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--gb-white);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.12) 35%,
    rgba(0,0,0,0.38) 75%,
    rgba(0,0,0,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) clamp(60px, 9vw, 110px);
  max-width: 1480px;
  margin: 0 auto;
}

.hero-content .eyebrow.light { color: rgba(255,255,255,0.92); }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.02;
  color: var(--gb-white);
  margin: 18px 0 28px;
  max-width: 14ch;
  letter-spacing: -0.015em;
}
.hero-title-wide { max-width: 26ch; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.22);
  max-width: 820px;
}
.hero-meta-item .k {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 6px;
}
.hero-meta-item .v {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--gb-white);
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  margin: 12px auto 0;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.4); opacity: 0.9; }
}

/* ============== Intro / Editorial ============== */

.intro {
  background: var(--gb-bone);
  text-align: center;
}
.intro-inner {
  max-width: 820px;
  margin: 0 auto;
}
.intro h2 {
  margin: 20px auto 30px;
}
.intro .lead {
  margin-bottom: 24px;
}

/* ============== Trip facts strip ============== */

.facts {
  background: var(--gb-white);
  border-top: 1px solid var(--gb-line);
  border-bottom: 1px solid var(--gb-line);
  padding: 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}
.fact {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--gb-line);
}
.fact:last-child { border-right: 0; }
.fact .k {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gb-graphite);
  display: block;
  margin-bottom: 10px;
}
.fact .v {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  color: var(--gb-ink);
}
.fact .v.accent { color: var(--gb-red); }

@media (max-width: 720px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { border-bottom: 1px solid var(--gb-line); }
  .fact:nth-child(2n) { border-right: 0; }
  .fact:nth-child(n+3) { border-bottom: 0; }
}

/* ============== Section heading ============== */

.section-head {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.section-head h2 { margin: 16px 0 20px; }
.section-head p.lead {
  max-width: 640px;
  margin: 0 auto;
}

/* ============== Itinerary / Day chapters ============== */

.itinerary { background: var(--gb-bone); }

.day {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto clamp(70px, 9vw, 130px);
  padding: 0 var(--gutter);
}
.day:last-child { margin-bottom: 0; }
.day.reverse { direction: rtl; }
.day.reverse > * { direction: ltr; }

.day-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.day-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.day:hover .day-image img { transform: scale(1.04); }

.day-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.9;
  color: var(--gb-red);
  font-weight: 300;
  margin-bottom: 18px;
}
.day-num::before {
  content: "Day ";
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gb-graphite);
  margin-bottom: 8px;
  font-weight: 500;
}

.day-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  color: var(--gb-ink);
  margin-bottom: 24px;
  font-weight: 400;
}

.day-body p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--gb-charcoal);
  margin-bottom: 1.1em;
}

.day-tags {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gb-line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 22px;
}
.day-tag-k {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gb-graphite);
  padding-top: 3px;
  font-weight: 500;
}
.day-tag-v {
  font-size: 0.94rem;
  color: var(--gb-ink);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .day {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .day.reverse { direction: ltr; }
  .day-image { aspect-ratio: 4 / 3; order: -1; }
}

/* ============== Pillars / Why Go Beyond ============== */

.pillars {
  background: var(--gb-ink);
  color: var(--gb-white);
}
.pillars .section-head h2 { color: var(--gb-white); }
.pillars .section-head .eyebrow { color: var(--gb-red); }
.pillars .section-head p.lead { color: rgba(255,255,255,0.78); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.pillar {
  padding: 36px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gb-red);
  margin-bottom: 20px;
  display: block;
}
.pillar h3 {
  color: var(--gb-white);
  font-size: 1.55rem;
  margin-bottom: 16px;
  font-weight: 400;
}
.pillar p {
  color: rgba(255,255,255,0.7);
  font-size: 0.98rem;
  line-height: 1.7;
}
@media (max-width: 720px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============== Gallery ============== */

.gallery {
  background: var(--gb-bone);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1vw, 14px);
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gallery-grid > div {
  overflow: hidden;
  position: relative;
}
.gallery-grid > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.3,1);
}
.gallery-grid > div:hover img { transform: scale(1.06); }

.g-a { grid-column: span 7; aspect-ratio: 4/3; }
.g-b { grid-column: span 5; aspect-ratio: 4/5; }
.g-c { grid-column: span 4; aspect-ratio: 4/5; }
.g-d { grid-column: span 8; aspect-ratio: 16/9; }
.g-e { grid-column: span 6; aspect-ratio: 4/3; }
.g-f { grid-column: span 6; aspect-ratio: 4/3; }

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 2; aspect-ratio: 4/3; }
}

/* ============== Practical Info ============== */

.practical { background: var(--gb-white); border-top: 1px solid var(--gb-line); }
.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.practical-col h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gb-red);
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gb-line);
}
.practical-col ul {
  list-style: none;
  padding: 0;
}
.practical-col li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--gb-charcoal);
  padding: 10px 0;
  display: flex;
  gap: 14px;
}
.practical-col li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gb-red);
  margin-top: 11px;
  border-radius: 50%;
}
.practical-col .info-block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gb-line);
}
.practical-col .info-block:last-child { border-bottom: 0; }
.practical-col .info-block p { font-size: 0.96rem; line-height: 1.7; }
.practical-col .info-block strong { color: var(--gb-ink); font-weight: 500; }

@media (max-width: 880px) {
  .practical-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============== CTA Banner ============== */

.cta {
  background: var(--gb-red);
  color: var(--gb-white);
  text-align: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta h2 {
  color: var(--gb-white);
  font-weight: 300;
  margin-bottom: 22px;
}
.cta p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-soft);
  transition: all .3s ease;
}
.btn-light {
  background: var(--gb-white);
  color: var(--gb-red);
}
.btn-light:hover {
  background: var(--gb-ink);
  color: var(--gb-white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--gb-ink);
  color: var(--gb-white);
}
.btn-dark:hover {
  background: var(--gb-red);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gb-ink);
  border: 1px solid var(--gb-ink);
}
.btn-outline:hover {
  background: var(--gb-ink);
  color: var(--gb-white);
}

/* ============== Footer ============== */

.footer {
  background: var(--gb-ink);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img {
  height: 26px;
  margin-bottom: 22px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gb-white);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a:hover { color: var(--gb-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.trust-badges {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-badges span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============== Floating Enquire (sticky bottom right) ============== */

.float-enquire {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  background: var(--gb-red);
  color: var(--gb-white);
  padding: 16px 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(227, 32, 40, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s ease;
}
.float-enquire.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-enquire:hover {
  background: var(--gb-ink);
  transform: translateY(-2px);
}

/* ============== Reveal animations ============== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== Video lite-embed ============== */

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
  overflow: hidden;
  max-width: 920px;
  margin: clamp(40px, 6vw, 70px) auto 0;
  box-shadow: var(--shadow-strong);
}
.video-embed img.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1), opacity .35s ease;
  display: block;
}
.video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  transition: opacity .35s ease;
}
.video-embed:hover img.poster { transform: scale(1.04); opacity: 0.92; }
.video-embed:hover::after { opacity: 0.6; }

.video-embed .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 92px);
  height: clamp(64px, 8vw, 92px);
  background: var(--gb-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 50px rgba(0,0,0,0.45), 0 0 0 0 rgba(227,32,40,0.4);
  transition: transform .3s ease, background .25s ease, box-shadow .35s ease;
  z-index: 2;
  animation: pulse 2.2s ease-out infinite;
}
.video-embed .play-btn svg {
  width: 38%;
  height: 38%;
  fill: #fff;
  margin-left: 6%;
}
.video-embed:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gb-red-dark);
}
.video-embed.playing .play-btn,
.video-embed.playing::after { display: none; opacity: 0; }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 14px 50px rgba(0,0,0,0.45), 0 0 0 0 rgba(227,32,40,0.55); }
  70%  { box-shadow: 0 14px 50px rgba(0,0,0,0.45), 0 0 0 22px rgba(227,32,40,0); }
  100% { box-shadow: 0 14px 50px rgba(0,0,0,0.45), 0 0 0 0 rgba(227,32,40,0); }
}

.video-caption {
  margin-top: 22px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gb-graphite);
  text-align: center;
}

/* ============== Utilities ============== */

.text-center { text-align: center; }
.divider {
  width: 60px;
  height: 1px;
  background: var(--gb-red);
  margin: 24px auto;
}

/* ============== Print (Download PDF) ============== */

@media print {
  @page {
    size: A4;
    margin: 14mm 12mm;
  }

  /* Reset for print clarity */
  html, body {
    background: #fff !important;
    color: #1A1A1A !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    font-size: 11pt;
    line-height: 1.55;
  }

  /* Force every section visible — no scroll reveal in print */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hide interactive / non-print elements */
  .nav,
  .float-enquire,
  .hero-scroll,
  .video-embed,
  .video-caption,
  .nav-cta-secondary,
  .nav-actions {
    display: none !important;
  }

  /* Section spacing tightened for print */
  section { padding: 30pt 0 !important; }

  /* Hero — keep image, remove dark overlay, shrink to single page */
  .hero {
    min-height: 0 !important;
    height: auto !important;
    page-break-after: always;
    color: #1A1A1A !important;
    display: block !important;
    padding: 0 !important;
  }
  .hero-image {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 75mm !important;
    overflow: hidden;
  }
  .hero-image::after { display: none !important; }
  .hero-image img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .hero-content {
    position: relative !important;
    padding: 14pt 0 0 !important;
    color: #1A1A1A !important;
    max-width: 100% !important;
  }
  .hero-title {
    color: #1A1A1A !important;
    font-size: 26pt !important;
    margin: 8pt 0 12pt !important;
    line-height: 1.05 !important;
  }
  .hero-content .eyebrow.light,
  .hero-meta-item .k {
    color: #555 !important;
  }
  .hero-meta {
    border-top: 0.5pt solid #ccc !important;
    padding-top: 10pt !important;
    margin-top: 14pt !important;
    gap: 16pt !important;
  }
  .hero-meta-item .v {
    color: #1A1A1A !important;
    font-size: 11pt !important;
  }

  /* Intro */
  .intro { background: #fff !important; }
  .intro h2 { font-size: 20pt !important; }
  .intro .lead { font-size: 12pt !important; color: #444 !important; }

  /* Facts strip */
  .facts { border-color: #ddd !important; }
  .fact { padding: 14pt 10pt !important; }
  .fact .v { font-size: 11pt !important; }

  /* Section headings */
  .section-head h2 { font-size: 18pt !important; }
  .section-head .lead { font-size: 11pt !important; }

  /* Itinerary days — never split mid-card */
  .day {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 22pt !important;
    gap: 18pt !important;
  }
  .day-image { aspect-ratio: 4 / 3 !important; box-shadow: none !important; }
  .day-num { font-size: 38pt !important; margin-bottom: 6pt !important; }
  .day-title { font-size: 15pt !important; margin-bottom: 10pt !important; }
  .day-body p { font-size: 10.5pt !important; line-height: 1.55 !important; margin-bottom: 8pt !important; }
  .day-tags { margin-top: 12pt !important; padding-top: 10pt !important; }
  .day-tag-v { font-size: 9.5pt !important; }

  /* Pillars — dark section becomes light in print */
  .pillars { background: #fff !important; color: #1A1A1A !important; page-break-inside: avoid; }
  .pillars .section-head h2,
  .pillars h3 { color: #1A1A1A !important; }
  .pillars .section-head p.lead { color: #444 !important; }
  .pillar { border-top: 0.5pt solid #ccc !important; padding-top: 12pt !important; }
  .pillar h3 { color: #1A1A1A !important; font-size: 12pt !important; }
  .pillar p { color: #444 !important; font-size: 10pt !important; }
  .pillar-num { color: var(--gb-red) !important; }

  /* Gallery — tighter grid, no hover */
  .gallery { page-break-inside: avoid; }
  .gallery-grid > div { box-shadow: none !important; }
  .gallery-grid > div img { transition: none !important; transform: none !important; }

  /* Practical */
  .practical { page-break-inside: avoid; }
  .practical-col h3 { color: var(--gb-red) !important; }
  .practical-col li { font-size: 10pt !important; padding: 5pt 0 !important; }

  /* Red CTA banner — keep as a print-friendly red */
  .cta {
    background: var(--gb-red) !important;
    color: #fff !important;
    page-break-inside: avoid;
  }
  .cta h2, .cta .eyebrow.light, .cta p { color: #fff !important; }
  .btn { display: none !important; }

  /* Footer */
  .footer { background: #1A1A1A !important; color: rgba(255,255,255,0.75) !important; padding: 20pt 0 !important; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr !important; gap: 18pt !important; padding-bottom: 16pt !important; }
  .footer-brand img { height: 18pt !important; }
  .footer a { color: rgba(255,255,255,0.85) !important; }

  /* Links — strip underlines from inline links in body copy */
  a { text-decoration: none !important; color: inherit !important; }
}

/* ============== Print / Save as PDF ============== */

@media print {
  @page { size: A4; margin: 14mm 12mm; }

  /* Chrome we don't want on paper */
  .nav, .float-enquire, .hero-scroll, .nav-actions { display: none !important; }
  body { background: #fff; color: #000; }

  /* Hero: stop being 100vh, become a proper cover block */
  .hero {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    page-break-after: avoid;
    background: #fff !important;
  }
  .hero-image {
    position: relative !important;
    aspect-ratio: 16 / 7;
    margin-bottom: 18px;
  }
  .hero-image::after { display: none !important; }
  .hero-content {
    position: static !important;
    padding: 0 12mm !important;
    color: var(--gb-ink) !important;
    background: #fff !important;
  }
  .hero-title { color: var(--gb-ink) !important; }
  .hero-content .eyebrow.light { color: var(--gb-red) !important; }
  .hero-sub { color: var(--gb-charcoal) !important; }
  .hero-meta-item .k { color: var(--gb-graphite) !important; }
  .hero-meta-item .v { color: var(--gb-ink) !important; }

  /* Tighter section rhythm for paper */
  section { padding: 28px 0 !important; }
  .intro, .pillars, .practical, .cta, .expedition-band, .itinerary, .facts { padding: 24px 0 !important; }

  /* Page-break hygiene */
  .day, .pillar, .center-card, .info-block, article, .mission-list li, .fact {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  h1, h2, h3 { page-break-after: avoid; break-after: avoid; }

  /* Pillars (normally dark) → ink-friendly */
  .pillars { background: #fff !important; color: var(--gb-ink) !important; }
  .pillars .section-head h2, .pillar h3 { color: var(--gb-ink) !important; }
  .pillars .section-head p.lead, .pillar p { color: var(--gb-charcoal) !important; }
  .pillar { border-top-color: var(--gb-line) !important; }

  /* CTA band (normally red) → ink-friendly */
  .cta { background: var(--gb-cream) !important; color: var(--gb-ink) !important; }
  .cta::before { display: none !important; }
  .cta h2 { color: var(--gb-ink) !important; }
  .cta p { color: var(--gb-charcoal) !important; }
  .cta .eyebrow.light { color: var(--gb-red) !important; }
  .btn-light { display: none !important; }
  .signature-line { color: var(--gb-graphite) !important; }

  /* Footer simplified */
  .footer { background: #fff !important; color: var(--gb-ink) !important; border-top: 1px solid var(--gb-line); }
  .footer-brand p, .footer-col a, .footer-bottom span { color: var(--gb-charcoal) !important; }
  .footer-col h5 { color: var(--gb-ink) !important; }
  .footer-brand img { filter: invert(1) brightness(0.2); height: 18px; }
  .trust-badges span { color: var(--gb-graphite) !important; }

  /* Videos → freeze on the poster image (no play button, no overlay) */
  .video-embed { background: #fff !important; box-shadow: none !important; cursor: default !important; }
  .video-embed .play-btn, .video-embed::after { display: none !important; }
  .video-embed iframe { display: none !important; }

  /* Make sure backgrounds (posters, hero images) actually print */
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

  /* Links — kill underline noise */
  a { color: var(--gb-ink); text-decoration: none; }
}
