﻿@font-face {
  font-family: "Sofia Pro UI";
  src: url("assets/fonts/SofiaPro-RegularAz.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #34302c;
  --muted: #7a7168;
  --line: #e7dfd3;
  --paper: #fbfaf7;
  --sand: #f3ecdf;
  --warm: #e8dfd0;
  --red: #b7332d;
  --red-dark: #8d241f;
  --white: #fff;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sofia Pro Text", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 32px;
  background: #faf5eb;
  box-shadow: 0 1px 4px rgba(52, 48, 44, 0.05);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0;
  color: #5e5650;
}

.brand-mark {
  color: var(--red);
}

.site-header .brand {
  gap: 4px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: #112c3f;
}

.site-header .brand-word {
  color: #112c3f;
}

.site-header .brand-amp {
  color: #b18845;
  font-size: 1.85em;
  line-height: 0.72;
  margin: 0 -1px;
}

.site-header .brand-image {
  width: 196px;
  max-width: 34vw;
  height: 34px;
}

.site-header .brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #241f1b;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: -34px;
}

.site-header .cta {
  min-height: 38px;
  padding: 0 22px;
  letter-spacing: 0.12em;
}

.primary-nav,
.header-actions,
.drawer-menu,
.cta,
.ghost,
.tour-inquiry-button,
.bespoke-sticky-bar,
.adventure-form,
.footer,
.destination-meta,
.tour-meta,
.experience-menu-meta,
.experience-category-grid a,
.tour-package-copy li,
.experience-menu-card li {
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.menu-button {
  display: grid;
  gap: 4px;
  width: 28px;
  border: 0;
  background: transparent;
  padding: 6px 3px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1px;
  background: #5b534d;
}

.menu-toggle {
  position: fixed;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(33, 31, 29, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(430px, 100vw);
  height: 100vh;
  overflow-y: auto;
  padding: 72px 38px 48px;
  background: #faf5eb;
  color: #2f2a26;
  box-shadow: -18px 0 45px rgba(47, 42, 38, 0.14);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.menu-toggle:checked ~ .menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle:checked ~ .drawer-menu {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 28px;
  height: 1px;
  background: #5b534d;
}

.drawer-close::before {
  transform: rotate(45deg);
}

.drawer-close::after {
  transform: rotate(-45deg);
}

.drawer-links {
  display: grid;
  gap: 13px;
  padding-bottom: 30px;
}

.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.drawer-links span {
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.drawer-secondary {
  display: grid;
  gap: 10px;
  padding: 12px 0 8px;
  border-bottom: 1px solid #ddd4c6;
  color: #7b746c;
}

.drawer-secondary a {
  font-size: 14px;
}

.muted-link {
  color: #c3baad;
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 12px;
  padding: 24px 0 30px;
}

.drawer-actions .cta,
.drawer-actions .ghost {
  min-height: 42px;
  padding: 0 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.drawer-details {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  column-gap: 22px;
  row-gap: 9px;
  color: #514a43;
  align-items: baseline;
}

.drawer-details h2 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.drawer-details p,
.drawer-details a {
  display: block;
  margin: 0;
  color: #514a43;
  font-size: 12.5px;
  line-height: 1.35;
}

.drawer-details p {
  color: #6f6256;
}

.drawer-details a {
  white-space: nowrap;
}

.cta,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid var(--red);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta {
  background: var(--red);
  color: var(--white);
}

.cta:hover {
  background: var(--red-dark);
}

.ghost {
  background: transparent;
  color: var(--ink);
  border-color: #b8aea4;
}

.small {
  min-height: 28px;
  padding: 0 14px;
}

.hero {
  position: relative;
  min-height: 545px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.04), rgba(10, 8, 6, 0.18));
}

.hero video,
.hero img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-top: -76px;
}

.hero h1,
h2,
h3,
blockquote,
.quote p {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.hero h1 span {
  display: block;
}

.eyebrow,
.smallcaps,
.kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-band {
  padding: 38px 30px;
  background: var(--sand);
}

.home-opening-canvas {
  background: #fcfaf8;
}

.intro-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 360px;
  align-items: center;
  gap: 44px;
}

.intro-text {
  max-width: 360px;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.25;
}

.mini-card {
  width: 360px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  background: #f7f0e6;
}

.mini-card img {
  height: 120px;
}

.mini-card h2 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
}

.mini-card a {
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.narrow {
  width: min(860px, calc(100% - 44px));
}

.letter {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 82px;
  align-items: start;
}

.letter-copy p {
  margin: 0 0 20px;
}

.signature {
  margin-top: 34px;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.caption,
figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.portrait img {
  height: 520px;
}

.home-trust-intro {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 7vw, 108px) 0 clamp(68px, 7vw, 104px);
}

.home-trust-statement {
  max-width: 760px;
  margin: 0;
  color: #2f2930;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.35vw, 30px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-trust-intro h2 {
  margin: clamp(38px, 4vw, 56px) 0 22px;
  color: #2f2930;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-trust-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 20px;
  color: #4f4841;
  font-size: 14px;
  line-height: 1.58;
}

.home-trust-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.feature-image {
  position: relative;
  padding-top: 12px;
}

.feature-image img {
  height: 430px;
}

.slide-label {
  position: absolute;
  left: 36px;
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 12px;
}

.slide-label span {
  padding: 8px 14px;
  background: white;
  color: var(--ink);
}


.mini-gallery {
  overflow: hidden;
}

.mini-gallery-viewport {
  overflow: hidden;
}

.mini-gallery-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.mini-gallery .mini-gallery-track img {
  flex: 0 0 100%;
  min-width: 100%;
  height: 430px;
}

.mini-gallery-controls {
  position: absolute;
  right: 34px;
  bottom: 118px;
  display: flex;
  gap: 8px;
}

.mini-gallery-controls button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-family: "Sofia Pro UI", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.mini-gallery-controls button:hover {
  background: #fff;
}

.centered-copy,
.quote,
.section-title,
.press,
.newsletter {
  width: min(720px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
}

.centered-copy {
  padding: 16px 0 100px;
}

.centered-copy h2,
.section-title h2,
.press h2,
.newsletter h2 {
  margin: 0 0 20px;
  font-size: 26px;
  line-height: 1.25;
}

.centered-copy p,
.press p,
.newsletter p {
  color: var(--muted);
}

.quote {
  padding: 78px 0;
}

.quote p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 26px;
  line-height: 1.35;
  color: #5a524b;
}

.quote.light {
  background: var(--paper);
}

.home-permission-quote {
  padding: 56px 0 128px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

blockquote {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.25;
}

.testimonial img {
  height: 300px;
}

.journal,
.journeys {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.section-heading h2 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.25;
}

.section-heading p:not(.smallcaps) {
  color: var(--muted);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.story-card {
  min-width: 0;
}

.story-card.wide {
  grid-column: 1 / -1;
}

.story-card img {
  height: 210px;
}

.story-card.wide img {
  height: 260px;
}

.story-card h3 {
  margin: 14px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}


.sticky-journal-test {
  align-items: start;
  gap: 82px;
  padding-bottom: 0;
  margin-bottom: 86px;
}

.sticky-journal-test .section-heading {
  position: sticky;
  top: 96px;
  align-self: start;
  max-width: 370px;
  padding-top: 8px;
}

.sticky-journal-test .section-heading .cta {
  margin-top: 8px;
}

.sticky-journal-test .journal-grid {
  gap: 34px;
  align-items: start;
}

.sticky-journal-test .story-card.wide {
  grid-column: 1 / -1;
}

.sticky-journal-test .story-card.wide img {
  height: 360px;
}

.sticky-journal-test .story-card img {
  height: 260px;
}
.sticky-journal-test .story-card:not(.wide) {
  position: relative;
}

.sticky-journal-test .story-card:not(.wide) h3 {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 18px);
  margin: 0;
}

.sticky-journal-test .story-card h3 {
  margin-top: 18px;
}


@media (max-width: 900px) {
  .sticky-journal-test {
    gap: 34px;
    padding-bottom: 86px;
    margin-bottom: 54px;
  }

  .sticky-journal-test .section-heading {
    position: static;
    max-width: none;
    padding-top: 0;
  }

  .sticky-journal-test .story-card.wide img,
  .sticky-journal-test .story-card img {
    height: 230px;
  }
  .sticky-journal-test .story-card:not(.wide) h3 {
    position: static;
    margin: 18px 0 8px;
  }
}



.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.journey-cards .story-card img {
  height: 205px;
}

.haute {
  padding: 90px 0;
  background: #f5f1ea;
}

.haute .section-title {
  margin-bottom: 58px;
}

.voyage-row {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}

.voyage-row:nth-of-type(even) {
  grid-template-columns: 0.85fr 1.15fr;
}

.voyage-row:nth-of-type(even) img {
  order: 2;
}

.voyage-row img {
  height: 310px;
}

.voyage-row h3 {
  margin: 0 0 16px;
  font-size: 27px;
  line-height: 1.2;
}

.voyage-row p {
  color: var(--muted);
}

dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 14px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 12px;
}

dt {
  color: var(--ink);
  text-transform: uppercase;
  font-size: 10px;
}

dd {
  margin: 0;
}

.home-arranged-journey {
  padding: clamp(78px, 8vw, 118px) 0;
  background: #fcfaf8;
}

.home-arranged-grid {
  width: min(1024px, 80vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 46.875%) minmax(0, 46.875%);
  gap: 6.25%;
  align-items: start;
}

.home-arranged-copy h2 {
  max-width: 92%;
  margin: 0;
  color: #152741;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.25vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-arranged-copy-sticky {
  position: sticky;
  z-index: 1;
  top: clamp(92px, 14vh, 142px);
  align-self: start;
  background: #fcfaf8;
}

.home-arranged-lede,
.home-arranged-list,
.home-arranged-caption {
  color: #3f3934;
  font-family: "Sofia Pro Text", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.home-arranged-lede {
  max-width: 86%;
  margin: clamp(24px, 2.8vw, 38px) 0 0;
}

.home-arranged-list {
  max-width: 90%;
  margin-top: clamp(22px, 2.4vw, 34px);
}

.home-arranged-list p {
  margin: 0;
}

.home-arranged-list p + p {
  margin-top: 17px;
}

.home-arranged-list strong,
.home-arranged-caption strong {
  color: #201b18;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.home-arranged-cape-grace {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: clamp(28px, 3.6vw, 48px);
  object-fit: cover;
}

.home-arranged-media {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
}

.home-arranged-media figure {
  margin: 0;
}

.home-arranged-coast {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-arranged-caption {
  width: 100%;
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.35;
}

.home-arranged-caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-arranged-path {
  width: 100%;
  margin-left: 0;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.destinations {
  padding: 86px 0 70px;
  background: var(--paper);
}

.destination-grid {
  width: min(1120px, calc(100% - 24px));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.destination-grid a {
  position: relative;
  min-height: 160px;
  overflow: hidden;
}

.destination-grid img {
  height: 100%;
  transition: transform 0.35s ease;
}

.destination-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
}

.destination-grid span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: white;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.destination-grid a:hover img {
  transform: scale(1.04);
}

.home-destination-grid {
  width: min(1120px, calc(100% - 48px));
  gap: 6px;
  align-items: start;
}

.home-destination-grid a {
  display: block;
}

.home-destination-grid .home-activity-tile {
  height: clamp(145px, 14vw, 190px);
  min-height: 0;
}

.home-destination-grid .home-place-tile {
  height: clamp(250px, 27vw, 360px);
  min-height: 0;
}

.home-destination-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-destination-grid .home-activity-tile span {
  font-size: clamp(19px, 1.75vw, 23px);
}

.home-destination-grid .home-place-tile span {
  font-size: clamp(24px, 2.35vw, 34px);
}
.press {
  padding: 64px 0 48px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  color: #8b837b;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.newsletter {
  width: 100%;
  max-width: none;
  padding: 55px 22px;
  background: var(--sand);
}

.newsletter form {
  width: min(760px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr auto;
  gap: 12px;
  align-items: end;
}

label {
  display: grid;
  gap: 5px;
  text-align: left;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

input {
  width: 100%;
  height: 35px;
  border: 1px solid #cfc4b8;
  background: white;
  padding: 0 10px;
}

.adventure-page {
  min-height: 760px;
  padding: 28px 24px 84px;
  background: #f4efe4;
}

.adventure-intro {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 48px 0 42px;
  text-align: center;
}

.adventure-intro h1 {
  margin: 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.14;
  color: #3f3832;
}

.adventure-form-section {
  width: min(760px, 100%);
  margin: 0 auto;
}

.adventure-form {
  color: #2f2a26;
}

.adventure-form fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.adventure-form legend {
  margin-bottom: 6px;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4c463f;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.adventure-form label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  line-height: 1.35;
  color: #39342f;
  text-transform: none;
}

.adventure-form input,
.adventure-form select,
.adventure-form textarea {
  width: 100%;
  border: 1px solid #59534d;
  border-radius: 0;
  background: #fff;
  color: #2f2a26;
  font: inherit;
  font-size: 12px;
}

.adventure-form input,
.adventure-form select {
  height: 34px;
  padding: 0 12px;
}

.adventure-form select {
  appearance: auto;
}

.adventure-form textarea {
  min-height: 58px;
  margin-top: 4px;
  padding: 10px 12px;
  resize: vertical;
}

.full-field {
  margin-top: 26px;
}

.newsletter-check {
  display: inline-flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  margin: -4px 0 16px;
}

.newsletter-check input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
}

.form-submit {
  min-width: 92px;
  border: 0;
  cursor: pointer;
}

.form-success {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #b18845;
  background: rgba(255, 255, 255, 0.58);
  color: #3f3832;
}

.destinations-page {
  overflow-x: hidden;
  padding: 0 24px 0;
  background: #fff;
  color: #243447;
}

.lima-page,
.paracas-page,
.ica-page,
.huaca-page {
  overflow-x: hidden;
}

.editorial-page-hero-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #f4efe6;
}

.editorial-page-hero-image img {
  display: block;
  width: 100%;
  height: clamp(300px, 40vw, 560px);
  object-fit: cover;
}

.destination-page-hero-image img {
  object-position: center 52%;
}

.experiences-page-hero-image img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.lima-tours-hero-image img {
  object-position: center 47%;
}

.destination-page-hero-image + .destination-journal-hero {
  padding-top: clamp(48px, 5.5vw, 76px);
}

.destination-journal-hero {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 8px 0 70px;
  text-align: center;
}

.destination-journal-hero p,
.destination-journal-hero h1,
.destination-journal-hero blockquote,
.featured-destination-copy h2,
.destination-story h2 {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.destination-journal-hero p {
  margin: 0;
  font-size: 33px;
  line-height: 1.05;
  color: #3f5065;
}

.destination-journal-hero h1 {
  margin: 0;
  font-size: 31px;
  line-height: 1.1;
  color: #3f5065;
}

.destination-journal-hero blockquote {
  margin: 44px 0 0;
  font-size: 31px;
  font-style: italic;
  line-height: 1.2;
  color: #3f5065;
}


.destination-poetic-hero {
  width: min(820px, calc(100% - 48px));
  padding-top: 18px;
}

.destination-poetic-hero h1 {
  margin: 0 auto;
  font-size: clamp(25px, 3.2vw, 38px);
  font-style: italic;
  line-height: 1.18;
}

.destination-map-intro {
  --map-split: 31.5vw;
  position: relative;
  isolation: isolate;
  width: 80vw;
  max-width: 1280px;
  margin: 0 auto 78px;
  display: grid;
  grid-template-columns: 46.875% 6.25% 46.875%;
  gap: 0;
  align-items: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.destination-map-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(
    90deg,
    #f8f3f0 0,
    #f8f3f0 var(--map-split),
    #f9efe5 var(--map-split),
    #f9efe5 100%
  );
}

@media (min-width: 1600px) {
  .destination-map-intro {
    --map-split: calc(((100vw - 1280px) / 2 + 600px) * 0.663);
  }
}

.destination-map-frame {
  grid-column: 1;
  margin: 0;
  background: transparent;
  display: flex;
  justify-content: stretch;
}

.destination-map-frame img {
  width: 100%;
  max-height: none;
  object-fit: contain;
}

.destinations-page .destination-map-frame {
  margin-left: -10vw;
  width: calc(100% + 10vw);
  justify-content: flex-start;
}

.destinations-page .destination-map-frame img {
  width: 66.3%;
}

@media (min-width: 1600px) {
  .destinations-page .destination-map-frame {
    margin-left: calc((1280px - 100vw) / 2);
    width: calc(100% + ((100vw - 1280px) / 2));
  }

  .destinations-page .destination-map-frame img {
    width: 66.3%;
  }
}

.destination-map-copy {
  grid-column: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 88%;
  padding: clamp(46px, 5vw, 72px) 0;
}

.destination-map-copy .smallcaps {
  margin: 0 0 20px;
  color: #111827;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.destination-map-copy h2 {
  margin: 0 0 22px;
  color: #3f5065;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 33px;
  font-weight: 300;
  line-height: 1.15;
}

.destination-map-copy p:not(.smallcaps) {
  margin: 0;
  color: #536173;
  font-size: 13px;
  line-height: 1.85;
}

.destination-map-copy p:not(.smallcaps) + p {
  margin-top: 18px;
}

.featured-destination {
  width: min(1120px, 100%);
  margin: 0 auto 62px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 58px;
  align-items: start;
}

.destination-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.48 / 1;
  background: #152433;
  color: #fff;
}

.destination-media-large {
  aspect-ratio: 1.5 / 1;
}

.destination-media img {
  height: 100%;
  filter: brightness(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.destination-media:hover img,
.destination-media:focus-visible img {
  filter: brightness(0.68);
  transform: scale(1.025);
}

.destination-media span {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.destination-media:hover span,
.destination-media:focus-visible span {
  opacity: 1;
}

.destination-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid #e6dcd2;
  color: #344458;
  font-size: 11px;
  line-height: 1.4;
}

.destination-story .destination-meta {
  margin-top: 28px;
}

.destination-meta span {
  color: #b7332d;
}

.destination-meta span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 10px;
  background: #d8cec4;
  vertical-align: -2px;
}

.featured-destination-copy {
  padding-top: 10px;
}

.featured-destination-copy h2,
.featured-destination-copy > p:not(.destination-meta) {
  max-width: 90%;
}

.featured-destination-copy h2,
.destination-story h2 {
  margin: 0 0 22px;
  color: #3f5065;
  line-height: 1.22;
}

.featured-destination-copy h2 {
  font-size: 28px;
  letter-spacing: 0.025em;
}

.featured-destination-copy p:not(.destination-meta),
.destination-story p:not(.destination-meta) {
  margin: 0 0 24px;
  color: #29384a;
  font-size: 13px;
  line-height: 1.72;
}


.destination-title-link {
  color: inherit;
  text-decoration: none;
}

.destination-title-link:hover {
  color: #9f7938;
}
.destination-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid #9b9288;
  background: transparent;
  color: #6c645c;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.destination-about-button-after-highlights {
  margin-top: 22px;
}

.destination-about-button:hover {
  background: rgba(52, 48, 44, 0.04);
  border-color: #6f665e;
  color: #34302c;
}



.destination-highlights-title {
  margin: 24px 0 15px;
  color: #29384a;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.destination-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.destination-highlights li {
  position: relative;
  padding-left: 34px;
  color: #4f5b6b;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.35;
}

.destination-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 22px;
  height: 1px;
  background: #29384a;
}

.read-more {
  display: inline-block;
  color: #28384a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}


.destination-region-feature {
  position: relative;
  margin-bottom: 0;
  padding: 52px 0;
  clip-path: inset(0 -100vmax);
}

.destination-region-white {
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
}

.destination-region-soft {
  background: #fcfaf8;
  box-shadow: 0 0 0 100vmax #fcfaf8;
}

.destination-region-feature:last-of-type {
  margin-bottom: 0;
}

.destinations-page .destination-map-intro {
  margin: 0 auto;
}

.destination-elsewhere-box {
  position: relative;
  isolation: isolate;
  width: min(80vw, 1280px);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 112px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  text-align: center;
  background: transparent;
  clip-path: inset(0 -100vmax);
}

.destination-elsewhere-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: #fcfaf8;
}

.destination-elsewhere-box div {
  grid-column: 1;
  max-width: 720px;
}

.destination-elsewhere-box h2 {
  margin: 0 0 18px;
  color: #34302c;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.08;
}

.destination-elsewhere-box p {
  max-width: 560px;
  margin: 0 auto;
  color: #514a43;
  font-size: 15px;
  line-height: 1.78;
}

.destination-elsewhere-box a {
  grid-column: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #b7332d;
  background: #b7332d;
  color: #fff;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.destination-elsewhere-box a:hover {
  border-color: #9f2824;
  background: #9f2824;
  color: #fff;
}
.destination-story-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 40px;
}

.destination-story h2 {
  font-size: 20px;
}

.lima-tours-page {
  overflow-x: hidden;
  padding: 0 24px 0;
  background: #fff;
  color: #29384a;
}

@supports (overflow: clip) {
  .destinations-page,
  .lima-page,
  .paracas-page,
  .ica-page,
  .lima-tours-page,
  .huaca-page {
    overflow-x: clip;
  }
}

.lima-tours-hero {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 52px 0 64px;
  text-align: center;
}

.lima-tours-hero h1,
.lima-tours-hero blockquote,
.tour-duration-label h2,
.tour-package-copy h3 {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.lima-tours-hero h1 {
  margin: 0;
  color: #3f5065;
  font-size: 38px;
  line-height: 1.12;
}

.lima-tours-hero blockquote {
  width: min(680px, 100%);
  margin: 34px auto 0;
  color: #3f5065;
  font-size: 27px;
  font-style: italic;
  line-height: 1.28;
}

.tour-duration-section {
  width: min(1040px, 100%);
  margin: 0 auto 78px;
}

.lima-tours-page .tour-duration-section:last-of-type {
  margin-bottom: 42px;
}

.tour-duration-label {
  position: sticky;
  top: 61px;
  z-index: 18;
  margin: 0 0 22px;
  padding: 10px 0 9px;
  background: #fff;
}

.tour-duration-label h2 {
  margin: 0;
  color: #6a625a;
  font-size: 15px;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

/* adventures-from-lima duration label styling */
.lima-tours-page .tour-duration-label {
  position: static;
  top: auto;
  z-index: auto;
  width: 100vw;
  margin: 0 0 22px calc(50% - 50vw);
  padding: 8px 0 7px;
  background: #faf5eb;
  border-top: 1px solid rgba(177, 136, 69, 0.18);
  border-bottom: 1px solid rgba(177, 136, 69, 0.18);
  text-align: center;
  box-shadow: none;
}

.lima-tours-page .tour-duration-label h2 {
  color: #62584e;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.tour-package-list {
  display: grid;
  gap: 0;
}

.tour-package-card {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px max(24px, calc((100vw - 1040px) / 2));
  border-bottom: 0;
  background: #fff;
}

.lima-tours-page .tour-duration-section:last-of-type .tour-package-card:last-child {
  padding-bottom: 42px;
  border-bottom: 0;
}

.lima-tours-page .tour-duration-section:nth-of-type(2n) .tour-package-card:nth-of-type(even),
.lima-tours-page .tour-duration-section:nth-of-type(2n + 1) .tour-package-card:nth-of-type(odd) {
  background: #fcfaf8;
}

.tour-package-card img {
  height: 100%;
  min-height: 320px;
  aspect-ratio: 1.2 / 1;
}

.tour-package-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
  color: #344458;
  font-size: 11px;
  line-height: 1.4;
}

.tour-meta span {
  color: #b7332d;
}

.tour-meta span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 10px;
  background: #d8cec4;
  vertical-align: -2px;
}

.tour-package-copy h3 {
  margin: 0 0 14px;
  color: #3f5065;
  font-size: 23px;
  line-height: 1.22;
}

.tour-package-copy p:not(.tour-meta) {
  margin: 0 0 22px;
  color: #29384a;
  font-size: 14px;
  line-height: 1.78;
}

.tour-package-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-package-copy li {
  position: relative;
  padding: 6px 10px 6px 24px;
  background: transparent;
  color: #4d4740;
  font-size: 11px;
  line-height: 1.28;
}

.tour-package-copy li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 11px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: #aaa39c;
}

.experience-template-page {
  background: #fff;
  color: #3d3935;
}

.experience-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.experience-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: brightness(0.64) saturate(0.95);
}

.experience-hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.experience-hero-copy p,
.experience-hero-copy h1,
.experience-intro p,
.experience-split h2,
.experience-details h2,
.experience-related h2 {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.experience-hero-copy p {
  margin: 0 0 6px;
  font-size: 28px;
}

.experience-hero-copy h1 {
  margin: 0;
  font-size: 58px;
  font-style: italic;
  line-height: 1;
}

.experience-play {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #2f4050;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.experience-play::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.experience-hero-caption {
  position: absolute;
  left: 50%;
  bottom: 31px;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.experience-intro {
  width: min(560px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 68px;
  text-align: center;
}

.experience-intro p {
  margin: 0;
  font-size: 22px;
  line-height: 1.38;
  letter-spacing: 0.015em;
  color: #5d5852;
}

.experience-pillars {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  padding: 0 0 92px;
}

.experience-pillars article {
  min-height: 150px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 0;
  text-align: center;
  border-left: 1px solid rgba(47, 57, 69, 0.16);
}

.experience-pillars article:first-child {
  border-left: 0;
}

.experience-pillars h2 {
  margin: 0 0 18px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #34302c;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.experience-pillars p {
  max-width: 210px;
  margin: 0 auto;
  color: #34302c;
  font-size: 12px;
  line-height: 1.75;
}

.experience-wide-media,
.experience-landscape {
  position: relative;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.experience-wide-media img,
.experience-landscape img {
  aspect-ratio: 1.78 / 1;
  height: auto;
}

.experience-wide-media .experience-play {
  left: 28px;
  bottom: 26px;
}

.experience-split {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: start;
}

.experience-split figure {
  margin: 0;
}

.experience-split figure img {
  aspect-ratio: 0.78 / 1;
  height: auto;
}

.experience-split figcaption,
.experience-landscape p {
  margin: 10px 0 0;
  color: #57524c;
  font-size: 10px;
  line-height: 1.45;
}

.experience-split article img {
  aspect-ratio: 1.5 / 0.9;
  height: auto;
  margin-bottom: 34px;
}

.experience-split h2,
.experience-details h2,
.experience-related h2 {
  margin: 0 0 18px;
  color: #4a4540;
  font-size: 24px;
  line-height: 1.22;
}

.experience-split p,
.experience-details-copy p,
.experience-mini p {
  margin: 0 0 16px;
  color: #514d47;
  font-size: 12px;
  line-height: 1.72;
}

.experience-landscape {
  margin-bottom: 70px;
}

.experience-details {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 82px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.experience-mini img {
  aspect-ratio: 0.95 / 1;
  height: auto;
  margin-bottom: 14px;
}

.experience-mini h3,
.experience-related h3 {
  margin: 0 0 8px;
  color: #4b4640;
  font-size: 12px;
  line-height: 1.25;
}

.experience-related {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.82fr);
  gap: 28px;
  align-items: end;
  padding: 54px max(24px, calc((100vw - 980px) / 2)) 62px;
  background: #f3eadc;
}

.experience-related-copy p {
  margin: 0 0 18px;
  color: #b7332d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-related h2 {
  max-width: 360px;
  font-size: 22px;
}

.experience-related article img {
  aspect-ratio: 0.92 / 1;
  height: auto;
  margin-bottom: 10px;
}

.about-potential-page {
  padding-bottom: 118px;
  background: #fff;
  color: #3d3935;
}

.about-founder-note {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: #faf5eb;
  text-align: center;
}

.about-founder-note h1 {
  margin: 0;
  color: #3f5065;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.about-potential-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.about-potential-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: brightness(0.86) saturate(0.96);
}

.about-potential-hero div {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
}

.about-potential-hero p,
.about-potential-intro p,
.about-potential-close h2 {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.about-potential-hero p {
  margin: 0 0 16px;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.about-potential-hero h1 {
  margin: 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
}

.about-potential-intro {
  width: min(650px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 50px;
  text-align: center;
}

.about-potential-intro p {
  margin: 0;
  color: #424242;
  font-size: clamp(27px, 2.45vw, 34px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-potential-pillars {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
}

.about-potential-pillars article {
  min-height: 150px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 0;
  text-align: center;
  border-left: 1px solid rgba(47, 57, 69, 0.16);
}

.about-potential-pillars article:first-child {
  border-left: 0;
}

.about-potential-pillars h2 {
  margin: 0 0 18px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #34302c;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-potential-pillars p {
  max-width: 210px;
  margin: 0 auto;
  color: #34302c;
  font-size: 12px;
  line-height: 1.75;
}

.about-potential-quote {
  padding: 78px 24px 82px;
  margin-bottom: 84px;
  background: #faf9f7;
  text-align: center;
}

.about-potential-quote blockquote {
  width: min(590px, 100%);
  margin: 0 auto;
}

.about-potential-quote p {
  margin: 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-style: italic;
  line-height: 1.34;
  color: #22374f;
}

.about-potential-quote cite {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: #263442;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-potential-close {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.about-potential-close img {
  aspect-ratio: 1.22 / 1;
  height: auto;
}

.about-potential-close article > p:first-child {
  margin: 0 0 18px;
  color: #b7332d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-potential-close h2 {
  margin: 0 0 20px;
  color: #4a4540;
  font-size: 27px;
  line-height: 1.18;
}

.about-potential-close article > p:not(:first-child) {
  margin: 0 0 24px;
  color: #514d47;
  font-size: 13px;
  line-height: 1.75;
}

.about-contact-card {
  width: min(980px, calc(100% - 48px));
  margin: -26px auto 0;
  padding: 38px 46px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  background: #fcfaf8;
  border: 1px solid #eee5da;
  box-shadow: 0 14px 28px rgba(49, 38, 28, 0.055);
}

.about-contact-kicker {
  margin: 0 0 15px;
  color: #b7332d;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-contact-card h2 {
  margin: 0 0 16px;
  color: #443f39;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.16;
}

.about-contact-card p:not(.about-contact-kicker) {
  margin: 0;
  max-width: 360px;
  color: #5a554e;
  font-size: 13px;
  line-height: 1.75;
}

.about-contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #e7ddd0;
}

.about-contact-list article {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid #e7ddd0;
}

.about-contact-list span {
  color: #9f7938;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-contact-list a,
.about-contact-list address {
  color: #2f3d49;
  font-family: "Sofia Pro Light", "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
  text-decoration: none;
}

.about-contact-list a:hover {
  color: #b7332d;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 52px 24px 82px;
  background: #fbfaf7;
}

.footer-columns {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.footer-brand {
  gap: 5px;
  margin: 0 0 24px;
  color: #112c3f;
}

.footer-brand .brand-amp {
  color: #b18845;
}

.footer h3 {
  margin: 0 0 14px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.footer a {
  display: block;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}



.footer-contact-column {
  justify-self: start;
  width: max-content;
}

.footer-contact-links {
  width: max-content;
}


.footer-conversion {
  width: min(1000px, 100%);
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-conversion .legal {
  width: auto;
  margin: 0;
  color: #5e5650;
  font-size: 13px;
}

.footer .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid #ded4c7;
  background: #fff;
  color: #34302c;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer .footer-cta:hover {
  color: #9f7938;
  border-color: #b18845;
}

.legal {
  width: min(1000px, 100%);
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 11px;
}

.watermark {
  position: absolute;
  left: -18px;
  bottom: -28px;
  color: rgba(194, 115, 82, 0.12);
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .intro-band,
  .intro-inner,
  .letter,
  .two-column,
  .journal,
  .journeys,
  .voyage-row,
  .voyage-row:nth-of-type(even),
  .newsletter form {
    grid-template-columns: 1fr;
  }

  .adventure-page {
    padding: 16px 18px 62px;
  }

  .adventure-intro {
    padding: 36px 0 34px;
  }

  .adventure-intro h1 {
    font-size: 29px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .destinations-page {
    padding: 0 20px 0;
  }

  .destination-journal-hero {
    padding-bottom: 50px;
  }


  .destination-map-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
    margin-bottom: 46px;
  }

  .destination-map-intro::before {
    background: #f9efe5;
  }

  .destination-map-frame,
  .destination-map-copy {
    grid-column: auto;
  }

  .destinations-page .destination-map-frame,
  .huaca-page .destination-map-frame {
    width: auto;
    margin-left: 0;
    padding-left: 0;
    justify-content: center;
  }

  .destination-map-frame img,
  .destinations-page .destination-map-frame img,
  .huaca-page .destination-map-frame img {
    width: min(82%, 620px);
    max-height: none;
  }

  .destination-map-copy {
    max-width: none;
    padding: 0;
  }

  .featured-destination,
  .destination-story-grid {
    grid-template-columns: 1fr;
  }

  .featured-destination {
    gap: 28px;
  }

  .destination-story-grid {
    gap: 42px;
  }

  .experience-hero {
    min-height: 430px;
  }

  .experience-pillars,
  .experience-split,
  .experience-details,
  .experience-related,
  .about-potential-pillars,
  .about-potential-close {
    grid-template-columns: 1fr;
  }

  .experience-pillars article,
  .about-potential-pillars article {
    min-height: 0;
    padding: 32px 0 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(47, 57, 69, 0.16);
  }

  .experience-pillars article:first-child,
  .about-potential-pillars article:first-child {
    padding-top: 0;
  }

  .experience-pillars article:last-child,
  .about-potential-pillars article:last-child {
    border-bottom: 0;
  }

  .experience-related {
    align-items: start;
  }

  .intro-text,
  .mini-card {
    justify-self: center;
    width: min(100%, 420px);
  }

  .intro-text {
    text-align: center;
  }

  .section {
    padding: 62px 0;
  }

  .home-permission-quote {
    padding: 52px 0 104px;
  }

  .portrait img,
  .feature-image img,
  .testimonial img,
  .voyage-row img {
    height: 360px;
  }


  .mini-gallery .mini-gallery-track img {
    height: 360px;
  }

  .mini-gallery-controls {
    right: 22px;
    bottom: 92px;
  }

  .voyage-row:nth-of-type(even) img {
    order: 0;
  }

  .home-arranged-grid {
    grid-template-columns: 1fr;
  }

  .home-arranged-copy h2,
  .home-arranged-copy-sticky,
  .home-arranged-lede,
  .home-arranged-list,
  .home-arranged-caption,
  .home-arranged-path {
    max-width: none;
    width: 100%;
  }

  .home-arranged-copy-sticky {
    position: static;
  }

  .home-arranged-media {
    gap: 32px;
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 12px;
  }

  .header-actions .cta {
    display: none;
  }

  .hero {
    min-height: 470px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .adventure-intro h1 {
    font-size: 25px;
  }

  .destination-journal-hero p {
    font-size: 27px;
  }

  .destination-journal-hero h1,
  .destination-journal-hero blockquote {
    font-size: 25px;
  }


  .destination-highlights {
    grid-template-columns: 1fr;
  }

  .destination-elsewhere-box {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 28px;
    padding: 58px 0;
  }

  .destination-elsewhere-box div,
  .destination-elsewhere-box a {
    grid-column: auto;
  }

  .destination-elsewhere-box div {
    max-width: none;
  }

  .destination-elsewhere-box a {
    justify-self: center;
  }

  .destination-media span {
    font-size: 20px;
  }

  .lima-tours-page {
    padding: 0 18px 0;
  }

  .lima-tours-hero h1 {
    font-size: 31px;
  }

  .lima-tours-hero blockquote {
    font-size: 22px;
  }

  .tour-duration-section {
    margin-bottom: 62px;
  }

  .tour-package-card {
    grid-template-columns: 1fr;
  }

  .tour-package-card img {
    height: auto;
    min-height: 240px;
    aspect-ratio: 1.45 / 1;
  }

  .tour-package-copy ul {
    grid-template-columns: 1fr;
  }

  .experience-hero {
    min-height: 360px;
  }

  .experience-hero-copy p {
    font-size: 22px;
  }

  .experience-hero-copy h1 {
    font-size: 40px;
  }

  .experience-hero-caption {
    display: none;
  }

  .experience-play {
    left: 18px;
    bottom: 18px;
  }

  .experience-intro {
    width: min(100% - 36px, 560px);
    padding: 48px 0 40px;
  }

  .about-potential-intro {
    width: min(100% - 36px, 700px);
    padding: 48px 0 40px;
  }

  .experience-intro p {
    font-size: 18px;
  }

  .about-potential-intro p {
    font-size: 27px;
    line-height: 1.08;
  }

  .experience-pillars,
  .experience-wide-media,
  .experience-split,
  .experience-landscape,
  .experience-details,
  .about-potential-pillars,
  .about-potential-close {
    width: min(100% - 36px, 900px);
    margin-bottom: 52px;
  }

  .experience-related {
    padding: 42px 18px 48px;
  }
}

.bespoke-bar-toggle {
  position: fixed;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.bespoke-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  background: #faf5eb;
  border-top: 1px solid rgba(52, 48, 44, 0.08);
  box-shadow: 0 -4px 12px rgba(47, 42, 38, 0.07);
  transition: opacity 160ms ease, transform 160ms ease;
}


.bespoke-sticky-bar.is-near-footer {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.bespoke-sticky-bar p {
  margin: 0;
  color: #3f3832;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25;
}

.bespoke-sticky-bar .cta {
  min-height: 28px;
  padding: 0 16px;
  white-space: nowrap;
  letter-spacing: 0.12em;
}

.bespoke-bar-close {
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.bespoke-bar-close::before,
.bespoke-bar-close::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 14px;
  height: 1px;
  background: #6a625a;
}

.bespoke-bar-close::before {
  transform: rotate(45deg);
}

.bespoke-bar-close::after {
  transform: rotate(-45deg);
}

.bespoke-bar-toggle:checked + .bespoke-sticky-bar {
  display: none;
}

@media (max-width: 560px) {
  .bespoke-sticky-bar {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px;
  }

  
.bespoke-sticky-bar.is-near-footer {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.bespoke-sticky-bar p {
    grid-column: 1 / -1;
    font-size: 14px;
  }
}

.tour-inquiry-button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.tour-inquiry-button:hover {
  background: transparent;
  color: var(--red);
}
.experiences-index-page {
  padding: 52px 24px 88px;
  background: #fff;
  color: #29384a;
}

.experiences-index-hero {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 8px 0 54px;
  text-align: center;
}

.experiences-index-hero h1,
.experiences-index-hero blockquote,
.experiences-index-intro p,
.experience-section-heading h2,
.experience-menu-card h3 {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.experiences-index-hero h1 {
  margin: 0;
  color: #3f5065;
  font-size: 42px;
  line-height: 1.12;
}

.experiences-index-hero blockquote {
  width: min(680px, 100%);
  margin: 30px auto 0;
  color: #3f5065;
  font-size: 26px;
  font-style: italic;
  line-height: 1.28;
}

.experiences-index-intro {
  width: min(760px, 100%);
  margin: 0 auto 64px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.experiences-index-intro p {
  margin: 0;
  color: #5d5852;
  font-size: 21px;
  line-height: 1.42;
  letter-spacing: 0.01em;
}

.experience-browse-block,
.experience-catalog {
  width: min(1040px, 100%);
  margin: 0 auto 72px;
}

.experience-section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.experience-section-heading p {
  margin: 0 0 10px;
  color: #b7332d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-section-heading h2 {
  margin: 0;
  color: #3f5065;
  font-size: 30px;
  line-height: 1.18;
}

.experience-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.experience-location-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  color: #fff;
  background: #152433;
}

.experience-location-card img {
  height: 100%;
  filter: brightness(0.68) saturate(0.95);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.experience-location-card:hover img {
  filter: brightness(0.78) saturate(1);
  transform: scale(1.025);
}

.experience-location-card span {
  position: absolute;
  inset: auto 24px 24px;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.38);
}

.experience-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.experience-category-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e1d7cb;
  background: #fbfaf7;
  color: #4d4740;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.experience-category-grid a:hover {
  border-color: var(--red);
  color: var(--red);
}

.experience-catalog {
  margin-bottom: 24px;
}

.experience-menu-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px 0;
  border-bottom: 1px solid #e6dcd2;
}

.experience-menu-card img {
  height: 100%;
  min-height: 270px;
  aspect-ratio: 1.18 / 1;
}

.experience-menu-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
  color: #344458;
  font-size: 11px;
  line-height: 1.4;
}

.experience-menu-meta span {
  color: #b7332d;
}

.experience-menu-meta span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 10px;
  background: #d8cec4;
  vertical-align: -2px;
}

.experience-menu-card h3 {
  margin: 0 0 14px;
  color: #3f5065;
  font-size: 24px;
  line-height: 1.22;
}

.experience-menu-card p:not(.experience-menu-meta) {
  margin: 0 0 18px;
  color: #29384a;
  font-size: 14px;
  line-height: 1.76;
}

.experience-menu-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-menu-card li {
  padding: 8px 12px;
  background: #fbfaf7;
  color: #5b534d;
  font-size: 11px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .experience-location-grid,
  .experience-category-grid,
  .experience-menu-card {
    grid-template-columns: 1fr;
  }

  .experience-menu-card img {
    height: auto;
    min-height: 260px;
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 560px) {
  .experiences-index-page {
    padding: 42px 18px 66px;
  }

  .experiences-index-hero h1 {
    font-size: 34px;
  }

  .experiences-index-hero blockquote,
  .experiences-index-intro p {
    font-size: 19px;
  }

  .experience-location-card span {
    font-size: 24px;
  }
}

@font-face {
  font-family: "Sofia Pro Text";
  src: url("assets/fonts/SofiaPro-LightAz.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.sofia-copy-test main p:not(.tour-meta),
.sofia-copy-test main li,
.sofia-copy-test 
.bespoke-sticky-bar.is-near-footer {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.bespoke-sticky-bar p {
  font-family: "Sofia Pro Text", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

@font-face {
  font-family: "Freight Display Test";
  src: url("assets/fonts/FreightDispW03-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.freight-serif-test .experience-hero-copy p,
.freight-serif-test .experience-hero-copy h1,
.freight-serif-test .experience-intro p,
.freight-serif-test .experience-split h2,
.freight-serif-test .experience-details h2,
.freight-serif-test .experience-related h2,
.freight-serif-test .experience-mini h3,
.freight-serif-test .experience-related h3 {
  font-family: "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 300;
}










@font-face {
  font-family: "Freight Display Pro";
  src: url("assets/fonts/FreightDispW03-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.luxury-temp-page {
  background: #050504;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  .luxury-temp-page {
    overflow-x: clip;
  }
}

.luxury-temp-main {
  background: #050504;
  color: #f4eee4;
  font-family: "Sofia Pro Text", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.luxury-temp-main h1,
.luxury-temp-main h2,
.luxury-temp-main blockquote {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 300;
}

.luxury-temp-main .smallcaps,
.luxury-temp-eyebrow,
.luxury-temp-brand-note h2,
.luxury-temp-card-row h3,
.luxury-temp-offerings .smallcaps,
.luxury-temp-main .ghost {
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.luxury-temp-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 84px;
}

.luxury-temp-eyebrow {
  margin: 0 0 18px;
  text-align: center;
  color: #c5a163;
  font-size: 11px;
  letter-spacing: 0.62em;
}

.luxury-temp-hero h1 {
  max-width: 980px;
  margin: 0 auto 58px;
  color: #ded4c7;
  text-align: center;
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: none;
}

.luxury-temp-wide-hero {
  width: 100vw;
  margin: 0 0 86px calc(50% - 50vw);
}

.luxury-temp-wide-hero img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.luxury-yacht-caption {
  max-width: 520px;
  margin: 14px 32px 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.luxury-trip-summary {
  width: min(1240px, calc(100vw - 48px));
  margin: -22px auto 96px;
  color: #f5efe7;
  text-align: center;
}

.luxury-trip-summary-lede {
  max-width: 650px;
  margin: 0 auto 74px;
  color: #efe7dc;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.45vw, 34px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.luxury-trip-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
}

.luxury-trip-summary-grid div {
  min-height: 150px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  justify-items: center;
  padding: 18px 0 0;
}

.luxury-trip-summary-grid div + div {
  border-left: 1px solid rgba(245, 239, 231, 0.22);
}

.luxury-trip-summary-grid p {
  margin: 0 0 16px;
  color: rgba(245, 239, 231, 0.86);
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.45em;
  line-height: 1.4;
  text-transform: uppercase;
}

.luxury-trip-summary-grid span {
  max-width: 210px;
  color: rgba(245, 239, 231, 0.86);
  font-family: "Sofia Pro Light", "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .luxury-trip-summary {
    margin-bottom: 72px;
  }

  .luxury-trip-summary-lede {
    margin-bottom: 62px;
    font-size: 28px;
  }

  .luxury-trip-summary-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .luxury-trip-summary-grid div {
    min-height: 0;
    padding: 0 20px 30px;
  }

  .luxury-trip-summary-grid div + div {
    border-left: 0;
    border-top: 1px solid rgba(245, 239, 231, 0.22);
    padding-top: 30px;
  }
}
.luxury-temp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  gap: 72px;
  align-items: center;
}

.luxury-temp-hero-grid img {
  height: 520px;
}

.luxury-temp-hero-copy .smallcaps {
  margin: 0 0 24px;
  color: #c5a163;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.luxury-temp-hero-copy h2 {
  margin: 0 0 26px;
  color: #f6efe7;
  font-size: clamp(30px, 3.4vw, 46px);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.05em;
}

.luxury-temp-hero-copy p {
  margin: 0 0 28px;
  max-width: 360px;
  color: #bdb4a9;
  font-size: 13px;
  line-height: 1.9;
}

.luxury-temp-outline {
  border-color: rgba(210, 185, 145, 0.62);
  color: #eadccb;
}

.luxury-temp-outline:hover {
  background: rgba(210, 185, 145, 0.1);
}


.luxury-sticky-journal {
  grid-template-columns: 46.875% 6.25% 46.875%;
  gap: 0;
  width: min(80vw, 1280px);
  max-width: 1280px;
  margin: 0 calc(50% - min(40vw, 640px));
  padding: 24px 0 112px;
  background: #050504;
}

.luxury-sticky-journal .smallcaps {
  color: #f6efe7;
}

.luxury-sticky-journal .section-heading {
  grid-column: 1;
}

.luxury-sticky-journal .journal-grid {
  grid-column: 3;
}

.luxury-sticky-journal .section-heading h2,
.luxury-sticky-journal .story-card h3 {
  color: #f6efe7;
}

.luxury-sticky-journal .section-heading p:not(.smallcaps),
.luxury-sticky-journal .story-card p {
  color: #bdb4a9;
}

.luxury-sticky-journal .story-card img {
  background: #101010;
}

@media (max-width: 900px) {
  .luxury-sticky-journal {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    padding: 10px 0 72px;
  }

  .luxury-sticky-journal .section-heading,
  .luxury-sticky-journal .journal-grid {
    grid-column: auto;
  }
}
.luxury-philosophy-sticky {
  display: grid;
  grid-template-columns: 46.875% 6.25% 46.875%;
  width: 80vw;
  max-width: 1280px;
  margin: 0 auto 96px;
  padding: 0;
  background: transparent;
  text-align: left;
}

.luxury-philosophy-sticky .luxury-temp-philosophy {
  position: sticky;
  top: clamp(104px, 12vh, 142px);
  grid-column: 1;
  align-self: start;
  max-width: 88%;
  margin: 0;
  padding-left: clamp(18px, 2.2vw, 34px);
}

.luxury-philosophy-sticky .luxury-philosophy-media {
  grid-column: 3;
}

.luxury-philosophy-sticky figure {
  margin: 0;
}

.luxury-philosophy-sticky figure + figure {
  margin-top: clamp(48px, 5vw, 76px);
}

.luxury-philosophy-sticky img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.luxury-philosophy-sticky figure:nth-child(1) img {
  aspect-ratio: 16 / 9;
}

.luxury-philosophy-sticky figure:nth-child(2) img {
  aspect-ratio: 3 / 4;
}

.luxury-philosophy-sticky figure:nth-child(3) img {
  aspect-ratio: 16 / 9;
}

.luxury-philosophy-sticky .luxury-column-tall-image {
  aspect-ratio: 4 / 5;
}

.luxury-philosophy-sticky figure:nth-child(3) img.luxury-column-tall-image {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.luxury-philosophy-sticky .luxury-philosophy-kicker {
  margin: 0 0 16px;
  color: #d8d0c7;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-align: left;
  text-transform: uppercase;
}

.luxury-philosophy-sticky .luxury-temp-philosophy h2 {
  margin: 0 0 34px;
  color: #d8d0c7;
  font-size: clamp(25px, 2.55vw, 36px);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-align: left;
}

.luxury-philosophy-sticky .luxury-temp-philosophy p {
  margin: 0 0 22px;
  color: #d8d0c7;
  font-family: "Sofia Pro Text", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.012em;
  text-transform: none;
}

.luxury-philosophy-sticky .luxury-philosophy-caption {
  width: 72%;
  margin: 12px 0 0;
  color: #bdb4a9;
  font-family: "Sofia Pro Text", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-transform: none;
}

.luxury-philosophy-sticky .luxury-philosophy-caption strong {
  display: block;
  margin-bottom: 4px;
  color: #f3eee7;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.luxury-piece1 {
  --piece-page-width: 80vw;
  --piece-left-column: 46.875%;
  --piece-column-space: 6.25%;
  --piece-right-column: 46.875%;
  padding: 6.25vw 0 7.4vw;
  background: #050504;
  color: #d8d0c7;
  font-family: "Sofia Pro Text", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.48;
}

.luxury-piece1 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.luxury-piece1 p,
.luxury-piece1 h1,
.luxury-piece1 h2,
.luxury-piece1 figure {
  margin: 0;
}

.luxury-piece1 .piece-inner {
  width: var(--piece-page-width);
  max-width: 1280px;
  margin: 0 auto;
}

.luxury-piece1 .luxury-lagoon-hero {
  margin: 0 0 clamp(64px, 7vw, 112px);
}

.luxury-piece1 .luxury-black-quote + .luxury-lagoon-hero {
  margin-top: clamp(38px, 4.4vw, 64px);
}

.luxury-piece1 .hero-image {
  aspect-ratio: 16 / 9;
}

.luxury-piece1 .luxury-color-reveal-image {
  --luxury-lagoon-gray: 0.88;
  --luxury-lagoon-saturation: 0.76;
  --luxury-lagoon-contrast: 0.96;
  filter: grayscale(var(--luxury-lagoon-gray)) saturate(var(--luxury-lagoon-saturation)) contrast(var(--luxury-lagoon-contrast));
  transition: filter 80ms linear;
  will-change: filter;
}

@media (prefers-reduced-motion: reduce) {
  .luxury-piece1 .luxury-color-reveal-image {
    filter: none;
    transition: none;
  }
}

.luxury-piece1 .hero-image-caption {
  width: min(700px, 72%);
  margin: 14px 0 0;
  color: #bdb4a9;
  font-size: 11px;
  line-height: 1.24;
}

.luxury-piece1 .testimonial,
.luxury-piece1 .editorial-grid {
  display: grid;
  grid-template-columns: var(--piece-left-column) var(--piece-column-space) var(--piece-right-column);
}

.luxury-piece1 .testimonial {
  align-items: center;
  margin-top: 5.9vw;
}

.luxury-piece1 .testimonial-copy {
  grid-column: 1;
  padding-top: 0.4vw;
}

.luxury-piece1 .testimonial-image {
  grid-column: 3;
  aspect-ratio: 3 / 2;
}
.luxury-piece1 .testimonial-image-natural {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.luxury-piece1 .quote {
  color: #f3eee7;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 32px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.12;
}

.luxury-piece1 .attribution {
  margin-top: 2.25vw;
  color: #f3eee7;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.luxury-piece1 .testimonial-text {
  max-width: 90%;
  margin-top: 2.5vw;
  color: #d8d0c7;
  line-height: 1.45;
}

.luxury-piece1 .editorial-grid {
  align-items: start;
  margin-top: 11.9vw;
}

.luxury-piece1 .piece-micro-sticky {
  margin-top: clamp(76px, 9.4vw, 128px);
}

.luxury-piece1 .visual-column,
.luxury-piece1 .journey-copy {
  grid-column: 1;
}

.luxury-piece1 .copy-column,
.luxury-piece1 .journey-media {
  grid-column: 3;
}

@media (min-width: 801px) {
  .luxury-piece1 .piece-micro-sticky .copy-column {
    position: sticky;
    top: clamp(118px, 17vh, 166px);
    align-self: start;
  }
}

.luxury-piece1 .luxury-dunas-camp-wide {
  grid-column: 1 / -1;
  padding: clamp(28px, 3.6vw, 52px) 0 clamp(44px, 5vw, 72px);
}

.luxury-piece1 .luxury-dunas-camp-wide img {
  aspect-ratio: auto;
  object-fit: contain;
}
.luxury-piece1 .desert-image {
  aspect-ratio: 480 / 337;
}

.luxury-piece1 .image-caption,
.luxury-piece1 .media-caption {
  margin-top: 1.15vw;
  color: #bdb4a9;
  font-size: 11px;
  line-height: 1.24;
}

.luxury-piece1 .image-caption {
  width: 64%;
}

.luxury-piece1 .media-caption {
  width: 75%;
}

.luxury-piece1 .image-caption strong,
.luxury-piece1 .media-caption strong {
  display: block;
  margin-bottom: 0.2vw;
  color: #f3eee7;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
}

.luxury-piece1 .balloon-image {
  margin-top: 4.05vw;
  aspect-ratio: 2 / 3;
}

.luxury-piece1 .copy-column h1,
.luxury-piece1 .journey-copy h2 {
  max-width: 94%;
  color: #f3eee7;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.55vw, 42px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.luxury-piece1 .journey-copy h2 {
  max-width: 92%;
  line-height: 1.12;
}

.luxury-piece1 .lede,
.luxury-piece1 .arranged-lede {
  max-width: 86%;
  margin-top: 2.45vw;
  color: #f3eee7;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.luxury-piece1 .body-copy,
.luxury-piece1 .arranged-copy {
  max-width: 88%;
  margin-top: 2.05vw;
  color: #d8d0c7;
}

.luxury-piece1 .body-copy p + p {
  margin-top: 1.45vw;
}

.luxury-piece1 .arranged-copy {
  line-height: 1.55;
}

.luxury-piece1 .arranged-copy p + p {
  margin-top: 1.35vw;
}

.luxury-piece1 .body-copy strong,
.luxury-piece1 .arranged-copy strong {
  color: #f3eee7;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.luxury-piece1 .oryx-image {
  margin-top: 3.95vw;
  aspect-ratio: 8 / 5;
}

.luxury-piece1 .luxury-black-quote {
  width: 100%;
  margin: clamp(98px, 9.2vw, 138px) auto 0;
  padding: clamp(72px, 7.2vw, 118px) 0 clamp(66px, 6.8vw, 108px);
  background: transparent;
  text-align: center;
}

.luxury-piece1 .luxury-black-quote p {
  max-width: 680px;
  margin: 0 auto;
  color: #f3eee7;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.25vw, 31px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.24;
}
.luxury-piece1 .luxury-disappearing-text {
  overflow: visible;
}

.luxury-piece1 .luxury-quote-word {
  --quote-progress: 0;
  opacity: calc(1 - var(--quote-progress));
  transition: opacity 180ms linear;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .luxury-piece1 .luxury-quote-word {
    opacity: 1;
    transition: none;
  }
}

.luxury-piece1 .luxury-chalana-wide {
  width: 100vw;
  margin: clamp(66px, 6.8vw, 98px) 0 0 calc(50% - 50vw);
}

.luxury-piece1 .piece-inner > .luxury-chalana-wide:first-child {
  margin-top: 0;
  margin-bottom: clamp(34px, 3.4vw, 52px);
}

.luxury-piece1 .luxury-chalana-wide img {
  display: block;
  width: 100%;
  height: clamp(360px, 40vw, 660px);
  object-fit: cover;
  object-position: center;
}

.luxury-piece1 .luxury-chalana-wide figcaption {
  width: min(780px, calc(100% - 48px));
  margin: 14px auto 0;
  color: #bdb4a9;
  font-size: 11px;
  line-height: 1.24;
  text-wrap: balance;
}

@media (min-width: 1600px) {
  .luxury-piece1 {
    font-size: 0.8125vw;
  }

  .luxury-piece1 .attribution,
  .luxury-piece1 .image-caption strong,
  .luxury-piece1 .media-caption strong {
    font-size: 0.625vw;
  }

  .luxury-piece1 .image-caption,
  .luxury-piece1 .media-caption {
    font-size: 0.6875vw;
  }

  .luxury-piece1 .lede,
  .luxury-piece1 .arranged-lede {
    font-size: 0.75vw;
  }
}

@media (max-width: 800px) {
  .luxury-piece1 {
    --piece-page-width: min(88vw, 560px);
    padding: 40px 0 64px;
  }

  .luxury-piece1 .testimonial,
  .luxury-piece1 .editorial-grid {
    display: block;
    margin-top: 56px;
  }

  .luxury-piece1 .testimonial-image,
  .luxury-piece1 .copy-column,
  .luxury-piece1 .journey-media,
  .luxury-piece1 .balloon-image,
  .luxury-piece1 .oryx-image {
    margin-top: 32px;
  }
  .luxury-piece1 .luxury-dunas-camp-wide {
    padding: 24px 0 36px;
  }


  .luxury-piece1 .testimonial-text,
  .luxury-piece1 .image-caption,
  .luxury-piece1 .media-caption,
  .luxury-piece1 .copy-column h1,
  .luxury-piece1 .journey-copy h2,
  .luxury-piece1 .lede,
  .luxury-piece1 .body-copy,
  .luxury-piece1 .arranged-lede,
  .luxury-piece1 .arranged-copy {
    width: 100%;
    max-width: none;
  }

  .luxury-piece1 .quote {
    font-size: 26px;
  }

  .luxury-piece1 .copy-column h1,
  .luxury-piece1 .journey-copy h2 {
    font-size: 32px;
  }
}

.luxury-temp-brand-note {
  width: min(430px, calc(100% - 48px));
  margin: 0 auto 72px;
  text-align: center;
}


.luxury-temp-brand-note h2 {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0 0 18px;
  color: #f3eadf;
  font-size: 28px;
  letter-spacing: 0.2em;
}

.luxury-temp-brand-note .brand-amp {
  color: #b18845;
}

.luxury-temp-brand-note p {
  margin: 0 auto 26px;
  max-width: 330px;
  color: #c6bdb2;
  font-size: 12px;
  line-height: 1.8;
}

.luxury-temp-pool img {
  width: 100%;
  height: 620px;
}

.luxury-temp-light {
  background: #fbfaf7;
  color: #3f3832;
  padding: 104px 0 112px;
}

.luxury-temp-center-copy {
  width: min(500px, calc(100% - 48px));
  margin: 0 auto 62px;
  text-align: center;
}

.luxury-temp-center-copy h2 {
  margin: 0 0 22px;
  color: #302b27;
  font-size: 34px;
  line-height: 1.22;
  letter-spacing: 0.12em;
}

.luxury-temp-center-copy p {
  margin: 0 0 26px;
  color: #7a7168;
  font-size: 13px;
  line-height: 1.9;
}

.luxury-temp-card-row {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.luxury-temp-card-row img {
  height: 355px;
  filter: saturate(0.82) contrast(0.94);
}

.luxury-temp-card-row h3 {
  margin: 18px 0 0;
  color: #8a8076;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.42em;
}

.luxury-temp-offerings {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.luxury-temp-offerings .smallcaps {
  margin: 0 0 28px;
  color: #b7332d;
  font-size: 10px;
  letter-spacing: 0.32em;
}

.luxury-temp-offerings h2 {
  margin: 0 0 34px;
  color: #5b5149;
  font-size: 38px;
  line-height: 1.35;
}

.luxury-temp-offerings h2 .luxury-highlight {
  color: #b18845;
  font-style: normal;
}

.luxury-temp-offerings ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 1.1em;
  color: #786a5f;
}

.luxury-temp-offerings li {
  padding-left: 0.15em;
  color: #786a5f;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.55;
}

.luxury-temp-offerings li::marker {
  color: #b18845;
  font-size: 0.72em;
}

.luxury-temp-offerings li + li {
  margin-top: 9px;
}

.luxury-temp-offerings a {
  color: #786a5f;
  border-bottom: 1px solid rgba(120, 106, 95, 0.42);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.55;
}

.luxury-temp-offerings aside {
  background: #f0ebe4;
  padding: 48px 48px 0;
}

.luxury-temp-offerings aside blockquote {
  margin: 0 auto 42px;
  max-width: 430px;
  color: #6c6259;
  text-align: center;
  font-size: 30px;
  line-height: 1.35;
}

.luxury-temp-offerings aside img {
  height: 330px;
}

@media (max-width: 900px) {
  .luxury-temp-hero {
    padding-top: 44px;
  }

  .luxury-temp-eyebrow {
    letter-spacing: 0.34em;
  }

  .luxury-temp-hero h1 {
    margin-bottom: 50px;
    letter-spacing: 0.12em;
  }

  .luxury-temp-wide-hero {
    margin-bottom: 62px;
  }
  .luxury-temp-wide-hero img {
    height: auto;
  }

  .luxury-temp-hero-grid,
  .luxury-temp-card-row,
  .luxury-temp-offerings {
    grid-template-columns: 1fr;
  }

  .luxury-temp-hero-grid {
    gap: 34px;
  }

  .luxury-temp-hero-grid img,
  .luxury-temp-pool img {
    height: 390px;
  }

  .luxury-philosophy-sticky {
    grid-template-columns: 1fr;
    width: min(calc(100% - 48px), 1280px);
    margin-bottom: 78px;
  }

  .luxury-philosophy-sticky .luxury-temp-philosophy {
    position: static;
    top: auto;
    grid-column: auto;
  }

  .luxury-philosophy-sticky .luxury-philosophy-media {
    grid-column: auto;
    margin-top: 42px;
  }

  .luxury-philosophy-sticky .luxury-philosophy-caption {
    width: min(84%, 360px);
  }

  .luxury-temp-card-row img,
  .luxury-temp-offerings aside img {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .luxury-temp-hero,
  .luxury-temp-card-row,
  .luxury-temp-offerings,
  .luxury-temp-center-copy,
  .luxury-temp-brand-note,
  .luxury-philosophy-sticky {
    width: calc(100% - 36px);
  }

  .luxury-temp-hero h1 {
    font-size: 34px;
  }
  .luxury-temp-wide-hero img {
    height: auto;
  }

  .luxury-temp-hero-grid img,
  .luxury-temp-pool img {
    height: 310px;
  }

  .luxury-temp-light {
    padding: 72px 0 82px;
  }

  .luxury-temp-offerings aside {
    padding: 34px 24px 0;
  }
}





.link-hover-temp-page {
  background: #fbfaf7;
}

.link-hover-demo {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 110px;
}

.link-hover-demo-hero {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

.link-hover-demo-hero h1,
.link-hover-demo-copy h2,
.link-hover-demo-panel h2 {
  margin: 0 0 18px;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 300;
}

.link-hover-demo-hero h1 {
  font-size: 48px;
  line-height: 1.14;
}

.link-hover-demo-hero p:not(.smallcaps) {
  margin: 0;
  color: #6f675f;
}

.link-hover-demo-copy {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 76px;
  align-items: start;
  margin-bottom: 76px;
}

.link-hover-demo-copy p,
.link-hover-demo-panel p {
  margin: 0 0 22px;
  color: #5f5750;
  font-size: 17px;
  line-height: 1.9;
}

.link-hover-demo-copy aside {
  padding: 34px 36px;
  background: #f1eadf;
}

.link-hover-demo-copy h2,
.link-hover-demo-panel h2 {
  color: #35302c;
  font-size: 30px;
}

.link-hover-demo-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-hover-demo-copy li + li {
  margin-top: 13px;
}

.link-hover-demo a:not(.cta):not(.ghost) {
  color: #4f473f;
  text-decoration: none;
  background-image: linear-gradient(#b18845, #b18845);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: color 220ms ease, background-size 220ms ease, background-position 220ms ease;
}

.link-hover-demo a:not(.cta):not(.ghost):hover {
  color: #9f7938;
  background-size: 100% 2px;
  background-position: 0 calc(100% - 1px);
}

.link-hover-demo-panel {
  padding: 42px 48px;
  border: 1px solid #e5dccf;
  background: #fff;
}

.link-hover-demo-panel a:not(.cta):not(.ghost) {
  background-size: 100% 1px;
  transition-duration: 420ms;
}

.link-hover-demo-panel a:not(.cta):not(.ghost):hover {
  color: #9b6f28;
  background-size: 100% 3px;
  background-position: 0 calc(100% - 1px);
}

@media (max-width: 900px) {
  .link-hover-demo-copy {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .link-hover-demo {
    width: calc(100% - 36px);
    padding: 58px 0 78px;
  }

  .link-hover-demo-hero h1 {
    font-size: 36px;
  }

  .link-hover-demo-copy p,
  .link-hover-demo-panel p {
    font-size: 15px;
  }

  .link-hover-demo-panel {
    padding: 30px 24px;
  }
}






















@media (max-width: 760px) {
  .about-potential-page {
    padding-bottom: 78px;
  }

  .about-contact-card {
    width: min(100% - 36px, 900px);
    margin: 0 auto;
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-contact-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (max-width: 700px) {
  /* footer conversion mobile stack */
  .footer-conversion {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
.huaca-page {
  overflow-x: hidden;
  padding-bottom: 118px;
  background: #fff;
  color: #3d3935;
}

.huaca-hero {
  width: 100%;
  background: #faf5eb;
}

.huaca-hero img {
  width: 100%;
  height: clamp(380px, 52vw, 620px);
  object-fit: cover;
  object-position: center;
}

.huaca-intro {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 70px;
  text-align: center;
}

.huaca-kicker {
  margin: 0 0 22px;
  color: #b7332d;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.huaca-intro h1,
.huaca-split h2,
.huaca-experiences-copy h2,
.huaca-faq h2,
.huaca-closing p,
.huaca-quote-row blockquote p {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 300;
  letter-spacing: 0.028em;
}

.huaca-intro h1 {
  margin: 0 auto 28px;
  max-width: 650px;
  color: #424242;
  font-size: clamp(27px, 2.45vw, 34px);
  font-style: normal;
  line-height: 1.08;
  letter-spacing: 0;
}

.huaca-intro > p:last-child {
  margin: 0;
  color: #57514a;
  font-size: 18px;
  line-height: 1.68;
}

.huaca-pillars {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
}

.huaca-pillars article {
  min-height: 150px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 0;
  text-align: center;
  border-left: 1px solid rgba(47, 57, 69, 0.16);
}

.huaca-pillars article:first-child {
  border-left: 0;
}

.huaca-pillars h2,
.huaca-experiences h3 {
  margin: 0 0 14px;
  color: #6b6258;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.huaca-pillars h2 {
  margin-bottom: 18px;
  color: #34302c;
  font-size: 11px;
}

.huaca-pillars p,
.huaca-experiences p,
.huaca-split p,
.huaca-faq p,
.huaca-landscape p,
.huaca-wide-media p,
.huaca-split figcaption {
  color: #5b554d;
  font-size: 12px;
  line-height: 1.75;
}

.huaca-pillars p {
  max-width: 210px;
  margin: 0 auto;
  color: #34302c;
}

.huaca-page .destination-map-intro {
  margin-bottom: 92px;
}

.huaca-page .destination-map-intro::before {
  background: #fbf1e9;
}

.huaca-page .destination-map-frame {
  margin-left: -10vw;
  width: calc(100% + 10vw);
  justify-content: flex-start;
  padding-left: clamp(22px, 3vw, 44px);
}

.huaca-page .destination-map-frame img {
  width: 97.5%;
}

@media (min-width: 1600px) {
  .huaca-page .destination-map-frame {
    margin-left: calc((1280px - 100vw) / 2);
    width: calc(100% + ((100vw - 1280px) / 2));
  }

  .huaca-page .destination-map-frame img {
    width: 97.5%;
  }
}

.destination-template-page .huaca-intro {
  width: min(100% - 28vw, 760px);
}

.destination-template-page .huaca-intro h1 {
  max-width: 650px;
  color: #424242;
  font-size: clamp(27px, 2.45vw, 34px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.destination-template-page .huaca-pillars h2 {
  color: #34302c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
}

.destination-template-page .huaca-pillars p {
  color: #34302c;
  font-size: 13px;
  line-height: 1.65;
}

.huaca-wide-media,
.huaca-landscape {
  width: min(1010px, calc(100% - 48px));
  margin: 0 auto 92px;
}

.huaca-wide-media img,
.huaca-landscape img {
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
}

.huaca-wide-media p,
.huaca-landscape p {
  margin: 14px 0 0;
  max-width: 700px;
}

.huaca-split {
  width: min(1010px, calc(100% - 48px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: start;
}

.huaca-split figure {
  margin: 0;
}

.huaca-split figure img {
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
}

.huaca-split figcaption {
  margin-top: 12px;
  max-width: 380px;
  font-size: 11px;
}

.huaca-split h2 {
  margin: 0 0 24px;
  color: #3f5065;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.huaca-split article p:not(.huaca-kicker) {
  margin: 0 0 18px;
  font-size: 13px;
}

.destination-template-page .huaca-split {
  width: 80vw;
  max-width: 1280px;
  grid-template-columns: 46.875% 6.25% 46.875%;
  gap: 0;
}

.destination-template-page .huaca-split figure {
  grid-column: 1;
}

.destination-template-page .huaca-split article {
  grid-column: 3;
}

.destination-template-page .huaca-split h2 {
  font-size: clamp(28px, 3vw, 42px);
}


.huaca-quote-row {
  width: min(1010px, calc(100% - 48px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.destination-template-page .huaca-quote-row {
  width: 80vw;
  max-width: 1280px;
  grid-template-columns: 46.875% 6.25% 46.875%;
  gap: 0;
}

.destination-template-page .huaca-quote-row blockquote {
  grid-column: 1;
}

.destination-template-page .huaca-quote-row img {
  grid-column: 3;
}

.huaca-quote-row blockquote {
  margin: 0;
}

.huaca-quote-row blockquote p {
  margin: 0;
  color: #3f5065;
  font-size: clamp(27px, 3.5vw, 42px);
  font-style: italic;
  line-height: 1.18;
}

.huaca-quote-row img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}


.huaca-signature-showcase {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 104px;
}

.huaca-signature-showcase-heading {
  width: min(680px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.huaca-signature-showcase-heading h2 {
  margin: 0 0 18px;
  color: #3f5065;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.028em;
  line-height: 1.08;
}


.huaca-brand-wordmark-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: -6px auto 22px;
  color: #183149;
  font-size: 13px;
  letter-spacing: 0.19em;
  line-height: 1;
}

.huaca-brand-wordmark-row .brand-amp {
  color: #b18845;
}
.huaca-signature-showcase-heading p:not(.huaca-kicker) {
  margin: 0 auto;
  max-width: 520px;
  color: #5b554d;
  font-size: 13px;
  line-height: 1.75;
}

.huaca-signature-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 58px;
  align-items: center;
  margin-bottom: 76px;
}

.huaca-signature-feature:last-child {
  margin-bottom: 0;
}

.huaca-signature-feature-reverse {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.huaca-signature-feature-reverse img {
  grid-column: 2;
  grid-row: 1;
}

.huaca-signature-feature-reverse div {
  grid-column: 1;
  grid-row: 1;
}

.huaca-signature-feature img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.huaca-signature-feature h3 {
  margin: 0 0 18px;
  color: #3f5065;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  letter-spacing: 0.028em;
  line-height: 1.12;
}

.huaca-signature-feature p {
  margin: 0;
  color: #5b554d;
  font-size: 13px;
  line-height: 1.75;
}
.huaca-experiences {
  width: min(1010px, calc(100% - 48px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}

.huaca-experiences-copy h2 {
  margin: 0 0 22px;
  color: #3f5065;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.08;
}


.huaca-brand-wordmark {
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #22364a;
  white-space: nowrap;
}
.huaca-experiences-copy p:not(.huaca-kicker) {
  margin: 0;
  color: #5b554d;
  font-size: 13px;
  line-height: 1.75;
}

.huaca-experiences article img {
  aspect-ratio: 0.82 / 1;
  margin-bottom: 16px;
  object-fit: cover;
}

.huaca-experiences article p {
  margin: 0;
}

.huaca-gallery {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 104px;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 24px;
}

.huaca-gallery img {
  height: 340px;
  object-fit: cover;
}

.huaca-gallery img:first-child {
  grid-row: span 2;
  height: 704px;
}

.huaca-faq {
  width: min(1010px, calc(100% - 48px));
  margin: 0 auto 102px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.huaca-faq h2 {
  margin: 0;
  color: #3f5065;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
}

.huaca-faq details {
  border-top: 1px solid #d9d0c4;
}

.huaca-faq details:last-child {
  border-bottom: 1px solid #d9d0c4;
}

.huaca-faq summary {
  cursor: pointer;
  padding: 17px 0;
  color: #3d3935;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  list-style: none;
}

.huaca-faq summary::-webkit-details-marker {
  display: none;
}

.huaca-faq summary::after {
  content: "+";
  float: right;
  color: #9f7938;
}

.huaca-faq details[open] summary::after {
  content: "-";
}

.huaca-faq p {
  margin: 0 0 18px;
}


.huaca-nearby-region {
  width: min(760px, calc(100% - 48px));
  margin: -36px auto 82px;
  padding: 44px 48px 48px;
  background: #fcfaf8;
  text-align: center;
}

.huaca-nearby-region h2 {
  margin: 0 0 18px;
  color: #3f5065;
  font-size: clamp(28px, 3.2vw, 39px);
  line-height: 1.12;
}

.huaca-nearby-region p:not(.huaca-kicker) {
  margin: 0 auto 24px;
  max-width: 610px;
  color: #5b554d;
  font-size: 13px;
  line-height: 1.75;
}

.huaca-closing {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.huaca-closing p {
  margin: 0 auto 28px;
  color: #3f5065;
  font-size: clamp(29px, 4vw, 45px);
  line-height: 1.12;
}

@media (max-width: 900px) {
  .huaca-pillars,
  .huaca-split,
  .huaca-quote-row,
  .huaca-experiences,
  .huaca-faq {
    grid-template-columns: 1fr;
  }

  .destination-template-page .huaca-split figure,
  .destination-template-page .huaca-split article,
  .destination-template-page .huaca-quote-row blockquote,
  .destination-template-page .huaca-quote-row img {
    grid-column: auto;
  }


  .huaca-signature-feature,
  .huaca-signature-feature-reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .huaca-signature-feature-reverse img,
  .huaca-signature-feature-reverse div {
    grid-column: auto;
    grid-row: auto;
  }
  .huaca-pillars article {
    border-left: 0;
    border-top: 1px solid rgba(47, 57, 69, 0.16);
    padding-top: 32px;
  }

  .huaca-pillars article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .huaca-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .huaca-gallery img,
  .huaca-gallery img:first-child {
    grid-row: auto;
    height: 300px;
  }
}

@media (max-width: 560px) {
  .huaca-page {
    padding-bottom: 78px;
  }

  .huaca-hero img {
    height: 420px;
  }

  .huaca-intro {
    padding: 54px 0 48px;
  }

  .huaca-wide-media,
  .huaca-landscape,
  .huaca-split,
  .huaca-quote-row,
  .huaca-signature-showcase,
  .huaca-experiences,
  .huaca-gallery,
  .huaca-faq,
  .huaca-nearby-region,
  .huaca-closing {
    width: min(100% - 36px, 1010px);
    margin-bottom: 62px;
  }

  .huaca-nearby-region {
    padding: 34px 24px 38px;
  }

  .huaca-gallery {
    grid-template-columns: 1fr;
  }
}
/* experiences-codex experiment */
.experiences-codex-page {
  background: #fff;
  color: #2f3945;
  padding: 72px 0 96px;
}

.codex-experiences-hero,
.codex-experiences-intro,
.codex-browse-panel,
.codex-signature-section,
.codex-experiences-cta {
  width: min(1080px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.codex-experiences-hero {
  padding: 56px 0 54px;
  text-align: center;
}

.codex-kicker,
.codex-section-title p,
.codex-card-meta,
.codex-style-grid a,
.codex-experiences-cta a {
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.codex-kicker {
  margin: 0 0 18px;
  color: #b18845;
  font-size: 10px;
  letter-spacing: 0.26em;
}

.codex-experiences-hero h1,
.codex-hero-copy,
.codex-section-title h2,
.codex-card-copy h3,
.codex-experiences-cta p {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-weight: 300;
}

.codex-experiences-hero h1 {
  margin: 0;
  color: #3f5065;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
}

.codex-hero-copy {
  width: min(700px, 100%);
  margin: 32px auto 0;
  color: #4d5866;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.22;
  letter-spacing: 0.012em;
}

.codex-experiences-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  padding: 60px 0 76px;
  border-top: 1px solid #eee6dd;
}

.codex-experiences-intro p {
  margin: 0;
  color: #4e5964;
  font-size: 16px;
  line-height: 1.86;
}

.codex-browse-panel {
  margin-bottom: 82px;
}

.codex-style-panel {
  width: min(920px, calc(100% - 48px));
}

.codex-section-title {
  margin-bottom: 30px;
  text-align: center;
}

.codex-section-title p {
  margin: 0 0 10px;
  color: #b7332d;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.codex-section-title h2 {
  margin: 0;
  color: #3f5065;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.codex-location-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.codex-location-grid a {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  color: #fff;
  background: #162636;
  text-decoration: none;
}

.codex-location-grid img {
  height: 100%;
  filter: brightness(0.68) saturate(0.94);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.codex-location-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 24, 0.02), rgba(12, 18, 24, 0.42));
}

.codex-location-grid a:hover img {
  filter: brightness(0.78) saturate(1);
  transform: scale(1.035);
}

.codex-location-grid span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.05;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.34);
}

.codex-style-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.codex-style-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #e3d8ca;
  color: #4d453d;
  background: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.codex-style-grid a:hover {
  border-color: #b18845;
  color: #9a6d28;
  background: #fcfaf8;
}

.codex-signature-section {
  margin-bottom: 82px;
}

.codex-experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.codex-experience-card {
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(0, 0.82fr);
  gap: 46px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid #e8ded3;
  background: #fff;
}

.codex-experience-card img {
  aspect-ratio: 1.52 / 1;
  height: auto;
}

.codex-card-copy {
  padding: 0;
}

.codex-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  color: #3f5065;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.codex-card-meta span {
  color: #b7332d;
}

.codex-card-meta span::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: #d9c9b6;
}

.codex-card-copy h3 {
  margin: 0 0 18px;
  color: #3f5065;
  font-size: 34px;
  line-height: 1.1;
}

.codex-card-copy p:not(.codex-card-meta) {
  margin: 0;
  color: #4c5660;
  font-size: 15px;
  line-height: 1.8;
}

.codex-card-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #eee6dd;
  list-style: none;
}

.codex-card-copy li {
  position: relative;
  padding-left: 31px;
  color: #5a5148;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}

.codex-card-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 20px;
  height: 1px;
  background: #b18845;
}

.codex-experiences-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 46px 52px;
  background: #faf5eb;
}

.codex-experiences-cta p {
  margin: 0;
  color: #3f5065;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
}

.codex-experiences-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  background: #b7332d;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.codex-experiences-cta a:hover {
  background: #9f2824;
}

@media (max-width: 940px) {
  .codex-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .codex-location-grid a:last-child {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .codex-experience-grid,
  .codex-experiences-intro,
  .codex-experiences-cta {
    grid-template-columns: 1fr;
  }

  .codex-experience-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .codex-experiences-cta {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .experiences-codex-page {
    padding: 46px 0 72px;
  }

  .codex-experiences-hero,
  .codex-experiences-intro,
  .codex-browse-panel,
  .codex-signature-section,
  .codex-experiences-cta {
    width: min(100% - 32px, 1080px);
  }

  .codex-experiences-intro {
    gap: 24px;
    padding: 44px 0 58px;
  }

  .codex-location-grid {
    grid-template-columns: 1fr;
  }

  .codex-location-grid a,
  .codex-location-grid a:last-child {
    grid-column: auto;
    min-height: 210px;
  }

  .codex-card-copy {
    padding: 0;
  }

  .codex-card-copy h3 {
    font-size: 29px;
  }

  .codex-experiences-cta {
    padding: 34px 24px;
  }
}

.destinations-very-temp-page .destination-video-hover video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.35s ease, filter 0.35s ease;
}

.destinations-very-temp-page .destination-poetic-hero {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(82px, 8vw, 118px);
  background: #faf5eb;
  box-shadow: 0 0 0 100vmax #faf5eb;
  clip-path: inset(0 -100vmax);
}

.destinations-very-temp-page .destination-poetic-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.destinations-very-temp-page .destination-poetic-hero h1 {
  color: #28384a;
  font-size: clamp(23px, 2.75vw, 34px);
  font-style: normal;
  letter-spacing: 0.012em;
}

.destinations-very-temp-page .destination-video-hover span {
  z-index: 2;
}

.destinations-very-temp-page .destination-video-hover:hover img,
.destinations-very-temp-page .destination-video-hover:focus-visible img {
  opacity: 0;
}

.destinations-very-temp-page .destination-video-hover:hover video,
.destinations-very-temp-page .destination-video-hover:focus-visible video {
  opacity: 1;
  filter: brightness(0.68);
  transform: scale(1.025);
}

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .destinations-very-temp-page .destination-video-hover video {
    display: none;
  }

  .destinations-very-temp-page .destination-video-hover:hover img,
  .destinations-very-temp-page .destination-video-hover:focus-visible img {
    opacity: 1;
  }
}

/* Regional experiences page */
.experiences-regional-page {
  background: #fff;
  color: #29384a;
  padding: 0 0 36px;
}

.regional-experience-section {
  position: relative;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 96px;
  clip-path: inset(0 -100vmax);
}


.regional-experience-soft {
  background: #fcfaf8;
  box-shadow: 0 0 0 100vmax #fcfaf8;
}

.regional-experience-white {
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
}
.regional-experience-section:last-child {
  margin-bottom: 0;
}


.regional-experience-with-link {
  padding-bottom: 58px;
}
.regional-experience-heading {
  margin: 0 auto 58px;
  text-align: center;
}

.regional-experience-heading p {
  margin: 0 0 12px;
  color: #b7332d;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.regional-experience-heading h1 {
  margin: 0;
  color: #172b40;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.regional-heading-link {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 0.12em;
  text-decoration-color: rgba(177, 132, 61, 0.72);
  text-underline-offset: 0.16em;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.regional-heading-link:hover {
  color: #b1843d;
  text-decoration-color: rgba(177, 132, 61, 0.95);
}
.regional-experience-heading h1 span {
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: 0.01em;
}

.regional-experience-heading h1 strong {
  display: inline-block;
  margin-left: 14px;
  color: #050d16;
  font-size: clamp(58px, 8vw, 94px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: -0.08em;
}

.regional-featured-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin-bottom: 54px;
}

.regional-featured-experience-reverse {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}

.regional-featured-experience-reverse img {
  grid-column: 2;
  grid-row: 1;
}

.regional-featured-experience-reverse article {
  grid-column: 1;
  grid-row: 1;
}

.regional-featured-experience img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.regional-featured-experience h2 {
  margin: 0 0 18px;
  color: #3f5065;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 300;
  letter-spacing: 0.018em;
  line-height: 1.12;
}

.regional-featured-experience p {
  margin: 0;
  color: #29384a;
  font-size: 14px;
  line-height: 1.86;
}

.regional-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.regional-mini-grid article {
  margin: 0;
}

.regional-mini-grid img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  background: #06131d;
}


.regional-experience-link {
  margin: 56px 0 0;
  color: #8a8178;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.015em;
  text-align: center;
}

.regional-experience-link a {
  color: #9f7938;
  text-decoration: none;
  transition: color 160ms ease;
}

.regional-experience-link a:hover {
  color: #b7332d;
}
.regional-mini-grid h3 {
  margin: 14px 0 0;
  color: #34302c;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .regional-featured-experience,
  .regional-featured-experience-reverse,
  .regional-mini-grid {
    grid-template-columns: 1fr;
  }

  .regional-featured-experience-reverse img,
  .regional-featured-experience-reverse article {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .experiences-regional-page {
    padding: 0 0 34px;
  }

  .regional-experience-section {
    width: min(100% - 36px, 1080px);
    margin-bottom: 0;
  }

  
.regional-experience-with-link {
  padding-bottom: 58px;
}
.regional-experience-heading {
    margin-bottom: 38px;
  }

  .regional-experience-heading h1 strong {
    display: block;
    margin: 8px 0 0;
    letter-spacing: 0.08em;
  }

  .regional-featured-experience {
    gap: 24px;
  }

  .regional-mini-grid {
    gap: 26px;
  }
}
/* Breathy alternate Experiences page */
.experiences-breathy-page .codex-experiences-hero {
  margin-bottom: 52px;
}

.experiences-breathy-page .regional-experience-section {
  padding-top: 112px;
  padding-bottom: 118px;
}

.experiences-breathy-page .regional-experience-with-link {
  padding-bottom: 126px;
}

.experiences-breathy-page .regional-experience-heading {
  margin-bottom: 84px;
}

.experiences-breathy-page .regional-featured-experience {
  margin-bottom: 78px;
}

.experiences-breathy-page .regional-mini-grid {
  margin-bottom: 74px;
}

.experiences-breathy-page .regional-experience-link {
  margin-top: 0;
}

@media (max-width: 880px) {
  .experiences-breathy-page .regional-experience-section {
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .experiences-breathy-page .regional-experience-heading {
    margin-bottom: 60px;
  }

  .experiences-breathy-page .regional-featured-experience {
    margin-bottom: 58px;
  }

  .experiences-breathy-page .regional-mini-grid {
    margin-bottom: 54px;
  }
}
/* Alternate Experiences page with smaller three-image rows */
.experiences-small-mini-page .regional-mini-grid {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 880px) {
  .experiences-small-mini-page .regional-mini-grid {
    width: 100%;
  }
}

/* Experimental ROAR-inspired page: tryme.html */
.tryme-page {
  background: #fbfaf7;
  color: #2d2925;
}

.tryme-page main {
  overflow: clip;
}

.tryme-placeholder {
  position: relative;
  display: grid;
  min-height: 240px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
    #d9d4cc;
  color: #6c655e;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.tryme-placeholder span {
  position: relative;
  z-index: 1;
}

.tryme-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(52, 48, 44, 0.13);
}

.tryme-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 61px));
  display: grid;
  place-items: center;
  background: #26231f;
  color: #fff;
}

.tryme-placeholder-hero {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    linear-gradient(rgba(24, 23, 22, 0.18), rgba(24, 23, 22, 0.28)),
    linear-gradient(145deg, #c9c2b4 0%, #a8a195 42%, #77746e 100%);
  color: rgba(255, 255, 255, 0.7);
}

.tryme-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 720px);
  text-align: center;
  animation: trymeFadeUp 900ms ease both;
}

.tryme-hero-copy h1,
.tryme-testimonial h2,
.tryme-chapter-copy h2,
.tryme-closing h2 {
  margin: 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.14;
}

.tryme-hero-copy h1 {
  color: #fff;
}

.tryme-hero-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.8;
  text-transform: uppercase;
}

.tryme-hero-copy p:last-child {
  width: min(100%, 460px);
  margin: 20px auto 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: none;
}

.tryme-summary {
  width: min(1060px, calc(100% - 20vw));
  margin: 0 auto 104px;
  padding: 86px 0 0;
  text-align: center;
}

.tryme-summary-lede {
  max-width: 650px;
  margin: 0 auto 104px;
  color: #34302c;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.22;
}

.tryme-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.tryme-summary-grid div {
  min-height: 96px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  justify-items: center;
  padding: 18px 42px 0;
}

.tryme-summary-grid div + div {
  border-left: 1px solid rgba(177, 136, 69, 0.34);
}

.tryme-summary-grid p,
.tryme-smallcaps {
  margin: 0 0 12px;
  color: #6b6259;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.36em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tryme-summary-grid span {
  color: #34302c;
  font-family: "Sofia Pro Light", "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.tryme-testimonial,
.tryme-chapter,
.tryme-closing {
  width: min(100% - 20vw, 1120px);
  margin: 0 auto;
}

.tryme-testimonial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 7vw;
  align-items: center;
  padding: 110px 0 124px;
}

.tryme-testimonial h2 {
  font-style: italic;
}

.tryme-testimonial p:last-child,
.tryme-chapter-copy p,
.tryme-closing p {
  margin: 20px 0 0;
  color: #34302c;
  font-size: 15px;
  line-height: 1.8;
}

.tryme-testimonial .tryme-placeholder {
  aspect-ratio: 1.4 / 1;
}

.tryme-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 6vw;
  align-items: start;
  padding: 0 0 118px;
}

.tryme-chapter-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.tryme-chapter-copy {
  position: sticky;
  top: 140px;
}

.tryme-chapter-visuals {
  display: grid;
  gap: 70px;
}

.tryme-chapter-visuals figure {
  margin: 0;
}

.tryme-chapter-visuals figcaption {
  width: min(100%, 410px);
  margin: 16px 0 0;
  color: #34302c;
  font-size: 13px;
  line-height: 1.6;
}

.tryme-ratio-wide {
  aspect-ratio: 1.45 / 1;
}

.tryme-ratio-tall {
  min-height: 560px;
  aspect-ratio: 0.72 / 1;
}

.tryme-ratio-soft {
  min-height: 360px;
  aspect-ratio: 0.95 / 1;
}

.tryme-chapter-copy {
  padding-top: 18px;
}

.tryme-chapter-copy h2,
.tryme-closing h2 {
  color: #34302c;
  text-transform: uppercase;
}

.tryme-chapter-copy .tryme-lede {
  margin-top: 26px;
  font-weight: 400;
}

.tryme-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 6vw;
  align-items: center;
  padding: 18px 0 126px;
}

.tryme-closing .tryme-placeholder {
  min-height: 520px;
  aspect-ratio: 0.95 / 1;
}

.tryme-closing .ghost {
  margin-top: 30px;
}

@keyframes trymeFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .tryme-summary,
  .tryme-testimonial,
  .tryme-chapter,
  .tryme-closing {
    width: min(100% - 36px, 720px);
  }

  .tryme-summary-grid,
  .tryme-testimonial,
  .tryme-chapter,
  .tryme-chapter-reverse,
  .tryme-closing {
    grid-template-columns: 1fr;
  }

  .tryme-summary-grid div + div {
    border-top: 1px solid rgba(177, 136, 69, 0.34);
    border-left: 0;
    padding-top: 30px;
  }

  .tryme-chapter-copy {
    position: static;
  }

  .tryme-ratio-tall,
  .tryme-ratio-soft {
    width: 100%;
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .tryme-hero {
    min-height: 620px;
  }

  .tryme-summary {
    padding-top: 68px;
    margin-bottom: 72px;
  }

  .tryme-closing .tryme-placeholder {
    min-height: 340px;
  }

  .tryme-testimonial {
    padding: 76px 0 86px;
  }

  .tryme-chapter,
  .tryme-closing {
    padding-bottom: 86px;
  }
}

/* Experimental live-reference page: tryme2.html */
.tryme2-page {
  background: #fbfaf7;
  color: #34302c;
}

.tryme2-placeholder {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
    #d8d3cb;
  color: #6d665e;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.tryme2-placeholder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(52, 48, 44, 0.13);
}

.tryme2-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 61px));
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}

.tryme2-hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    linear-gradient(rgba(18, 22, 16, 0.18), rgba(18, 22, 16, 0.32)),
    linear-gradient(145deg, #9fa895 0%, #677463 45%, #252f28 100%);
  color: rgba(255, 255, 255, 0.72);
}

.tryme2-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 760px);
  animation: trymeFadeUp 900ms ease both;
}

.tryme2-hero-copy p:first-child,
.tryme2-smallcaps {
  margin: 0 0 14px;
  color: #625b54;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.tryme2-hero-copy p:first-child,
.tryme2-hero-copy p:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.tryme2-hero-copy h1,
.tryme2-intro h2,
.tryme2-testimonials h2,
.tryme2-chapter-copy h2,
.tryme2-experience-heading h2,
.tryme2-closing h2 {
  margin: 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.14;
}

.tryme2-hero-copy h1 {
  color: #fff;
}

.tryme2-hero-copy p:last-child {
  margin: 18px 0 0;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.tryme2-intro {
  width: min(100% - 20vw, 1060px);
  margin: 0 auto;
  padding: 88px 0 104px;
  text-align: center;
}

.tryme2-intro > p {
  max-width: 760px;
  margin: 28px auto 0;
  color: #34302c;
  font-size: 15px;
  line-height: 1.85;
}

.tryme2-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  margin: 72px auto 0;
  text-align: left;
}

.tryme2-promise-grid h3,
.tryme2-experience-grid h3 {
  margin: 0 0 14px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tryme2-promise-grid p,
.tryme2-experience-grid p,
.tryme2-chapter-copy p,
.tryme2-wide-media p,
.tryme2-wide-break p,
.tryme2-closing p {
  margin: 0;
  color: #34302c;
  font-size: 15px;
  line-height: 1.8;
}

.tryme2-wide-media,
.tryme2-testimonials,
.tryme2-chapter,
.tryme2-wide-break,
.tryme2-experiences,
.tryme2-closing {
  width: min(100% - 20vw, 1120px);
  margin: 0 auto;
}

.tryme2-wide-media .tryme2-placeholder {
  min-height: 520px;
  aspect-ratio: 1.62 / 1;
}

.tryme2-wide-media p,
.tryme2-wide-break p {
  width: min(100%, 520px);
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.tryme2-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  padding: 104px 0 126px;
}

.tryme2-testimonials h2 {
  font-style: italic;
}

.tryme2-testimonials p:last-child {
  margin-top: 22px;
  color: #34302c;
  font-size: 14px;
  line-height: 1.78;
}

.tryme2-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 6vw;
  align-items: start;
  padding-bottom: 86px;
}

.tryme2-image-column figure {
  margin: 0;
}

.tryme2-ratio-landscape {
  aspect-ratio: 1.45 / 1;
}

.tryme2-image-column figcaption {
  width: min(100%, 520px);
  margin: 16px 0 0;
  color: #34302c;
  font-size: 13px;
  line-height: 1.6;
}

.tryme2-chapter-copy {
  position: sticky;
  top: 140px;
  padding-top: 8px;
}

.tryme2-chapter-copy h2,
.tryme2-experience-heading h2,
.tryme2-closing h2 {
  text-transform: uppercase;
}

.tryme2-chapter-copy p {
  margin-top: 22px;
}

.tryme2-chapter-copy em {
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 31px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
}

.tryme2-wide-break {
  padding-bottom: 110px;
}

.tryme2-wide-break .tryme2-placeholder {
  min-height: 360px;
  aspect-ratio: 2.4 / 1;
}

.tryme2-experiences {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
  gap: 6vw;
  align-items: start;
  padding-bottom: 124px;
}

.tryme2-experience-heading {
  position: sticky;
  top: 140px;
}

.tryme2-experience-heading p {
  margin: 24px 0 0;
  color: #34302c;
  font-size: 15px;
  line-height: 1.82;
}

.tryme2-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 38px;
}

.tryme2-experience-grid .tryme2-placeholder {
  min-height: 280px;
  aspect-ratio: 1.05 / 1;
  margin-bottom: 20px;
}

.tryme2-closing {
  padding: 94px 0 126px;
  text-align: center;
}

.tryme2-closing p {
  max-width: 620px;
  margin: 26px auto 0;
}

.tryme2-closing .ghost {
  margin-top: 34px;
}

@media (max-width: 900px) {
  .tryme2-intro,
  .tryme2-wide-media,
  .tryme2-testimonials,
  .tryme2-chapter,
  .tryme2-wide-break,
  .tryme2-experiences,
  .tryme2-closing {
    width: min(100% - 36px, 760px);
  }

  .tryme2-promise-grid,
  .tryme2-testimonials,
  .tryme2-chapter,
  .tryme2-experiences,
  .tryme2-experience-grid {
    grid-template-columns: 1fr;
  }

  .tryme2-chapter-copy,
  .tryme2-experience-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .tryme2-hero {
    min-height: 620px;
  }

  .tryme2-intro {
    padding: 68px 0 74px;
  }

  .tryme2-wide-media .tryme2-placeholder,
  .tryme2-wide-break .tryme2-placeholder {
    min-height: 320px;
  }

  .tryme2-testimonials,
  .tryme2-closing {
    padding: 76px 0 86px;
  }

  .tryme2-experiences {
    padding-bottom: 86px;
  }
}

/* Experimental South-Africa-reference page: tryme3.html */
.tryme3-page {
  background: #fbfaf7;
  color: #34302c;
}

.tryme3-placeholder {
  position: relative;
  display: grid;
  min-height: 240px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 42%),
    #d8d3cb;
  color: #6d665e;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tryme3-placeholder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(52,48,44,0.13);
}

.tryme3-hero {
  position: relative;
  min-height: min(700px, calc(100vh - 61px));
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}

.tryme3-hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    linear-gradient(rgba(30,27,23,0.12), rgba(30,27,23,0.28)),
    linear-gradient(145deg, #bba17d 0%, #907d69 38%, #4f453d 100%);
  color: rgba(255,255,255,0.72);
}

.tryme3-play {
  position: absolute;
  left: max(28px, 3vw);
  bottom: 38px;
  z-index: 2;
  border: 0;
  background: #fff;
  color: #34302c;
  padding: 10px 18px;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tryme3-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 680px);
  animation: trymeFadeUp 900ms ease both;
}

.tryme3-hero-copy h1,
.tryme3-intro h2,
.tryme3-testimonial h2,
.tryme3-chapter-copy h2,
.tryme3-experience-intro h2,
.tryme3-faq h2,
.tryme3-poetic h2,
.tryme3-cta-band h2 {
  margin: 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.14;
}

.tryme3-hero-copy h1 {
  color: #fff;
}

.tryme3-hero-copy p,
.tryme3-hero-caption,
.tryme3-smallcaps {
  margin: 0;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
}

.tryme3-hero-copy p {
  margin-top: 18px;
  color: rgba(255,255,255,0.88);
}

.tryme3-hero-caption {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: 50%;
  width: min(100% - 160px, 620px);
  transform: translateX(-50%);
  color: rgba(255,255,255,0.84);
}

.tryme3-intro {
  background: #f3ecdf;
  padding: 78px 0 86px;
  text-align: center;
}

.tryme3-intro > .tryme3-smallcaps,
.tryme3-smallcaps {
  color: #6f675f;
  margin-bottom: 22px;
}

.tryme3-intro h2 {
  width: min(100% - 28vw, 760px);
  margin: 0 auto;
  color: #34302c;
}

.tryme3-promise-grid {
  width: min(1240px, calc(100vw - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
}

.tryme3-promise-grid article {
  min-height: 150px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 0;
}

.tryme3-promise-grid article + article {
  border-left: 1px solid rgba(47, 57, 69, 0.16);
}

.tryme3-promise-grid h3,
.tryme3-experience-card h3,
.tryme3-mini-row h3 {
  margin: 0 0 16px;
  color: #34302c;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tryme3-promise-grid p,
.tryme3-wide-media p,
.tryme3-testimonial p,
.tryme3-chapter-copy p,
.tryme3-wide-break p,
.tryme3-experience-intro p,
.tryme3-experience-card p,
.tryme3-faq p,
.tryme3-cta-band p {
  margin: 0;
  color: #34302c;
  font-size: 15px;
  line-height: 1.8;
}

.tryme3-promise-grid p {
  max-width: 210px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.75;
}

.tryme3-wide-media,
.tryme3-testimonial,
.tryme3-chapter,
.tryme3-wide-break,
.tryme3-experiences,
.tryme3-faq,
.tryme3-poetic,
.tryme3-collage {
  width: min(100% - 20vw, 1120px);
  margin: 0 auto;
}

.tryme3-wide-media {
  padding: 88px 0 96px;
}

.tryme3-wide-media .tryme3-placeholder {
  min-height: 520px;
  aspect-ratio: 1.55 / 1;
}

.tryme3-wide-media p,
.tryme3-wide-break p {
  width: min(100%, 560px);
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.58;
}

.tryme3-testimonial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 7vw;
  align-items: center;
  padding: 8px 0 126px;
}

.tryme3-testimonial h2 {
  font-style: italic;
}

.tryme3-testimonial p:last-child {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.78;
}

.tryme3-testimonial .tryme3-placeholder {
  aspect-ratio: 1.52 / 1;
}

.tryme3-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: 6vw;
  align-items: start;
  padding-bottom: 88px;
}

.tryme3-chapter-images figure {
  margin: 0;
}

.tryme3-ratio-portrait {
  min-height: 590px;
  aspect-ratio: 0.74 / 1;
}

.tryme3-chapter-images figcaption {
  width: min(100%, 470px);
  margin: 16px 0 0;
  color: #34302c;
  font-size: 13px;
  line-height: 1.58;
}

.tryme3-chapter-copy {
  position: sticky;
  top: 140px;
}

.tryme3-chapter-copy h2,
.tryme3-experience-intro h2 {
  text-transform: none;
}

.tryme3-chapter-copy p {
  margin-top: 22px;
  text-align: justify;
}

.tryme3-wide-break {
  padding-bottom: 104px;
}

.tryme3-wide-break .tryme3-placeholder {
  min-height: 430px;
  aspect-ratio: 2.1 / 1;
}

.tryme3-experiences {
  display: grid;
  grid-template-columns: minmax(270px, 0.38fr) minmax(0, 0.62fr);
  gap: 6vw;
  align-items: start;
  padding-bottom: 122px;
}

.tryme3-experience-intro {
  position: sticky;
  top: 140px;
}

.tryme3-experience-intro p {
  margin-top: 26px;
  text-align: justify;
}

.tryme3-experience-stream {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 42px;
}

.tryme3-experience-card {
  margin: 0;
}

.tryme3-experience-card .tryme3-placeholder {
  min-height: 280px;
  aspect-ratio: 1.22 / 1;
  margin-bottom: 18px;
}

.tryme3-experience-card p {
  font-size: 13px;
  line-height: 1.62;
}

.tryme3-card-wide {
  grid-column: 1 / -1;
}

.tryme3-card-wide .tryme3-placeholder {
  aspect-ratio: 1.8 / 1;
}

.tryme3-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 7vw;
  padding: 96px 0;
}

.tryme3-faq-list {
  border-top: 1px solid #d7cec3;
}

.tryme3-faq details {
  border-bottom: 1px solid #d7cec3;
  padding: 15px 0;
}

.tryme3-faq summary {
  cursor: pointer;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.tryme3-faq p {
  margin-top: 12px;
  font-size: 13px;
}

.tryme3-poetic {
  padding: 82px 0 86px;
  text-align: center;
}

.tryme3-poetic h2 {
  width: min(100%, 620px);
  margin: 0 auto;
}

.tryme3-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  padding-bottom: 116px;
}

.tryme3-collage .tryme3-placeholder {
  min-height: 240px;
}

.tryme3-collage-large {
  grid-column: 1 / -1;
  min-height: 560px;
  aspect-ratio: 1.85 / 1;
}

.tryme3-collage > :nth-child(2),
.tryme3-collage > :nth-child(3) {
  grid-column: span 3;
  aspect-ratio: 1.45 / 1;
}

.tryme3-collage-tall {
  grid-column: span 2;
  min-height: 360px;
  aspect-ratio: 0.72 / 1;
}

.tryme3-cta-band {
  background: #f3ecdf;
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 0.58fr);
  gap: 6vw;
  align-items: start;
  padding: 86px 10vw;
}

.tryme3-cta-band p:not(.tryme3-smallcaps) {
  margin-top: 22px;
  font-size: 13px;
}

.tryme3-cta-band .ghost {
  margin-top: 28px;
}

.tryme3-mini-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tryme3-mini-row .tryme3-placeholder {
  min-height: 190px;
  aspect-ratio: 0.84 / 1;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .tryme3-intro h2,
  .tryme3-wide-media,
  .tryme3-testimonial,
  .tryme3-chapter,
  .tryme3-wide-break,
  .tryme3-experiences,
  .tryme3-faq,
  .tryme3-poetic,
  .tryme3-collage {
    width: min(100% - 36px, 760px);
  }

  .tryme3-promise-grid,
  .tryme3-testimonial,
  .tryme3-chapter,
  .tryme3-experiences,
  .tryme3-faq,
  .tryme3-cta-band {
    grid-template-columns: 1fr;
  }

  .tryme3-promise-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(47, 57, 69, 0.16);
    padding-top: 32px;
  }

  .tryme3-chapter-copy,
  .tryme3-experience-intro {
    position: static;
  }
}

@media (max-width: 560px) {
  .tryme3-hero {
    min-height: 620px;
  }

  .tryme3-hero-caption {
    width: min(100% - 36px, 420px);
  }

  .tryme3-wide-media .tryme3-placeholder,
  .tryme3-wide-break .tryme3-placeholder,
  .tryme3-collage-large {
    min-height: 330px;
  }

  .tryme3-experience-stream,
  .tryme3-mini-row {
    grid-template-columns: 1fr;
  }

  .tryme3-card-wide {
    grid-column: auto;
  }

  .tryme3-collage {
    grid-template-columns: 1fr;
  }

  .tryme3-collage > *,
  .tryme3-collage > :nth-child(2),
  .tryme3-collage > :nth-child(3),
  .tryme3-collage-tall {
    grid-column: auto;
  }
}



/* Soft editorial parallax */
.soft-parallax-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e7dbcc;
}

.soft-parallax-frame > .soft-parallax-image {
  display: block;
  width: 100%;
  height: calc(100% + var(--soft-parallax-buffer, 80px));
  margin-top: calc(var(--soft-parallax-buffer, 80px) * -0.5);
  object-fit: cover;
  transform: translate3d(0, var(--soft-parallax-y, 0px), 0);
  will-change: transform;
}

.paracas-wide .soft-parallax-frame,
.huaca-landscape .soft-parallax-frame {
  aspect-ratio: 1.82 / 1;
}

.ica-functional-wide .soft-parallax-frame {
  aspect-ratio: 1.5 / 1;
}

.lima-soft-vertical.soft-parallax-frame {
  aspect-ratio: 0.82 / 1;
}

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .soft-parallax-frame > .soft-parallax-image {
    height: 100%;
    margin-top: 0;
    transform: none;
  }
}
/* Shared conversation/contact close, copied from About for homepage use */
.about-new-close-kicker {
  margin: 0 0 18px;
  color: #6f6256;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-new-close-wrap {
  padding: clamp(38px, 4.8vw, 66px) 0 clamp(76px, 9vw, 118px);
  background: #fcfaf8;
}

.about-new-close {
  width: min(80vw, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46.875% 6.25% 46.875%;
  gap: 0;
  align-items: center;
}

.about-new-close img {
  grid-column: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.about-new-close article {
  grid-column: 3;
  max-width: 84%;
}

.about-new-close h2,
.about-new-contact-copy h2 {
  margin: 0 0 24px;
  color: #34302c;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
}

.about-new-close p:not(.about-new-close-kicker),
.about-new-contact-copy p:not(.about-new-close-kicker) {
  margin: 0 0 26px;
  color: #514a43;
  font-size: 15px;
  line-height: 1.78;
}

.about-new-contact-copy p:not(.about-new-close-kicker) {
  margin-bottom: 0;
}

.about-new-close .cta {
  display: inline-flex;
}

.about-new-contact {
  width: min(80vw, 1280px);
  margin: 0 auto clamp(30px, 3.8vw, 52px);
  padding: clamp(52px, 6vw, 78px) 0;
  display: grid;
  grid-template-columns: 46.875% 6.25% 46.875%;
  gap: 0;
  align-items: start;
}

.about-new-contact.about-new-contact-after-close {
  margin: clamp(72px, 8vw, 112px) auto 0;
  padding: 0;
}

.about-new-contact-copy {
  grid-column: 1;
  max-width: 84%;
}

.about-new-contact-copy h2 {
  margin-bottom: 22px;
}

.about-new-contact-list {
  grid-column: 3;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(52, 48, 44, 0.12);
}

.about-new-contact-list article {
  padding: 20px 0;
  border-bottom: 1px solid rgba(52, 48, 44, 0.12);
}

.about-new-contact-list span {
  display: block;
  margin-bottom: 8px;
  color: #6f6256;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-new-contact-list a {
  color: #34302c;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .about-new-contact,
  .about-new-close {
    width: min(100% - 34px, 620px);
    display: block;
  }

  .about-new-contact-list,
  .about-new-close article {
    margin-top: 34px;
  }

  .about-new-close article,
  .about-new-contact-copy {
    max-width: none;
  }

  .about-new-close img {
    width: 100%;
  }
}
/* Homepage copied hero text and contact reveal refinements */
.home-botswana-intro {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(92px, 8vw, 126px) 0 clamp(80px, 7vw, 112px);
  text-align: center;
}

.home-botswana-kicker {
  margin: 0 0 24px;
  color: #111827;
  font-family: "Sofia Pro UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-botswana-intro h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #2f2930;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.35vw, 30px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-botswana-line {
  display: block;
  white-space: nowrap;
}

.home-destinations-kicker {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about-new-contact[data-contact-stagger] .about-new-contact-copy,
.about-new-contact[data-contact-stagger] .about-new-contact-list article {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.about-new-contact[data-contact-stagger].is-contact-visible .about-new-contact-copy,
.about-new-contact[data-contact-stagger].is-contact-visible .about-new-contact-list article {
  opacity: 1;
  transform: translateY(0);
}

.about-new-contact[data-contact-stagger] .about-new-contact-list article:nth-child(1) {
  transition-delay: 140ms;
}

.about-new-contact[data-contact-stagger] .about-new-contact-list article:nth-child(2) {
  transition-delay: 280ms;
}

.about-new-contact[data-contact-stagger] .about-new-contact-list article:nth-child(3) {
  transition-delay: 420ms;
}

@media (prefers-reduced-motion: reduce) {
  .about-new-contact[data-contact-stagger] .about-new-contact-copy,
  .about-new-contact[data-contact-stagger] .about-new-contact-list article {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .home-botswana-line {
    display: inline;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .home-botswana-intro {
    width: min(100% - 34px, 520px);
    padding: 72px 0 70px;
  }
}

/* Private journey design steps */
.how-preview-page {
  background: #fcfaf8;
  color: #34302c;
}

.how-section {
  background: #fcfaf8;
  padding: clamp(92px, 9vw, 140px) 24px clamp(100px, 10vw, 152px);
}

.home-how-section {
  padding-top: clamp(74px, 7vw, 112px);
  padding-bottom: clamp(82px, 8vw, 122px);
}

.how-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.how-heading {
  margin: 0 auto clamp(48px, 5.4vw, 72px);
  text-align: center;
}

.how-heading h1 {
  margin: 0;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.how-heading .how-muted {
  color: #5f6363;
}

.how-heading .how-red {
  color: #b7332d;
}

.home-how-section .how-heading h1 {
  color: #2f2930;
  font-size: clamp(25px, 2.35vw, 30px);
  line-height: 1.2;
}

.home-how-section .how-heading .how-muted {
  color: inherit;
}

.home-how-section .how-heading .how-red {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
}

body.how-motion-ready .home-how-section .how-heading .how-red {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 620ms ease, transform 620ms ease;
}

body.how-motion-ready .home-how-section.is-effortless-visible .how-heading .how-red {
  opacity: 1;
  transform: translateY(0);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.how-step {
  padding-top: 20px;
  border-top: 1px solid rgba(169, 133, 83, 0.28);
  text-align: left;
}

.home-how-section .how-step {
  border-top-color: rgba(52, 48, 44, 0.18);
}

.how-step-number {
  display: block;
  margin-bottom: 22px;
  color: #a98553;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.home-how-section .how-step-number {
  color: #6f6a64;
}

.how-step h2 {
  margin: 0;
  color: #302b27;
  font-family: "Freight Display Pro", "Freight Display Test", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0;
}

.how-step p {
  margin: 12px 0 0;
  color: #524b45;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.66;
}

.how-step-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-top: 26px;
  color: #a98553;
}

.home-how-section .how-step-icon {
  color: #6f6a64;
}

.how-step-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.how-reveal-group .how-animate-item:nth-child(1) { --how-delay: 0ms; }
.how-reveal-group .how-animate-item:nth-child(2) { --how-delay: 1000ms; }
.how-reveal-group .how-animate-item:nth-child(3) { --how-delay: 2000ms; }
.how-reveal-group .how-animate-item:nth-child(4) { --how-delay: 3000ms; }

.how-animate-item {
  will-change: opacity, transform;
}

body.how-motion-ready .how-animate-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 980ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 980ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--how-delay, 0ms);
}

body.how-motion-ready .how-reveal-group.is-visible .how-animate-item {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .how-heading {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .how-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .how-step-icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.how-motion-ready .how-animate-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.how-motion-ready .home-how-section .how-heading .how-red {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


