:root {
  --ink: #1b2740;
  --ink-soft: #3a4863;
  --parchment: #f5efe4;
  --parchment-deep: #ece2d0;
  --copper: #9c6b4f;
  --copper-light: #b98a6c;
  --hairline: #c9bca6;
  --paper-white: #fbf8f1;
  --measure: 34rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Commissioner", system-ui, sans-serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 340;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark { font-family: "Yeseva One", Georgia, serif; font-weight: 400; line-height: 1.08; }

a { color: inherit; }

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

.wrap { width: min(92%, 1180px); margin-inline: auto; }

.hairline { border: 0; border-top: 1px solid var(--hairline); margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--parchment) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.wordmark {
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.wordmark sup { font-size: 0.5em; color: var(--copper); font-family: "Commissioner", sans-serif; letter-spacing: 0.18em; vertical-align: super; }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--copper); }

.lang-switch { display: flex; gap: 0.15rem; align-items: center; }
.lang-switch button {
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  text-transform: uppercase;
  transition: color 0.2s;
}
.lang-switch button[aria-pressed="true"] { color: var(--copper); font-weight: 600; }
.lang-switch button:hover { color: var(--ink); }
.lang-sep { color: var(--hairline); font-size: 0.7rem; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.hero-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.6rem;
}
.hero-title {
  font-size: clamp(2.7rem, 6.5vw, 5.1rem);
  letter-spacing: 0.005em;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--copper); }
.hero-lede {
  max-width: var(--measure);
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-white);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--copper); border-color: var(--copper); }
.btn-ghost { background: none; color: var(--ink); border-color: var(--hairline); }
.btn-ghost:hover { background: none; color: var(--copper); border-color: var(--copper); }
.btn-link {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.2rem;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--copper); }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.94);
}
.hero-figure figcaption {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}

/* ---------- Section intro ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; margin-bottom: 2.8rem; }
.section-num { font-family: "Yeseva One", serif; color: var(--copper); font-size: 1rem; letter-spacing: 0.1em; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-note { max-width: 22rem; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Journeys index ---------- */
.journeys { border-top: 1px solid var(--ink); }
.journey {
  display: grid;
  grid-template-columns: 4.5rem 1.2fr 2fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s, padding-left 0.25s;
}
.journey:hover { background: var(--paper-white); padding-left: 0.8rem; }
.journey-num { font-family: "Yeseva One", serif; color: var(--copper); font-size: 1.15rem; }
.journey-dest { font-family: "Yeseva One", serif; font-size: 1.5rem; }
.journey-region { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.35rem; }
.journey-desc { font-size: 0.98rem; color: var(--ink-soft); }
.journey-meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); white-space: nowrap; }

/* ---------- Photo bands ---------- */
.band { margin: 0; }
.band figure { margin: 0; }
.band img {
  width: 100%;
  height: clamp(320px, 52vh, 560px);
  object-fit: cover;
}
.band figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.band figcaption .cap-place { color: var(--ink); }

.band-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.band-split img { height: clamp(300px, 46vh, 480px); }

/* ---------- How it works ---------- */
.steps { counter-reset: step; max-width: 50rem; }
.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.4rem;
  padding: 1.7rem 0;
  border-top: 1px solid var(--hairline);
}
.step:first-child { border-top: 1px solid var(--ink); }
.step-num { font-family: "Yeseva One", serif; color: var(--copper); font-size: 1.5rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.99rem; max-width: var(--measure); }

/* ---------- Quote ---------- */
.quote { background: var(--ink); color: var(--paper-white); padding: clamp(3.5rem, 8vw, 6rem) 0; }
.quote blockquote {
  font-family: "Yeseva One", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  max-width: 40rem;
}
.quote blockquote em { color: var(--copper-light); font-style: italic; }
.quote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: "Commissioner", sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
}

/* ---------- Closing CTA ---------- */
.cta-band { background: var(--parchment-deep); padding: clamp(3.5rem, 7vw, 5.5rem) 0; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.2rem; }
.cta-band p { max-width: 34rem; margin: 0 auto 2rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdd3df; padding: clamp(2.8rem, 5vw, 4rem) 0 2.2rem; font-size: 0.86rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.2rem; align-items: flex-start; }
.footer-brand .wordmark { color: var(--paper-white); font-size: 1.4rem; }
.footer-legal { line-height: 1.95; }
.footer-legal a { color: var(--copper-light); }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cdd3df;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--copper-light); }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: #9aa4b8; }

/* ---------- Legal pages ---------- */
.legal-main { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.legal-main .wrap { max-width: 46rem; }
.legal-eyebrow { font-size: 0.76rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; }
.legal-main h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 0.6rem; }
.legal-updated { color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 2.5rem; }
.legal-main h2 { font-size: 1.4rem; margin: 2.4rem 0 0.7rem; }
.legal-main p, .legal-main li { color: var(--ink-soft); margin-bottom: 0.9rem; }
.legal-main ul { padding-left: 1.3rem; }
.legal-back { display: inline-block; margin-bottom: 2.5rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--copper); }
.legal-back:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img { aspect-ratio: 4 / 3; }
  .journey { grid-template-columns: 3rem 1fr; gap: 0.6rem 1rem; }
  .journey-desc, .journey-meta { grid-column: 2; }
  .journey-meta { margin-top: 0.4rem; }
  .band-split { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; gap: 0.8rem; }
}

@media (max-width: 620px) {
  .site-nav .nav-links { display: none; }
  .footer-top { flex-direction: column; }
}
