/* ==========================================================================
   Real Cambodia Tours — site stylesheet
   Display: Aboreto  ·  Prose: Spectral  ·  UI: Poppins
   ========================================================================== */

:root {
  /* Temple stone at first light: shadowed sandstone, laterite gold, moss */
  --ink:        #111110;
  --ink-2:      #1B1A17;
  --ink-3:      #272420;
  --sand:       #F4EFE6;
  --sand-2:     #E8DFCF;
  --gold:       #C08A2E;
  --gold-lt:    #DCA94A;
  --jade:       #3E5D4C;
  --jade-lt:    #5B8069;
  --stone:      #8B8477;
  --stone-lt:   #B6AFA2;

  --display: "Aboreto", "Times New Roman", serif;
  --prose:   "Spectral", Georgia, serif;
  --ui:      "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink-2);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

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

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-family: var(--ui);
  font-size: 14px;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ------------------------------------------------------------ typography */

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.12;
  text-transform: uppercase;
}

.d-xxl { font-size: clamp(2.4rem, 7.4vw, 5rem); letter-spacing: 0.045em; }
.d-xl  { font-size: clamp(2rem, 5vw, 3.3rem); }
.d-lg  { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.d-md  { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.d-sm  { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }

.eyebrow {
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow.on-light { color: #9A6D1E; }

.prose {
  font-family: var(--prose);
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  color: #3A362F;
}
.prose.on-dark { color: var(--stone-lt); }
.prose .lead {
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  line-height: 1.55;
  color: var(--ink-2);
}
.prose.on-dark .lead { color: var(--sand); }
.prose em { color: #6B4E12; font-style: italic; }
.prose.on-dark em { color: var(--gold-lt); }
.prose a { color: #8A6114; text-decoration: underline; text-underline-offset: 3px; }
.prose.on-dark a { color: var(--gold-lt); }

/* Khmer lintel motif — a hairline rule broken by a small lozenge */
.rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  background: currentColor;
  opacity: 0.28;
}
/* Left-aligned: a short rule closed by the lozenge. Centred: rule either side. */
.rule::before { flex: 0 0 56px; }
.rule::after { flex: 0 0 0; }
.rule.center::before, .rule.center::after { flex: 1; }
.rule i {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* ---------------------------------------------------------------- layout */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap.narrow { max-width: 800px; }

.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(44px, 6vw, 72px); }
.section.dark { background: var(--ink); color: var(--sand); }
.section.ink2 { background: var(--ink-2); color: var(--sand); }
.section.sand2 { background: var(--sand-2); }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}
/* The blur lives on a pseudo-element, not on .site-header itself: an element
   with backdrop-filter becomes the containing block for fixed-position
   descendants, which would collapse the fixed mobile nav panel inside it. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 17, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand img { height: 46px; width: auto; }
.brand span {
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1.25;
  max-width: 8.5em;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a, .nav button.navlink {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-lt);
  text-decoration: none;
  padding: 10px 14px;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.nav a:hover, .nav button.navlink:hover { color: var(--sand); }
.nav a[aria-current="page"] { color: var(--gold-lt); }

.has-menu { position: relative; }
.has-menu > button { display: inline-flex; align-items: center; gap: 7px; }
.has-menu > button svg { width: 9px; height: 9px; transition: transform 0.25s var(--ease); }
.has-menu[data-open="true"] > button svg { transform: rotate(180deg); }
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 236px;
  background: var(--ink-2);
  border: 1px solid rgba(244, 239, 230, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-menu[data-open="true"] .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu a { display: block; padding: 11px 14px; letter-spacing: 0.1em; }
.submenu a:hover { background: rgba(192, 138, 46, 0.14); color: var(--gold-lt); }

.header-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding: 11px 20px;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  font-family: var(--ui);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.header-cta:hover { background: var(--gold); color: var(--ink); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  background: none;
  border: 1px solid rgba(244, 239, 230, 0.22);
  color: var(--sand);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 1px;
  background: currentColor;
  transition: transform 0.28s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  color: var(--sand);
  overflow: hidden;
}
.hero.compact { min-height: min(58vh, 520px); }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.94) 0%, rgba(17,17,16,0.55) 42%, rgba(17,17,16,0.35) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(48px, 8vw, 92px); }
.hero-inner { max-width: 720px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .sub {
  display: block;
  font-size: 0.3em;
  letter-spacing: 0.34em;
  color: var(--gold-lt);
  margin-bottom: 18px;
}
.hero .tagline {
  font-family: var(--prose);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.55;
  color: var(--stone-lt);
  max-width: 34em;
  margin-bottom: 32px;
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-ghost { border-color: rgba(244, 239, 230, 0.4); color: var(--sand); }
.btn-ghost:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.btn-dark { border-color: var(--ink-2); color: var(--ink-2); }
.btn-dark:hover { background: var(--ink-2); color: var(--sand); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.25s var(--ease);
}
.textlink:hover { gap: 16px; }

/* ------------------------------------------------------------ tour cards */

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(244, 239, 230, 0.1);
  color: var(--sand);
}
.tour-card__media { position: absolute; inset: 0; z-index: 0; }
.tour-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.9s var(--ease);
}
.tour-card:hover .tour-card__media img { transform: scale(1.06); }
.tour-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.96) 30%, rgba(17,17,16,0.66) 60%, rgba(17,17,16,0.12) 100%);
}
.tour-card__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 28px 26px 26px;
}
.tour-card h3 { margin-bottom: 16px; }

.spec {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.spec li {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone-lt);
  border: 1px solid rgba(244, 239, 230, 0.22);
  padding: 5px 11px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
}
.price b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.72rem;
  letter-spacing: 0.02em;
  color: var(--gold-lt);
}
.price span {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone);
}

.includes { margin-bottom: 22px; }
.includes li {
  position: relative;
  padding-left: 20px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--stone-lt);
  margin-bottom: 6px;
}
.includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.tour-card .btn-row { gap: 10px; }
.tour-card .btn { padding: 13px 22px; font-size: 0.7rem; flex: 1 1 auto; }

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

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.split + .split { margin-top: clamp(48px, 7vw, 96px); }
.split.reverse .split__media { order: 2; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
}
.split h2, .split h3 { margin-bottom: 20px; }

/* --------------------------------------------- price ladder (signature) -- */

.ladder { margin: 0 0 26px; }
.ladder__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.18);
}
.ladder__head h4 {
  font-family: var(--display);
  font-size: 0.94rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ladder__head span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.ladder__row {
  display: grid;
  grid-template-columns: 5.6em 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 17, 16, 0.09);
}
.ladder__size {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5C564B;
}
.ladder__bar {
  height: 3px;
  background: rgba(17, 17, 16, 0.1);
  position: relative;
}
.ladder__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--gold);
  display: block;
  transform-origin: left center;
}
.ladder__price {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  color: var(--ink-2);
  white-space: nowrap;
}
/* Open-ended row: a dashed track, so it never reads as the highest price. */
.ladder__row.ask .ladder__bar {
  background: repeating-linear-gradient(90deg,
    rgba(17, 17, 16, 0.16) 0 5px, transparent 5px 11px);
}
.ladder__row.ask .ladder__price { font-size: 0.76rem; letter-spacing: 0.13em; color: var(--jade); }
.ladder__foot {
  font-size: 0.8rem;
  color: #5C564B;
  margin-top: 14px;
  font-family: var(--prose);
  font-style: italic;
}

/* ------------------------------------------------------------ fact lists */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin: 0 0 8px;
}
.facts h4 {
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A6D1E;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.14);
}
.facts ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 9px;
  color: #3A362F;
}
.facts ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.66em;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}
.facts .excluded li::before { background: none; border: 1px solid var(--stone); }

/* ---------------------------------------------------------- at-a-glance */

.glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(17, 17, 16, 0.14);
  border: 1px solid rgba(17, 17, 16, 0.14);
  margin-bottom: clamp(36px, 5vw, 52px);
}
.glance div { background: var(--sand); padding: 20px 22px; }
.glance dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.glance dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ------------------------------------------------------------------ team */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card { background: var(--ink-2); border: 1px solid rgba(244, 239, 230, 0.1); }
.team-card figure { margin: 0; overflow: hidden; }
.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.35);
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}
.team-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.team-card__body { padding: 20px 22px 24px; }
.team-card h3 { margin-bottom: 6px; color: var(--sand); }
.team-card .role {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-card p.bio {
  font-family: var(--prose);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--stone-lt);
  margin-top: 14px;
}

/* ---------------------------------------------------------- testimonials */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.quote {
  border: 1px solid rgba(244, 239, 230, 0.14);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.quote blockquote {
  margin: 0 0 20px;
  font-family: var(--prose);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--sand);
}
.quote blockquote::before {
  content: "";
  display: block;
  width: 26px; height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}
.quote cite {
  margin-top: auto;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ------------------------------------------------------------ itinerary */

.trip-list { display: grid; gap: 1px; background: rgba(244, 239, 230, 0.14); border: 1px solid rgba(244, 239, 230, 0.14); }
.trip {
  background: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(20px, 3vw, 32px);
  transition: background 0.3s var(--ease);
}
.trip:hover { background: var(--ink-3); }
.trip__len {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--gold-lt);
  flex: 0 0 3.4em;
}
.trip__name { flex: 1 1 260px; }
.trip__name h3 { font-size: 1.05rem; letter-spacing: 0.1em; margin-bottom: 6px; }
.trip__name p { font-size: 0.85rem; color: var(--stone); margin: 0; }
.trip .btn { flex: none; }

/* ---------------------------------------------------------------- forms */

.form-card {
  background: var(--sand);
  border: 1px solid rgba(17, 17, 16, 0.14);
  padding: clamp(26px, 4vw, 44px);
}
.field { margin-bottom: 22px; }
.field > label, .fieldset > legend {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5C564B;
  margin-bottom: 10px;
  padding: 0;
}
.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  font-family: var(--ui);
  font-size: 0.95rem;
  color: var(--ink-2);
  background: #FFFDF9;
  border: 1px solid rgba(17, 17, 16, 0.2);
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }

.fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.choices { display: flex; flex-wrap: wrap; gap: 9px; }
.choices label {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  border: 1px solid rgba(17, 17, 16, 0.2);
  padding: 9px 15px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.choices input { position: absolute; opacity: 0; pointer-events: none; }
.choices label:hover { border-color: var(--gold); }
.choices input:focus-visible + span { outline: 2px solid var(--gold-lt); outline-offset: 4px; }
.choices label:has(input:checked) { background: var(--ink-2); border-color: var(--ink-2); color: var(--sand); }

.form-note {
  font-family: var(--prose);
  font-size: 0.88rem;
  font-style: italic;
  color: #5C564B;
  margin-top: 16px;
}

.contact-rail { display: grid; gap: 1px; background: rgba(244, 239, 230, 0.16); border: 1px solid rgba(244, 239, 230, 0.16); }
.contact-rail a, .contact-rail div {
  background: var(--ink);
  padding: 24px 26px;
  text-decoration: none;
  display: block;
  transition: background 0.28s var(--ease);
}
.contact-rail a:hover { background: var(--ink-3); }
.contact-rail dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.contact-rail dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--sand);
  line-height: 1.4;
  text-transform: uppercase;
}
.contact-rail dd.plain { font-family: var(--ui); text-transform: none; letter-spacing: 0.02em; font-size: 0.95rem; }

/* -------------------------------------------------------------- callout */

.callout {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 26px 0;
  font-family: var(--prose);
  font-size: 0.96rem;
  line-height: 1.7;
  color: #3A362F;
}
.callout strong { font-family: var(--ui); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 8px; color: #9A6D1E; font-weight: 500; }

/* --------------------------------------------------------- legal / terms */

.legal h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 52px 0 6px;
  padding-top: 26px;
  border-top: 1px solid rgba(17, 17, 16, 0.16);
}
.legal h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal h3 {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9A6D1E;
  margin: 30px 0 10px;
}
.legal ul { margin: 0 0 1.1em; }
.legal ul li { position: relative; padding-left: 20px; margin-bottom: 7px; }
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

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

.cta-band {
  background: var(--jade);
  color: var(--sand);
  text-align: center;
}
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { max-width: 46em; margin-inline: auto; margin-bottom: 30px; color: rgba(244, 239, 230, 0.82); font-family: var(--prose); font-size: 1.05rem; line-height: 1.7; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-gold:hover { background: var(--sand); }

/* ---------------------------------------------------------------- footer */

.site-footer { background: var(--ink); color: var(--stone-lt); padding-top: clamp(56px, 7vw, 84px); }
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; text-decoration: none; color: var(--stone-lt); transition: color 0.22s var(--ease); }
.footer-col a:hover { color: var(--sand); }
.footer-brand img { height: 66px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-family: var(--prose); font-size: 0.92rem; line-height: 1.7; color: var(--stone); }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.22);
  color: var(--stone-lt);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.socials a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

.partner { margin-top: 24px; }
.partner span { display: block; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; }
.partner img { height: 52px; width: auto; opacity: 0.85; transition: opacity 0.25s; }
.partner a:hover img { opacity: 1; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  font-size: 0.78rem;
  color: var(--stone);
}
.footer-bottom a { text-decoration: none; color: var(--stone); }
.footer-bottom a:hover { color: var(--sand); }

/* ------------------------------------------------------------- 404 page */

.error-page { min-height: 70vh; display: flex; align-items: center; text-align: center; background: var(--ink); color: var(--sand); }
.error-page .code { font-family: var(--display); font-size: clamp(4rem, 16vw, 9rem); color: var(--gold); letter-spacing: 0.06em; line-height: 1; margin-bottom: 20px; }

/* ---------------------------------------------------------- scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 980px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    padding: 20px var(--gutter) 40px;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.36s var(--ease), opacity 0.3s var(--ease), visibility 0.36s;
  }
  body.nav-open .nav { transform: none; opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  .nav a, .nav button.navlink {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding: 17px 0;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  }
  .has-menu > button { justify-content: space-between; }
  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    background: none;
    border: 0;
    padding: 0 0 0 16px;
    display: none;
  }
  .has-menu[data-open="true"] .submenu { display: block; transform: none; }
  .submenu a { font-size: 0.85rem; padding: 13px 0; }
  /* Must out-specify `.nav a`, which sets a hairline border-bottom. */
  .nav .header-cta {
    margin: 24px 0 0;
    justify-content: center;
    padding: 17px 20px;
    border: 1px solid var(--gold);
    font-size: 0.8rem;
  }
  .brand span { font-size: 0.78rem; }
  .brand img { height: 38px; }
}

@media (max-width: 640px) {
  .hero { min-height: min(78vh, 620px); }
  .split.reverse .split__media { order: 0; }
  .tour-card { min-height: 480px; }
  .btn { padding: 15px 24px; }
  .tour-card .btn { flex: 1 1 100%; }
  .ladder__row { grid-template-columns: 4.8em 1fr auto; gap: 12px; }
  .trip { gap: 14px; }
  .trip .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .nav-toggle, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}
