/* ==========================================================================
   Aero Savannah — Home page
   Palette + type derived from the Pilots Edition brochure.
   ========================================================================== */

:root {
  --brown-950: #1c160e;
  --brown-900: #241c12;
  --brown-800: #2b2116;
  --brown-700: #3a2e1e;
  --cream-100: #faf6ec;
  --cream-200: #f2ead9;
  --cream-300: #e8dcc2;
  --gold-400: #d4b06a;
  --gold-500: #c9a961;
  --gold-600: #ab8a45;
  --ink: #241c12;
  --muted-on-dark: #cfc4ae;
  --muted-on-light: #6b6152;

  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Offset anchor-jump targets so the fixed nav never covers them */
[id] { scroll-margin-top: 100px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

#ways.section {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

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

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head .eyebrow { display: block; margin-bottom: 0.9rem; }

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--muted-on-light);
  font-size: 1.05rem;
  max-width: 540px;
}

.section--dark {
  background: var(--brown-800);
  color: var(--cream-200);
}

.section--dark .section-head p { color: var(--muted-on-dark); }

.rule {
  width: 56px;
  height: 2px;
  background: var(--gold-500);
  border: none;
  margin: 0 0 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--brown-950);
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }

.btn-ghost {
  border-color: rgba(250, 246, 236, 0.45);
  color: var(--cream-100);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--cream-100); background: rgba(250, 246, 236, 0.08); }

.btn-outline-dark {
  border-color: rgba(36, 28, 18, 0.3);
  color: var(--ink);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(36,28,18,0.05); }

/* ---------------------------------- Nav ---------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(28, 22, 14, 0.92);
  backdrop-filter: blur(8px);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--cream-100);
}
.nav__logo span { color: var(--gold-500); }

.nav__links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links > li { position: relative; }

.nav__links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-200);
  position: relative;
  padding-bottom: 4px;
}

.nav__links > li > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links > li > a:hover::after { transform: scaleX(1); }

.has-submenu > a .caret {
  font-size: 0.6em;
  color: var(--gold-500);
  transition: transform 0.2s ease;
}
.has-submenu:hover > a .caret,
.has-submenu.open > a .caret {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.9rem;
  min-width: 230px;
  background: var(--brown-900);
  border: 1px solid rgba(212, 176, 106, 0.25);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
  z-index: 10;
}

.has-submenu:hover > .submenu,
.has-submenu.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li + li { border-top: 1px solid rgba(250,246,236,0.06); }

.submenu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-200);
}
.submenu a:hover { color: var(--gold-400); background: rgba(212,176,106,0.08); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream-100);
  font-size: 1.6rem;
  cursor: pointer;
}

/* --------------------------------- Hero ---------------------------------- */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

.hero__image {
  position: relative;
  background: url("../images/delta-aerial.jpg") center 62% / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}

.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.25) 35%, rgba(20,16,10,0.65) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 7.5rem;
  color: var(--cream-100);
}

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

.hero__content h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  margin: 0.9rem 0 0.4rem;
  color: var(--cream-100);
}

.hero__content h1 em {
  font-style: normal;
  color: var(--gold-500);
}

.hero__tagline {
  font-size: 1.15rem;
  color: var(--cream-300);
  margin: 1.1rem 0 2.4rem;
  max-width: 460px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 1.8rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream-300);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-cue__line {
  width: 34px;
  height: 1px;
  background: var(--gold-500);
}

/* ------------------------------- Story split ------------------------------ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split > div { padding: clamp(3.5rem, 6vw, 6rem) var(--gutter); }

.split--story .split__story { background: var(--brown-800); color: var(--cream-200); }
.split--story .split__why { background: var(--cream-200); }

.split__story h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--cream-100);
  margin: 1rem 0 1.6rem;
}

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

.split__story p {
  color: var(--muted-on-dark);
  max-width: 480px;
  margin: 0 0 1.2rem;
}
.split__story p:last-of-type { margin-bottom: 0; }

.split__pitch p.beat {
  color: var(--gold-400);
  font-weight: 600;
}

.split__story .tag-line,
.split__pitch .tag-line {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-200);
  margin: 1.8rem 0 1.4rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.feature-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.feature-list .icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list .icon svg { width: 20px; height: 20px; }

.feature-list h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted-on-light);
  font-size: 0.98rem;
  max-width: 440px;
}

/* ------------------------------ Services split ----------------------------- */

.split--services .split__services { background: var(--cream-200); }
.split--services .split__pitch { background: var(--brown-900); color: var(--cream-200); }

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}
.service-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.service-list .icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-list .icon svg { width: 20px; height: 20px; }
.service-list h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.service-list p {
  margin: 0;
  color: var(--muted-on-light);
  max-width: 460px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.split__pitch .eyebrow { color: var(--gold-500); }
.split__pitch h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  color: var(--cream-100);
  margin: 1rem 0 1.6rem;
}
.split__pitch p {
  color: var(--muted-on-dark);
  max-width: 480px;
  margin: 0 0 1.1rem;
}

/* --------------------------------- Two ways -------------------------------- */

.ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 1rem;
}

.way-card {
  background: var(--brown-800);
  color: var(--cream-200);
  padding: clamp(2rem, 3vw, 2.75rem);
  border-top: 3px solid var(--gold-500);
  display: flex;
  flex-direction: column;
}

.way-card h3 { font-size: 1.65rem; color: var(--cream-100); margin-bottom: 0.5rem; }

.way-card .tag {
  color: var(--gold-500);
  font-style: italic;
  font-size: 0.98rem;
  margin-bottom: 1.3rem;
}

.way-card p.body {
  color: var(--muted-on-dark);
  margin-bottom: 1.8rem;
  flex: 1;
}

.validation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.validation-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted-on-dark);
  font-size: 0.95rem;
}
.validation-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.way-card blockquote {
  margin: 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(250,246,236,0.12);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-100);
}

.way-card cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

/* ------------------------------- Journeys grid ----------------------------- */

.journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.journey-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  color: var(--cream-100);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  isolation: isolate;
}

.journey-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,22,14,0.05) 30%, rgba(28,22,14,0.92) 100%);
  z-index: -1;
}

.journey-card .num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-400);
  margin-bottom: auto;
}

.journey-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.journey-card .region {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.6rem;
}

.journey-card p {
  font-size: 0.92rem;
  color: var(--cream-300);
  margin: 0 0 1rem;
}

.journey-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.journey-card .days {
  background: var(--gold-500);
  color: var(--brown-950);
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

.journey-card.no-photo {
  background:
    radial-gradient(ellipse at 70% 15%, rgba(212,176,106,0.3) 0%, rgba(212,176,106,0) 55%),
    linear-gradient(160deg, var(--brown-700) 0%, var(--brown-950) 80%) !important;
}
.journey-card.no-photo::before { background: none; }

/* --------------------------------- Aircraft --------------------------------- */

.aircraft {
  position: relative;
  background: url("../images/cessna-front.jpg") center 30% / cover no-repeat;
  color: var(--cream-100);
}
.aircraft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,14,9,0.72) 0%, rgba(18,14,9,0.55) 45%, rgba(18,14,9,0.85) 100%);
}
.aircraft .container { position: relative; z-index: 1; }

.aircraft h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  max-width: 620px;
  margin: 1rem 0 2.5rem;
  color: var(--cream-100);
}

.aircraft-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.aircraft-options .option {
  background: rgba(28,22,14,0.55);
  border: 1px solid rgba(212,176,106,0.35);
  padding: 1.5rem 1.7rem;
  backdrop-filter: blur(3px);
}
.aircraft-options h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.aircraft-options span {
  color: var(--gold-400);
  font-size: 0.85rem;
  font-style: italic;
}

.aircraft p.copy {
  max-width: 680px;
  color: var(--cream-300);
  margin: 0 0 1.1rem;
}

/* ---------------------------------- CTA ------------------------------------ */

.cta {
  position: relative;
  background: url("../images/camps-bay-sunset.jpg") center 68% / cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,14,9,0.35) 0%, rgba(18,14,9,0.15) 55%, rgba(18,14,9,0.55) 100%);
}
.cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  width: 100%;
}

.cta__copy h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--cream-100);
  margin-bottom: 1.3rem;
}
.cta__copy .eyebrow { color: var(--gold-400); margin-bottom: 1rem; display: block; }
.cta__copy p {
  color: var(--cream-200);
  max-width: 480px;
  margin-bottom: 2rem;
}

.cta__panel {
  background: rgba(28, 22, 14, 0.82);
  color: var(--cream-200);
  padding: 2.2rem 2rem;
  align-self: center;
  border-top: 3px solid var(--gold-500);
}
.cta__panel h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.8rem;
}
.cta__panel p { margin: 0.15rem 0; font-size: 0.95rem; }
.cta__panel .block { margin-bottom: 1.4rem; }
.cta__panel .block:last-child { margin-bottom: 0; }

/* ------------------------------- Portal (Pilot Corner) ----------------------- */

.portal-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--brown-800);
  color: var(--cream-200);
}

.portal-hero__content {
  padding: clamp(8rem, 12vw, 10rem) var(--gutter) 4rem;
  max-width: 620px;
}

.portal-hero__content h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  color: var(--cream-100);
  margin: 1rem 0 1.6rem;
}

.portal-hero__content p {
  color: var(--muted-on-dark);
  margin: 0 0 1.3rem;
  max-width: 520px;
}

.portal-hero__note {
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold-500);
  background: rgba(212, 176, 106, 0.07);
  font-size: 0.95rem;
  margin-bottom: 2rem !important;
}

.portal-preview {
  position: relative;
  background: var(--brown-900);
  padding: clamp(6rem, 10vw, 8rem) clamp(1.8rem, 3vw, 3rem) 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  border-left: 1px solid rgba(212,176,106,0.15);
}

.portal-preview__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  opacity: 0.55;
}

.portal-preview__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,176,106,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.portal-preview__row h4 { font-size: 1.02rem; margin-bottom: 0.25rem; color: var(--cream-100); }
.portal-preview__row p { margin: 0; font-size: 0.88rem; color: var(--muted-on-dark); }

.portal-preview__tag {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--gold-500);
  color: var(--brown-950);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

@media (max-width: 980px) {
  .portal-hero { grid-template-columns: 1fr; min-height: auto; }
  .portal-preview { border-left: none; border-top: 1px solid rgba(212,176,106,0.15); }
}

/* --------------------------------- Footer ----------------------------------- */

.site-footer {
  background: var(--brown-950);
  color: var(--muted-on-dark);
  padding: 4rem var(--gutter) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-col .logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream-100);
}
.footer-col .logo span { color: var(--gold-500); }

.footer-tagline {
  margin: 1rem 0 0;
  max-width: 260px;
  font-size: 0.92rem;
  color: var(--gold-400);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 1rem;
}
.footer-col h4:not(:first-child) { margin-top: 1.8rem; }

.footer-col p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a,
.footer-col p a { font-size: 0.9rem; }
.footer-col ul a:hover,
.footer-col p a:hover { color: var(--cream-100); }

.site-footer .copyright {
  border-top: 1px solid rgba(250,246,236,0.08);
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

/* ------------------------------ Journey detail pages ------------------------- */

.journey-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--cream-100);
}
.journey-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0.35) 0%, rgba(20,16,10,0.15) 40%, rgba(20,16,10,0.88) 100%);
}
.journey-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 8rem var(--gutter) 3.5rem;
}
.journey-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.4rem;
}
.journey-hero__back:hover { color: var(--gold-500); }
.journey-hero__inner .region {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-300);
  margin: 1rem 0 0.6rem;
}
.journey-hero__inner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--cream-100);
}
.journey-hero__inner p {
  margin: 1.1rem 0 0;
  max-width: 620px;
  color: var(--cream-200);
  font-size: 1.05rem;
}

.journey-stats {
  background: var(--brown-900);
  color: var(--cream-200);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.journey-stats .stat {
  padding: 1.8rem var(--gutter);
  border-right: 1px solid rgba(250,246,236,0.08);
}
.journey-stats .stat:last-child { border-right: none; }
.journey-stats .stat .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}
.journey-stats .stat .value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream-100);
}

.journey-detail__lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.itinerary-head {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(36,28,18,0.12);
}

.itinerary-days { columns: 2; column-gap: 2.5rem; }
.day-entry {
  break-inside: avoid;
  margin-bottom: 1.8rem;
}
.day-entry h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}
.day-entry p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted-on-light);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.journey-highlights {
  background: var(--brown-800);
  color: var(--cream-200);
  padding: 2.2rem;
  position: sticky;
  top: 6.5rem;
}
.journey-highlights h4 {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 1.5rem;
}
.journey-highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.journey-highlights li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.92rem;
  color: var(--cream-100);
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(250,246,236,0.08);
}
.journey-highlights li:last-child { border-bottom: none; padding-bottom: 0; }
.journey-highlights .icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-highlights .icon svg { width: 16px; height: 16px; }

/* --------------------------------- Route map --------------------------------- */

.route-map__frame {
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream-100);
  border: 1px solid rgba(212, 176, 106, 0.35);
  border-radius: 4px;
  box-shadow: 0 20px 44px rgba(28, 22, 14, 0.16);
  overflow: hidden;
}
.route-map__frame img {
  display: block;
  width: 100%;
  height: auto;
}
.route-map__frame figcaption {
  padding: 1.1rem 1.75rem;
  border-top: 1px solid rgba(212, 176, 106, 0.3);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted-on-light);
  text-align: center;
  line-height: 1.7;
}

.journey-cta {
  background: var(--brown-950);
  color: var(--cream-200);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.journey-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream-100);
  margin-bottom: 1rem;
}
.journey-cta p { color: var(--muted-on-dark); margin: 0 0 2rem; }
.journey-cta .btn { margin: 0 0.4rem; }

.other-journeys {
  background: var(--cream-200);
  padding: 2.5rem var(--gutter);
  border-top: 1px solid rgba(36,28,18,0.08);
}
.other-journeys h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin: 0 0 1rem;
  text-align: center;
}
.other-journeys__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.other-journeys__list a {
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(36,28,18,0.2);
  border-radius: 2px;
  font-size: 0.82rem;
  color: var(--ink);
}
.other-journeys__list a:hover { border-color: var(--gold-600); color: var(--gold-600); }

@media (max-width: 900px) {
  .journey-detail__lower { grid-template-columns: 1fr; }
  .journey-highlights { position: static; }
  .itinerary-days { columns: 1; }
  .journey-stats { grid-template-columns: repeat(2, 1fr); }
  .journey-stats .stat:nth-child(2n) { border-right: none; }
}

/* ------------------------------ Bespoke enquiry modal / multi-step form -------- */

.bespoke-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 14, 9, 0.72);
  align-items: center;
  justify-content: center;
  padding: 2rem 1.2rem;
}
.bespoke-overlay.is-open { display: flex; }

.bespoke-modal {
  position: relative;
  background: var(--cream-100);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-top: 3px solid var(--gold-500);
}

.bespoke-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted-on-light);
  cursor: pointer;
}
.bespoke-modal__close:hover { color: var(--ink); }

.bespoke-modal__intro { margin-bottom: 1.6rem; }
.bespoke-modal__intro .eyebrow { display: block; margin-bottom: 0.5rem; }
.bespoke-modal__intro h2 { font-size: 1.6rem; margin: 0 0 0.4rem; }
.bespoke-modal__intro p { margin: 0; color: var(--muted-on-light); font-size: 0.92rem; }

.bespoke-progress { margin-bottom: 1.8rem; }
.bespoke-progress__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}
.bespoke-progress__track {
  height: 4px;
  background: var(--cream-300);
  border-radius: 2px;
  overflow: hidden;
}
.bespoke-progress__fill {
  height: 100%;
  background: var(--gold-500);
  transition: width 0.3s ease;
  width: 12.5%;
}

.form-step { display: none; }
.form-step.is-active { display: block; }
.form-step h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.form-step .step-desc {
  color: var(--muted-on-light);
  font-size: 0.9rem;
  margin: 0 0 1.2rem;
}

.choice-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.choice-group--multi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.choice-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(36,28,18,0.15);
  border-radius: 2px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice-card:hover { border-color: var(--gold-500); }
.choice-card:has(input:checked) {
  border-color: var(--gold-500);
  background: rgba(212, 176, 106, 0.1);
}
.choice-card input { flex: none; accent-color: var(--gold-600); }

.bespoke-modal .form-field.conditional[hidden] { display: none; }

.bespoke-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(36,28,18,0.1);
}
.bespoke-nav .btn { flex: none; }
.bespoke-nav .spacer { flex: 1; }

.bespoke-modal .form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-600);
  text-align: center;
  display: none;
}
.bespoke-modal .form-status.is-visible { display: block; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted-on-light);
}
.checkbox-field input { margin-top: 0.2rem; accent-color: var(--gold-600); }

@media (max-width: 560px) {
  .choice-group--multi { grid-template-columns: 1fr; }
}

/* ------------------------------ Contact page / form ---------------------------- */

.contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--brown-800);
  color: var(--cream-200);
}
.contact-hero__inner { padding: 8rem var(--gutter) 3rem; max-width: 720px; }
.contact-hero__inner h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream-100);
  margin: 1rem 0 0;
}
.contact-hero__inner p {
  margin: 1.1rem 0 0;
  color: var(--cream-200);
  font-size: 1.05rem;
  max-width: 520px;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.contact-info p { color: var(--muted-on-light); margin: 0 0 2rem; max-width: 380px; }
.contact-info .block { margin-bottom: 1.8rem; }
.contact-info .block h4 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 0.6rem;
}
.contact-info .block a,
.contact-info .block span { display: block; color: var(--ink); font-size: 0.95rem; }

.contact-form {
  background: var(--cream-100);
  border: 1px solid rgba(36,28,18,0.1);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream-200);
  border: 1px solid rgba(36,28,18,0.15);
  border-radius: 2px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field .char-count {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted-on-light);
  text-align: right;
}
.form-field .field-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #a33b3b;
}
.form-field.has-error input { border-color: #a33b3b; }
.form-field.has-error .field-error { display: block; }

.contact-form .btn { width: 100%; justify-content: center; }
.contact-form .form-status {
  display: none;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-600);
  text-align: center;
}
.contact-form .form-status.is-visible { display: block; }

@media (max-width: 780px) {
  .contact-section .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ------------------------------ Destinations pages ---------------------------- */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.destinations-grid .journey-card:nth-child(4),
.destinations-grid .journey-card:nth-child(5) {
  grid-column: span 1;
}
@media (min-width: 901px) {
  .destinations-grid { grid-template-columns: repeat(6, 1fr); }
  .destinations-grid .journey-card { grid-column: span 2; }
  .destinations-grid .journey-card:nth-child(4) { grid-column: 2 / span 2; }
  .destinations-grid .journey-card:nth-child(5) { grid-column: 4 / span 2; }
}

.dest-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--cream-100);
}
.dest-hero.no-photo {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,176,106,0.28) 0%, rgba(212,176,106,0) 55%),
    linear-gradient(160deg, var(--brown-700) 0%, var(--brown-950) 75%);
}
.dest-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0.3) 0%, rgba(20,16,10,0.1) 40%, rgba(20,16,10,0.88) 100%);
}
.dest-hero.no-photo::before { content: none; }
.dest-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 8rem var(--gutter) 3.5rem;
}
.dest-hero__inner .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.4rem;
}
.dest-hero__inner .back-link:hover { color: var(--gold-500); }
.dest-hero__inner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--cream-100);
  margin: 1rem 0 0;
}
.dest-hero__inner p {
  margin: 1.1rem 0 0;
  max-width: 600px;
  color: var(--cream-200);
  font-size: 1.05rem;
}

.dest-tabs { background: var(--cream-200); }

.dest-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(36,28,18,0.12);
  margin-bottom: 2.5rem;
  padding-top: 3rem;
}
.dest-tab-btn {
  font-family: var(--font-sans);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.dest-tab-btn:hover { color: var(--ink); }
.dest-tab-btn.is-active {
  color: var(--gold-600);
  border-bottom-color: var(--gold-500);
}

.dest-tab-panel { display: none; padding-bottom: 4rem; }
.dest-tab-panel.is-active { display: block; }

.dest-tab-panel .intro {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 780px;
  margin: 0 0 2rem;
}

.dest-subsection { max-width: 820px; margin-bottom: 1.8rem; }
.dest-subsection h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}
.dest-subsection p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: var(--muted-on-light);
  max-width: 780px;
}
.dest-subsection ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted-on-light);
  font-size: 0.92rem;
}
.dest-subsection li { margin-bottom: 0.35rem; }

@media (max-width: 640px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-tabs__nav { padding-top: 2rem; gap: 0; }
  .dest-tab-btn { padding: 0.7rem 0.7rem; font-size: 0.72rem; }
}

/* ------------------------------ Reveal-on-scroll ---------------------------- */

/* Hidden-until-scrolled state only applies once JS confirms it can reveal
   the element again — keeps content visible with no JS / before it runs. */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------- Responsive ------------------------------ */

@media (max-width: 980px) {
  .hero__image { padding-top: 6rem; padding-bottom: 4rem; }
  .scroll-cue { display: none; }
  .split, .split--story, .split--services { grid-template-columns: 1fr; }
  .ways { grid-template-columns: 1fr; }
  .journeys-grid { grid-template-columns: repeat(2, 1fr); }
  .aircraft-options { grid-template-columns: 1fr; }
  .cta .container { grid-template-columns: 1fr; }
  .cta__panel { margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-col--brand { grid-column: 1 / -1; }

  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 64px;
    right: 1.25rem;
    left: 1.25rem;
    background: rgba(28, 22, 14, 0.97);
    border: 1px solid rgba(212, 176, 106, 0.2);
    padding: 0.5rem 0;
    box-shadow: 0 16px 34px rgba(0,0,0,0.35);
  }
  .nav__links.is-open { display: flex; }
  .nav__links > li > a { display: flex; justify-content: space-between; padding: 0.9rem 1.4rem; }

  .has-submenu > .submenu {
    position: static;
    opacity: 1;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: none;
    background: rgba(0,0,0,0.15);
    border: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    transition: height 0.25s ease;
  }
  .has-submenu.open > .submenu {
    visibility: visible;
    height: auto;
    padding: 0.3rem 0 0.6rem;
  }
  .submenu a { padding: 0.65rem 2rem; }

  .nav__toggle { display: block; }
}

@media (max-width: 640px) {
  .journeys-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: auto; }
}
