@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --red-cream: #f8f1df;
  --red-paper: rgba(255, 252, 242, .88);
  --red-paper-solid: #fffaf0;
  --red-forest: #27482c;
  --red-forest-deep: #17351f;
  --red-leaf: #607b3a;
  --red-ochre: #a77631;
  --red-earth: #765036;
  --red-ink: #1f2d20;
  --red-muted: #5c5b4b;
  --red-line: rgba(70, 78, 45, .22);
  --red-shadow: 0 18px 55px rgba(61, 51, 31, .12);
}

html { scroll-behavior: smooth; scroll-padding-top: 7.5rem; }
body.red-shell-page {
  margin: 0;
  color: var(--red-ink);
  background-color: var(--red-cream);
  background-image: linear-gradient(rgba(255, 249, 235, .30), rgba(255, 249, 235, .46)), url('red-landscape-bg-v168.webp');
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Work Sans', sans-serif;
}
body.red-shell-page h1,
body.red-shell-page h2,
body.red-shell-page h3 { color: var(--red-forest-deep); font-family: 'Fraunces', serif; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

/* Passwort- und Geheimfeldeingaben auf Wunsch sichtbar machen. */
.red-password-control {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}
.red-password-control > input {
  padding-right: 3.15rem !important;
}
.red-password-toggle {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: .34rem;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--red-forest);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.red-password-toggle:hover { background: rgba(39, 72, 44, .09); }
.red-password-toggle:focus-visible {
  outline: 3px solid rgba(167, 118, 49, .48);
  outline-offset: 1px;
}
.red-password-icon {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.red-password-icon-hide { display: none; }
.red-password-toggle.is-visible .red-password-icon-show { display: none; }
.red-password-toggle.is-visible .red-password-icon-hide { display: block; }

/* Einheitlicher Header */
.red-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  isolation: isolate;
  border-bottom: 1px solid rgba(76, 70, 44, .18);
  background: #fdfaf4;
  box-shadow: 0 5px 24px rgba(61, 51, 31, .07);
}
.red-header-inner {
  width: min(1580px, calc(100% - 1.2rem));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(.35rem, .7vw, .8rem);
}
.red-brand {
  flex: 0 0 clamp(185px, 16.5vw, 260px);
  height: 96px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  cursor: default;
}
.red-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  align-self: start;
  object-fit: contain;
  object-position: left center;
  transform: translateY(-11%);
  mix-blend-mode: normal;
}
.red-primary-nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.25rem, .54vw, .7rem);
  white-space: nowrap;
}
.red-primary-nav > a,
.red-language summary {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #1d2b1f;
  font-size: clamp(.65rem, .71vw, .78rem);
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
}
.red-primary-nav > a { position: relative; padding: .4rem .1rem; }
.red-primary-nav > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: .1rem;
  height: 1px;
  background: var(--red-forest);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.red-primary-nav > a:hover::after,
.red-primary-nav > a[aria-current='page']::after { transform: scaleX(1); }
.red-primary-nav > .red-account-link {
  padding: .55rem .72rem;
  border-radius: 999px;
  background: var(--red-forest);
  color: #fffaf0;
  font-weight: 600;
}
.red-primary-nav > .red-account-link::after { display: none; }
.red-primary-nav > .red-account-link:hover { background: var(--red-forest-deep); }
.red-language { position: relative; margin-left: .32rem; }
.red-language summary {
  gap: .3rem;
  padding: .35rem .48rem;
  border: 1px solid var(--red-line);
  border-radius: 7px;
  cursor: pointer;
  list-style: none;
}
.red-language summary::-webkit-details-marker { display: none; }
.red-language > div {
  position: absolute;
  top: calc(100% + .45rem);
  right: 0;
  min-width: 148px;
  padding: .4rem;
  border: 1px solid var(--red-line);
  border-radius: 10px;
  background: #fffaf0;
  box-shadow: var(--red-shadow);
}
.red-language > div a,
.red-language > div span {
  display: block;
  padding: .5rem .65rem;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--red-muted) !important;
  font-size: .78rem;
  font-weight: 400 !important;
  line-height: 1.25;
  text-decoration: none !important;
  white-space: nowrap;
}
.red-menu-toggle { display: none; }

/* Einheitlicher Seitenrahmen */
.red-shell-page > .hero,
.red-shell-page > header.hero,
.red-shell-page .member-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 7vw, 7rem) 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--red-line) !important;
  background: rgba(255, 250, 238, .55) !important;
  color: var(--red-ink) !important;
  box-shadow: none !important;
}
.red-shell-page > .hero::before,
.red-shell-page > .hero::after,
.red-shell-page > header.hero::before,
.red-shell-page > header.hero::after { opacity: .12 !important; }
.red-shell-page > .hero h1,
.red-shell-page > header.hero h1,
.red-shell-page .member-hero h1 { color: var(--red-forest-deep) !important; }
.red-shell-page > .hero .lead,
.red-shell-page > header.hero .lead { color: var(--red-muted) !important; }
.red-shell-page > .hero .eyebrow,
.red-shell-page > header.hero .eyebrow,
.red-shell-page .member-hero .eyebrow { color: var(--red-ochre) !important; }
.red-shell-page > main,
.red-shell-page > article { position: relative; }
.red-shell-page > main:not(.red-home-main),
.red-shell-page > article {
  background: rgba(255, 252, 242, .58);
  backdrop-filter: blur(2px);
}
.red-shell-page .soft-section { background: rgba(255, 252, 242, .52) !important; }
.red-shell-page .button,
.red-shell-page .btn,
.red-shell-page .back,
.red-shell-page .home-button {
  border-color: transparent;
  background: var(--red-forest);
  color: #fffaf0;
}
.red-shell-page .button:hover,
.red-shell-page .btn:hover,
.red-shell-page .back:hover,
.red-shell-page .home-button:hover { background: var(--red-forest-deep); }

/* Startseite */
.red-home-main { overflow: hidden; }
.red-home-section { padding: clamp(4.2rem, 8vw, 7rem) 0; }
.red-home-wrap { width: min(1160px, calc(100% - 2.6rem)); margin: 0 auto; }
.red-home-hero {
  min-height: 590px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(255,250,238,.03) 0 34%, rgba(255,250,238,.44) 51%, rgba(255,250,238,.82) 100%);
}
.red-home-hero .red-home-wrap { display: grid; grid-template-columns: minmax(240px, .9fr) minmax(420px, 1.1fr); }
.red-home-copy { grid-column: 2; padding: 2rem 0 4rem; }
.red-kicker { color: var(--red-ochre); font-size: .76rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.red-home-copy h1 { max-width: 15ch; margin: .75rem 0 1rem; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.07; }
.red-home-copy p { max-width: 63ch; color: #3c493c; font-size: clamp(1rem, 1.45vw, 1.16rem); }
.red-leaf-rule { width: min(310px, 70%); height: 1px; margin: 1.25rem 0; background: linear-gradient(90deg, var(--red-ochre), transparent); }
.red-leaf-rule::after { content: '◇'; display: block; position: relative; left: calc(100% - .75rem); top: -.75rem; color: var(--red-ochre); transform: rotate(34deg); }

.red-structure-section {
  background: transparent;
  border-block: 1px solid rgba(123, 96, 49, .15);
}
.red-section-heading { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.red-section-heading h2 { margin: .4rem 0 .5rem; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.red-section-heading p { color: var(--red-earth); font-family: 'Fraunces', serif; font-size: 1.2rem; }
.red-structure { position: relative; max-width: 1050px; margin: 0 auto; }
.red-method-node {
  position: relative;
  z-index: 3;
  width: 168px;
  min-height: 168px;
  margin: 0 auto -18px;
  display: grid;
  place-content: center;
  padding: 1.25rem;
  border: 1px solid rgba(39, 72, 44, .5);
  border-radius: 50%;
  background: rgba(255, 250, 238, .94);
  box-shadow: var(--red-shadow);
  text-align: center;
  text-decoration: none;
}
.red-method-node span { color: var(--red-ochre); font-size: .65rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.red-method-node strong { display: block; margin: .25rem 0; color: var(--red-forest-deep); font-family: 'Fraunces', serif; font-size: 1.5rem; line-height: 1.05; }
.red-method-node small { color: var(--red-muted); font-size: .72rem; }
.red-company-node {
  position: relative;
  z-index: 2;
  width: min(570px, 78%);
  min-height: 172px;
  margin: 0 auto 1.8rem;
  display: grid;
  place-content: center;
  padding: 3.2rem 4rem 1.35rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(145deg, #17351f, #355d34);
  color: #fffaf0;
  text-align: center;
  text-decoration: none;
}
.red-company-node strong { color: #fffaf0; font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 3vw, 2.35rem); }
.red-company-node span { display: block; margin-top: .2rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.red-branch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.red-branch-card {
  min-height: 230px;
  padding: 1.45rem 1.2rem;
  border: 1px solid var(--red-line);
  border-radius: 18px;
  background: rgba(255, 250, 238, .82);
  box-shadow: 0 10px 32px rgba(76, 58, 30, .06);
  color: var(--red-ink);
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.red-branch-card:hover { transform: translateY(-4px); background: #fffaf0; }
.red-branch-icon { width: 54px; height: 54px; margin: 0 auto .9rem; display: grid; place-items: center; border-radius: 50%; background: var(--red-forest); color: #fffaf0; font-family: 'Fraunces', serif; font-size: 1.05rem; }
.red-branch-card:nth-child(3) .red-branch-icon { background: var(--red-ochre); }
.red-branch-card h3 { margin: .35rem 0 .75rem; font-size: 1.35rem; }
.red-branch-card p { color: var(--red-muted); font-size: .88rem; }
.red-structure-caption { max-width: 830px; margin: 1.6rem auto 0; text-align: center; }
.red-structure-caption strong { display: block; color: var(--red-forest); font-family: 'Fraunces', serif; font-size: 1.28rem; }
.red-structure-caption p { color: var(--red-muted); }

/* Struktur nach der verbindlichen Vorlage „Die vier Zweige“ */
.red-structure-diagram {
  position: relative;
  width: min(1180px, 100%);
  aspect-ratio: 1200 / 720;
  margin: 0 auto;
  background: transparent;
  isolation: isolate;
}
.red-structure-diagram,
.red-structure-diagram * { box-sizing: border-box; }
.red-structure-lines { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: visible; }
.red-structure-lines > path,
.red-structure-lines > line { fill: none; stroke: rgba(28,66,35,.86); stroke-width: 2; vector-effect: non-scaling-stroke; }
.red-method-orbit {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  width: clamp(164px, 17%, 202px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  padding: 1.2rem;
  border: 2px solid var(--red-forest);
  border-radius: 50%;
  background: rgba(255,251,241,.92);
  box-shadow: 0 16px 44px rgba(44,61,34,.14);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transform: translateX(-50%);
}
.red-method-orbit > span { color: var(--red-forest); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.red-method-orbit > strong { display: block; margin: .35rem 0 .2rem; color: var(--red-forest-deep); font-family: 'Fraunces',serif; font-size: clamp(1.35rem,2.25vw,1.85rem); line-height: 1.02; }
.red-tree-mark { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.red-tree-mark g { fill: currentColor; stroke: none; }
.red-method-orbit > .red-tree-mark { width: 27px; height: 27px; margin: 0 auto; color: var(--red-ochre); }
.red-method-orbit > small { display: block; max-width: 19ch; margin: .15rem auto 0; color: var(--red-muted); font-size: .68rem; line-height: 1.25; }
.red-structure-core {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 25%;
  width: 50%;
  height: 33%;
  display: grid;
  place-content: end center;
  padding: 2rem 2rem 2.2rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(145deg,#183b22 0%,#2d5a31 68%,#17371f 100%);
  box-shadow: inset 0 -18px 36px rgba(7,30,13,.15);
  color: #fffaf0;
  text-align: center;
  text-decoration: none;
}
.red-structure-core > .red-tree-mark { width: clamp(38px,4vw,52px); height: clamp(38px,4vw,52px); margin: 0 auto .15rem; color: #d4b568; }
.red-structure-core strong { color: #fffaf0; font-family: 'Fraunces',serif; font-size: clamp(2.1rem,4.8vw,3.8rem); letter-spacing: .08em; line-height: .95; }
.red-structure-core span { display: block; margin-top: .45rem; font-size: clamp(.58rem,.9vw,.76rem); font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.red-structure-branches {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: clamp(.7rem,1.35vw,1.15rem);
}
.red-structure-card {
  min-height: 215px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 1.05rem 1rem 1rem;
  border: 1px solid rgba(35,64,35,.65);
  border-radius: 17px;
  background: rgba(255,251,242,.86);
  box-shadow: 0 14px 34px rgba(65,55,31,.09);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  backdrop-filter: blur(4px);
}
.red-structure-card:hover { transform: translateY(-5px); background: rgba(255,251,242,.97); box-shadow: 0 18px 42px rgba(65,55,31,.14); }
.red-structure-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,var(--red-leaf),var(--red-forest)); color: #fffaf0; }
.red-structure-card:nth-child(3) .red-structure-icon { background: linear-gradient(145deg,#ad873a,#7c5c22); }
.red-structure-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.red-structure-card h3 { min-height: 2.5em; margin: .55rem 0 .35rem; display: grid; align-items: center; font-size: clamp(1.12rem,1.75vw,1.5rem); line-height: 1.02; }
.red-structure-card .red-card-leaf { width: 70%; height: 1px; margin: .15rem 0 .55rem; background: linear-gradient(90deg,transparent,var(--red-ochre),transparent); }
.red-structure-card p { margin: 0; color: #384437; font-size: clamp(.73rem,.96vw,.86rem); line-height: 1.4; }
.red-structure-caption { max-width: 850px; margin: 1.35rem auto 0; text-align: center; }
.red-structure-caption strong { display: block; color: var(--red-forest-deep); font-family: 'Fraunces',serif; font-size: clamp(1.16rem,2vw,1.4rem); }
.red-structure-caption p { margin: .25rem 0 0; color: #3e493c; }
.red-values { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 1.7rem; padding-top: 1.2rem; border-top: 1px solid var(--red-line); }
.red-values strong { width: 100%; color: var(--red-forest); font-family: 'Fraunces',serif; font-size: 1.25rem; text-align: center; }
.red-values span { color: var(--red-muted); font-size: .84rem; }
.red-values span::before { content: '•'; margin-right: .55rem; color: var(--red-ochre); }

.red-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--red-line); border-radius: 18px; background: rgba(255,250,238,.68); }
.red-path-card { min-height: 250px; padding: 2rem; border-left: 1px solid var(--red-line); color: inherit; text-decoration: none; }
.red-path-card:first-child { border-left: 0; }
.red-path-card span { color: var(--red-ochre); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.red-path-card h3 { margin: .7rem 0; font-size: 1.55rem; }
.red-path-card p { color: var(--red-muted); }
.red-path-card b { display: inline-block; margin-top: 1.2rem; color: var(--red-forest); font-size: .86rem; }

.red-blog-section { background: rgba(255,250,238,.7); border-block: 1px solid rgba(123,96,49,.16); }
.red-blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.red-blog-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--red-line); border-radius: 17px; background: #fffaf0; color: inherit; text-decoration: none; box-shadow: 0 10px 32px rgba(76,58,30,.06); }
.red-blog-card img { width: 100%; height: 174px; object-fit: cover; filter: saturate(.82) sepia(.06); }
.red-blog-card > div { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; }
.red-blog-card span { color: var(--red-ochre); font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.red-blog-card h3 { margin: .5rem 0; font-size: 1.08rem; }
.red-blog-card p { color: var(--red-muted); font-size: .84rem; }
.red-blog-more { margin-top: 2rem; text-align: center; }
.red-outline-button,
.red-solid-button,
.red-footer-button { display: inline-flex; align-items: center; justify-content: center; padding: .78rem 1.35rem; border-radius: 999px; font-size: .88rem; font-weight: 600; text-decoration: none; }
.red-outline-button { border: 1px solid var(--red-forest); color: var(--red-forest); }
.red-solid-button { border: 1px solid var(--red-forest); background: var(--red-forest); color: #fffaf0; }
.red-contact-strip { text-align: center; }
.red-contact-strip h2 { max-width: 24ch; margin: 0 auto .8rem; font-size: clamp(2rem, 4vw, 3rem); }
.red-contact-strip p { max-width: 70ch; margin: 0 auto 1.7rem; color: var(--red-muted); }
.red-newsletter-panel { display: grid; grid-template-columns: .9fr 1.4fr; gap: 2rem; align-items: center; padding: 2rem 2.3rem; border: 1px solid var(--red-line); border-radius: 18px; background: rgba(255,250,238,.76); }
.red-newsletter-panel h2 { margin: 0 0 .35rem; font-size: 1.65rem; }
.red-newsletter-panel p { color: var(--red-muted); font-size: .9rem; }
.red-newsletter-panel form { display: grid; grid-template-columns: 1fr auto; gap: .7rem; }
.red-newsletter-panel input { min-width: 0; padding: .85rem 1rem; border: 1px solid var(--red-line); border-radius: 8px; background: rgba(255,255,255,.8); font: inherit; }
.red-newsletter-panel button { border: 0; cursor: pointer; }

/* Neue Inhaltsseiten */
.red-content-page { padding: clamp(3.5rem, 7vw, 6rem) 0; background: rgba(255,252,242,.52); }
.red-content-wrap { width: min(1040px, calc(100% - 2.6rem)); margin: 0 auto; }
.red-content-hero { padding: clamp(4.5rem, 8vw, 7.5rem) 0; border-bottom: 1px solid var(--red-line); background: rgba(255,250,238,.42); }
.red-content-hero .red-content-wrap { display: grid; grid-template-columns: 1.35fr .65fr; gap: 3rem; align-items: end; }
.red-content-hero h1 { margin: .7rem 0 1rem; font-size: clamp(3rem, 6.5vw, 5.4rem); }
.red-content-hero p { max-width: 70ch; color: var(--red-muted); font-size: 1.08rem; }
.red-hero-note { padding: 1.5rem; border: 1px solid var(--red-line); border-radius: 18px; background: rgba(255,250,238,.78); }
.red-hero-note strong { display: block; margin-bottom: .5rem; color: var(--red-forest); font-family: 'Fraunces', serif; font-size: 1.2rem; }
.red-two-column { display: grid; grid-template-columns: 1.35fr .65fr; gap: 3rem; align-items: start; }
.red-content-copy h2 { margin: 2.2rem 0 .7rem; font-size: 2rem; }
.red-content-copy h2:first-child { margin-top: 0; }
.red-content-copy p { margin: 0 0 1rem; color: #3e463c; }
.red-content-copy ul { margin: .8rem 0 1.4rem; padding-left: 1.2rem; }
.red-content-copy li { margin: .45rem 0; }
.red-content-copy a,
.red-content-copy a:visited {
  color: inherit;
  text-decoration-color: currentColor;
  text-underline-offset: .14em;
}
.red-info-card { padding: 1.6rem; border: 1px solid var(--red-line); border-radius: 18px; background: rgba(255,250,238,.82); }
.red-info-card + .red-info-card { margin-top: 1rem; }
.red-info-card h3 { margin: 0 0 .65rem; font-size: 1.25rem; }
.red-info-card p { color: var(--red-muted); font-size: .9rem; }
.red-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.red-card-grid.three { grid-template-columns: repeat(3, 1fr); }
.red-card-grid.four { grid-template-columns: repeat(4, 1fr); }
.red-content-card { padding: 1.5rem; border: 1px solid var(--red-line); border-radius: 16px; background: rgba(255,250,238,.84); }
.red-content-card span { color: var(--red-ochre); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.red-content-card h3 { margin: .55rem 0; font-size: 1.2rem; }
.red-content-card p { color: var(--red-muted); font-size: .9rem; }
.red-callout { margin-top: 2rem; padding: 1.5rem 1.7rem; border-left: 4px solid var(--red-ochre); border-radius: 0 16px 16px 0; background: rgba(242,228,198,.78); }
.red-callout h3 { margin: 0 0 .5rem; }
.red-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.red-founder-grid { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(2rem,6vw,5rem); align-items: center; }
.red-founder-grid figure { margin: 0; }
.red-founder-grid img { width: 100%; max-height: 680px; display: block; object-fit: cover; object-position: center 36%; border: 1px solid var(--red-line); border-radius: 22px; box-shadow: var(--red-shadow); }
.red-founder-grid figcaption { margin-top: .55rem; color: var(--red-muted); font-size: .75rem; }
.red-founder-quote { margin: 1.45rem 0; padding: 1.25rem 1.45rem; border-left: 4px solid var(--red-ochre); border-radius: 0 14px 14px 0; background: rgba(247,235,207,.78); }
.red-founder-quote p { margin: 0; color: var(--red-forest-deep); font-family: 'Fraunces',serif; font-size: clamp(1.12rem,2vw,1.35rem); line-height: 1.45; }
.red-detail-section { margin-top: clamp(3.2rem,6vw,5.4rem); }
.red-detail-section > h2,
.red-detail-heading h2 { margin: .45rem 0 .8rem; font-size: clamp(1.9rem,3.8vw,2.9rem); }
.red-detail-section > p,
.red-detail-heading > p { max-width: 76ch; color: #3e463c; }
.red-detail-heading { max-width: 790px; margin-bottom: 1.5rem; }
.red-quote-panel { padding: clamp(1.6rem,3vw,2.3rem); border-radius: 18px; background: linear-gradient(145deg,var(--red-forest),#47683a); color: #fffaf0; }
.red-quote-panel p { margin: 0; color: #fffaf0; font-family: 'Fraunces',serif; font-size: clamp(1.2rem,2.5vw,1.65rem); line-height: 1.45; }
.red-quote-panel small { display: block; margin-top: 1rem; color: rgba(255,250,240,.72); }
.red-process-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 1px; overflow: hidden; margin-top: 1.6rem; border-radius: 17px; background: rgba(255,250,240,.34); box-shadow: var(--red-shadow); }
.red-process-step { min-height: 230px; padding: 1.4rem 1.15rem; background: rgba(30,58,33,.93); color: #fffaf0; }
.red-process-step span { color: #d4bd7f; font-size: .65rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.red-shell-page .red-process-step h3 { margin: .7rem 0 .5rem; color: #ead7aa; font-size: 1.12rem; }
.red-process-step p { margin: 0; color: rgba(255,250,240,.74); font-size: .84rem; }
.red-list-panel { margin: 1.4rem 0 0; padding: 0; border-top: 1px solid var(--red-line); list-style: none; }
.red-list-panel li { display: grid; grid-template-columns: minmax(155px,.42fr) 1fr; gap: 1.25rem; padding: 1.05rem 0; border-bottom: 1px solid var(--red-line); }
.red-list-panel strong { min-width: 0; color: var(--red-forest-deep); font-family: 'Fraunces',serif; font-size: 1.06rem; overflow-wrap: anywhere; }
.red-list-panel span { min-width: 0; color: var(--red-muted); font-size: .91rem; }
.red-split-panel { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: start; padding: clamp(1.7rem,4vw,3rem); border: 1px solid var(--red-line); border-radius: 20px; background: rgba(255,250,238,.78); }
.red-status-note { margin-top: 2rem; padding: 1.3rem 1.5rem; border-left: 4px solid var(--red-ochre); border-radius: 0 14px 14px 0; background: rgba(238,224,195,.82); }
.red-status-note strong { display: block; margin-bottom: .3rem; color: var(--red-forest-deep); }
.red-status-note p { margin: 0; color: var(--red-muted); }
.red-contact-lines { display: grid; gap: .48rem; margin-top: .85rem; }
.red-contact-lines > div { display: grid; grid-template-columns: 4.6rem minmax(0,1fr); column-gap: .55rem; align-items: baseline; }
.red-contact-lines span { color: var(--red-earth); font-weight: 600; }
.red-contact-lines a { overflow-wrap: anywhere; }
.red-contact-form { display: grid; gap: 1rem; padding: 1.6rem; border: 1px solid var(--red-line); border-radius: 18px; background: rgba(255,250,238,.86); }
.red-contact-form label { display: grid; gap: .35rem; color: var(--red-forest); font-size: .86rem; font-weight: 600; }
.red-contact-form input,.red-contact-form select,.red-contact-form textarea { width: 100%; padding: .78rem .9rem; border: 1px solid var(--red-line); border-radius: 9px; background: #fff; color: var(--red-ink); font: inherit; }
.red-contact-form textarea { min-height: 180px; resize: vertical; }
.red-form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.red-contact-form .red-check { display: flex; align-items: flex-start; gap: .6rem; color: var(--red-muted); font-weight: 400; }
.red-contact-form .red-check input { width: auto; margin-top: .25rem; }
.red-honeypot { position: absolute !important; left: -10000px !important; }
.red-shell-page .alert { margin-bottom: 1rem; padding: .9rem 1rem; border-left: 4px solid var(--red-forest); border-radius: 10px; background: rgba(255,250,238,.9); }
.red-shell-page .alert.error { border-color: #973f32; }
.red-review-preview { width: min(100% - 2rem, 940px); margin: 2.5rem auto; padding: 2rem; border: 1px solid var(--red-line); border-radius: 18px; background: rgba(255,250,238,.9); box-shadow: 0 10px 32px rgba(76,58,30,.06); }
.red-review-preview h2 { margin: .4rem 0 .45rem; font-size: 1.65rem; }
.red-review-intro,.red-review-list > p { color: var(--red-muted); font-size: .9rem; }
.red-review-list { display: grid; gap: .75rem; margin-top: 1.2rem; }
.red-review-item { padding: 1rem 0; border-top: 1px solid var(--red-line); background: transparent !important; }
.red-review-item:first-child { border-top: 0; }
.red-review-meta { color: var(--red-muted); font-size: .78rem; }
.red-review-symbols { margin: .25rem 0; letter-spacing: .08rem; }
.red-review-symbols .is-empty { filter: grayscale(1); opacity: .25; }
.red-review-item p { margin: .4rem 0 0; color: var(--red-ink); font-size: .9rem; }
.red-review-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }

/* Mitgliederbereich */
.red-shell-page .member-wrap { width: min(1080px, calc(100% - 2.6rem)); }
.red-shell-page .member-main { width: 100%; max-width: none; margin: 0; padding: 2.5rem 0 5rem; }
.red-shell-page .card,
.red-shell-page .member-post { background: rgba(255,250,238,.86); }
.red-shell-page .member-highlight { background: linear-gradient(135deg, #27482c, #607b3a); }
.red-shell-page .member-highlight h2,
.red-shell-page .member-highlight p { color: #fffaf0; }
.subscription-login-page .member-main { padding-bottom: 2.8rem; }
.subscription-overview { margin-top: 0; align-items: center; }
.subscription-copy { min-width: 0; flex: 1 1 auto; }
.subscription-copy > p { max-width: 650px; }
.subscription-register { display: flex; align-items: center; flex-wrap: wrap; gap: .48rem; margin-top: .9rem; }
.subscription-register > span { color: rgba(255,250,240,.84); font-size: .74rem; }
.subscription-register .subscription-register-button { padding: .48rem .78rem; background: #d2b58b; color: #30251b; font-size: .72rem; font-weight: 700; }
.subscription-register .subscription-register-button:hover { background: #ead7aa; color: #30251b; }
.subscription-login {
  width: min(340px, 100%);
  flex: 0 0 min(340px, 100%);
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255,250,240,.34);
  border-radius: 16px;
  background: rgba(12,42,24,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.subscription-login-fields { display: grid; gap: .58rem; }
.subscription-login label { display: grid; gap: .22rem; }
.subscription-login label span { color: rgba(255,250,240,.86); font-size: .68rem; font-weight: 600; letter-spacing: .04em; }
.subscription-login input {
  width: 100%;
  min-width: 0;
  padding: .63rem .72rem;
  border: 1px solid rgba(255,250,240,.5);
  border-radius: 8px;
  background: rgba(255,253,247,.97);
  color: var(--red-ink);
  font: inherit;
  font-size: .84rem;
}
.subscription-login input:focus { outline: 3px solid rgba(221,190,119,.42); outline-offset: 1px; }
.subscription-login .btn { width: 100%; margin-top: .72rem; padding-block: .62rem; background: #fffaf0; color: var(--red-forest-deep); font-size: .82rem; font-weight: 700; }
.subscription-login .btn:hover { background: #ead7aa; color: var(--red-forest-deep); }
.subscription-password-link { display: block; margin-top: .42rem; color: rgba(255,250,240,.82); font-size: .68rem; text-align: center; text-underline-offset: .16em; }
.subscription-benefits { margin-bottom: 0; }
.member-dashboard-nav { display: flex; flex-wrap: wrap; gap: .65rem; margin: 0 0 1.35rem; }
.red-shell-page .member-dashboard-nav .btn.secondary {
  border: 1px solid var(--red-forest);
  background: rgba(255,250,238,.78);
  color: var(--red-forest);
}
.red-shell-page .member-dashboard-nav .btn.secondary:hover { background: rgba(39,72,44,.1); }

/* Kompakter Footer: drei Textspalten, darunter nur die quadratischen Kanalsymbole. */
.red-global-footer { position: relative; z-index: 2; padding: 1.35rem 0 0; border-top: 1px solid rgba(60, 73, 42, .22); background: rgba(252,246,230,.95); color: var(--red-ink); }
.red-footer-inner { width: min(1120px, calc(100% - 2.6rem)); margin: 0 auto; display: grid; grid-template-columns: .72fr 1.45fr 1.15fr; gap: clamp(1.25rem,3vw,2.8rem); align-items: start; }
.red-global-footer h2 { margin: 0 0 .4rem; font-size: .88rem; }
.red-global-footer p,
.red-global-footer li,
.red-global-footer address,
.red-global-footer dt,
.red-global-footer dd { color: #4e5547; font-size: .68rem; font-style: normal; line-height: 1.42; }
.red-global-footer ul { margin: 0; padding: 0; list-style: none; }
.red-global-footer a { color: var(--red-forest); text-decoration: none; }
.red-footer-quick li + li { margin-top: .13rem; }
.red-footer-imprint address strong { color: var(--red-forest-deep); }
.red-support { margin: 0; padding: 0; border: 0; }
.red-support p { margin: 0; font-size: .59rem; line-height: 1.32; }
.red-support dl { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .25rem .65rem; margin: .4rem 0 0; }
.red-support dl div { margin: 0; min-width: 0; }
.red-support dt { color: var(--red-forest); font-weight: 600; }
.red-support dt,
.red-support dd { font-size: .56rem; line-height: 1.25; }
.red-support dd { margin: 0; overflow-wrap: anywhere; }
.red-footer-social { display: flex; justify-content: center; align-items: center; gap: .48rem; margin: .95rem auto 0; }
.red-social-icon { width: 32px; height: 32px; display: grid; flex: 0 0 32px; place-items: center; overflow: hidden; border: 0; border-radius: 7px; background: var(--red-forest); color: #fffaf0; box-shadow: 0 3px 9px rgba(35,52,31,.1); }
.red-global-footer a.red-social-icon { color: #fffaf0; }
.red-social-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.red-social-icon:is(a) { transition: transform .18s ease, box-shadow .18s ease; }
.red-social-icon:is(a):hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(35,52,31,.18); }
.red-social-linkedin { background: #0a66c2; }
.red-social-instagram { background: linear-gradient(145deg,#6c3cc9,#c73583 55%,#df8c33); }
.red-social-youtube { background: #ff0033; }
.red-social-youtube svg rect { fill: #fffaf0; stroke: none; }
.red-social-youtube svg path { fill: #ff0033; stroke: #ff0033; }
.red-social-telegram { background: #229ed9; }
.red-social-telegram svg path:first-child { fill: #fffaf0; stroke: none; }
.red-social-telegram svg path:last-child { stroke: #229ed9; }
.red-social-email { background: var(--red-forest); }
.red-footer-bottom { margin-top: .75rem; padding: .45rem 1rem; background: var(--red-forest); color: rgba(255,250,238,.82); text-align: center; font-size: .58rem; }

@media (max-width: 1220px) {
  .red-header-inner { min-height: 92px; }
  .red-brand { flex-basis: 205px; height: 84px; }
  .red-primary-nav { gap: .32rem; }
  .red-primary-nav > a, .red-language summary { font-size: .66rem; }
  .red-primary-nav > .red-account-link { padding-inline: .55rem; }
}

/* Kompakte, aber vollstaendige Desktopnavigation fuer mobile Browser im Desktopmodus. */
@media (min-width: 901px) and (max-width: 1100px) {
  .red-header-inner { min-height: 82px; gap: .14rem; }
  .red-brand { flex-basis: 145px; height: 76px; }
  .red-primary-nav { gap: .18rem; }
  .red-primary-nav > a,
  .red-language summary { font-size: .56rem; }
  .red-primary-nav > a { padding-inline: .04rem; }
  .red-primary-nav > .red-account-link { padding: .47rem .43rem; }
  .red-language { margin-left: .1rem; }
  .red-language summary { gap: .2rem; padding-inline: .3rem; }
}

@media (max-width: 900px) {
  .red-header-inner { min-height: 86px; justify-content: space-between; }
  .red-brand { flex-basis: 210px; height: 82px; }
  .red-menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--red-line); border-radius: 10px; background: rgba(255,250,238,.8); cursor: pointer; }
  .red-menu-toggle > span:not(.sr-only) { width: 22px; height: 2px; display: block; background: var(--red-forest); }
  .red-primary-nav { position: absolute; top: 100%; left: 0; right: 0; max-height: 0; overflow: hidden; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; padding: 0 1.2rem; background: rgba(255,250,238,.98); box-shadow: 0 18px 35px rgba(61,51,31,.12); transition: max-height .24s ease, padding .24s ease; white-space: normal; }
  .red-primary-nav.is-open { max-height: 680px; padding-block: .7rem 1.1rem; }
  .red-primary-nav > a, .red-language { margin: .12rem; }
  .red-primary-nav > a, .red-language summary { min-height: 40px; padding: .65rem; border-bottom: 1px solid rgba(60,73,42,.1); font-size: .83rem; }
  .red-primary-nav > .red-account-link { justify-content: center; border-bottom: 0; }
  .red-language > div { position: static; margin-top: .2rem; box-shadow: none; }
  .red-process-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; }
  .red-process-step:nth-child(n+4) { min-height: 200px; }
}

@media (max-width: 820px) {
  .red-home-hero { min-height: 540px; background: linear-gradient(180deg, rgba(255,250,238,.2), rgba(255,250,238,.86)); }
  .red-home-hero .red-home-wrap { grid-template-columns: 1fr; align-items: end; }
  .red-home-copy { grid-column: 1; padding-top: 14rem; }
  .red-branch-grid { grid-template-columns: repeat(2, 1fr); }
  .red-path-grid { grid-template-columns: 1fr; }
  .red-path-card { min-height: auto; border-top: 1px solid var(--red-line); border-left: 0; }
  .red-path-card:first-child { border-top: 0; }
  .red-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .red-newsletter-panel,
  .red-content-hero .red-content-wrap,
  .red-two-column { grid-template-columns: 1fr; }
  .red-founder-grid { grid-template-columns: 1fr; }
  .red-form-grid { grid-template-columns: 1fr; }
  .red-card-grid.three,
  .red-card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .red-structure-diagram { aspect-ratio: auto; display: grid; gap: 1.15rem; }
  .red-structure-lines { display: none; }
  .red-method-orbit { position: relative; top: auto; left: auto; width: 190px; margin: 0 auto; transform: none; }
  .red-structure-core { position: relative; top: auto; left: auto; width: min(610px,92%); height: 225px; margin: -1.3rem auto 0; }
  .red-structure-branches { position: relative; right: auto; bottom: auto; left: auto; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .red-structure-card { min-height: 205px; }
  .red-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .red-split-panel { grid-template-columns: 1fr; }
  .red-footer-inner { grid-template-columns: 1fr; gap: 1rem; }
  .red-footer-inner > section { padding-bottom: .8rem; border-bottom: 1px solid rgba(60,73,42,.13); }
  .red-footer-inner > section:last-child { padding-bottom: 0; border-bottom: 0; }
}

@media (max-width: 680px) {
  .subscription-login { width: 100%; flex: 0 1 auto; }
}

@media (max-width: 580px) {
  body.red-shell-page { background-position: 29% top; }
  .red-header-inner { width: calc(100% - .8rem); }
  .red-brand { flex-basis: 164px; height: 76px; }
  .red-primary-nav { grid-template-columns: 1fr; }
  .red-home-wrap,
  .red-content-wrap,
  .red-footer-inner { width: min(100% - 1.5rem, 1160px); }
  .red-home-copy { padding-top: 16rem; }
  .red-home-copy h1 { font-size: 2.55rem; }
  .red-company-node { width: 98%; min-height: 145px; padding-inline: 2rem; }
  .red-structure-core { width: 100%; height: 190px; padding: 1rem 1rem 1.45rem; }
  .red-structure-core > .red-tree-mark { width: 40px; height: 40px; }
  .red-structure-branches { grid-template-columns: 1fr; }
  .red-structure-card { min-height: auto; padding: 1.15rem; }
  .red-branch-grid,
  .red-blog-grid,
  .red-card-grid,
  .red-card-grid.three,
  .red-card-grid.four { grid-template-columns: 1fr; }
  .red-newsletter-panel { padding: 1.35rem; }
  .red-newsletter-panel form { grid-template-columns: 1fr; }
  .red-process-grid { grid-template-columns: 1fr; }
  .red-process-step { min-height: auto; }
  .red-list-panel li { grid-template-columns: 1fr; gap: .25rem; }
  .red-contact-lines > div { grid-template-columns: 4.3rem minmax(0,1fr); }
  .red-support dl { grid-template-columns: 1fr; }
  .subscription-login { padding: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Version 1.88: Der Landschaftshintergrund bleibt auf allen Seiten unverdeckt.
   Nur grossflaechige Seitenschleier werden entfernt; Karten und Textfelder
   behalten bewusst ihre eigenen, gut lesbaren Flaechen. */
body.red-shell-page {
  background-image: url('red-landscape-bg-v168.webp');
}
.red-shell-page > .hero,
.red-shell-page > header.hero,
.red-shell-page .member-hero,
.red-shell-page > main:not(.red-home-main),
.red-shell-page > article,
.red-shell-page .soft-section,
.red-shell-page .red-content-page,
.red-shell-page .red-content-hero,
.red-shell-page .red-blog-section,
.red-shell-page .red-home-hero {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Rechtliche Links und gemeinsames, scrollbar lesbares Dialogfenster. */
.red-footer-legal {
  position: static;
  top: auto;
  z-index: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .8rem;
  margin-top: .5rem;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  font-size: .68rem;
}
.red-footer-legal a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .16em;
}
.red-legal-dialog {
  width: min(920px, calc(100% - 2rem));
  max-width: none;
  max-height: min(90vh, 940px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: var(--red-ink);
  box-shadow: 0 30px 90px rgba(25, 32, 23, .32);
}
.red-legal-dialog::backdrop { background: rgba(21, 31, 22, .66); backdrop-filter: blur(3px); }
.red-legal-dialog-card {
  max-height: min(90vh, 940px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(70, 78, 45, .24);
  border-radius: inherit;
  background: #fffaf0;
}
.red-legal-dialog-header {
  position: relative;
  flex: 0 0 auto;
  padding: 1.25rem 4rem 1rem 1.5rem;
  border-bottom: 1px solid var(--red-line);
  background: #f7efdc;
}
.red-legal-dialog-header span {
  display: block;
  margin-bottom: .22rem;
  color: var(--red-ochre);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.red-legal-dialog-header h2 { margin: 0; font-size: clamp(1.45rem, 3vw, 2rem); }
.red-legal-dialog-close {
  position: absolute;
  top: .75rem;
  right: .85rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--red-line);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--red-forest);
  font: 600 1.45rem/1 'Work Sans', sans-serif;
  cursor: pointer;
}
.red-legal-dialog-body {
  min-height: 12rem;
  padding: clamp(1.15rem, 3vw, 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.red-legal-dialog-footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: .6rem;
  padding: .85rem 1.2rem;
  border-top: 1px solid var(--red-line);
  background: #f7efdc;
}
.red-legal-loading,
.red-legal-error { margin: 0; color: var(--red-muted); }
.red-legal-error { color: #7b302c; }

/* Dieselbe Rechtstextquelle dient auch als eigenstaendig erreichbare Seite. */
.red-legal-page-shell { padding: clamp(2.2rem, 6vw, 5rem) 0; }
.red-legal-page-wrap { width: min(920px, calc(100% - 2rem)); margin: 0 auto; }
.red-legal-document {
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid var(--red-line);
  border-radius: 20px;
  background: rgba(255, 250, 240, .94);
  box-shadow: var(--red-shadow);
}
.red-legal-document > h1 { margin: 0 0 .55rem; font-size: clamp(2rem, 5vw, 3.4rem); }
.red-legal-document > h2,
.red-legal-document section > h2 { margin: 2rem 0 .65rem; font-size: clamp(1.25rem, 3vw, 1.65rem); }
.red-legal-document h3 { margin: 1.25rem 0 .45rem; font-size: 1.08rem; }
.red-legal-document p { margin: 0 0 .9rem; color: #3e463c; line-height: 1.68; }
.red-legal-document ul { margin: .4rem 0 1rem; padding-left: 1.25rem; }
.red-legal-document li { margin: .38rem 0; line-height: 1.58; }
.red-legal-document a { color: var(--red-forest); text-underline-offset: .16em; overflow-wrap: anywhere; }
.red-legal-meta { margin-bottom: 1.25rem !important; color: var(--red-muted) !important; font-size: .84rem; }
.red-legal-status {
  margin: 1.25rem 0 1.6rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--red-ochre);
  border-radius: 0 10px 10px 0;
  background: #f1e5c9;
  color: #49371d;
  line-height: 1.55;
}
.red-legal-consent a { color: var(--red-forest); font-weight: 600; text-underline-offset: .16em; }

@media (max-width: 580px) {
  .red-legal-dialog { width: calc(100% - .8rem); max-height: calc(100dvh - .8rem); border-radius: 14px; }
  .red-legal-dialog-card { max-height: calc(100dvh - .8rem); }
  .red-legal-dialog-header { padding: 1rem 3.6rem .8rem 1rem; }
  .red-legal-dialog-body { padding: 1rem; }
  .red-legal-document { padding: 1.15rem; border-radius: 15px; }
}

/* Version 1.89: lokale Lesekarten statt eines seitenweiten Schleiers. */
.red-reading-card,
.red-shell-page .red-home-copy > .red-reading-card,
.red-shell-page .red-section-heading,
.red-shell-page .red-structure-caption,
.red-shell-page .red-values,
.red-shell-page .red-contact-strip > .red-home-wrap,
.red-shell-page .red-content-hero .red-content-wrap > :first-child,
.red-shell-page .red-two-column:not(.red-split-panel) > .red-content-copy,
.red-shell-page .red-detail-section.red-content-copy,
.red-shell-page .red-founder-grid > .red-content-copy,
.red-shell-page .red-detail-section:not(.red-split-panel) > .red-detail-heading,
.red-shell-page header.hero > .wrap:not(.hero-grid),
.red-shell-page header.hero > .wide,
.red-shell-page .hero-grid > :first-child,
.red-shell-page main > article > .wrap:first-child,
.red-shell-page > article > .wrap:first-child,
.red-shell-page .archive-section-head > div,
.red-shell-page .method-intro,
.red-shell-page .reference-gallery-head,
.red-shell-page .science-hero-copy,
.red-shell-page .sample-intro > .opening,
.red-shell-page .science-source,
.red-shell-page .member-hero > .member-wrap,
.red-shell-page .member-lead,
.red-shell-page .section-title {
  box-sizing: border-box;
  padding: clamp(1.15rem, 2.6vw, 2rem);
  border: 1px solid var(--red-line);
  border-radius: 18px;
  background: rgba(255, 250, 238, .94);
  box-shadow: 0 12px 34px rgba(61, 51, 31, .08);
}
.red-shell-page .red-reading-card { margin-block: 1.5rem; }
.red-shell-page .red-home-copy > .red-reading-card { margin-block: 0; }

/* Die nummerierten Magazinabschnitte behalten ihre eigene Geometrie. */
.red-shell-page .sample-section {
  margin-top: 2rem;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.15rem, 2.6vw, 2rem) clamp(1.35rem, 3vw, 2rem) clamp(5.2rem, 8vw, 6rem);
  border: 1px solid var(--red-line);
  border-radius: 18px;
  background: rgba(255, 250, 238, .94);
  box-shadow: 0 12px 34px rgba(61, 51, 31, .08);
}
.red-shell-page .sample-section::before {
  top: clamp(1.35rem, 3vw, 2rem);
  left: clamp(1.15rem, 2.6vw, 2rem);
}
.red-shell-page .sample-section h2 { margin-top: 0; }

/* Bereits vorhandene Karten behalten ihre eigene Gestaltung. */
.red-shell-page .red-reading-card > :first-child,
.red-shell-page .method-intro > :first-child,
.red-shell-page .reference-gallery-head > :first-child,
.red-shell-page .member-lead:first-child { margin-top: 0; }
.red-shell-page .red-reading-card > :last-child,
.red-shell-page .method-intro > :last-child,
.red-shell-page .reference-gallery-head > :last-child,
.red-shell-page .member-lead:last-child { margin-bottom: 0; }

@media (max-width: 580px) {
  .red-reading-card,
  .red-shell-page .red-home-copy > .red-reading-card,
  .red-shell-page .red-section-heading,
  .red-shell-page .red-structure-caption,
  .red-shell-page .red-values,
  .red-shell-page .red-contact-strip > .red-home-wrap,
  .red-shell-page .red-content-hero .red-content-wrap > :first-child,
  .red-shell-page .red-two-column:not(.red-split-panel) > .red-content-copy,
  .red-shell-page .red-detail-section.red-content-copy,
  .red-shell-page .red-founder-grid > .red-content-copy,
  .red-shell-page .red-detail-section:not(.red-split-panel) > .red-detail-heading,
  .red-shell-page header.hero > .wrap:not(.hero-grid),
  .red-shell-page header.hero > .wide,
  .red-shell-page .hero-grid > :first-child,
  .red-shell-page main > article > .wrap:first-child,
  .red-shell-page > article > .wrap:first-child,
  .red-shell-page .archive-section-head > div,
  .red-shell-page .method-intro,
  .red-shell-page .reference-gallery-head,
  .red-shell-page .science-hero-copy,
  .red-shell-page .sample-intro > .opening,
  .red-shell-page .science-source,
  .red-shell-page .member-hero > .member-wrap,
  .red-shell-page .member-lead,
  .red-shell-page .section-title {
    padding: 1rem;
    border-radius: 14px;
  }
  .red-shell-page .sample-section {
    margin-top: 1.2rem;
    padding: 1rem;
    border-radius: 14px;
  }
  .red-shell-page .sample-section::before {
    position: static;
    margin: 0 0 .8rem;
  }
  .red-shell-page .sample-section h2 { margin-top: 0; }
}

/* Version 1.90: RED Science und PHP-Abonnementverwaltung angleichen. */
.red-shell-page .science-hero {
  background: transparent !important;
  backdrop-filter: none !important;
}
.red-science-page .sample-notice,
.red-science-page .science-toc,
.red-science-page .science-cta {
  border: 1px solid var(--red-line);
  border-radius: 18px;
  background: rgba(255, 250, 238, .94);
  color: var(--red-ink);
  box-shadow: 0 12px 34px rgba(61, 51, 31, .08);
}
body.red-science-page .science-cta h2 { color: var(--red-forest-deep); }
body.red-science-page .science-cta p { color: #3e463c; }
body.red-science-page .science-cta .issue-label { color: var(--red-ochre); }
body.red-science-page .science-cta .issue-label::before { background: var(--red-ochre); }

.red-shell-page .member-highlight {
  border: 1px solid var(--red-line);
  background: rgba(255, 250, 238, .94);
  color: var(--red-ink);
  box-shadow: 0 12px 34px rgba(61, 51, 31, .08);
}
.red-shell-page .member-highlight h2,
.red-shell-page .member-highlight p { color: var(--red-ink); }
.red-shell-page .member-highlight .eyebrow { color: var(--red-ochre); }
.red-shell-page .member-highlight > .btn {
  background: var(--red-forest);
  color: #fffaf0;
}
.red-shell-page .member-highlight > .btn:hover { background: var(--red-forest-deep); color: #fffaf0; }
.red-shell-page .subscription-register > span,
.red-shell-page .subscription-login label span { color: var(--red-muted); }
.red-shell-page .subscription-login {
  border-color: var(--red-line);
  background: rgba(247, 239, 220, .88);
  box-shadow: none;
}
.red-shell-page .subscription-login input { border-color: var(--red-line); }
.red-shell-page .subscription-login .btn {
  background: var(--red-forest);
  color: #fffaf0;
}
.red-shell-page .subscription-login .btn:hover { background: var(--red-forest-deep); color: #fffaf0; }
.red-shell-page .subscription-password-link { color: var(--red-forest); }

/* Die fünf Schritte des Methodenkreislaufs bleiben gleich hoch ausgerichtet. */
.red-shell-page .method-cycle > div { padding-inline: .55rem; }
.red-shell-page .method-cycle strong {
  font-size: clamp(.9rem, 1.15vw, 1.02rem);
}
.red-shell-page .method-cycle > div:last-child strong {
  white-space: nowrap;
}

@media (max-width: 580px) {
  .red-science-page .sample-notice,
  .red-science-page .science-toc,
  .red-science-page .science-cta,
  .red-shell-page .member-highlight { border-radius: 14px; }
}
