:root {
  --offwhite: #f6f2ea;
  --paper: #fbf8f2;
  --taupe: #c9bca6;
  --stone: #a99c87;
  --sage: #8a9a78;
  --sage-deep: #6f7e5f;
  --walnut: #5a4632;
  --ink: #3a2e22;
  --accent: #b5713c;
  --line: rgba(90, 70, 50, 0.16);
  --serif: "Rozha One", Georgia, "Times New Roman", serif;
  --sans: "Heebo", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.75;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--walnut);
  letter-spacing: 0.2px;
}

p { margin: 0 0 1.2em; }

a { color: var(--walnut); text-decoration: none; }
a:hover { color: var(--accent); }

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.1em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--walnut);
  letter-spacing: 0.5px;
}
.brand img { width: 34px; height: 34px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}

.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-switch button {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  cursor: pointer;
  padding: 4px 6px;
  text-transform: uppercase;
}
.lang-switch button.active { color: var(--walnut); font-weight: 600; }
.lang-switch button:hover { color: var(--accent); }
.lang-sep { color: var(--line); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.96);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,46,34,0.62) 0%, rgba(58,46,34,0.15) 45%, rgba(58,46,34,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--paper);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px 88px;
  width: 100%;
}
.hero .eyebrow { color: #e7ddc9; }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  max-width: 14ch;
  margin: 0 0 0.5em;
}
.hero-lede {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 46ch;
  color: #f2ebdc;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid var(--walnut);
  background: var(--walnut);
  color: var(--paper);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: rgba(246,242,234,0.7);
  color: var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--walnut); border-color: var(--paper); }

/* ---------- Narrative sections ---------- */
section { padding: 110px 0; }

.intro { text-align: center; }
.intro .wrap { max-width: 760px; }
.intro h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin: 0 0 0.6em;
}
.intro p { font-size: 1.15rem; color: var(--ink); }

/* alternating photo + text rows */
.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.spread.reverse .spread-text { order: 2; }
.spread.reverse .spread-media { order: 1; }
.spread + .spread { margin-top: 120px; }
.spread-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.spread-text h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 0.7em;
}
.spread-text p { color: #4a3c2d; }

.section-sage { background: var(--paper); }
.section-stone { background: #efe8dc; }

/* ---------- Stages narrative ---------- */
.stages { background: var(--walnut); color: var(--paper); }
.stages h2 { color: var(--paper); }
.stages .eyebrow { color: var(--sage); }
.stages-head { max-width: 640px; margin: 0 0 70px; }
.stages-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.stages-head p { color: #e0d6c3; }

.stage {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 46px 0;
  border-top: 1px solid rgba(246,242,234,0.18);
  align-items: baseline;
}
.stage:last-child { border-bottom: 1px solid rgba(246,242,234,0.18); }
.stage-num {
  font-family: var(--serif);
  font-size: 3.6rem;
  color: var(--sage);
  line-height: 1;
}
.stage-body h3 {
  color: var(--paper);
  font-size: 1.7rem;
  margin: 0 0 0.4em;
}
.stage-body p { color: #ddd2bf; margin: 0; max-width: 60ch; }

/* ---------- Route / map ---------- */
.route .wrap { max-width: 980px; text-align: center; }
.route h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 0.5em; }
.route > .wrap > p { max-width: 60ch; margin: 0 auto 3em; color: #4a3c2d; }
.map-frame {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px;
}
.map-frame svg { width: 100%; height: auto; display: block; }
.route-legend {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--stone);
}
.route-legend span { display: inline-flex; align-items: center; gap: 9px; }
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }

/* ---------- Pull quote ---------- */
.quote {
  background: var(--sage-deep);
  color: var(--paper);
  text-align: center;
}
.quote .wrap { max-width: 880px; }
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.32;
  margin: 0 0 0.9em;
  color: var(--paper);
}
.quote .attrib {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d8e0cc;
}

/* ---------- Closing CTA ---------- */
.closing { text-align: center; background: var(--offwhite); }
.closing .wrap { max-width: 680px; }
.closing h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 0 0 0.6em; }
.closing p { color: #4a3c2d; margin-bottom: 2.2em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8cfc0;
  padding: 64px 0 48px;
  font-size: 0.92rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 22px;
}
.footer-brand img { width: 30px; height: 30px; }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer a { color: #d8cfc0; }
.site-footer a:hover { color: var(--accent); }
.footer-legal {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(246,242,234,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}
.footer-legal .copy { color: #9a8f7e; }
.footer-links { display: flex; gap: 8px 18px; flex-wrap: wrap; }
.footer-links a { letter-spacing: 0.05em; }
.footer-sep { color: rgba(246,242,234,0.3); }

/* ---------- Legal pages ---------- */
.legal-main { padding: 80px 0 60px; }
.legal-main .wrap { max-width: 780px; }
.legal-main h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 0.3em;
}
.legal-main .updated { color: var(--stone); font-size: 0.9rem; margin-bottom: 2.4em; }
.legal-main h2 {
  font-size: 1.5rem;
  margin: 2em 0 0.5em;
}
.legal-main p, .legal-main li { color: #4a3c2d; }
.legal-main ul { padding-left: 1.2em; }
.back-home {
  display: inline-block;
  margin-bottom: 2.5em;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .spread { grid-template-columns: 1fr; gap: 36px; }
  .spread.reverse .spread-text,
  .spread.reverse .spread-media { order: initial; }
  .spread + .spread { margin-top: 80px; }
  .stage { grid-template-columns: 70px 1fr; gap: 22px; }
  .stage-num { font-size: 2.6rem; }
  section { padding: 76px 0; }
  .hero { min-height: 80vh; }
  .header-inner { padding: 14px 20px; }
  .wrap { padding: 0 22px; }
}
