/* ============================================================
   BA-REISEN — Reisen mit Seele
   Atmospheric, archival, quiet-luxury system
   ============================================================ */

:root {
  --ink:        #17120b;   /* warm near-black */
  --ink-2:      #221a10;
  --ink-soft:   #2e2417;
  --papyrus:    #f4ecdd;   /* warm ivory body */
  --papyrus-2:  #ece0c9;
  --paper:      #faf5ea;
  --gold:       #b3892f;
  --gold-2:     #cda450;
  --gold-bright:#e2c378;
  --clay:       #a8512f;
  --nile:       #2a4a52;
  --green:      #2f7d4f;   /* from the Ba-logo wing */
  --green-2:    #3c9a62;
  --green-soft: #d8e6da;
  --muted:      #6e604a;
  --muted-2:    #8a7a5e;
  --line:       rgba(23,18,11,0.14);
  --line-soft:  rgba(23,18,11,0.08);
  --line-gold:  rgba(179,137,47,0.35);
  --on-dark:    #ece2cf;
  --on-dark-mut:#a99c80;
  --line-dark:  rgba(236,226,207,0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--papyrus);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.eyebrow--dark { color: var(--gold-2); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }

.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 8.5vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.h2 { font-size: clamp(32px, 5vw, 64px); line-height: 1.02; }
.lead { font-size: clamp(19px, 2.2vw, 26px); line-height: 1.5; font-weight: 400; color: var(--muted); }

.serif-it { font-style: italic; }

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

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20,15,8,0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--on-dark); }
.brand__mark {
  width: 44px; height: 44px; flex: none; position: relative;
  border-radius: 50%; overflow: hidden;
  background: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px var(--line-gold), 0 6px 18px -8px rgba(0,0,0,0.5);
  transition: transform .4s var(--ease);
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.brand:hover .brand__mark { transform: rotate(-4deg) scale(1.04); }
.brand__name { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: 0.06em; line-height: 1; }
.brand__sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-mut); margin-top: 4px; white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--on-dark);
  letter-spacing: 0.01em; position: relative; padding: 4px 0;
  opacity: 0.82; transition: opacity .3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold-2); transition: width .35s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { width: 100%; }
.nav__link.is-active { opacity: 1; color: var(--gold-2); }
.nav__link.is-active::after { width: 100%; }
.drawer a.is-active span:last-child { color: var(--gold-2); font-style: italic; }

/* outbound nav link (separate page — never part of scroll-spy) */
.nav__link--out {
  margin-left: 4px; padding-left: 22px; opacity: 0.62;
  border-left: 1px solid color-mix(in srgb, var(--on-dark) 22%, transparent);
}
.nav__link--out::before {
  content: "↗"; margin-right: 6px; font-size: 12px; opacity: 0.85;
}
.drawer__out { opacity: 0.7; }
.drawer__out span:first-child { color: var(--gold-2); }

.nav__cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); background: var(--gold-2);
  padding: 11px 20px; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav__cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* language toggle */
.lang {
  display: inline-flex; align-items: center; border: 1px solid var(--line-gold);
  border-radius: 100px; overflow: hidden; flex: none;
}
.lang button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; font-weight: 500;
  color: var(--on-dark-mut); padding: 8px 12px; transition: color .3s var(--ease), background .3s var(--ease);
}
.lang button.on { color: var(--ink); background: var(--gold-2); }
.lang button:not(.on):hover { color: var(--on-dark); }

.nav__toggle { display: none; width: 40px; height: 40px; position: relative; }
.nav__toggle span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--on-dark); transition: .35s var(--ease); }
.nav__toggle span:nth-child(1){ top: 15px; }
.nav__toggle span:nth-child(2){ bottom: 15px; }
body.menu-open .nav__toggle span:nth-child(1){ top: 19px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2){ bottom: 19px; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--pad);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer a {
  font-family: var(--serif); font-size: clamp(30px, 8vw, 52px); font-weight: 600;
  padding: 8px 0; border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(14px); transition: .5s var(--ease);
}
body.menu-open .drawer a { opacity: 1; transform: none; }
.drawer a span { font-family: var(--mono); font-size: 12px; color: var(--gold-2); letter-spacing: 0.2em; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; min-height: 100svh;
  background: var(--ink);
  color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  padding-top: clamp(120px, 20vh, 220px);
  padding-bottom: clamp(64px, 10vh, 104px);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .ph { width: 100%; height: 100%; place-items: stretch; }
.hero__media .ph__label { position: absolute; right: 16px; bottom: 16px; font-size: 10px; opacity: 0.7; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,6,0.55) 0%, rgba(15,11,6,0.25) 35%, rgba(15,11,6,0.7) 78%, rgba(15,11,6,0.96) 100%),
    radial-gradient(120% 80% at 70% 18%, rgba(180,140,60,0.16), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__top {
  position: absolute; top: clamp(96px, 16vh, 150px); left: var(--pad); right: var(--pad); z-index: 2;
  display: none; justify-content: space-between; align-items: flex-start; gap: 20px;
}
@media (min-height: 760px){ .hero__top { display: flex; } }
.hero__loc { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; color: var(--on-dark-mut); text-transform: uppercase; max-width: 230px; line-height: 1.7; }
.hero__loc b { color: var(--gold-2); font-weight: 500; }

.hero__eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero__eyebrow::before { content:""; width: 38px; height: 1px; background: var(--line-gold); }

.hero__title { color: var(--paper); }
.hero__title em { font-style: italic; color: var(--gold-2); }
.hero__sub {
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 30px); font-weight: 500;
  font-style: italic; color: var(--on-dark); margin-top: 18px; max-width: 24ch;
}
.hero__row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 34px; margin-top: 40px; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn--gold { background: var(--gold-2); color: var(--ink); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line-gold); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--gold-2); background: rgba(205,164,80,0.08); }
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--text { font-size: 15px; font-weight: 600; color: var(--on-dark); display: inline-flex; align-items: center; gap: 10px; }
.btn--text .btn__arrow { color: var(--gold-2); }

.hero__scroll {
  position: absolute; left: var(--pad); bottom: 26px; z-index: 3;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--on-dark-mut); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll i { width: 1px; height: 40px; background: linear-gradient(var(--gold-2), transparent); animation: scrollpulse 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100%{ transform: scaleY(0.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }
@media (max-height: 720px){ .hero__scroll { display: none; } }

/* ===========================================================
   PLACEHOLDER (imagery)
   =========================================================== */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 11px),
    var(--ph-bg, var(--papyrus-2));
  display: grid; place-items: center;
}
.ph--dark { --ph-bg: #221a10; background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 13px),
    radial-gradient(120% 120% at 30% 20%, #2c2113, #16100a); }
.ph__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2); border: 1px solid var(--line); padding: 7px 13px; border-radius: 2px;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(2px);
}
.ph--dark .ph__label { color: var(--on-dark-mut); border-color: var(--line-dark); background: rgba(0,0,0,0.25); }

/* ===========================================================
   MANIFESTO
   =========================================================== */
.manifesto { padding: clamp(80px, 13vh, 168px) 0; background: var(--papyrus); }
.manifesto__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); }
.manifesto__words {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 4.4vw, 58px); line-height: 1.18; letter-spacing: -0.01em;
  max-width: 18ch;
}
.manifesto__words .b { color: var(--clay); font-style: italic; }
.manifesto__three { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 36px; }
.manifesto__three span {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); font-style: italic; color: var(--gold);
  display: inline-flex; align-items: center; gap: 28px;
}
.manifesto__three span:not(:last-child)::after { content:"·"; color: var(--line); }
.manifesto__body { max-width: 52ch; color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; }
.manifesto__body p + p { margin-top: 18px; }

@media (min-width: 920px){
  .manifesto__grid { grid-template-columns: 1.15fr 0.85fr; align-items: end; }
}

/* ===========================================================
   SOUL — aspects of the soul (interactive)
   =========================================================== */
.soul { background: var(--ink); color: var(--on-dark); padding: clamp(84px, 14vh, 180px) 0; position: relative; overflow: hidden; }
.soul__halo { position: absolute; top: -10%; right: -8%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(179,137,47,0.16), transparent 62%); pointer-events: none; }
.soul__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(40px, 7vh, 80px); }
.soul__head h2 { color: var(--paper); max-width: 14ch; }
.soul__head h2 em { color: var(--gold-2); font-style: italic; }
.soul__intro { max-width: 38ch; color: var(--on-dark-mut); font-size: 17px; }

.soul__layout { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (min-width: 940px){ .soul__layout { grid-template-columns: 0.9fr 1.1fr; } }

.soul__list { display: flex; flex-direction: column; }
.aspect {
  display: grid; grid-template-columns: 2.4em 1fr auto; align-items: baseline; gap: 20px;
  padding: 20px 4px 20px 18px; border-top: 1px solid var(--line-dark); text-align: left; width: 100%;
  position: relative; transition: color .4s var(--ease);
}
.aspect:last-child { border-bottom: 1px solid var(--line-dark); }
.aspect__idx { font-family: var(--mono); font-size: 12px; color: var(--on-dark-mut); letter-spacing: 0.1em; text-align: right; font-variant-numeric: tabular-nums; }
.aspect__name { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; color: var(--on-dark); transition: color .35s var(--ease); }
.aspect__hint { font-size: 13px; color: var(--on-dark-mut); opacity: 0; transform: translateX(-6px); transition: .4s var(--ease); justify-self: end; max-width: 0; overflow: hidden; white-space: nowrap; }
.aspect::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: var(--gold-2); transition: height .35s var(--ease); }
.aspect.is-active::before { height: 60%; }
.aspect.is-active .aspect__name { color: var(--gold-2); font-style: italic; }
.aspect.is-active .aspect__idx { color: var(--gold-2); }
.aspect:hover .aspect__name { color: var(--gold-bright); }

.soul__stage { position: relative; }
.soul__card {
  position: relative; border: 1px solid var(--line-dark); border-radius: 4px; overflow: hidden;
  background: var(--ink-2);
}
.soul__img { aspect-ratio: 4 / 3.4; }
.soul__caption { padding: 26px clamp(20px, 3vw, 34px) 30px; }
.soul__caption .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-2); }
.soul__caption h3 { font-size: clamp(26px, 3vw, 38px); color: var(--paper); margin: 12px 0 10px; }
.soul__caption p { color: var(--on-dark-mut); font-size: 16px; max-width: 42ch; }
.soul__fade { opacity: 0; transition: opacity .45s var(--ease); }
.soul__fade.show { opacity: 1; }

/* ===========================================================
   TRIPS — Ausgearbeitete Reisen
   =========================================================== */
.trips { padding: clamp(84px, 14vh, 180px) 0; background: var(--paper); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(40px, 6vh, 70px); }
.section-head h2 { max-width: 16ch; }
.section-head h2 em { font-style: italic; color: var(--clay); }
.section-head p { max-width: 40ch; color: var(--muted); }

.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: clamp(20px, 2.4vw, 34px); }
.trip {
  position: relative; display: flex; flex-direction: column;
  background: var(--papyrus); border: 1px solid var(--line-soft); border-radius: 5px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.trip:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(23,18,11,0.45); border-color: var(--line-gold); }
.trip__media { position: relative; aspect-ratio: 3 / 2.3; overflow: hidden; }
.trip__head {
  position: relative; display: flex; flex-direction: row-reverse; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; color: var(--on-dark);
  background: linear-gradient(135deg, #20180f 0%, #2c2114 55%, #1a140c 100%);
  border-bottom: 1px solid var(--line-gold);
  overflow: hidden;
}
.trip__head::before {
  content: ""; position: absolute; left: -34px; top: 50%; transform: translateY(-50%); width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,79,0.28), transparent 65%);
}
.trip__head-sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); max-width: 62%; line-height: 1.6; position: relative; z-index: 2; }
.trip__num {
  font-family: var(--serif); font-style: italic; font-size: clamp(40px, 5vw, 56px); font-weight: 600;
  line-height: 0.78; color: var(--gold-2); position: relative; z-index: 2; flex: none;
}
.trip__media .ph { transition: transform 1s var(--ease); }
.trip:hover .trip__media .ph { transform: scale(1.05); }
.trip:hover .trip__head::before { background: radial-gradient(circle, rgba(60,154,98,0.4), transparent 65%); }
.trip:hover .trip__num { color: var(--gold-bright); }
.trip__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.trip__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.trip__tags span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; }
.trip__name { font-size: clamp(23px, 2.5vw, 29px); line-height: 1.06; margin-bottom: 10px; }
.trip__desc { color: var(--muted); font-size: 15px; margin-bottom: 16px; flex: 1; }
.trip__route { font-size: 12.5px; line-height: 1.5; color: var(--muted-2); margin-bottom: 18px; padding: 12px 0 0; border-top: 1px dashed var(--line); }
.trip__route-k { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; }
.trip__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.trip__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); text-transform: uppercase; }
.trip__more { font-size: 14px; font-weight: 600; color: var(--clay); display: inline-flex; align-items: center; gap: 8px; }
.trip__more .btn__arrow { transition: transform .35s var(--ease); }
.trip:hover .trip__more .btn__arrow { transform: translateX(4px); }

/* ===========================================================
   A LA CARTE — regional index
   =========================================================== */
.carte { padding: clamp(84px, 14vh, 180px) 0; background: var(--papyrus); position: relative; }
.carte__grid { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
@media (min-width: 980px){ .carte__grid { grid-template-columns: 1fr 1fr; } }

.carte__stage { position: relative; order: 2; }
@media (min-width: 980px){ .carte__stage { order: 0; position: sticky; top: 110px; } }

.carte__panel {
  position: relative; border-radius: 6px; overflow: hidden;
  background: radial-gradient(130% 130% at 22% 18%, #241a10, #15100a);
  border: 1px solid var(--line-gold);
  padding: clamp(32px, 5vw, 56px); min-height: clamp(320px, 42vw, 460px);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--on-dark);
}
.carte__panel::before {
  content: ""; position: absolute; right: -20%; top: -30%;
  width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,79,0.22), transparent 62%);
}
.carte__panel-idx {
  font-family: var(--serif); font-style: italic; font-size: clamp(60px, 9vw, 110px);
  line-height: 0.8; color: var(--gold-2); opacity: 0.85;
}
.carte__panel-name { font-family: var(--serif); font-size: clamp(34px, 5vw, 58px); font-weight: 600; color: var(--paper); margin: 18px 0 14px; }
.carte__panel-lede { color: var(--on-dark-mut); font-size: clamp(15px, 1.6vw, 18px); max-width: 36ch; }
.carte__fade { transition: opacity .4s var(--ease), transform .4s var(--ease); }
.carte__fade.out { opacity: 0; transform: translateY(8px); }

.carte__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.26; transition: opacity .5s var(--ease), background-image .2s; }
.carte__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,10,0.55), rgba(20,16,10,0.82)); }
.carte__panel > :not(.carte__bg) { position: relative; z-index: 1; }
.carte__panel > .carte__credit { position: absolute; right: clamp(14px,2vw,22px); bottom: clamp(12px,1.8vw,18px); z-index: 2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-mut); opacity: 0.7; pointer-events: none; }
.region__cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--clay); font-family: var(--sans); }
.region__cta .btn__arrow { transition: transform .35s var(--ease); }
.region__cta:hover .btn__arrow { transform: translateX(4px); }

.region { border-top: 1px solid var(--line); }
.region:last-child { border-bottom: 1px solid var(--line); }
.region__head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; width: 100%; text-align: left; padding: 20px 2px; }
.region__idx { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.region__name { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 600; transition: color .3s var(--ease); }
.region__plus { width: 28px; height: 28px; position: relative; flex: none; border: 1px solid var(--line); border-radius: 50%; transition: .35s var(--ease); }
.region__plus::before, .region__plus::after { content:""; position: absolute; background: var(--ink); transition: .35s var(--ease); }
.region__plus::before { left: 8px; right: 8px; top: 50%; height: 1px; transform: translateY(-50%); }
.region__plus::after { top: 8px; bottom: 8px; left: 50%; width: 1px; transform: translateX(-50%); }
.region.open .region__plus { background: var(--gold-2); border-color: var(--gold-2); }
.region.open .region__plus::after { transform: translateX(-50%) scaleY(0); }
.region:hover .region__name { color: var(--clay); }
.region.open .region__name { color: var(--clay); }
.region__panel { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.region__panel-inner { padding: 0 2px 24px; color: var(--muted); max-width: 54ch; font-size: 16px; }
.footer__social { display: flex; gap: 12px; margin-top: 26px; }
.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    color: var(--on-dark-mut);
    font-size: 16px;
    text-decoration: none;
    transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.footer__social a:hover {
    color: var(--ink);
    background: var(--gold-2);
    border-color: var(--gold-2);
    transform: translateY(-2px);
}
/* ===========================================================
   EDITORIAL — specialist split
   =========================================================== */
.editorial { background: var(--ink); color: var(--on-dark); padding: clamp(84px, 14vh, 180px) 0; overflow: hidden; }
.editorial__grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (min-width: 920px){ .editorial__grid { grid-template-columns: 1.05fr 0.95fr; } }
.editorial__media { position: relative; }
.editorial__img { aspect-ratio: 5/6; border-radius: 5px; overflow: hidden; }
.editorial__stat { position: absolute; right: -14px; bottom: -22px; background: var(--paper); color: var(--ink); padding: 22px 26px; border-radius: 5px; box-shadow: 0 24px 50px -24px rgba(0,0,0,0.6); max-width: 220px; }
.editorial__stat .n { font-family: var(--serif); font-size: clamp(40px, 6vw, 60px); font-weight: 600; line-height: 1; color: var(--clay); }
.editorial__stat .l { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.editorial h2 { color: var(--paper); margin-bottom: 26px; max-width: 16ch; }
.editorial h2 em { font-style: italic; color: var(--gold-2); }
.editorial p { color: var(--on-dark-mut); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; max-width: 50ch; }
.editorial p + p { margin-top: 18px; }
.editorial__words { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 34px; }
.editorial__words span { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); color: var(--gold-2); }
.editorial__words span:not(:last-child)::after { content:" —"; color: var(--on-dark-mut); }

/* ===========================================================
   CONTACT / CTA
   =========================================================== */
.cta { background: var(--paper); padding: clamp(84px, 14vh, 190px) 0; position: relative; }
.cta__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta__inner .eyebrow { justify-content: center; }
.cta h2 { font-size: clamp(40px, 7vw, 96px); margin: 22px 0 24px; line-height: 0.98; }
.cta h2 em { font-style: italic; color: var(--clay); }
.cta p { color: var(--muted); font-size: clamp(17px, 1.8vw, 21px); max-width: 46ch; margin: 0 auto 38px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn--ink { background: var(--ink); color: var(--on-dark); }
.btn--ink:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn--line { border: 1px solid var(--line); color: var(--ink); }
.btn--line:hover { border-color: var(--clay); color: var(--clay); }
.cta__rule { width: 1px; height: 64px; background: linear-gradient(var(--gold-2), transparent); margin: 0 auto 30px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--ink); color: var(--on-dark); padding: clamp(60px, 9vh, 110px) 0 36px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 820px){ .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand { color: var(--on-dark); margin-bottom: 20px; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.6vw, 30px); color: var(--paper); max-width: 18ch; line-height: 1.25; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; font-weight: 500; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark-mut); font-size: 15px; padding: 6px 0; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--gold-2); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 28px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__legal a { font-size: 13px; color: var(--on-dark-mut); transition: color .3s var(--ease); }
.footer__legal a:hover { color: var(--gold-2); }
.footer__copy { font-family: var(--mono); font-size: 12px; color: var(--on-dark-mut); letter-spacing: 0.06em; }

/* ===========================================================
   REAL IMAGES
   =========================================================== */
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-img--contain { object-fit: contain; padding: 18px; background:
    radial-gradient(120% 120% at 30% 20%, #241a10, #14100a); }
.ph.has-img { background: var(--ink-2); }

/* hero — logo Ba-bird as luminous watermark */
.hero__media { background:
    radial-gradient(130% 90% at 72% 24%, #2c2113 0%, #18120a 48%, #0d0a06 100%); }
.hero__bird {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(62vw, 720px); aspect-ratio: 1; z-index: 0;
  background: var(--bird-url) center/contain no-repeat;
  opacity: 0.14; filter: saturate(1.1);
  -webkit-mask: radial-gradient(closest-side, #000 60%, transparent);
          mask: radial-gradient(closest-side, #000 60%, transparent);
}
.hero__media::after { background:
    linear-gradient(180deg, rgba(13,10,6,0.5) 0%, rgba(13,10,6,0.2) 34%, rgba(13,10,6,0.55) 72%, rgba(13,10,6,0.95) 100%),
    radial-gradient(120% 80% at 24% 30%, rgba(47,125,79,0.10), transparent 55%); }

/* ===========================================================
   ABOUT / MISSION
   =========================================================== */
.about { background: var(--paper); padding: clamp(80px, 13vh, 168px) 0; }
.about__badges { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; margin-bottom: clamp(40px, 6vh, 64px); }
.about__badge { white-space: nowrap; }
.about__badge {
  font-family: var(--serif); font-size: clamp(19px, 2.4vw, 27px); color: var(--ink);
  display: inline-flex; align-items: center; gap: 16px;
}
.about__badge em { font-style: italic; color: var(--clay); }
.about__badge::before, .about__badge::after { content:""; width: 30px; height: 1px; background: var(--gold); opacity: .6; }
.about__lead { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; margin-bottom: clamp(48px, 8vh, 90px); }
@media (min-width: 900px){ .about__lead { grid-template-columns: 0.85fr 1.15fr; } }
.about__portrait { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--line); box-shadow: 0 30px 60px -34px rgba(23,18,11,0.5); }
.about__sig { margin-bottom: 22px; }
.about__name { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 38px); font-weight: 600; line-height: 1.1; }
.about__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }

/* voice note from the founder */
.voicebar { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding: 12px 18px 12px 12px; background: var(--papyrus); border: 1px solid var(--line); border-radius: 100px; max-width: 420px; }
.voicebar__btn { flex: none; width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer; display: grid; place-items: center; background: var(--green); color: var(--paper); transition: transform .3s var(--ease), background .3s var(--ease); }
.voicebar__btn:hover { transform: scale(1.06); background: var(--green-deep, #245c3c); }
.voicebar__btn svg { width: 18px; height: 18px; display: block; }
.voicebar__main { flex: 1; min-width: 0; }
.voicebar__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.voicebar__label::before { content: ""; width: 16px; height: 1px; background: var(--line-gold, currentColor); opacity: .6; }
.voicebar__track { position: relative; height: 4px; border-radius: 4px; background: var(--line); margin-top: 9px; cursor: pointer; overflow: hidden; }
.voicebar__fill { position: absolute; inset: 0 100% 0 0; background: var(--green); transition: right .1s linear; }
.voicebar__time { font-family: var(--mono); font-size: 11px; color: var(--muted); flex: none; min-width: 38px; text-align: right; font-variant-numeric: tabular-nums; }
.about__lead p { color: var(--muted); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.7; max-width: 54ch; }
.about__lead p + p { margin-top: 16px; }
.about__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(16px, 2vw, 26px); }
.about__card { background: var(--papyrus); border: 1px solid var(--line-soft); border-radius: 6px; padding: 28px 26px 30px; position: relative; transition: transform .4s var(--ease), border-color .4s var(--ease); }
.about__card:hover { transform: translateY(-4px); border-color: var(--green); }
.about__card .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--green); }
.about__card h3 { font-size: clamp(20px, 2.2vw, 25px); margin: 14px 0 12px; line-height: 1.1; }
.about__card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* gold→green accent tweaks tying to logo */
.trip:hover { border-color: var(--green); }
.region.open .region__plus, .region:hover .region__name, .region.open .region__name { }

/* ===========================================================
   REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px){
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}
@media (max-width: 560px){
  body { font-size: 16px; }
  .hero__top { display: none; }
  .nav { padding: 16px var(--pad); }
  .editorial__stat { position: relative; right: 0; bottom: 0; margin-top: 18px; max-width: none; }
}
