:root {
  --ink: #303233;
  --paper: #f6f4ef;
  --white: #fffefa;
  --blue: #697586;
  --sage: #dce2d6;
  --sand: #ebe7df;
  --line: rgba(48, 50, 51, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.shell { padding-inline: clamp(20px, 5vw, 80px); }

.journey-header { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-inline: clamp(20px, 4vw, 64px); background: rgba(246,244,239,.94); border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: .03em; }
.brand-mark { color: var(--blue); }
.back-link { padding-bottom: 5px; border-bottom: 1px solid var(--blue); font-size: .9rem; }

.journey-hero { display: grid; grid-template-columns: .86fr 1.14fr; min-height: calc(100svh - 76px); background: #e7eae5; }
.journey-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 9vw, 140px) clamp(30px, 7vw, 110px); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--blue); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 750; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
h1 { margin: 28px 0 30px; font-size: clamp(4.1rem, 7.5vw, 8rem); line-height: .84; letter-spacing: -.065em; }
.journey-tagline { max-width: 580px; margin: 0; font: italic clamp(1.5rem, 2.2vw, 2.45rem)/1.2 var(--serif); color: var(--blue); }
.journey-hero-image { min-height: 620px; overflow: hidden; }
.journey-hero-image img { height: 100%; object-fit: cover; }

.journey-story { display: grid; grid-template-columns: .66fr 1.34fr; gap: clamp(40px, 8vw, 130px); padding-top: 112px; padding-bottom: 118px; background: var(--white); }
.journey-story h2 { position: sticky; top: 40px; align-self: start; margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .95; letter-spacing: -.05em; }
.journey-story h2 em { color: var(--blue); font-family: var(--serif); font-weight: 400; }
.journey-text { max-width: 760px; }
.journey-text p { margin: 0 0 22px; color: rgba(48,50,51,.72); font-size: clamp(1.08rem, 1.45vw, 1.28rem); line-height: 1.72; }
.journey-text p:first-child { color: var(--ink); font-size: clamp(1.3rem, 2vw, 1.85rem); line-height: 1.5; }

.journey-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; padding-top: 12px; padding-bottom: 12px; background: var(--paper); }
.journey-gallery figure { grid-column: span 5; min-width: 0; margin: 0; overflow: hidden; background: var(--sand); }
.journey-gallery figure:nth-child(3n + 2) { grid-column: span 7; }
.journey-gallery figure:nth-child(3n) { grid-column: span 7; }
.journey-gallery figure:nth-child(4n) { grid-column: span 5; }
.journey-gallery img { height: min(68vw, 760px); min-height: 430px; object-fit: cover; transition: transform .55s ease; }
.journey-gallery figure:hover img { transform: scale(1.018); }
.journey-gallery.single figure { grid-column: 1 / -1; }
.journey-gallery.single img { height: min(70vw, 820px); }

.journey-nav { padding-top: 108px; padding-bottom: 112px; background: var(--sage); }
.journey-nav h2 { margin: 26px 0 48px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .95; letter-spacing: -.05em; }
.destination-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.destination-list a { display: flex; justify-content: space-between; gap: 20px; min-height: 86px; padding: 28px 14px 24px 0; border-bottom: 1px solid var(--line); font-weight: 720; }
.destination-list a:nth-child(3n + 2), .destination-list a:nth-child(3n) { padding-left: 20px; }
.destination-list span { color: var(--blue); transition: transform .2s ease; }
.destination-list a:hover span { transform: translate(3px, -3px); }

.journey-contact { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding-top: 92px; padding-bottom: 96px; background: var(--ink); color: white; }
.journey-contact h2 { max-width: 860px; margin: 0; font-size: clamp(2.9rem, 5.5vw, 6rem); line-height: .95; letter-spacing: -.05em; }
.contact-button { display: inline-flex; justify-content: center; align-items: center; min-height: 58px; padding: 0 28px; border-radius: 100px; background: var(--white); color: var(--ink); font-weight: 750; }

.journey-footer { display: flex; justify-content: space-between; gap: 30px; padding-top: 34px; padding-bottom: 34px; background: #d8d9d4; color: rgba(48,50,51,.62); font-size: .85rem; }

@media (max-width: 860px) {
  .journey-header { height: 68px; }
  .journey-hero { grid-template-columns: 1fr; min-height: auto; }
  .journey-hero-copy { padding-block: 82px; }
  .journey-hero-image { min-height: 640px; }
  .journey-story { grid-template-columns: 1fr; }
  .journey-story h2 { position: static; }
  .destination-list { grid-template-columns: repeat(2, 1fr); }
  .destination-list a:nth-child(3n + 2), .destination-list a:nth-child(3n) { padding-left: 0; }
  .destination-list a:nth-child(even) { padding-left: 18px; }
  .journey-contact { grid-template-columns: 1fr; }
  .contact-button { justify-self: start; }
}

@media (max-width: 560px) {
  .back-link { font-size: .8rem; }
  h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  .journey-hero-copy { padding: 68px 22px 72px; }
  .journey-hero-image { min-height: 500px; }
  .journey-story { padding-top: 74px; padding-bottom: 78px; }
  .journey-gallery { grid-template-columns: 1fr; gap: 8px; padding-inline: 8px; }
  .journey-gallery figure, .journey-gallery figure:nth-child(n) { grid-column: auto; }
  .journey-gallery img, .journey-gallery.single img { height: 118vw; min-height: 380px; }
  .journey-gallery figure:nth-child(even) img { height: 82vw; }
  .destination-list { grid-template-columns: 1fr; }
  .destination-list a:nth-child(n) { padding-left: 0; }
  .journey-nav { padding-top: 76px; padding-bottom: 80px; }
  .journey-contact { padding-top: 74px; padding-bottom: 78px; }
  .journey-footer { flex-direction: column; }
}

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