:root {
  --ocean: #061826;
  --night: #0b2235;
  --turquoise: #21c7b7;
  --jungle: #123d2e;
  --sand: #e8d7b9;
  --gold: #c9a45c;
  --white: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.72);
  --line: rgba(201, 164, 92, 0.24);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(33, 199, 183, 0.12), transparent 30%),
    radial-gradient(circle at 80% 35%, rgba(201, 164, 92, 0.11), transparent 28%),
    linear-gradient(180deg, #061826 0%, #0b2235 42%, #071b17 100%);
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg width='900' height='900' viewBox='0 0 900 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2321C7B7' stroke-opacity='.12' stroke-width='1'%3E%3Cpath d='M-40 220C110 80 250 120 330 230s230 110 320 0 220-120 330 20'/%3E%3Cpath d='M-30 300C120 160 260 190 350 300s240 115 330 0 220-120 320 10'/%3E%3Cpath d='M-20 380C130 240 270 270 370 380s240 112 330-5 220-120 320 15'/%3E%3Cpath d='M-40 520C120 390 260 420 365 520s250 130 355 0 215-110 315 15'/%3E%3Cpath d='M-60 680C100 560 270 590 390 690s260 90 340-35 215-100 300 10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 780px 780px;
  opacity: 0.55;
}

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

.text-link {
  color: var(--sand);
  border-bottom: 1px solid rgba(201, 164, 92, 0.56);
  font-weight: 800;
}

.text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

img,
video {
  display: block;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(6, 24, 38, 0.82);
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  margin-right: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ocean);
  background: var(--sand);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: var(--glass);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 8px;
  width: min(520px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 24, 38, 0.96);
  box-shadow: var(--shadow);
}

.nav-panel a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}

.nav-panel a:hover {
  color: var(--white);
  background: rgba(33, 199, 183, 0.1);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  gap: 18px;
  justify-items: end;
  pointer-events: none;
}

.beyond-page .floating-contact,
.blog-page .floating-contact {
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 9999;
  opacity: 1;
}

.floating-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  min-width: 136px;
  padding: 0 18px;
  border: 1px solid rgba(247, 243, 234, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 24, 38, 0.84);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.floating-action:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.home-action {
  min-width: 96px;
  color: var(--ocean);
  background: var(--sand);
}

.whatsapp-action {
  color: var(--ocean);
  background: linear-gradient(135deg, #25d366, var(--turquoise));
}

.email-action {
  background: rgba(11, 34, 53, 0.9);
}

.floating-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.floating-animal {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-iguana,
.floating-hummingbird {
  left: 50%;
  bottom: calc(100% - 9px);
  transform: translateX(-50%);
}

.floating-iguana {
  width: 92px;
}

.floating-hummingbird {
  width: 74px;
}

body.is-scrolling .floating-animal {
  opacity: 0;
  transform: translate(-50%, 14px) scale(0.94);
}

.hero-atlas {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(130px, 16vh, 190px) clamp(18px, 6vw, 92px) clamp(70px, 10vh, 120px);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  transform: scale(1.06);
  animation: parallaxDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.74), rgba(6, 24, 38, 0.3), transparent 72%),
    linear-gradient(0deg, rgba(6, 24, 38, 0.36), transparent 46%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: clamp(18px, 3vw, 34px);
  margin-left: clamp(-18px, -1.5vw, -8px);
  border-left: 1px solid rgba(201, 164, 92, 0.58);
  background: linear-gradient(90deg, rgba(6, 24, 38, 0.36), rgba(6, 24, 38, 0.12), transparent);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(58px, 10vw, 138px);
  line-height: 0.88;
  color: var(--soft-white);
  -webkit-text-stroke: 0.7px rgba(0, 0, 0, 0.42);
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.34);
}

.hero-copy h2 {
  margin-bottom: 22px;
  color: var(--soft-white);
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1;
  -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.36);
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.34);
}

.hero-copy p {
  max-width: 670px;
  color: rgba(247, 243, 234, 0.94);
  font-size: clamp(17px, 2vw, 22px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 45%, transparent 55% 100%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn.gold {
  color: var(--ocean);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(201, 164, 92, 0.28);
}

.btn.glass {
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.hero-compass {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 8vw, 120px);
  top: clamp(115px, 20vh, 200px);
  width: clamp(90px, 12vw, 150px);
  height: clamp(90px, 12vw, 150px);
  border: 1px solid rgba(247, 243, 234, 0.32);
  border-radius: 50%;
  opacity: 0.8;
  animation: compassFloat 7s ease-in-out infinite;
}

.hero-compass::before,
.hero-compass::after {
  content: "";
  position: absolute;
  inset: 19%;
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 50%;
}

.hero-compass::after {
  inset: 28%;
  background: linear-gradient(var(--gold) 0 50%, rgba(247, 243, 234, 0.9) 50% 100%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  border: 0;
}

.hero-coordinates {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 80px);
  bottom: 38px;
  color: rgba(247, 243, 234, 0.5);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

section {
  position: relative;
  padding: clamp(80px, 9vw, 132px) clamp(18px, 6vw, 92px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.intro-title h2,
.split-copy h2,
.story-copy h2,
.final-cta h2 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.section-heading p,
.intro-text p,
.motion-copy p,
.split-copy p,
.story-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.atlas-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(201, 164, 92, 0.12) 49.8% 50.1%, transparent 50.1% 100%),
    radial-gradient(circle at 18% 22%, rgba(33, 199, 183, 0.08), transparent 24%);
}

.video-gateway {
  padding-top: clamp(54px, 7vw, 90px);
  background: #061826;
}

.video-frame {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame video {
  height: clamp(320px, 56vw, 680px);
  object-fit: cover;
}

.video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.video-caption span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(6, 24, 38, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-caption strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 24, 38, 0.58);
  backdrop-filter: blur(10px);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
  background: linear-gradient(180deg, var(--ocean), var(--night));
}

.intro-title,
.intro-story,
.intro-text,
.intro-media,
.motion-copy,
.motion-video {
  position: relative;
  z-index: 1;
}

.intro-title {
  display: grid;
  align-content: start;
  gap: 26px;
}

.intro-story {
  display: grid;
  gap: 22px;
  align-self: start;
}

.intro-text {
  display: grid;
  gap: 18px;
  align-content: start;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.intro-media {
  display: grid;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 38, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-video video {
  height: 430px;
  border-radius: 24px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.intro-photo {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(220px, 0.75fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.intro-title .intro-photo {
  grid-template-columns: 1fr;
  margin-top: clamp(18px, 4vw, 36px);
}

.intro-title .intro-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: rgba(6, 24, 38, 0.35);
}

.intro-photo img {
  height: clamp(280px, 30vw, 430px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.intro-photo figcaption {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.motion-note {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(33, 199, 183, 0.12), transparent 32%),
    linear-gradient(180deg, #061826, #092235 58%, #061826);
}

.motion-copy h2 {
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1;
}

.motion-video {
  padding: 14px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.motion-video video {
  height: clamp(320px, 48vw, 560px);
  border-radius: 24px;
  object-fit: cover;
}

.journey-atlas {
  background: linear-gradient(180deg, #0b2235, #061826);
  overflow: hidden;
}

.atlas-board {
  position: relative;
  min-height: 640px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(rgba(6, 24, 38, 0.6), rgba(6, 24, 38, 0.78)),
    url("atlas-texture-map.jfif") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.atlas-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atlas-lines path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-dasharray: 12 12;
  opacity: 0.86;
  animation: routeDraw 18s linear infinite;
}

.atlas-point {
  position: absolute;
  z-index: 2;
  width: min(218px, 42vw);
  padding: 16px;
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 22px;
  background: rgba(6, 24, 38, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.atlas-point:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.atlas-point span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--ocean);
  background: var(--gold);
  font-weight: 900;
}

.atlas-point strong,
.atlas-point small {
  display: block;
}

.atlas-point strong {
  font-size: 18px;
  line-height: 1.1;
}

.atlas-point small {
  color: var(--muted);
}

.p1 { left: 4%; top: 55%; }
.p2 { left: 16%; top: 14%; }
.p3 { left: 39%; top: 34%; }
.p4 { left: 27%; bottom: 8%; }
.p5 { right: 22%; bottom: 12%; }
.p6 { right: 4%; top: 12%; }
.p7 { left: 58%; top: 4%; }

.experiences,
.program-expeditions,
.luxury-details {
  background: linear-gradient(180deg, #061826, #0b2235);
}

.experience-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.experience-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(6, 24, 38, 0.08), rgba(6, 24, 38, 0.92)),
    var(--bg) center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--white);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.44);
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(33, 199, 183, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-card-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(1.08) contrast(1.06);
  transition: transform 0.65s ease, opacity 0.3s ease;
}

.experience-card:hover .experience-card-photo {
  transform: scale(1.06);
  opacity: 0.6;
}

.experience-card .icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.experience-card h3,
.experience-card p {
  position: relative;
  z-index: 1;
}

.experience-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.experience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.program-expeditions {
  background:
    radial-gradient(circle at 18% 12%, rgba(33, 199, 183, 0.12), transparent 32%),
    radial-gradient(circle at 82% 40%, rgba(201, 164, 92, 0.1), transparent 30%),
    linear-gradient(180deg, #061826, #0b2235 58%, #061826);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.program-gateway {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1120px;
  margin: 36px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 38, 0.74);
  box-shadow: var(--shadow);
}

.program-gateway img {
  height: 430px;
  border-radius: 26px;
  object-fit: cover;
}

.program-gateway h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
}

.program-gateway p {
  color: var(--muted);
  font-size: 18px;
}

.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.program-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 38, 0.78);
  box-shadow: var(--shadow);
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(33, 199, 183, 0.12), transparent 38%),
    repeating-linear-gradient(120deg, rgba(232, 215, 185, 0.05) 0 1px, transparent 1px 28px);
  pointer-events: none;
}

.program-card > * {
  position: relative;
  z-index: 1;
}

.program-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.02;
}

.program-card p,
.program-card li {
  color: var(--muted);
  font-size: 16px;
}

.program-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.day-chips,
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.day-chips span,
.about-points span {
  padding: 9px 12px;
  border: 1px solid rgba(33, 199, 183, 0.22);
  border-radius: 999px;
  color: rgba(247, 243, 234, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.price-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 420px;
  border-collapse: separate;
  border-spacing: 8px;
  color: var(--white);
}

.price-table caption {
  margin-bottom: 10px;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 18px 14px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  text-align: center;
}

.price-table th {
  background: rgba(18, 61, 46, 0.95);
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-table td {
  background: rgba(247, 243, 234, 0.9);
  color: #24462d;
  font-size: 20px;
  font-weight: 900;
}

.price-table td:first-child {
  background: rgba(5, 68, 45, 0.92);
  color: var(--white);
}

.guide-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(33, 199, 183, 0.14), transparent 34%),
    linear-gradient(180deg, #061826, #0b2235 48%, #061826);
}

.guide-hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(rgba(6, 24, 38, 0.68), rgba(6, 24, 38, 0.94)),
    url("machu-picchu-cusco.jpg") center/cover fixed;
}

.guide-hero-copy {
  max-width: 980px;
}

.guide-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
}

.guide-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.guide-intro-strip {
  position: sticky;
  top: 74px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(201, 164, 92, 0.18);
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  background: rgba(6, 24, 38, 0.9);
  backdrop-filter: blur(18px);
}

.guide-intro-strip a {
  padding: 10px 14px;
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 999px;
  color: rgba(247, 243, 234, 0.84);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 900;
}

.guide-intro-strip a:hover {
  color: var(--white);
  background: rgba(33, 199, 183, 0.12);
}

.guide-full {
  display: grid;
  justify-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(33, 199, 183, 0.1), transparent 34%),
    linear-gradient(180deg, #061826, #0b2235 48%, #061826);
}

.guide-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(6, 24, 38, 0.7);
  box-shadow: var(--shadow);
}

.guide-sidebar a {
  padding: 11px 12px;
  border-radius: 16px;
  color: rgba(247, 243, 234, 0.82);
  background: rgba(255, 255, 255, 0.045);
}

.guide-sidebar a:hover {
  color: var(--white);
  background: rgba(33, 199, 183, 0.12);
}

.guide-content {
  width: min(100%, 1040px);
  max-width: 1040px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 38, 0.72);
  box-shadow: var(--shadow);
}

.guide-content h1,
.guide-content h2 {
  scroll-margin-top: 110px;
  margin: 54px 0 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.98;
}

.guide-content h1:first-child {
  margin-top: 0;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  margin: 30px 0 12px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.03em;
}

.guide-line,
.guide-day {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 17px;
}

.visible-now {
  opacity: 1;
  transform: none;
}

.guide-day,
.strong-line {
  color: var(--white);
  font-weight: 800;
}

.guide-rate-card {
  margin: 42px 0;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(33, 199, 183, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.guide-rate-card h3 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
}

.andes-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(33, 199, 183, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(201, 164, 92, 0.12), transparent 30%),
    linear-gradient(180deg, #061826 0%, #081d2b 45%, #061826 100%);
  color: var(--white);
}

.andes-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 140px clamp(20px, 6vw, 92px) 74px;
}

.andes-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  z-index: -3;
}

.andes-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.94) 0%, rgba(6, 24, 38, 0.62) 46%, rgba(6, 24, 38, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 24, 38, 0.94) 0%, rgba(6, 24, 38, 0.06) 58%);
  z-index: -2;
}

.andes-hero-copy {
  width: min(780px, 100%);
}

.andes-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 9.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.andes-hero p:not(.kicker) {
  max-width: 680px;
  color: rgba(247, 243, 234, 0.86);
  font-size: 1.15rem;
  line-height: 1.8;
}

.andes-hero-compass {
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  top: 23%;
  width: clamp(132px, 18vw, 240px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 50%;
  color: rgba(201, 164, 92, 0.28);
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  animation: compassDrift 11s ease-in-out infinite;
}

.andes-hero-compass::before,
.andes-hero-compass::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(33, 199, 183, 0.18);
  border-radius: 50%;
}

.andes-hero-compass::after {
  inset: 39%;
  background: rgba(201, 164, 92, 0.18);
}

.andes-coordinates {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  bottom: 26px;
  color: rgba(247, 243, 234, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.andes-route {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 92px);
  border-top: 1px solid rgba(201, 164, 92, 0.16);
  border-bottom: 1px solid rgba(201, 164, 92, 0.16);
}

.andes-route .section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.andes-route-map {
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(33, 199, 183, 0.14), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(201, 164, 92, 0.12), transparent 32%),
    rgba(247, 243, 234, 0.035);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.andes-route-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-line {
  fill: none;
  stroke: rgba(201, 164, 92, 0.74);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
  filter: drop-shadow(0 0 12px rgba(201, 164, 92, 0.34));
  animation: routeFlow 12s linear infinite;
}

.route-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 164, 92, 0.34);
  border-radius: 999px;
  background: rgba(6, 24, 38, 0.78);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.route-pin span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ocean);
  font-weight: 800;
  flex: 0 0 auto;
}

.pin-1 { left: 6%; top: 58%; }
.pin-2 { left: 30%; top: 18%; }
.pin-3 { right: 31%; top: 52%; }
.pin-4 { right: 7%; top: 24%; }

.andes-content {
  position: relative;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 92px);
}

.andes-stop {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto clamp(92px, 11vw, 150px);
  scroll-margin-top: 110px;
}

.andes-motion {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto clamp(92px, 11vw, 150px);
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 20%, rgba(201, 164, 92, 0.12), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(33, 199, 183, 0.13), transparent 30%),
    rgba(247, 243, 234, 0.04);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  scroll-margin-top: 110px;
}

.andes-motion-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.andes-motion-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.andes-motion-copy p {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  line-height: 1.78;
}

.andes-motion-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid rgba(201, 164, 92, 0.24);
  background: #061826;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.andes-motion-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.3), transparent 44%, rgba(6, 24, 38, 0.25)),
    linear-gradient(0deg, rgba(6, 24, 38, 0.35), transparent 44%);
  z-index: 1;
  pointer-events: none;
}

.andes-motion-frame::after {
  content: "EXPEDITION FOOTAGE";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 999px;
  background: rgba(6, 24, 38, 0.62);
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.andes-motion-frame video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.andes-stop:nth-child(even) .andes-stop-media {
  order: 2;
}

.andes-stop-media {
  position: sticky;
  top: 102px;
}

.andes-stop-number {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.andes-collage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-auto-rows: 160px;
  gap: 14px;
}

.andes-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.andes-photo.primary {
  grid-row: span 2;
}

.andes-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.andes-photo:hover img {
  transform: scale(1.06);
}

.andes-stop-copy {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(247, 243, 234, 0.08), rgba(247, 243, 234, 0.025)),
    rgba(6, 24, 38, 0.64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.andes-stop-copy h2,
.andes-rates h2,
.andes-final-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.andes-stop-summary {
  margin: 18px 0 28px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.andes-rich-text {
  display: grid;
  gap: 12px;
}

.andes-rich-text p,
.andes-rates p,
.andes-final-cta p {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  line-height: 1.78;
}

.andes-doc-title {
  margin: 10px 0 8px;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.3;
}

.andes-subhead {
  color: var(--white) !important;
  font-weight: 800;
}

.andes-day-line {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(201, 164, 92, 0.08);
  color: rgba(247, 243, 234, 0.9) !important;
}

.andes-key-line {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(33, 199, 183, 0.24);
  border-radius: 999px;
  background: rgba(33, 199, 183, 0.07);
  color: rgba(247, 243, 234, 0.86) !important;
}

.andes-rates {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(92px, 11vw, 150px);
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 12%, rgba(33, 199, 183, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(18, 61, 46, 0.75), rgba(6, 24, 38, 0.85));
  box-shadow: 0 26px 88px rgba(0, 0, 0, 0.28);
  scroll-margin-top: 110px;
}

.andes-rates-copy {
  display: grid;
  gap: 18px;
}

.andes-price-table-wrap {
  overflow-x: auto;
}

.andes-price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 10px;
}

.andes-price-table th,
.andes-price-table td {
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(201, 164, 92, 0.18);
}

.andes-price-table th {
  background: rgba(18, 61, 46, 0.92);
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.andes-price-table td {
  background: rgba(247, 243, 234, 0.9);
  color: #123d2e;
  font-weight: 800;
}

.andes-rate-image {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
}

.andes-rate-image img {
  width: 100%;
  display: block;
}

.andes-final-cta {
  margin: 0 clamp(20px, 6vw, 92px) clamp(72px, 8vw, 110px);
  padding: clamp(40px, 7vw, 84px);
  border-radius: 34px;
  border: 1px solid rgba(201, 164, 92, 0.22);
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.98), rgba(6, 24, 38, 0.74)),
    url("cusco-machu-picchu-guide.jpg") center/cover;
  box-shadow: 0 26px 88px rgba(0, 0, 0, 0.3);
}

.andes-final-cta p {
  max-width: 720px;
  margin: 18px 0 28px;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes compassDrift {
  0%, 100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-12px);
  }
}

.beyond-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(33, 199, 183, 0.12), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(201, 164, 92, 0.1), transparent 32%),
    linear-gradient(180deg, #061826 0%, #081d2b 46%, #061826 100%);
  color: var(--white);
}

.beyond-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 130px clamp(20px, 6vw, 92px) 72px;
}

.beyond-hero .hero-bg {
  transform: scale(1.04);
}

.beyond-hero .hero-copy {
  width: min(880px, 100%);
}

.beyond-hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 11vw, 10rem);
  line-height: 0.85;
  letter-spacing: 0;
}

.beyond-hero h2 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.beyond-intro {
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.beyond-video-gateway {
  padding: 0 clamp(20px, 6vw, 92px) clamp(72px, 8vw, 110px);
}

.beyond-image-gateway {
  padding: 0 clamp(20px, 6vw, 92px) clamp(72px, 8vw, 110px);
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 164, 92, 0.12), transparent 30%),
    linear-gradient(180deg, #061826, #0b2235);
}

.beyond-photo-spread,
.beyond-photo-pair {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(18px, 3vw, 28px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 38, 0.72);
  box-shadow: var(--shadow);
}

.beyond-photo-spread figure,
.beyond-photo-pair figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
}

.beyond-photo-spread figure:first-child,
.beyond-photo-pair figure:first-child {
  min-height: 520px;
}

.beyond-photo-spread img,
.beyond-photo-pair img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 520ms ease;
}

.beyond-photo-spread figure:hover img,
.beyond-photo-pair figure:hover img {
  transform: scale(1.045);
}

.beyond-photo-spread figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 24, 38, 0.68);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.beyond-photo-pair {
  max-width: none;
  padding: 12px;
}

.beyond-cards {
  padding-top: clamp(72px, 8vw, 116px);
}

.beyond-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.beyond-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(6, 24, 38, 0.12), rgba(6, 24, 38, 0.92)),
    var(--bg) center/cover;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24);
}

.beyond-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 199, 183, 0.12), transparent 45%, rgba(201, 164, 92, 0.16));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.beyond-card:hover::before {
  opacity: 1;
}

.beyond-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.beyond-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1;
}

.beyond-card p {
  margin: 0;
  color: rgba(247, 243, 234, 0.82);
  line-height: 1.65;
}

.beyond-experience {
  padding: clamp(78px, 9vw, 130px) clamp(20px, 6vw, 92px);
  border-top: 1px solid rgba(201, 164, 92, 0.12);
  scroll-margin-top: 92px;
}

.beyond-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto clamp(46px, 7vw, 84px);
}

.beyond-split h2,
.beyond-compare h2,
.beyond-motion h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.4vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.beyond-split p {
  color: rgba(247, 243, 234, 0.8);
  line-height: 1.8;
}

.beyond-subtitle {
  color: var(--gold) !important;
  font-weight: 800;
}

.beyond-feature-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.beyond-feature-image img {
  width: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.beyond-feature-image figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 18px;
  background: rgba(6, 24, 38, 0.74);
  color: rgba(247, 243, 234, 0.84);
  backdrop-filter: blur(14px);
}

.beyond-heading {
  max-width: 980px;
  margin: 0 auto 24px;
}

.beyond-heading h3,
.related-tags h3,
.beyond-callout h3,
.beyond-rates h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.beyond-mini-grid,
.beyond-two-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.beyond-mini-card,
.beyond-callout,
.beyond-accordion,
.beyond-rates,
.beyond-table-wrap,
.beyond-form {
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(247, 243, 234, 0.07), rgba(247, 243, 234, 0.025)),
    rgba(6, 24, 38, 0.66);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.beyond-mini-card {
  padding: 22px;
}

.beyond-mini-card h4 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 1.04rem;
  line-height: 1.3;
}

.beyond-mini-card p,
.beyond-callout p,
.beyond-accordion p,
.beyond-motion p {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  line-height: 1.76;
}

.beyond-callout {
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 16px;
}

.beyond-callout strong {
  color: var(--gold);
  font-size: 1.08rem;
}

.related-tags {
  max-width: 1180px;
  margin: 0 auto;
}

.related-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.related-tags span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(33, 199, 183, 0.24);
  border-radius: 999px;
  background: rgba(33, 199, 183, 0.07);
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.88rem;
}

.beyond-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.beyond-timeline {
  max-width: 980px;
  margin: 0 auto clamp(40px, 5vw, 68px);
  display: grid;
  gap: 14px;
}

.beyond-timeline-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 24px;
  background: rgba(247, 243, 234, 0.045);
}

.beyond-timeline-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ocean);
  font-weight: 900;
}

.beyond-timeline-item h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.04rem;
}

.beyond-timeline-item p {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  line-height: 1.72;
}

.beyond-accordion-wrap {
  max-width: 980px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  display: grid;
  gap: 12px;
}

.beyond-accordion {
  padding: 0;
  overflow: hidden;
}

.beyond-accordion summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--white);
  font-weight: 800;
}

.beyond-accordion div {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
}

.beyond-rates {
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.beyond-rates img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(201, 164, 92, 0.2);
}

.beyond-motion {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 6vw, 92px);
}

.beyond-video-frame {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: 30px;
  background: #061826;
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.28);
}

.beyond-video-frame video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.beyond-photo-triptych {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.beyond-photo-triptych figure {
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: 28px;
  background: #061826;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.beyond-photo-triptych figure:nth-child(2) {
  transform: translateY(28px);
}

.beyond-photo-triptych img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.cusco-motion {
  margin-top: clamp(24px, 5vw, 54px);
  margin-bottom: clamp(34px, 5vw, 64px);
  padding-left: 0;
  padding-right: 0;
}

.beyond-compare {
  padding: clamp(76px, 9vw, 128px) clamp(20px, 6vw, 92px);
}

.beyond-journal {
  padding: clamp(76px, 9vw, 128px) clamp(20px, 6vw, 92px);
  border-top: 1px solid rgba(201, 164, 92, 0.12);
}

.beyond-journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.beyond-journal-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 24px;
  background: rgba(247, 243, 234, 0.04);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
}

.beyond-journal-item:nth-child(1),
.beyond-journal-item:nth-child(9),
.beyond-journal-item:nth-child(12) {
  grid-column: span 2;
  grid-row: span 2;
}

.beyond-journal-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.beyond-journal-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.beyond-journal-item:hover img {
  transform: scale(1.06);
}

.beyond-table-wrap {
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 12px;
}

.beyond-table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 10px;
}

.beyond-table th,
.beyond-table td {
  padding: 16px;
  text-align: left;
  border: 1px solid rgba(201, 164, 92, 0.12);
}

.beyond-table th {
  background: rgba(18, 61, 46, 0.8);
  color: var(--white);
}

.beyond-table td {
  background: rgba(247, 243, 234, 0.06);
  color: rgba(247, 243, 234, 0.8);
}

.beyond-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.beyond-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
}

.beyond-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.beyond-form .full {
  grid-column: 1 / -1;
}

.beyond-form input,
.beyond-form select,
.beyond-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 14px;
  background: rgba(6, 24, 38, 0.66);
  color: var(--white);
  padding: 13px 14px;
  font: inherit;
}

.beyond-form button,
.beyond-form > a {
  justify-content: center;
}

.luxury-yachts,
.story-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  background: linear-gradient(180deg, #0b2235, #061826);
}

.split-visual,
.story-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.split-visual img,
.story-image img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.split-visual:hover img,
.story-image:hover img {
  transform: scale(1.05);
}

.split-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: var(--muted);
}

.split-copy li {
  position: relative;
  padding-left: 26px;
}

.split-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--turquoise);
}

.windrose {
  background: linear-gradient(180deg, #061826, #123d2e);
}

.windrose-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.windrose-grid img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.windrose-grid > div,
.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.schedule-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.schedule-list span {
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.detail-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.detail-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.detail-card p {
  color: var(--muted);
}

.story-copy blockquote {
  margin: 28px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.signature {
  color: var(--gold);
  font-weight: 900;
}

.signature span {
  color: var(--muted);
}

.journal-gallery {
  background: linear-gradient(180deg, #061826, #0b2235);
}

.carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #061826;
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  min-height: clamp(340px, 56vw, 640px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(28px) scale(1.01);
  transition: opacity 700ms ease, transform 700ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.carousel-slide img {
  height: 100%;
  object-fit: contain;
  background: #061826;
}

.carousel-slide figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 24, 38, 0.7);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 24, 38, 0.74);
  font-size: 34px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-btn.prev {
  left: 18px;
}

.carousel-btn.next {
  right: 18px;
}

.final-cta {
  min-height: 70vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(6, 24, 38, 0.76), rgba(6, 24, 38, 0.92)),
    url("machu-picchu-cusco.jpg") center/cover fixed;
}

.final-cta-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(1180px, 100%);
}

.final-cta-copy {
  text-align: left;
}

.home-contact-form {
  text-align: left;
  box-shadow: var(--shadow);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.contact-lines span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 90;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ocean);
  background: var(--sand);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 6vw, 92px) 96px;
  color: rgba(247, 243, 234, 0.58);
  background: #04111b;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  color: var(--soft-white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes parallaxDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-22px, -10px, 0);
  }
}

@keyframes compassFloat {
  50% {
    transform: translateY(10px) rotate(8deg);
  }
}

@keyframes routeDraw {
  to {
    stroke-dashoffset: -240;
  }
}

@media (max-width: 980px) {
  .editorial-intro,
  .motion-note,
  .luxury-yachts,
  .story-section,
  .windrose-grid {
    grid-template-columns: 1fr;
  }

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

  .program-gateway,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }

  .atlas-board {
    min-height: 860px;
    padding: 0;
  }

  .atlas-lines {
    display: block;
    inset: 20px 0;
    height: calc(100% - 40px);
    transform: rotate(90deg) scale(1.42);
    transform-origin: center;
    opacity: 0.72;
  }

  .atlas-point {
    position: absolute;
    width: min(280px, calc(100% - 34px));
    padding: 14px;
  }

  .p1 { left: 18px; top: 34px; }
  .p2 { right: 18px; top: 146px; left: auto; }
  .p3 { left: 18px; top: 262px; }
  .p4 { right: 18px; top: 378px; left: auto; bottom: auto; }
  .p5 { left: 18px; top: 494px; right: auto; bottom: auto; }
  .p6 { right: 18px; top: 610px; left: auto; }
  .p7 { left: 18px; top: 726px; }

  .intro-video video,
  .motion-video video {
    height: 360px;
  }

  .intro-photo {
    grid-template-columns: 1fr;
  }

  .program-gateway img {
    height: 340px;
  }

  .andes-stop,
  .andes-rates,
  .andes-motion {
    grid-template-columns: 1fr;
  }

  .andes-stop:nth-child(even) .andes-stop-media {
    order: initial;
  }

  .andes-stop-media {
    position: static;
  }

  .andes-route-map {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 20px;
  }

  .andes-route-map svg {
    display: none;
  }

  .route-pin {
    position: static;
    width: 100%;
    max-width: none;
  }

  .andes-hero-compass {
    opacity: 0.55;
  }

  .beyond-card-grid,
  .beyond-mini-grid,
  .beyond-two-cards,
  .beyond-split,
  .beyond-motion,
  .beyond-inquiry,
  .beyond-rates,
  .final-cta-panel {
    grid-template-columns: 1fr;
  }

  .beyond-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beyond-journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .beyond-feature-image img {
    min-height: 380px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .editorial-intro {
    grid-template-columns: 1fr;
  }

  .intro-title .intro-photo {
    max-width: 860px;
  }

  .intro-text {
    max-width: 860px;
  }
}

@media (max-width: 680px) {
  .brand span {
    max-width: 178px;
    font-size: 12px;
  }

  .nav-panel {
    grid-template-columns: 1fr;
  }

  .hero-atlas {
    min-height: 820px;
    padding-top: 92px;
  }

  .hero-compass,
  .hero-coordinates {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    justify-items: stretch;
  }

  .floating-action {
    min-width: 0;
    min-height: 46px;
    padding: 0 9px;
    gap: 6px;
    font-size: 9px;
  }

  .floating-logo {
    width: 20px;
    height: 20px;
  }

  .floating-iguana {
    width: 66px;
  }

  .floating-hummingbird {
    width: 54px;
  }

  section {
    padding: 70px 18px;
  }

  .video-caption {
    position: static;
    padding: 16px;
    background: rgba(6, 24, 38, 0.92);
  }

  .intro-video video,
  .motion-video video {
    height: 300px;
  }

  .intro-photo img,
  .program-gateway img {
    height: 320px;
  }

  .experience-card {
    min-height: 360px;
  }

  .program-card {
    min-height: auto;
  }

  .price-table {
    min-width: 360px;
  }

  .carousel-track {
    min-height: 330px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .andes-hero {
    min-height: 820px;
    padding: 112px 18px 74px;
  }

  .andes-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .andes-hero-compass {
    display: none;
  }

  .andes-coordinates {
    left: 18px;
    right: 18px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .andes-route,
  .andes-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .andes-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .andes-photo.primary {
    grid-row: span 1;
  }

  .andes-stop-copy,
  .andes-rates,
  .andes-motion,
  .andes-motion-frame {
    border-radius: 22px;
  }

  .andes-stop-copy h2,
  .andes-rates h2,
  .andes-final-cta h2,
  .andes-motion-copy h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .andes-motion-frame {
    min-height: 260px;
  }

  .andes-price-table {
    min-width: 420px;
  }

  .andes-final-cta {
    margin-left: 18px;
    margin-right: 18px;
    border-radius: 24px;
  }

  .beyond-hero {
    min-height: 820px;
    padding: 112px 18px 72px;
  }

  .beyond-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .beyond-card-grid,
  .beyond-form {
    grid-template-columns: 1fr;
  }

  .beyond-card {
    min-height: 390px;
  }

  .beyond-experience,
  .beyond-compare,
  .beyond-motion {
    padding-left: 18px;
    padding-right: 18px;
  }

  .beyond-split h2,
  .beyond-compare h2,
  .beyond-motion h2 {
    font-size: clamp(2.5rem, 13vw, 4.1rem);
  }

  .beyond-feature-image img,
  .beyond-video-frame,
  .beyond-photo-pair figure,
  .beyond-photo-spread figure,
  .beyond-photo-triptych figure,
  .beyond-photo-pair figure:first-child,
  .beyond-photo-spread figure:first-child {
    min-height: 260px;
  }

  .beyond-photo-pair,
  .beyond-photo-spread,
  .beyond-photo-triptych {
    grid-template-columns: 1fr;
  }

  .beyond-photo-triptych figure:nth-child(2) {
    transform: none;
  }

  .beyond-timeline-item {
    grid-template-columns: 1fr;
  }

  .beyond-timeline-item > span {
    width: 40px;
    height: 40px;
  }

  .beyond-actions {
    flex-direction: column;
  }

  .beyond-form .full {
    grid-column: auto;
  }

  .beyond-journal-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .beyond-journal-item:nth-child(1),
  .beyond-journal-item:nth-child(9),
  .beyond-journal-item:nth-child(12) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}


/* Route map refinements: more space, connected journey line, no overlapping labels. */
.atlas-board {
  min-height: 820px;
}

.atlas-point {
  width: min(164px, 16vw);
  padding: 12px 13px;
}

.atlas-point strong {
  font-size: 14px;
  line-height: 1.12;
}

.atlas-point small {
  font-size: 11px;
  line-height: 1.25;
}

.atlas-point span {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
}

.atlas-lines path {
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p1 { left: 5%; top: 65%; }
.p2 { left: 22%; top: 31%; }
.p3 { left: 38%; top: 61%; }
.p4 { left: 51%; top: 76%; }
.p5 { left: 72%; top: 57%; right: auto; bottom: auto; }
.p6 { right: 3%; top: 26%; }
.p7 { left: 61%; top: 10%; }

.program-price {
  display: inline-flex;
  width: fit-content;
  margin: 10px 0 18px;
  padding: 11px 16px;
  border: 1px solid rgba(201, 164, 92, 0.42);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(201, 164, 92, 0.11);
  font-weight: 800;
  letter-spacing: 0.03em;
}

@media (min-width: 981px) and (max-width: 1320px) {
  .atlas-board {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 34px;
    overflow: visible;
  }

  .atlas-board::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46px;
    bottom: 46px;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold), var(--turquoise), var(--gold), transparent);
    opacity: 0.62;
  }

  .atlas-lines {
    display: none;
  }

  .atlas-point,
  .p1,
  .p2,
  .p3,
  .p4,
  .p5,
  .p6,
  .p7 {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    min-height: 118px;
  }
}

@media (max-width: 980px) {
  .atlas-board {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 34px 20px 34px 58px;
    overflow: visible;
  }

  .atlas-board::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold), var(--turquoise), var(--gold), transparent);
    opacity: 0.85;
  }

  .atlas-lines {
    display: none;
  }

  .atlas-point,
  .p1,
  .p2,
  .p3,
  .p4,
  .p5,
  .p6,
  .p7 {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
  }

  .atlas-point::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 27px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(201, 164, 92, 0.16);
  }
}


/* Beyond Galapagos image enrichment and Blog page */
.header-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(201, 164, 92, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(201, 164, 92, 0.11);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-blog::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201, 164, 92, 0.7);
}

.mini-card-photo {
  width: 100%;
  height: 170px;
  margin: 0 0 16px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(201, 164, 92, 0.18);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.image-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: center;
}

.image-callout figure {
  margin: 0;
  min-height: 250px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.image-callout img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.blog-page {
  background: #061826;
}

.blog-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: clamp(110px, 14vw, 170px) clamp(22px, 7vw, 96px) clamp(54px, 8vw, 110px);
  background:
    linear-gradient(120deg, rgba(6, 24, 38, 0.95), rgba(11, 34, 53, 0.72)),
    url("atlas-texture-map.jfif") center/cover;
}

.blog-hero-copy {
  max-width: 860px;
}

.blog-hero h1 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
}

.blog-hero p:not(.kicker) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 6vw, 92px);
  background: linear-gradient(180deg, #061826, #0b2235 55%, #061826);
}

.blog-admin-panel,
.blog-post-card {
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 26px;
  background: rgba(247, 243, 234, 0.05);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.blog-admin-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: clamp(22px, 4vw, 34px);
}

.blog-admin-panel[hidden] {
  display: none;
}

.blog-login,
.blog-editor {
  display: grid;
  gap: 14px;
}

.blog-login h2,
.blog-editor h2,
.blog-posts h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
}

.blog-admin-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-admin-panel input,
.blog-admin-panel textarea {
  width: 100%;
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(6, 24, 38, 0.7);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.blog-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-status {
  min-height: 22px;
  color: var(--gold);
  font-weight: 800;
}

.blog-posts {
  min-width: 0;
}

.compact-heading {
  text-align: left;
  margin-bottom: 26px;
}

.blog-post-grid {
  display: grid;
  gap: 24px;
}

.blog-post-card {
  overflow: hidden;
}

.blog-post-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 250px;
  background: rgba(0, 0, 0, 0.2);
}

.blog-post-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.blog-post-media img:only-child {
  grid-column: 1 / -1;
}

.blog-post-body {
  padding: clamp(22px, 4vw, 38px);
}

.blog-post-body h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
}

.blog-post-body p:not(.program-label) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.blog-doc-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 42px;
  border: 1px solid rgba(201, 164, 92, 0.45);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(120, 32, 28, 0.74);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.blog-delete-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 164, 92, 0.9);
  background: rgba(165, 48, 39, 0.9);
}

.hero-bg,
.intro-photo img,
.experience-card-photo,
.split-visual img,
.windrose-grid img,
.program-gateway img,
.story-image img,
.carousel-slide img,
.beyond-photo-spread img,
.beyond-photo-pair img,
.beyond-feature-image img,
.beyond-photo-triptych img,
.beyond-journal-item img,
.andes-photo img,
.andes-rate-image img,
.image-callout img,
.blog-post-media img,
.mini-card-photo {
  filter: saturate(1.18) contrast(1.08) brightness(1.04);
}

.hero-bg {
  filter: saturate(1.2) contrast(1.08) brightness(1.05);
}

@media (max-width: 980px) {
  .blog-layout,
  .image-callout {
    grid-template-columns: 1fr;
  }

  .blog-admin-panel {
    position: static;
  }

  .blog-post-media {
    grid-template-columns: 1fr;
  }

  .blog-post-media img,
  .mini-card-photo {
    min-height: 230px;
    height: 230px;
  }
}

@media (max-width: 680px) {
  .header-blog,
  .header-home {
    padding: 8px 10px;
    font-size: 11px;
  }
}
