
:root {
  --navy: #071a2a;
  --navy-soft: #102b40;
  --gold: #b9954f;
  --gold-light: #d8bc80;
  --ivory: #f4f0e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #13212d;
  --muted: #63707a;
  --line: #dcd5c8;
  --display: Didot, "Bodoni 72", Baskerville, Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.topbar {
  min-height: 35px;
  padding: 7px 5vw;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar-hours {
  color: var(--gold-light);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 35px;
  left: 0;
  width: 100%;
  min-height: 94px;
  padding: 12px 5vw;
  display: grid;
  grid-template-columns: minmax(170px, 250px) 1fr auto;
  align-items: center;
  gap: 40px;
  background: rgba(244, 240, 232, 0.96);
  border-bottom: 1px solid rgba(185, 149, 79, 0.25);
  backdrop-filter: blur(16px);
}

.brand {
  width: 188px;
  height: 68px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand img {
  width: 188px;
  transform: scale(1.28);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 40px);
}

.desktop-nav a {
  position: relative;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #899099;
  font-size: 12px;
}

.language-switch button {
  padding: 2px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
}

.language-switch button.active {
  color: var(--navy);
}

.mobile-menu {
  display: none;
}

.button {
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--white);
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  background: #c9a865;
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 920px;
  padding-top: 129px;
  background-image: url("/images/hero-machu-picchu.jpg");
  background-position: center center;
  background-size: cover;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 42, 0.86) 0%, rgba(7, 26, 42, 0.56) 38%, rgba(7, 26, 42, 0.1) 68%),
    linear-gradient(0deg, rgba(7, 26, 42, 0.72) 0%, transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 90vw);
  margin-left: 7vw;
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(66px, 7vw, 118px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 18px;
}

.light-link {
  color: var(--white);
}

.hero-trust {
  position: absolute;
  z-index: 3;
  left: 5vw;
  right: 5vw;
  bottom: 0;
  min-height: 105px;
  padding: 24px 2vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-trust > div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.trust-mark {
  color: var(--gold);
  font-size: 9px;
}

.section {
  padding: 120px 7vw;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  align-items: end;
  background: var(--ivory);
}

h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.lead-copy {
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.55;
}

.journeys {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  max-width: 700px;
  color: var(--muted);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.journey-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7, 26, 42, 0.12);
}

.journey-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.journey-card:hover .journey-image img {
  transform: scale(1.04);
}

.days-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  background: rgba(7, 26, 42, 0.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-body {
  padding: 30px;
}

.card-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-body h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
}

.route {
  min-height: 50px;
  color: var(--muted);
  font-size: 14px;
}

.price-row {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.price-row p {
  margin-bottom: 0;
  display: grid;
}

.price-row p span,
.price-row p small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row p strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.price-row a {
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row a span {
  color: var(--gold);
}

.price-note {
  max-width: 980px;
  margin: 32px auto 0;
  color: #7d858a;
  font-size: 11px;
  text-align: center;
}

.tailor {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}

.tailor-visual {
  position: relative;
}

.tailor-visual > img {
  width: 100%;
  min-height: 720px;
  object-fit: cover;
}

.visual-note {
  position: absolute;
  right: -4vw;
  bottom: 60px;
  width: min(330px, 70%);
  padding: 28px;
  background: var(--ivory);
  box-shadow: 0 16px 50px rgba(7, 26, 42, 0.16);
}

.visual-note span,
.visual-note strong {
  display: block;
}

.visual-note span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-note strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.pillar-list {
  margin: 38px 0;
  border-top: 1px solid var(--line);
}

.pillar {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
}

.pillar > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 24px;
}

.pillar h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
}

.pillar p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.founder {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10vw;
  align-items: end;
}

.founder h2 {
  color: var(--white);
}

.founder-copy > p {
  max-width: 720px;
}

.founder blockquote {
  max-width: 760px;
  margin: 38px 0 20px;
  padding-left: 30px;
  border-left: 2px solid var(--gold);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  line-height: 1.45;
}

.signature {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-stats {
  display: grid;
  gap: 30px;
}

.founder-stats div {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-stats strong,
.founder-stats span {
  display: block;
}

.founder-stats strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
}

.founder-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-heading {
  max-width: 900px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 360px;
  gap: 22px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.destination-card.wide {
  grid-column: span 2;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.destination-card:hover img {
  transform: scale(1.045);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 42, 0.78), transparent 65%);
}

.destination-name {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.destination-name strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.destination-name small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process {
  background: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article {
  padding: 35px 28px 10px 0;
  border-right: 1px solid var(--line);
}

.process-grid article:not(:first-child) {
  padding-left: 28px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  display: block;
  margin-bottom: 50px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 34px;
}

.process-grid h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
}

.altitude {
  padding: 0;
  background: var(--navy);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.altitude-copy {
  padding: 100px 7vw;
  color: rgba(255, 255, 255, 0.76);
}

.altitude h2 {
  color: var(--white);
}

.altitude-image {
  min-height: 620px;
}

.altitude-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  align-items: center;
}

.experience-copy ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.experience-copy li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.experience-copy li span {
  margin-right: 8px;
  color: var(--gold);
}

.experience-gallery {
  position: relative;
  min-height: 650px;
}

.gallery-main {
  width: 78%;
  height: 560px;
  object-fit: cover;
  margin-left: auto;
}

.gallery-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 280px;
  border: 12px solid var(--paper);
  object-fit: cover;
}

.quote-section {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.quote-section h2 {
  color: var(--white);
}

.contact-card {
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px 20px;
}

.contact-card span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
}

.quote-form {
  position: relative;
  padding: 38px;
  background: var(--ivory);
  color: var(--navy);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9b1a5;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  text-transform: none;
}

.quote-form input,
.quote-form select {
  min-height: 45px;
}

.quote-form textarea {
  padding-top: 10px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
}

.quote-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.55;
  text-align: left;
  text-transform: none;
}

.form-status p {
  margin: 0;
}

.form-status-success {
  border-color: rgba(21, 107, 62, 0.25);
  background: rgba(21, 107, 62, 0.07);
  color: #174f32;
}

.form-status-error {
  border-color: rgba(151, 45, 45, 0.25);
  background: rgba(151, 45, 45, 0.07);
  color: #7d2828;
}

.form-whatsapp-button {
  width: 100%;
  margin-top: 14px;
  background: var(--navy);
  color: var(--white);
}

.form-whatsapp-button:hover {
  background: #0d2a40;
  color: var(--white);
}

.form-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.consent-field {
  grid-template-columns: 22px 1fr !important;
  align-items: start;
  gap: 12px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.consent-field input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-field a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  padding: 70px 7vw 30px;
  background: #04131f;
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.5fr;
  gap: 6vw;
}

.inner-header {
  background: rgba(244, 240, 232, 0.98);
}

.journey-detail-hero {
  position: relative;
  min-height: 850px;
  padding: 190px 7vw 90px;
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.journey-detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 42, 0.9), rgba(7, 26, 42, 0.5) 48%, rgba(7, 26, 42, 0.08) 76%),
    linear-gradient(0deg, rgba(7, 26, 42, 0.75), transparent 55%);
}

.journey-detail-hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
}

.back-link {
  display: inline-block;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-detail-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(62px, 7vw, 108px);
}

.journey-subtitle {
  max-width: 680px;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.4;
}

.journey-route {
  margin-bottom: 30px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-price {
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.detail-price span,
.detail-price small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-price strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
}

.detail-price-note {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.detail-facts {
  padding: 0 7vw;
  background: var(--ivory);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.detail-facts > div {
  min-height: 150px;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-facts > div:first-child {
  border-left: 1px solid var(--line);
}

.detail-facts span {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-facts strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.detail-overview {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 9vw;
}

.ideal-box {
  margin-top: 36px;
  padding: 25px 28px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
}

.ideal-box span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ideal-box p {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.45;
}

.detail-itinerary {
  background: var(--ivory);
}

.timeline {
  max-width: 1080px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.timeline article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 42px;
}

.timeline-day {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.timeline-day span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-day strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
}

.timeline-copy > p:first-child {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-copy h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.timeline-copy > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.timeline-mobile-image {
  display: none;
}

.detail-services {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 7vw;
}

.detail-checks {
  border-top: 1px solid var(--line);
}

.detail-checks > div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.detail-checks span {
  color: var(--gold);
}

.detail-checks p {
  margin: 0;
}

.service-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
}

.customize-card {
  padding: 55px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
}

.customize-card h3 {
  color: var(--white);
  font-family: var(--display);
  font-size: 33px;
  font-weight: 400;
  line-height: 1.4;
}

.customize-card ul {
  margin: 30px 0 0;
  padding-left: 18px;
}

.customize-card li {
  margin-bottom: 16px;
  padding-left: 8px;
}

.customize-card li::marker {
  color: var(--gold);
}

.detail-notes {
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.detail-notes ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.detail-notes p:last-child {
  color: var(--muted);
}

.detail-call {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7vw;
  align-items: end;
}

.detail-call h2 {
  color: var(--white);
}

.detail-call > div:first-child {
  max-width: 800px;
}

.detail-call-actions {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.detail-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.editorial-hero {
  position: relative;
  min-height: 780px;
  padding: 190px 7vw 90px;
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.editorial-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 42, 0.9), rgba(7, 26, 42, 0.48) 52%, rgba(7, 26, 42, 0.08) 80%),
    linear-gradient(0deg, rgba(7, 26, 42, 0.74), transparent 52%);
}

.editorial-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.editorial-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(62px, 7vw, 106px);
}

.editorial-hero-copy > p:last-child {
  max-width: 700px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.45;
}

.editorial-intro {
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 8vw;
}

.editorial-lead {
  max-width: 1000px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.4;
}

.editorial-sections {
  padding-top: 80px;
}

.editorial-sections article {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 170px minmax(0, 850px);
  gap: 5vw;
  justify-content: center;
}

.editorial-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 52px;
}

.editorial-sections h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.editorial-sections article p {
  color: var(--muted);
  font-size: 18px;
}

.editorial-sections ul {
  margin-top: 22px;
  padding-left: 20px;
  color: var(--muted);
}

.editorial-sections li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.editorial-sections li::marker {
  color: var(--gold);
}

.editorial-quote {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.editorial-quote blockquote {
  max-width: 1050px;
  margin: 0 auto 28px;
  font-family: var(--display);
  font-size: clamp(35px, 5vw, 70px);
  font-style: italic;
  line-height: 1.35;
}

.editorial-quote span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-hero,
.legal-hero {
  min-height: 590px;
  padding: 190px 7vw 80px;
  background:
    linear-gradient(90deg, rgba(7, 26, 42, 0.96), rgba(7, 26, 42, 0.72)),
    url("/images/private-road.jpg") center 48% / cover;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.catalogue-hero > div,
.legal-hero > div {
  max-width: 950px;
}

.catalogue-hero h1,
.legal-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(62px, 7vw, 105px);
}

.catalogue-hero > div > p:last-child,
.legal-hero > div > p:not(.eyebrow) {
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.45;
}

.catalogue-section .section-heading {
  max-width: 900px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.catalogue-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.catalogue-image {
  position: relative;
  height: 330px;
  display: block;
  overflow: hidden;
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.catalogue-card:hover .catalogue-image img {
  transform: scale(1.04);
}

.catalogue-image > span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 9px 13px;
  background: rgba(7, 26, 42, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-card-copy {
  padding: 28px;
}

.catalogue-card-copy > p:first-child {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalogue-card-copy h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
}

.catalogue-card-copy > p:nth-child(3) {
  min-height: 55px;
  color: var(--muted);
}

.catalogue-card-copy > div {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.catalogue-card-copy > div > span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.catalogue-card-copy > div strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.catalogue-card-copy > div a {
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalogue-secondary {
  background: var(--ivory);
}

.catalogue-secondary .catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogue-secondary .catalogue-image {
  height: 260px;
}

.catalogue-secondary .catalogue-card-copy h3 {
  font-size: 30px;
}

.catalogue-secondary .catalogue-card-copy > div {
  align-items: start;
  flex-direction: column;
}

.legal-hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(7, 26, 42, 0.98), rgba(7, 26, 42, 0.86)),
    url("/images/cusco.jpg") center / cover;
}

.legal-hero > div > span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 1050px;
  margin: 0 auto;
}

.legal-content article {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.legal-content li::marker {
  color: var(--gold);
}

.legal-links {
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--navy);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 48px;
}

.legal-links a {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.complaints-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 42, 0.98), rgba(7, 26, 42, 0.85)),
    url("/images/titicaca.jpg") center / cover;
}

.complaints-content {
  max-width: 1050px;
  margin: 0 auto;
}

.prototype-alert {
  margin-bottom: 40px;
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
}

.prototype-alert strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.prototype-alert p {
  margin: 8px 0 0;
  color: var(--muted);
}

.complaints-form {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.complaints-form h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 36px;
}

.complaints-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.complaints-form input,
.complaints-form select,
.complaints-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--muted);
}

@media (max-width: 900px) {
  .journey-detail-hero {
    min-height: 760px;
    padding-top: 170px;
  }

  .detail-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-facts > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .detail-overview,
  .detail-services,
  .detail-notes,
  .detail-call {
    grid-template-columns: 1fr;
  }

  .detail-call-actions {
    margin-top: 15px;
  }

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

  .editorial-sections article {
    grid-template-columns: 90px 1fr;
  }

  .catalogue-secondary .catalogue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .journey-detail-hero {
    min-height: 720px;
    padding: 165px 6vw 55px;
    background-position: 63% center;
  }

  .journey-detail-hero h1 {
    font-size: 52px;
  }

  .journey-subtitle {
    font-size: 21px;
  }

  .detail-facts {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .detail-facts > div,
  .detail-facts > div:first-child,
  .detail-facts > div:nth-child(3) {
    min-height: auto;
    padding: 24px 7vw;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article {
    grid-template-columns: 66px 1fr;
    gap: 16px;
  }

  .timeline-day {
    display: block;
  }

  .timeline-day span,
  .timeline-day strong {
    display: block;
  }

  .timeline-copy h3 {
    font-size: 25px;
  }

  .customize-card {
    padding: 38px 28px;
  }

  .editorial-hero {
    min-height: 700px;
    padding: 165px 6vw 55px;
    background-position: 60% center;
  }

  .editorial-hero h1 {
    font-size: 52px;
  }

  .editorial-sections article {
    padding: 36px 0;
    grid-template-columns: 55px 1fr;
    gap: 16px;
  }

  .editorial-number {
    font-size: 36px;
  }

  .editorial-sections article p {
    font-size: 16px;
  }

  .catalogue-hero,
  .legal-hero {
    min-height: 560px;
    padding: 165px 6vw 55px;
  }

  .catalogue-hero h1,
  .legal-hero h1 {
    font-size: 52px;
  }

  .catalogue-grid,
  .complaints-form {
    grid-template-columns: 1fr;
  }

  .catalogue-image {
    height: 260px;
  }

  .catalogue-card-copy > div {
    align-items: start;
    flex-direction: column;
  }

  .complaints-form {
    padding: 26px 20px;
  }

  .complaints-form h2 {
    grid-column: auto;
  }
}

.footer-brand img {
  width: 180px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.93;
}

.footer-brand p {
  max-width: 430px;
}

.footer-contact,
.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-contact strong {
  color: var(--gold-light);
}

.footer-links a,
.footer-contact a {
  font-size: 13px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 35px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 22px;
  min-height: 54px;
  padding: 9px 18px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #1d6f4b;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.whatsapp-float span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.whatsapp-float strong {
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
  }

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

  .mobile-menu > div {
    position: absolute;
    top: 42px;
    right: 0;
    width: 240px;
    padding: 18px;
    background: var(--ivory);
    box-shadow: 0 18px 50px rgba(7, 26, 42, 0.18);
    display: grid;
    gap: 14px;
  }

  .mobile-menu a {
    font-size: 12px;
  }

  .mobile-language {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 12px;
  }

  .mobile-language button {
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .topbar {
    justify-content: center;
    text-align: center;
  }

  .topbar-hours {
    display: none;
  }

  .site-header {
    min-height: 80px;
    padding: 8px 5vw;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 145px;
    height: 60px;
  }

  .brand img {
    width: 145px;
  }

  .header-actions .button,
  .header-actions {
    display: none;
  }

  .hero {
    min-height: 840px;
    padding-top: 115px;
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 26, 42, 0.84), rgba(7, 26, 42, 0.3)),
      linear-gradient(0deg, rgba(7, 26, 42, 0.8), transparent 45%);
  }

  .hero-content {
    margin: 0 6vw;
    padding-bottom: 130px;
  }

  h1 {
    font-size: clamp(58px, 16vw, 84px);
  }

  .hero-trust {
    left: 0;
    right: 0;
    padding: 20px 6vw;
  }

  .hero-trust > div {
    font-size: 10px;
  }

  .section {
    padding: 85px 6vw;
  }

  .intro,
  .tailor,
  .founder,
  .altitude,
  .experience,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 28px;
  }

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

  .journey-image {
    height: 280px;
  }

  .tailor {
    padding-top: 0;
  }

  .tailor-visual > img {
    min-height: 480px;
  }

  .visual-note {
    right: 20px;
    bottom: 20px;
  }

  .founder-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-stats strong {
    font-size: 40px;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .destination-card.wide {
    grid-column: span 1;
  }

  .altitude-copy {
    padding: 85px 6vw;
  }

  .altitude-image {
    min-height: 420px;
  }

  .experience {
    gap: 55px;
  }

  .experience-gallery {
    min-height: 520px;
  }

  .gallery-main {
    height: 450px;
  }

  .quote-form {
    padding: 28px 22px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 35px;
    padding: 7px 12px;
    overflow: hidden;
    font-size: 9px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  h2 {
    font-size: 44px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    min-height: 148px;
  }

  .hero-trust > div:nth-child(n + 3) {
    display: none;
  }

  .journey-body {
    padding: 24px 20px;
  }

  .price-row {
    align-items: start;
    flex-direction: column;
  }

  .founder-stats {
    grid-template-columns: 1fr;
  }

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

  .process-grid article,
  .process-grid article:not(:first-child) {
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-grid article > span {
    margin-bottom: 18px;
  }

  .experience-copy ul,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .gallery-main {
    width: 100%;
  }

  .gallery-small {
    width: 58%;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .copyright {
    grid-column: auto;
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    padding-right: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
