/* ===========================================================
   terra.art — Living Field of the Circle of Arts
   Earthy / warm / light sibling of thecircle.art.
   Loads AFTER assets/brand.css and overrides surface + accent
   tokens toward earth, clay, moss and morning light.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Spectral:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ---- mood: LEHM & MOOS (default) ---- */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'Spectral', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;

  /* surfaces — warm paper / clay */
  --paper:    oklch(0.934 0.030 72);   /* sun-warmed oat/clay — earthier than the siblings */
  --paper-2:  oklch(0.908 0.034 68);   /* raised card */
  --paper-3:  oklch(0.879 0.038 64);   /* deeper card / wells */
  --ink:      oklch(0.296 0.036 50);   /* headlines */
  --ink-2:    oklch(0.388 0.038 52);   /* strong body */
  --muted:    oklch(0.500 0.032 56);   /* body */
  --faint:    oklch(0.598 0.026 60);   /* meta / labels */
  --line:     oklch(0.296 0.036 50 / .15);
  --line-hi:  oklch(0.296 0.036 50 / .26);

  /* accents — share chroma/lightness, vary hue (earth harmony) */
  --moss:     oklch(0.486 0.090 147);  /* deepened to the board's forest green */
  --moss-deep:oklch(0.382 0.074 148);
  --clay:     oklch(0.605 0.100 46);
  --clay-deep:oklch(0.492 0.090 42);
  --gold:     oklch(0.665 0.088 82);   /* brass thread back to the Circle */
  --gold-deep:oklch(0.540 0.074 80);
  --navy:     oklch(0.430 0.060 265);  /* Circle connection — used sparingly */
  --water:     oklch(0.605 0.058 196);  /* water blue-green — small accent */
  --water-deep:oklch(0.482 0.052 198);

  --accent:      var(--moss);
  --accent-deep: var(--moss-deep);
  --accent-tint: oklch(0.486 0.090 147 / .12);

  /* texture wash behind the page */
  --wash-1: oklch(0.60 0.11 46 / .18);   /* clay top-left  */
  --wash-2: oklch(0.52 0.11 146 / .15);  /* moss bottom    */
  --wash-3: oklch(0.70 0.10 86 / .15);   /* sun top-right  */

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --shadow:    0 28px 60px -34px oklch(0.30 0.04 55 / .42);
  --shadow-sm: 0 14px 30px -20px oklch(0.30 0.04 55 / .38);
}

/* ---- mood: ERDE TIEF (deeper, more saturated earth) ---- */
:root[data-mood="erde"] {
  --paper:   oklch(0.915 0.022 68);
  --paper-2: oklch(0.880 0.028 64);
  --paper-3: oklch(0.842 0.032 58);
  --ink:     oklch(0.282 0.034 50);
  --ink-2:   oklch(0.372 0.036 52);
  --muted:   oklch(0.482 0.032 56);
  --faint:   oklch(0.578 0.026 60);
  --line:    oklch(0.282 0.034 50 / .16);
  --line-hi: oklch(0.282 0.034 50 / .28);
  --wash-1:  oklch(0.58 0.10 44 / .14);
  --wash-2:  oklch(0.50 0.09 145 / .12);
  --wash-3:  oklch(0.64 0.09 84 / .12);
}

/* ---- mood: MORGENLICHT (airy, sunlit, minimal) ---- */
:root[data-mood="licht"] {
  --paper:   oklch(0.975 0.010 88);
  --paper-2: oklch(0.955 0.013 84);
  --paper-3: oklch(0.932 0.016 80);
  --ink:     oklch(0.330 0.026 58);
  --ink-2:   oklch(0.420 0.028 58);
  --muted:   oklch(0.532 0.024 62);
  --faint:   oklch(0.628 0.018 66);
  --line:    oklch(0.330 0.026 58 / .11);
  --line-hi: oklch(0.330 0.026 58 / .20);
  --wash-1:  oklch(0.72 0.07 56 / .10);
  --wash-2:  oklch(0.70 0.06 150 / .07);
  --wash-3:  oklch(0.82 0.08 92 / .14);
}

/* ---- accent selection ---- */
:root[data-accent="clay"] { --accent: var(--clay); --accent-deep: var(--clay-deep); --accent-tint: oklch(0.605 0.100 46 / .12); }
:root[data-accent="gold"] { --accent: var(--gold); --accent-deep: var(--gold-deep); --accent-tint: oklch(0.665 0.088 82 / .14); }

* { box-sizing: border-box; }

body.terra {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-2);
  background:
    radial-gradient(820px 600px at 12% -4%, var(--wash-1), transparent 60%),
    radial-gradient(960px 680px at 92% 2%, var(--wash-3), transparent 58%),
    radial-gradient(1100px 820px at 50% 116%, var(--wash-2), transparent 62%),
    var(--paper);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.serif { font-family: var(--font-display); }
.acc { color: var(--accent-deep); }

.eyebrow {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--faint); font-weight: 600;
}
.eyebrow.acc { color: var(--accent-deep); }

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

/* ---------------- buttons ---------------- */
.btn {
  font-family: var(--font-body); font-size: 15px; cursor: pointer;
  border-radius: 99px; padding: 13px 24px; display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; transition: all .22s ease; border: 1px solid transparent; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-solid {
  background: var(--accent-deep); color: var(--paper);
  box-shadow: 0 14px 30px -16px var(--accent-deep);
}
.btn-solid:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-ghost { border-color: var(--line-hi); color: var(--ink); background: oklch(1 0 0 / .35); }
.btn-ghost:hover { border-color: var(--accent-deep); color: var(--accent-deep); background: oklch(1 0 0 / .6); }
.btn-quiet { color: var(--ink-2); background: transparent; padding-left: 8px; padding-right: 8px; }
.btn-quiet:hover { color: var(--accent-deep); }

.link-acc {
  color: var(--accent-deep); text-decoration: none; font-size: 14.5px; font-weight: 500;
  display: inline-flex; gap: 6px; align-items: center; transition: gap .2s, color .2s;
}
.link-acc svg { width: 15px; height: 15px; }
.link-acc:hover { gap: 11px; }

/* ---------------- nav ---------------- */
header.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, oklch(0.934 0.030 72 / .92), oklch(0.934 0.030 72 / .55));
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 34px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 46px; height: 44px; flex: none; display: flex; align-items: center; }
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { font-family: var(--font-display); font-size: 25px; font-weight: 600; color: var(--ink); letter-spacing: .005em; line-height: 1; }
.brand .name b { font-weight: 600; color: var(--accent-deep); }
.brand .tag { font-size: 9px; letter-spacing: .24em; color: var(--faint); margin-top: 4px; text-transform: uppercase; }
nav.links { display: flex; gap: 26px; margin-left: auto; }
nav.links a { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color .2s; white-space: nowrap; }
nav.links a:hover { color: var(--ink); }
.nav .btn { margin-left: 6px; padding: 10px 20px; font-size: 14px; }

/* ---------------- hero ---------------- */
.hero { position: relative; padding: 72px 0 64px; overflow: hidden; }
.hero-grid { position: relative; z-index: 1; }
.hero .field-orn { right: -6%; top: 50%; transform: translateY(-50%); width: 720px; height: 720px; z-index: 0; opacity: .3; }
:root[data-hero="bild"] .field-orn { display: none; }
.hero-eye { color: var(--accent-deep); }
h1.hero-title {
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: clamp(54px, 6.8vw, 96px); line-height: 1.0; letter-spacing: -.012em;
  margin: 18px 0 0; text-wrap: balance;
}
h1.hero-title em { font-style: italic; font-weight: 500; color: var(--accent-deep); }
.hero-sub { font-family: var(--font-serif); font-size: clamp(18px, 1.9vw, 22px); line-height: 1.55; color: var(--ink-2); max-width: 36ch; margin: 30px 0 0; font-weight: 400; }
.hero-cta { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta { display: flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--faint); font-size: 13.5px; }
.hero-meta svg { width: 17px; height: 17px; color: var(--accent-deep); }

/* default = EDITORIAL hero (split) */
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.1fr; gap: 52px; align-items: center; }
.hero-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 14px; }
.hero-collage .slot-wrap { position: relative; }
.hero-collage .tall { grid-row: span 2; }
.hero-collage image-slot { width: 100%; height: 100%; }
.hero-collage .tall image-slot { height: 414px; }

/* BILD hero (full-bleed image stage with overlaid text) */
:root[data-hero="bild"] .hero { padding: 0; }
:root[data-hero="bild"] .hero-grid { display: block; position: relative; }
:root[data-hero="bild"] .hero-collage { display: none; }
:root[data-hero="bild"] .hero-stage {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  border-radius: 0; overflow: hidden;
}
:root[data-hero="bild"] .hero-stage .hero-bg { position: absolute; inset: 0; }
:root[data-hero="bild"] .hero-stage .hero-bg image-slot { width: 100%; height: 100%; }
:root[data-hero="bild"] .hero-stage::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, oklch(0.25 0.03 55 / .12) 0%, transparent 30%, oklch(0.22 0.03 55 / .72) 100%);
}
:root[data-hero="bild"] .hero-text { position: relative; z-index: 2; padding: 0 56px 64px; max-width: 900px; }
:root[data-hero="bild"] h1.hero-title { color: oklch(0.97 0.01 86); }
:root[data-hero="bild"] h1.hero-title em { color: oklch(0.86 0.10 86); }
:root[data-hero="bild"] .hero-sub { color: oklch(0.92 0.02 84); }
:root[data-hero="bild"] .hero-eye { color: oklch(0.84 0.09 86); }
:root[data-hero="bild"] .hero-meta { color: oklch(0.86 0.02 84); }
:root[data-hero="bild"] .hero-meta svg { color: oklch(0.86 0.10 86); }
/* hide editorial-only stage in bild mode and vice versa */
.hero-stage { display: none; }
:root[data-hero="bild"] .hero-stage { display: flex; }
:root[data-hero="bild"] .hero-editorial { display: none; }

/* ---------------- section rhythm ---------------- */
section.band { padding: 78px 0; position: relative; }
section.band.tint { background: linear-gradient(180deg, transparent, var(--paper-2) 18%, var(--paper-2) 82%, transparent); }
.sec-head { max-width: 720px; margin-bottom: 42px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: clamp(34px, 4vw, 54px); line-height: 1.04; letter-spacing: -.01em; margin: 14px 0 0;
  text-wrap: balance;
}
.sec-head p { font-family: var(--font-serif); font-size: 19px; line-height: 1.55; color: var(--muted); margin: 18px 0 0; max-width: 56ch; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* ---------------- intro line ---------------- */
.intro { padding: 30px 0 8px; }
.intro p {
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.3; max-width: 22ch; margin: 0;
}
.intro .lede { font-family: var(--font-serif); font-weight: 400; font-size: 18.5px; color: var(--muted); line-height: 1.65; max-width: 52ch; margin: 24px 0 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* ---------------- "was ist terra" cards ---------------- */
.facets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.facet {
  position: relative; padding: 26px 26px 24px; border-radius: var(--r);
  background: oklch(1 0 0 / .42); border: 1px solid var(--line);
  display: flex; flex-direction: column; min-height: 230px; transition: all .24s ease; overflow: hidden;
}
.facet:hover { border-color: var(--line-hi); background: oklch(1 0 0 / .62); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.facet .fnum { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--accent-deep); }
.facet h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--ink); margin: 14px 0 10px; line-height: 1.05; }
.facet p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }
.facet .glyph { position: absolute; right: -14px; bottom: -14px; width: 92px; height: 92px; opacity: .12; color: var(--accent); }
.facet .glyph svg { width: 100%; height: 100%; }
.facets .facet.span2 { grid-column: span 2; }

/* ---------------- journal (Field Magazine) ---------------- */
.journal { columns: 3; column-gap: 16px; }
.jcard {
  break-inside: avoid; margin: 0 0 16px; border-radius: var(--r);
  background: oklch(1 0 0 / .5); border: 1px solid var(--line); overflow: hidden;
  transition: all .24s ease; cursor: default;
}
.jcard:hover { border-color: var(--line-hi); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.jcard .media { position: relative; }
.jcard .media image-slot { width: 100%; display: block; }
.jcard .kicker {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  background: oklch(0.25 0.03 55 / .68); color: oklch(0.96 0.02 86); padding: 5px 10px; border-radius: 99px;
  backdrop-filter: blur(4px);
}
.jcard .kicker.video::before { content: '▶  '; color: oklch(0.86 0.10 86); }
.jcard .kicker.audio::before { content: '♪  '; color: oklch(0.86 0.10 86); }
.jcard .body { padding: 18px 18px 20px; }
.jcard .jmeta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; color: var(--faint); text-transform: uppercase; }
.jcard h4 { font-family: var(--font-display); font-weight: 600; font-size: 23px; color: var(--ink); line-height: 1.12; margin: 9px 0 0; }
.jcard p { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin: 9px 0 0; }
.jcard.note { background: var(--accent-tint); border-color: oklch(0.52 0.082 145 / .28); }
.jcard.note .qmark { font-family: var(--font-display); font-size: 44px; color: var(--accent-deep); line-height: .6; }

/* ---------------- trägerfamilie ---------------- */
.holder-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.holder-portrait { position: relative; }
.holder-portrait image-slot { width: 100%; height: 540px; }
.holder-portrait .badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 3;
  background: oklch(0.957 0.014 78 / .92); border: 1px solid var(--line); border-radius: 99px;
  padding: 9px 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--ink-2); text-transform: uppercase; backdrop-filter: blur(6px);
}
.holder-quote { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.32; color: var(--ink); margin: 22px 0 0; }
.holder-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.hcard { padding: 18px 18px; border-radius: var(--r-sm); background: oklch(1 0 0 / .42); border: 1px solid var(--line); transition: all .2s; }
.hcard:hover { border-color: var(--accent-deep); transform: translateX(3px); }
.hcard .hl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }
.hcard p { font-family: var(--font-serif); font-size: 16px; color: var(--ink-2); margin: 8px 0 0; line-height: 1.4; }

/* ---------------- angebote / anfragen ---------------- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.offer {
  padding: 22px 22px; border-radius: var(--r); border: 1px solid var(--line);
  background: oklch(1 0 0 / .42); display: flex; flex-direction: column; gap: 10px;
  transition: all .22s ease; cursor: default; min-height: 150px;
}
.offer:hover { border-color: var(--accent-deep); background: oklch(1 0 0 / .64); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.offer .oi { width: 30px; height: 30px; color: var(--accent-deep); }
.offer .oi svg { width: 100%; height: 100%; }
.offer h4 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); margin: 0; line-height: 1.1; }
.offer p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }
.request-bar {
  margin-top: 26px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  padding: 26px 32px; border-radius: var(--r); border: 1px solid var(--line-hi);
  background: var(--accent-tint);
}
.request-bar .rb-lead { font-family: var(--font-display); font-size: 25px; color: var(--ink); line-height: 1.2; max-width: 30ch; }
.request-bar .micro { font-size: 13.5px; color: var(--muted); max-width: 40ch; line-height: 1.5; }
.request-bar .btn { margin-left: auto; }

/* ---------------- vivarea connection ---------------- */
.viv {
  display: grid; grid-template-columns: 1fr 1.04fr; gap: 48px; align-items: center;
  padding: 44px; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: linear-gradient(135deg, oklch(0.43 0.06 265 / .07), oklch(1 0 0 / .4));
}
.viv h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); color: var(--ink); margin: 14px 0 0; line-height: 1.06; }
.viv p { font-family: var(--font-serif); font-size: 18px; color: var(--muted); line-height: 1.6; margin: 18px 0 0; max-width: 46ch; }
.viv .eyebrow { color: var(--navy); }
.flow { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--r-sm); border: 1px solid var(--line); background: oklch(1 0 0 / .5); transition: all .2s; }
.flow-step:hover { border-color: var(--line-hi); transform: translateX(4px); }
.flow-step .fdot { width: 32px; height: 32px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; background: var(--accent-tint); color: var(--accent-deep); font-family: var(--font-mono); font-size: 12px; }
.flow-step .ft b { font-family: var(--font-display); font-size: 19px; color: var(--ink); font-weight: 600; display: block; line-height: 1.1; }
.flow-step .ft span { font-size: 13px; color: var(--muted); }
.flow .conn { width: 1px; height: 14px; margin-left: 34px; background: var(--line-hi); }
.viv-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ---------------- media room ---------------- */
.media-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 16px; }
.media-feature { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.media-feature image-slot { width: 100%; height: 460px; }
.media-feature .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 78px; height: 78px; border-radius: 50%; background: oklch(0.957 0.014 78 / .9);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.media-feature .play svg { width: 28px; height: 28px; color: var(--accent-deep); margin-left: 4px; }
.media-feature .cap { position: absolute; left: 22px; bottom: 20px; z-index: 3; }
.media-feature .cap .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: oklch(0.86 0.1 86); }
.media-feature .cap h4 { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: oklch(0.97 0.01 86); margin: 6px 0 0; }
.media-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, oklch(0.2 0.03 55 / .7)); pointer-events: none; }
.media-side { display: flex; flex-direction: column; gap: 16px; }
.pod { display: flex; gap: 14px; align-items: center; padding: 16px; border-radius: var(--r-sm); border: 1px solid var(--line); background: oklch(1 0 0 / .5); transition: all .2s; }
.pod:hover { border-color: var(--accent-deep); }
.pod .pdisc { width: 52px; height: 52px; border-radius: 50%; flex: none; background: radial-gradient(circle, var(--paper) 18%, var(--accent-deep) 19%, var(--accent-deep) 30%, var(--clay-deep) 31%); box-shadow: inset 0 0 0 1px var(--line); }
.pod .pt .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.pod .pt b { font-family: var(--font-display); font-size: 19px; color: var(--ink); font-weight: 600; display: block; line-height: 1.15; margin-top: 2px; }

/* ---------------- footer / 7 fields ---------------- */
footer.foot { border-top: 1px solid var(--line); margin-top: 40px; padding: 64px 0 56px; background: linear-gradient(180deg, transparent, var(--paper-3)); }
.foot-lead { max-width: 640px; margin-bottom: 40px; }
.foot-lead h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3vw, 40px); color: var(--ink); margin: 12px 0 0; line-height: 1.14; }
.foot-lead p { font-family: var(--font-serif); font-size: 17px; color: var(--muted); margin: 16px 0 0; line-height: 1.6; }
.fields-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.field-chip {
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px 14px; text-align: center;
  background: oklch(1 0 0 / .4); transition: all .22s ease; min-height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-decoration: none;
}
.field-chip .seed { width: 9px; height: 9px; border-radius: 50%; background: var(--line-hi); transition: all .22s; }
.field-chip .fname { font-family: var(--font-display); font-size: 17px; color: var(--faint); font-weight: 600; }
.field-chip .fst { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.field-chip.live { background: oklch(1 0 0 / .7); border-color: var(--accent-deep); }
.field-chip.live .seed { background: var(--accent-deep); box-shadow: 0 0 0 4px var(--accent-tint); }
.field-chip.live .fname { color: var(--ink); }
.field-chip.live .fst { color: var(--accent-deep); }
.field-chip:not(.live):hover { transform: translateY(-2px); border-color: var(--line-hi); }
.foot-base { display: flex; align-items: center; gap: 24px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--faint); font-size: 13px; }
.foot-base .links { display: flex; gap: 22px; margin-left: auto; }
.foot-base a { color: var(--muted); text-decoration: none; }
.foot-base a:hover { color: var(--ink); }

/* ---------------- systems (Land & Regenerative Systems) ---------------- */
.systems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sys-card {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  background: oklch(1 0 0 / .42); display: flex; flex-direction: column;
  transition: all .24s ease;
}
.sys-card:hover { border-color: var(--line-hi); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.sys-card .media { position: relative; }
.sys-card .media image-slot { width: 100%; height: 224px; display: block; }
.sys-card .media .sk {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  background: oklch(0.25 0.03 55 / .68); color: oklch(0.96 0.02 86); padding: 5px 10px; border-radius: 99px;
  backdrop-filter: blur(4px);
}
.sys-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.sys-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 27px; color: var(--ink); margin: 0 0 10px; line-height: 1.05; }
.sys-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.sys-card .organs { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.sys-card .organs li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-2); }
.sys-card .organs li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-deep); flex: none; }
.sys-card.water .organs li::before { background: var(--water-deep); }
.sys-card .link-acc { margin-top: 18px; }
.sys-card.water .link-acc { color: var(--water-deep); }

/* ---------------- seven essentials footer ---------------- */
.ess-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.ess {
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 18px 14px;
  background: oklch(1 0 0 / .4); text-decoration: none; display: flex; flex-direction: column;
  gap: 8px; min-height: 132px; transition: all .22s ease;
}
.ess .seed { width: 9px; height: 9px; border-radius: 50%; background: var(--line-hi); transition: all .22s; }
.ess .ev { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--faint); line-height: 1; }
.ess .ek { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-top: 2px; }
.ess .eu { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--faint); margin-top: auto; }
.ess.live { background: oklch(1 0 0 / .72); border-color: var(--accent-deep); }
.ess.live .seed { background: var(--accent-deep); box-shadow: 0 0 0 4px var(--accent-tint); }
.ess.live .ev { color: var(--ink); }
.ess.live .ek, .ess.live .eu { color: var(--accent-deep); }
.ess:not(.live):hover { transform: translateY(-2px); border-color: var(--line-hi); }
.ess:not(.live):hover .ev { color: var(--ink-2); }

/* water accent atoms */
.kicker.water::before { content: '≈  '; color: oklch(0.78 0.07 196); }
.eyebrow.water { color: var(--water-deep); }

/* ---------------- brand: keyword strip + field seal ---------------- */
.kw-strip {
  margin-top: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--faint); display: flex; align-items: center; gap: 11px;
}
.kw-strip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-deep); flex: none; }
:root[data-hero="bild"] .hero-stage .kw-strip { color: oklch(0.88 0.02 84); }
:root[data-hero="bild"] .hero-stage .kw-strip::before { background: oklch(0.86 0.10 86); }

.foot-lead { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.foot-lead-text { max-width: 640px; }
.seal { width: 112px; height: 112px; flex: none; color: var(--accent-deep); margin-top: 4px; }
.seal text { font-family: var(--font-mono); font-size: 8.1px; letter-spacing: .2em; fill: currentColor; }
.seal .ring { stroke: currentColor; stroke-width: 1; opacity: .45; }
.seal .ring2 { stroke: currentColor; stroke-width: .6; opacity: .28; }
.seal .seal-core { fill: currentColor; opacity: .85; }
.seal .seal-spin { transform-origin: 60px 60px; animation: seal-rot 48s linear infinite; }
@keyframes seal-rot { to { transform: rotate(360deg); } }
:root[data-motion="off"] .seal .seal-spin { animation: none !important; }

/* ---------------- breathing field ornament ---------------- */
.field-orn { position: absolute; pointer-events: none; opacity: .5; }
:root[data-motion="off"] .ew-ring, :root[data-motion="off"] .ew-orbit,
:root[data-motion="off"] .ew-enso-spin, :root[data-motion="off"] .ew-glow { animation: none !important; }

/* image-slot earth tint for empty state */
image-slot { --ph: oklch(0.86 0.02 70); }

/* ---------------- responsive ---------------- */
@media (max-width: 1080px) {
  nav.links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-collage { max-width: 560px; }
  .intro-grid { grid-template-columns: 1fr; gap: 26px; }
  .facets { grid-template-columns: 1fr 1fr; }
  .facets .facet.span2 { grid-column: span 2; }
  .journal { columns: 2; }
  .systems { grid-template-columns: 1fr; }
  .ess-grid { grid-template-columns: repeat(4, 1fr); }
  .holder-grid, .viv, .media-grid { grid-template-columns: 1fr; gap: 30px; }
  .holder-portrait image-slot { height: 420px; }
  .offers { grid-template-columns: 1fr 1fr; }
  .fields-row { grid-template-columns: repeat(4, 1fr); }
  .request-bar .btn { margin-left: 0; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 22px; }
  nav.links { display: none; }
  .facets, .journal, .offers, .holder-cards { columns: 1; grid-template-columns: 1fr; }
  .facets .facet.span2 { grid-column: span 1; }
  .fields-row { grid-template-columns: repeat(2, 1fr); }
  .ess-grid { grid-template-columns: repeat(2, 1fr); }
  :root[data-hero="bild"] .hero-text { padding: 0 24px 40px; }
  .foot-base { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-base .links { margin-left: 0; flex-wrap: wrap; }
  .foot-lead { flex-direction: column-reverse; align-items: flex-start; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .btn, .facet, .jcard, .offer, .flow-step, .field-chip { transition: none !important; }
}
