/* ============================================================
   The TerraVine Project — premium editorial site
   Rooted in tradition. Driven by innovation.
   ============================================================ */

:root {
  --soil-green: #2C4A2E;
  --soil-green-deep: #1f3621;
  --bark: #8B4513;
  --terracotta: #C1694F;
  --terracotta-soft: #d3856e;
  --warm-black: #1A1208;
  --cream: #F5EDD6;
  --cream-dim: #e8ddbf;
  --paper: #faf6ea;

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

  --nav-h: 78px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--warm-black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  padding: 0.85em 1.7em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  background: var(--terracotta);
  color: var(--cream);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--bark); }
.btn--ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: var(--warm-black); color: var(--cream); border-color: var(--warm-black); }
.btn--light { background: var(--cream); color: var(--warm-black); }
.btn--light:hover { background: #fff; color: var(--warm-black); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), backdrop-filter .45s var(--ease);
}
.nav__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; }
.nav.is-solid { background: rgba(26,18,8,0.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(245,237,214,0.08); }

.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__text { font-family: var(--font-serif); font-size: 1.18rem; letter-spacing: 0.01em; line-height: 1; }
.brand__text small { display: block; font-family: var(--font-sans); font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--terracotta-soft); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  color: var(--cream); font-size: 0.84rem; font-weight: 500; letter-spacing: 0.04em;
  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(--terracotta); transition: width .35s var(--ease); }
.nav__link:hover, .nav__link.is-active { opacity: 1; }
.nav__link.is-active::after, .nav__link:hover::after { width: 100%; }

.nav__cta { margin-left: 0.5rem; }

.nav__burger { display: none; background: none; border: none; cursor: pointer; width: 34px; height: 28px; position: relative; }
.nav__burger span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--cream); transition: transform .35s var(--ease), opacity .25s var(--ease); }
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 13px; }
.nav__burger span:nth-child(3) { top: 22px; }
.nav__burger.is-open span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 13px; transform: rotate(-45deg); }

/* ============================================================
   HERO with scroll morph
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; background: var(--warm-black); }
.hero__media { position: absolute; inset: 0; }
.hero__img {
  position: absolute; inset: -4%; width: 108%; height: 108%; object-fit: cover;
  will-change: transform, filter;
}
.hero__grade { position: absolute; inset: 0; background:
  linear-gradient(to bottom, rgba(26,18,8,0.35) 0%, rgba(26,18,8,0.05) 30%, rgba(26,18,8,0.15) 60%, rgba(26,18,8,0.78) 100%); }
.hero__scrim { position: absolute; inset: 0; background: rgba(20,30,40,0); will-change: background; }

/* SVG tech overlay */
.hero__tech { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.tech-grid line { stroke: rgba(193,105,79,0.55); stroke-width: 1; }
.tech-row { stroke: rgba(245,237,214,0.5); stroke-width: 1; stroke-dasharray: 6 7; }
.tech-marker circle.core { fill: var(--terracotta); }
.tech-marker circle.ring { fill: none; stroke: rgba(245,237,214,0.85); stroke-width: 1.2; }
.tech-marker text { fill: var(--cream); font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.08em; }
.tech-sensor { stroke: rgba(245,237,214,0.9); stroke-width: 1.4; fill: none; }
.tech-sensor .dot { fill: var(--terracotta); stroke: none; }
.drone { fill: rgba(26,18,8,0.92); }
.drone__beam { fill: rgba(193,105,79,0.18); }

.hero__content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  padding-bottom: 9vh;
}
.hero__content .wrap { display: flex; flex-direction: column; gap: 1.3rem; }
.hero__eyebrow { color: var(--terracotta-soft); }
.hero__title { color: var(--cream); font-size: clamp(2.6rem, 6.4vw, 5.6rem); max-width: 16ch; }
.hero__title em { font-style: italic; color: var(--terracotta-soft); }
.hero__lede { color: var(--cream-dim); font-size: clamp(1rem, 1.5vw, 1.22rem); max-width: 46ch; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }

.hero__scrollcue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 6;
  color: var(--cream); display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8; }
.hero__scrollcue .line { width: 1px; height: 42px; background: linear-gradient(var(--cream), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: .3; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--warm-black); color: var(--cream); }
.section--green { background: var(--soil-green); color: var(--cream); }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head .eyebrow { color: var(--terracotta); }
.section--dark .section__head .eyebrow, .section--green .section__head .eyebrow { color: var(--terracotta-soft); }
.section__title { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 0.5em 0 0.4em; }
.section__intro { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(26,18,8,0.78); }
.section--dark .section__intro, .section--green .section__intro { color: var(--cream-dim); }

/* concept strip */
.concept { text-align: center; }
.concept__title { font-size: clamp(1.8rem, 3.8vw, 3rem); max-width: 18ch; margin: 0 auto; }
.concept__title em { font-style: italic; color: var(--terracotta); }

/* teaser card */
.teaser { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; border-radius: 4px; overflow: hidden;
  background: var(--warm-black); color: var(--cream); box-shadow: 0 30px 70px -40px rgba(26,18,8,0.6); }
.teaser__media { position: relative; min-height: 380px; }
.teaser__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.teaser__media .badge { position: absolute; top: 18px; left: 18px; }
.teaser__body { padding: clamp(34px, 4vw, 58px); display: flex; flex-direction: column; justify-content: center; gap: 1.1rem; }
.teaser__kicker { color: var(--terracotta-soft); }
.teaser__h { font-size: clamp(1.7rem, 2.8vw, 2.5rem); }
.teaser__p { color: var(--cream-dim); }

.badge { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; padding: 0.5em 0.9em; border-radius: 2px;
  background: var(--terracotta); color: var(--cream); }
.badge--ghost { background: rgba(245,237,214,0.14); color: var(--cream); border: 1px solid rgba(245,237,214,0.3); }
.badge--soon { background: rgba(193,105,79,0.16); color: var(--terracotta); border: 1px solid rgba(193,105,79,0.4); }

/* ============================================================
   THE PROJECT — three worlds
   ============================================================ */
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.lead-grid__media { position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; }
.lead-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.prose p { font-size: 1.08rem; color: rgba(26,18,8,0.82); margin-bottom: 1.1em; }
.section--dark .prose p, .section--green .prose p { color: var(--cream-dim); }
.prose p:last-child { margin-bottom: 0; }

.pull { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.2;
  color: var(--soil-green); border-left: 3px solid var(--terracotta); padding-left: 1.1rem; margin: 0; }
.section--dark .pull, .section--green .pull { color: var(--cream); }

.worlds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.world { background: rgba(245,237,214,0.06); border: 1px solid rgba(245,237,214,0.16); border-radius: 4px;
  padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease); }
.world:hover { transform: translateY(-6px); border-color: var(--terracotta); background: rgba(245,237,214,0.1); }
.world__num { font-family: var(--font-serif); font-size: 2.6rem; color: var(--terracotta-soft); line-height: 1; }
.world__title { font-size: 1.5rem; }
.world__title small { display: block; font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terracotta-soft); margin-top: 0.5em; }
.world__p { color: var(--cream-dim); font-size: 0.98rem; }

.acts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.founder { display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.founder__photo { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background:
  linear-gradient(135deg, var(--soil-green), var(--bark)); display: flex; align-items: center; justify-content: center; }
.founder__photo .ph { color: rgba(245,237,214,0.7); text-align: center; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 1rem; }
.founder__sig { font-family: var(--font-serif); font-size: 1.08rem; color: var(--soil-green); font-style: italic;
  margin-top: 1.6rem !important; padding-top: 1.2rem; border-top: 1px solid rgba(26,18,8,0.14); }

/* ============================================================
   CARD GRIDS — episodes & stories
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards--stories { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--paper); border-radius: 4px; overflow: hidden;
  box-shadow: 0 18px 40px -32px rgba(26,18,8,0.5);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  border: 1px solid rgba(26,18,8,0.06);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 36px 60px -34px rgba(26,18,8,0.55); }
.card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--soil-green-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media .badge { position: absolute; top: 14px; left: 14px; }
.card__media .index { position: absolute; bottom: 14px; right: 16px; font-family: var(--font-serif); font-size: 1.05rem; color: var(--cream); opacity: 0.9; }
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card__loc { color: var(--terracotta); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.card__title { font-size: 1.4rem; line-height: 1.15; }
.cards--stories .card__title { font-size: 1.55rem; }
.card__excerpt { color: rgba(26,18,8,0.66); font-size: 0.96rem; margin-top: 0.2rem; }
.card__foot { margin-top: auto; padding-top: 1rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(26,18,8,0.5); display: flex; align-items: center; gap: 0.5em; }

/* season intro */
.season-intro {
  font-family: var(--font-serif); font-size: clamp(1.25rem, 2.4vw, 1.9rem); line-height: 1.4;
  color: var(--soil-green); max-width: 60ch; margin: 0; padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 3px solid var(--terracotta);
}
.season-intro strong { color: var(--terracotta); font-weight: 600; }

/* clickable episode card */
.ep-card { text-decoration: none; color: inherit; }
.ep-card__cta { color: var(--terracotta); }
.ep-card:hover .ep-card__cta span { padding-left: 4px; }
.ep-card__cta span { transition: padding-left .3s var(--ease); display: inline-block; }

/* future seasons strip */
.future-strip { grid-template-columns: repeat(2, 1fr); }
.card--future { opacity: 0.78; filter: saturate(0.7); }
.card--future:hover { opacity: 1; transform: translateY(-4px); }
.card--future .card__media img { filter: grayscale(0.35); }

/* episode deep-dive */
.ep-hero .page-hero__bg { opacity: 0.42; }
.back-link { display: inline-flex; align-items: center; gap: 0.5em; color: var(--terracotta-soft);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.4rem; transition: gap .3s var(--ease); }
.back-link:hover { gap: 0.8em; color: var(--cream); }
.ep-hero__meta { display: block; margin-bottom: 0.5rem; }

.ep-article { max-width: 760px; }
.ep-standfirst { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35; color: var(--warm-black); margin-bottom: 1.6rem; }
.ep-pull { margin: 2.2rem 0; font-style: italic; }
.ep-detail { font-size: 1.08rem; color: rgba(26,18,8,0.82); background: rgba(193,105,79,0.08);
  border-radius: 4px; padding: 1.2rem 1.4rem; margin: 1.6rem 0; }
.then-now { margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid rgba(26,18,8,0.14); }
.then-now .eyebrow { color: var(--terracotta); }
.then-now p { margin-top: 1rem; font-size: 1.08rem; color: rgba(26,18,8,0.82); }
.ep-nav { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 3rem; }

/* page hero (interior) */
.page-hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 70px; background: var(--warm-black); color: var(--cream); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; opacity: 0.34; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,18,8,0.4), var(--warm-black)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero__eyebrow { color: var(--terracotta-soft); }
.page-hero__title { font-size: clamp(2.4rem, 6vw, 4.6rem); margin: 0.4em 0 0.3em; max-width: 16ch; }
.page-hero__sub { color: var(--cream-dim); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 50ch; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band__title { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 20ch; margin: 0 auto 0.4em; }
.cta-band__p { color: var(--cream-dim); max-width: 48ch; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ============================================================
   DATA GRAPHICS
   ============================================================ */
.graphic-caption { font-size: 0.85rem; font-style: italic; color: rgba(26,18,8,0.55); margin: 1.4rem 0 0; max-width: 62ch; }
.section--dark .graphic-caption, .section--green .graphic-caption { color: rgba(245,237,214,0.6); }
figure { margin: 0; }

/* A — one drought, four answers */
.four-answers__head { margin-bottom: 1.3rem; }
.four-answers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.answer { background: var(--paper); border-top: 3px solid var(--accent, var(--terracotta)); border-radius: 4px;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 0.55rem;
  box-shadow: 0 14px 32px -28px rgba(26,18,8,0.6); transition: transform .4s var(--ease); }
.answer:hover { transform: translateY(-5px); }
.answer__estate { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--accent, var(--terracotta)); }
.answer__strategy { font-family: var(--font-serif); font-size: 1.7rem; line-height: 1; color: var(--warm-black); }
.answer__line { font-size: 0.92rem; color: rgba(26,18,8,0.66); }

/* B — then and now timeline */
.timeline__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tl-node { position: relative; padding-top: 34px; display: flex; flex-direction: column; gap: 0.7rem; }
.tl-node::before { content: ""; position: absolute; top: 9px; left: 0; right: -22px; height: 2px; background: rgba(245,237,214,0.16); }
.tl-node:last-child::before { right: 0; }
.tl-node__dot { position: absolute; top: 3px; left: 0; width: 14px; height: 14px; border-radius: 50%;
  background: var(--terracotta); box-shadow: 0 0 0 4px rgba(193,105,79,0.22); }
.tl-node__year { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); }
.tl-node__text { color: var(--cream-dim); font-size: 0.95rem; }

/* C — three worlds bar */
.worlds-bar { margin-top: clamp(40px, 5vw, 60px); }
.worlds-bar__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.wbar { padding: 26px 24px; border-left: 4px solid var(--accent); background: rgba(245,237,214,0.06);
  border-radius: 0 4px 4px 0; }
.wbar__world { font-family: var(--font-serif); font-size: 1.3rem; color: var(--cream); display: block; }
.wbar__places { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta-soft);
  display: block; margin: 0.45rem 0 0.85rem; }
.wbar__use { color: var(--cream-dim); font-size: 0.98rem; line-height: 1.5; }
.wbar__use strong { color: var(--cream); font-weight: 600; }

/* D — stat callout cards */
.stat-band__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-card { border-radius: 6px; padding: clamp(28px, 3.5vw, 46px); min-height: 190px;
  display: flex; flex-direction: column; gap: 0.9rem; justify-content: center;
  transition: transform .4s var(--ease); }
.stat-card:hover { transform: translateY(-5px); }
.stat-card--green { background: var(--soil-green); color: var(--cream); }
.stat-card--terracotta { background: var(--terracotta); color: var(--cream); }
.stat-card__figure { font-family: var(--font-serif); font-size: clamp(2.3rem, 5vw, 3.5rem); line-height: 1; }
.stat-card__label { font-size: 1.02rem; color: rgba(245,237,214,0.92); line-height: 1.45; }

/* E — four-act journey */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.journey__step { padding-right: 22px; }
.journey__num { font-family: var(--font-serif); font-size: 2.1rem; line-height: 1; color: var(--terracotta-soft); display: block; }
.journey__line { display: block; height: 2px; margin: 1rem 0 1.3rem; position: relative;
  background: linear-gradient(90deg, var(--terracotta), rgba(193,105,79,0.15)); }
.journey__line::after { content: "→"; position: absolute; right: 12px; top: -11px; color: var(--terracotta-soft); font-size: 1rem; }
.journey__step:last-child .journey__line { background: linear-gradient(90deg, var(--terracotta), rgba(193,105,79,0.15)); }
.journey__step:last-child .journey__line::after { display: none; }
.journey__stage { font-size: 1.3rem; color: var(--cream); }
.journey__tech { color: var(--cream-dim); font-size: 0.95rem; margin-top: 0.5rem; }

/* ============================================================
   FIELD NOTES
   ============================================================ */
.fn-lede { font-family: var(--font-serif); font-size: clamp(1.25rem, 2.3vw, 1.75rem); line-height: 1.4;
  color: var(--warm-black); max-width: 60ch; margin: 0 0 clamp(36px, 5vw, 56px); }

/* hub cards */
.fn-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fn-card { display: flex; flex-direction: column; gap: 0.9rem; text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid rgba(26,18,8,0.08); border-top: 3px solid var(--terracotta);
  border-radius: 4px; padding: clamp(26px, 3vw, 38px); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.fn-card:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -36px rgba(26,18,8,0.5); }
.fn-card__label { font-family: var(--font-serif); font-size: 1.7rem; color: var(--soil-green); }
.fn-card__frame { color: rgba(26,18,8,0.7); font-size: 1rem; flex: 1; }
.fn-card__cta { color: var(--terracotta); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.fn-card:hover .fn-card__cta span { padding-left: 4px; }
.fn-card__cta span { display: inline-block; transition: padding-left .3s var(--ease); }

/* provocations */
.provocations { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; max-width: 64ch; }
.provocation { display: flex; align-items: baseline; gap: 1rem; font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.35; color: var(--cream); }
.provocation__mark { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); transform: translateY(-3px); }

/* reference article (sub-pages) */
.fn-article { max-width: 800px; }
.fn-article--wide { max-width: 1040px; }
.ref-block { margin-bottom: clamp(40px, 5vw, 64px); }
.ref-block__title { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--soil-green); margin-bottom: 0.7rem; }
.ref-block__intro { font-size: 1.1rem; color: rgba(26,18,8,0.82); line-height: 1.6; margin-bottom: 1.4rem; max-width: 70ch; }
.ref-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.ref-item { padding: 1rem 0; border-top: 1px solid rgba(26,18,8,0.12); font-size: 1.02rem;
  color: rgba(26,18,8,0.78); line-height: 1.55; }
.ref-item:last-child { border-bottom: 1px solid rgba(26,18,8,0.12); }
.ref-item strong { color: var(--warm-black); font-weight: 600; }

/* regions blocks */
.region-block { margin-bottom: clamp(36px, 4.5vw, 56px); padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 4px solid var(--accent, var(--terracotta)); }
.region-block__title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); color: var(--warm-black); margin-bottom: 0.9rem; }
.region-block__title span { color: var(--terracotta); font-style: italic; font-weight: 500; }
.region-block__body { font-size: 1.08rem; color: rgba(26,18,8,0.82); line-height: 1.65; max-width: 72ch; }

/* companies */
.company-group { margin-bottom: clamp(40px, 5vw, 60px); }
.company-group__title { font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--soil-green);
  margin-bottom: 1.4rem; padding-bottom: 0.7rem; border-bottom: 2px solid rgba(193,105,79,0.3); }
.company-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.company { background: var(--paper); border: 1px solid rgba(26,18,8,0.08); border-radius: 4px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: 0.4rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease); }
.company:hover { transform: translateY(-4px); border-color: var(--terracotta); }
.company__head { display: flex; flex-direction: column; gap: 2px; }
.company__name { font-family: var(--font-serif); font-size: 1.12rem; color: var(--warm-black); line-height: 1.2; }
.company__country { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.company__desc { font-size: 0.92rem; color: rgba(26,18,8,0.66); line-height: 1.45; }

/* source tag */
.source-tag { font-size: 0.82rem; font-style: italic; color: rgba(26,18,8,0.5);
  margin: clamp(28px, 4vw, 44px) 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(26,18,8,0.12); max-width: 70ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--warm-black); color: var(--cream); padding: clamp(56px, 7vw, 92px) 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,237,214,0.12); }
.footer__brand .brand__text { font-size: 1.5rem; }
.footer__tag { font-family: var(--font-serif); font-style: italic; color: var(--terracotta-soft); margin-top: 1rem; font-size: 1.15rem; }
.footer__col h4 { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: 1.2rem; font-family: var(--font-sans); font-weight: 600; }
.footer__col a { display: block; color: var(--cream-dim); padding: 0.4rem 0; font-size: 0.95rem; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer__col a:hover { color: var(--cream); padding-left: 6px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; flex-wrap: wrap; }
.footer__copy { color: rgba(245,237,214,0.55); font-size: 0.82rem; }

/* ============================================================
   MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 22px; }
.modal__overlay { position: absolute; inset: 0; background: rgba(20,14,6,0.72); backdrop-filter: blur(6px); }
.modal__panel { position: relative; z-index: 2; width: 100%; max-width: 560px; background: var(--paper);
  border-radius: 6px; overflow: hidden; box-shadow: 0 50px 100px -30px rgba(0,0,0,0.6);
  max-height: 92vh; overflow-y: auto; }
.modal__banner { background: var(--soil-green); color: var(--cream); padding: 26px 32px; position: relative; }
.modal__banner .eyebrow { color: var(--terracotta-soft); }
.modal__banner h3 { font-size: 1.7rem; margin-top: 0.4rem; }
.modal__banner p { color: var(--cream-dim); font-size: 0.92rem; margin-top: 0.5rem; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(245,237,214,0.12); border: none; color: var(--cream); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease); }
.modal__close:hover { background: rgba(245,237,214,0.26); }
.modal__form { padding: 28px 32px 34px; display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--soil-green); }
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 0.96rem; padding: 0.8em 0.9em;
  border: 1px solid rgba(26,18,8,0.18); border-radius: 3px; background: #fff; color: var(--warm-black);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(193,105,79,0.16); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal__actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
.modal__note { font-size: 0.78rem; color: rgba(26,18,8,0.55); }
.modal__success { padding: 46px 32px 52px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.modal__success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--soil-green); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.modal__success h3 { font-size: 1.7rem; }
.modal__success p { color: rgba(26,18,8,0.7); max-width: 38ch; }

/* ============================================================
   LEGAL & PRIVACY PAGE
   ============================================================ */
.legal-article { max-width: 720px; }
.legal-section { margin-bottom: clamp(36px, 5vw, 56px); padding-bottom: clamp(36px, 5vw, 56px); border-bottom: 1px solid rgba(26,18,8,0.12); }
.legal-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--soil-green); margin-bottom: 1rem; }
.legal-p { font-size: 1.04rem; color: rgba(26,18,8,0.82); line-height: 1.72; margin-bottom: 1rem; }
.legal-p:last-child { margin-bottom: 0; }
.legal-p a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.impressum { background: var(--paper); border-left: 3px solid var(--terracotta); border-radius: 0 4px 4px 0;
  padding: 1.3rem 1.6rem; margin: 1.2rem 0; }
.impressum p { font-size: 1rem; color: rgba(26,18,8,0.82); line-height: 1.72; margin-bottom: 0.8rem; }
.impressum p:last-child { margin-bottom: 0; }
.impressum a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-list { list-style: none; margin: 0.8rem 0 0; padding: 0; }
.legal-list li { padding: 0.75rem 0; border-top: 1px solid rgba(26,18,8,0.1);
  font-size: 1.02rem; color: rgba(26,18,8,0.78); line-height: 1.55; }
.legal-list li:last-child { border-bottom: 1px solid rgba(26,18,8,0.1); }
.legal-list li strong { color: var(--warm-black); font-weight: 600; }
.legal-updated { font-size: 0.88rem; color: rgba(26,18,8,0.52); font-style: italic; margin-top: 1rem; }
.legal-back { display: inline-flex; align-items: center; gap: 0.5em;
  margin-top: clamp(32px, 4vw, 48px); color: var(--terracotta);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  transition: gap .3s var(--ease), color .3s var(--ease); }
.legal-back:hover { gap: 0.8em; color: var(--bark); }

/* ============================================================
   Reveal animation helper
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
.is-revealed { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .teaser { grid-template-columns: 1fr; }
  .teaser__media { min-height: 280px; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-grid__media { aspect-ratio: 16/10; max-height: 460px; }
  .worlds { grid-template-columns: 1fr; }
  .acts { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }

  /* field notes */
  .fn-cards { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: repeat(2, 1fr); }

  /* graphics */
  .four-answers__grid { grid-template-columns: repeat(2, 1fr); }
  .worlds-bar__row { grid-template-columns: 1fr; }
  .journey { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .journey__step:nth-child(2) .journey__line::after { display: none; }
  /* timeline becomes vertical */
  .timeline__track { grid-template-columns: 1fr; gap: 0; }
  .tl-node { padding: 0 0 30px 30px; }
  .tl-node::before { top: 0; bottom: 0; left: 6px; right: auto; width: 2px; height: auto; }
  .tl-node:last-child::before { bottom: calc(100% - 18px); }
  .tl-node__dot { top: 4px; left: 0; }
  .founder { grid-template-columns: 1fr; }
  .founder__photo { max-width: 280px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__links { position: fixed; top: var(--nav-h); right: 0; left: 0;
    background: rgba(26,18,8,0.98); backdrop-filter: blur(14px);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 14px 28px 28px;
    transform: translateY(-130%); transition: transform .5s var(--ease); height: auto;
    border-top: 1px solid rgba(245,237,214,0.1); }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link { width: 100%; padding: 14px 0; font-size: 1rem; border-bottom: 1px solid rgba(245,237,214,0.08); }
  .nav__cta { margin: 16px 0 0; width: 100%; justify-content: center; }
  .nav__burger { display: block; }
  .nav.is-solid, .nav { background: rgba(26,18,8,0.92); backdrop-filter: blur(10px); }

  .cards, .cards--stories, .future-strip { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .four-answers__grid { grid-template-columns: 1fr; }
  .stat-band__grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .journey__line::after { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 12vh; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
