/* Auto-extracted from design-e.html + subpage extensions */
:root {
    --paper: #fafaf6;
    --paper-tint: #f3f8f7;
    --paper-cream: #fbf3df;       /* soft yellow paper */
    --paper-blush: #ffe5d6;       /* soft peach */
    --teal: #0a7a4a;              /* primary green — was petrol, now smaragd */
    --teal-2: #075e39;            /* dark green */
    --teal-3: #c5e3d3;            /* light tint */
    --smaragd: #0a7a4a;           /* primary brand green */
    --smaragd-deep: #075e39;
    --orange: #ea6b3b;            /* warm bright orange */
    --orange-deep: #c5512a;
    --yellow: #f5c95e;            /* mustard yellow */
    --pink: #f4b7a4;              /* soft pink/coral */
    --ink: #11211f;
    --ink-soft: #41524f;
    --ink-faint: #7a8a87;

    --f-display: "Bricolage Grotesque", system-ui, sans-serif;
    --f-body: "Manrope", system-ui, sans-serif;

    --maxw: 1320px;
    --pad: clamp(22px, 4vw, 56px);
    --r-sm: 8px;
    --r: 18px;
    --r-lg: 28px;
    --r-pill: 999px;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

  .display {
    font-family: var(--f-display);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.025em;
    font-variation-settings: "opsz" 48;
  }
  .display em { font-style: italic; font-weight: 500; }

  .eyebrow {
    font-family: var(--f-body); font-weight: 700;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow .bd {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
  }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--f-body); font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: var(--r-pill);
    border: 0;
    transition: transform .15s, background .15s, color .15s;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-teal { background: var(--teal); color: var(--paper); }
  .btn-teal:hover { background: var(--teal-2); }
  .btn-orange { background: var(--orange); color: var(--paper); }
  .btn-orange:hover { background: var(--orange-deep); }
  .btn-ghost { background: transparent; border: 1.5px solid currentColor; }
  .btn-ghost:hover { background: currentColor; }
  .btn-ghost:hover span, .btn-ghost:hover { color: var(--paper); }

  /* ========== HEADER ========== */
  .top-bar {
    background: var(--ink);
    color: var(--paper);
    padding: 8px 0;
    font-size: 12.5px;
  }
  .top-bar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .top-bar .acc { color: var(--yellow); }

  header.e {
    background: var(--smaragd);
    border-bottom: 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    color: var(--paper);
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(10px);
  }
  header.e .container {
    display: flex; align-items: center; gap: 32px;
    padding-top: 18px; padding-bottom: 18px;
  }
  .brand-e {
    display: flex; align-items: center; gap: 14px;
    flex-shrink: 0;
  }
  .brand-e .sun {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .brand-e .sun svg { width: 48px; height: 48px; }
  .brand-e .wm { line-height: 1; }
  .brand-e .t1 {
    font-family: var(--f-display); font-weight: 600; font-size: 22px;
    color: var(--paper);
    letter-spacing: -0.015em;
  }
  .brand-e .t1 em { font-style: normal; color: var(--paper); }
  .brand-e .t-rule {
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
    margin: 6px 0 5px;
  }
  .brand-e .t2 {
    font-family: var(--f-body);
    font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--yellow); font-weight: 600;
  }
  nav.e-nav {
    flex: 1;
    display: flex; gap: 2px; justify-content: center; flex-wrap: wrap;
  }
  nav.e-nav a {
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,0.78);
    transition: background .15s, color .15s;
  }
  nav.e-nav a:hover { background: rgba(255,255,255,0.10); color: var(--paper); }
  nav.e-nav a.active { background: var(--paper); color: var(--smaragd); }
  @media (max-width: 900px) { nav.e-nav { display: none; } }

  /* Dropdown */
  nav.e-nav .e-drop {
    position: relative;
    display: inline-block;
  }
  nav.e-nav .e-drop > .e-drop-trigger {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.78);
    font: inherit;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .15s, color .15s;
    font-family: var(--f-body);
  }
  nav.e-nav .e-drop > .e-drop-trigger:hover,
  nav.e-nav .e-drop:hover > .e-drop-trigger,
  nav.e-nav .e-drop:focus-within > .e-drop-trigger {
    background: rgba(255,255,255,0.10);
    color: var(--paper);
  }
  nav.e-nav .e-drop > .e-drop-trigger.active {
    background: var(--paper);
    color: var(--smaragd);
  }
  nav.e-nav .e-drop > .e-drop-trigger .caret {
    font-size: 10px;
    line-height: 1;
    transition: transform .15s;
  }
  nav.e-nav .e-drop:hover > .e-drop-trigger .caret,
  nav.e-nav .e-drop:focus-within > .e-drop-trigger .caret {
    transform: rotate(180deg);
  }
  nav.e-nav .e-drop-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 260px;
    background: var(--paper);
    border: 1px solid var(--line, #d8cdb6);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 24px 60px -24px rgba(14, 32, 31, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  nav.e-nav .e-drop:hover > .e-drop-menu,
  nav.e-nav .e-drop:focus-within > .e-drop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  /* Bridge the gap to keep hover alive */
  nav.e-nav .e-drop-menu::before {
    content: "";
    position: absolute;
    top: -8px; left: 0; right: 0;
    height: 8px;
  }
  nav.e-nav .e-drop-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    white-space: nowrap;
  }
  nav.e-nav .e-drop-menu a:hover {
    background: var(--smaragd);
    color: var(--paper);
  }
  nav.e-nav .e-drop-menu a .nr {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--ink-faint, #7e8d8c);
    text-transform: uppercase;
  }
  nav.e-nav .e-drop-menu a:hover .nr {
    color: var(--yellow);
  }

  /* ========== HERO ========== */
  .hero-e {
    background: var(--teal);
    color: var(--paper);
    padding: clamp(56px, 8vw, 96px) 0 0;
    position: relative;
    overflow: hidden;
  }
  .hero-e::before {
    content: ""; position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(80px);
  }
  .hero-e::after {
    content: ""; position: absolute;
    bottom: 40%; left: -120px;
    width: 280px; height: 280px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(70px);
  }
  .hero-e .container { position: relative; z-index: 1; }
  .hero-e-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center;
  }
  .hero-e h1.display {
    font-size: clamp(56px, 9vw, 124px);
    color: var(--paper);
    margin: 24px 0 0;
  }
  .hero-e h1.display em { color: var(--yellow); }
  .hero-e h1.display .pill {
    background: var(--orange);
    border-radius: var(--r-pill);
    padding: 0.05em 0.25em;
    color: var(--paper);
    display: inline-block;
    line-height: 1.0;
    font-style: normal;
  }
  .hero-e .lead {
    font-size: clamp(17px, 1.5vw, 21px);
    color: rgba(255,255,255,0.85);
    max-width: 52ch;
    margin: 32px 0 0;
    line-height: 1.55;
  }
  .hero-e .lead strong { color: var(--paper); font-weight: 700; }
  .hero-e .hero-actions {
    margin-top: 36px;
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .hero-e .hero-actions .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.35); }
  .hero-e .hero-actions .btn-ghost:hover { background: var(--paper); color: var(--teal); border-color: var(--paper); }
  .hero-photo-e {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 24px 80px -16px rgba(0,0,0,0.4);
    transform: rotate(2deg);
    position: relative;
  }
  .hero-photo-e img { width: 100%; height: 100%; object-fit: cover; }
  .hero-photo-e .sticker {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--yellow); color: var(--ink);
    border-radius: var(--r-pill);
    padding: 10px 18px;
    font-weight: 700; font-size: 13px;
    transform: rotate(-4deg);
  }
  .hero-photo-e .sticker-2 {
    position: absolute; top: 24px; right: -16px;
    background: var(--paper); color: var(--teal);
    border-radius: 50%;
    width: 100px; height: 100px;
    display: grid; place-items: center;
    text-align: center;
    font-family: var(--f-display); font-weight: 700; font-size: 14px;
    line-height: 1.1;
    transform: rotate(8deg);
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
  }
  @media (max-width: 900px) {
    .hero-e-grid { grid-template-columns: 1fr; }
    .hero-photo-e { transform: none; }
  }

  /* Bottom of hero — diagonal split into paper */
  .hero-trim {
    margin-top: clamp(56px, 8vw, 96px);
    background: var(--orange);
    height: 80px;
    position: relative;
  }
  .hero-trim::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 100%;
    background: var(--paper);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }
  .hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--paper); border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: -40px;
    position: relative; z-index: 2;
    box-shadow: 0 20px 60px -24px rgba(14,108,106,0.25);
    border: 1px solid var(--teal-3);
  }
  .hero-stats .cell {
    padding: 28px 24px;
    border-right: 1px solid var(--teal-3);
  }
  .hero-stats .cell:last-child { border-right: 0; }
  .hero-stats .cell .lbl {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-faint); font-weight: 700;
  }
  .hero-stats .cell .v {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(32px, 4.2vw, 52px); line-height: 1; margin-top: 8px;
    color: var(--teal);
    font-variation-settings: "opsz" 48;
  }
  .hero-stats .cell .v em { font-style: italic; color: var(--orange); }
  @media (max-width: 800px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-stats .cell { border-bottom: 1px solid var(--teal-3); }
    .hero-stats .cell:nth-child(2) { border-right: 0; }
  }

  /* ========== SERVICES ========== */
  .section { padding: clamp(64px, 9vw, 128px) 0; }
  .sec-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
    margin-bottom: 56px;
  }
  .sec-head h2.display {
    font-size: clamp(40px, 6vw, 88px);
    color: var(--teal);
  }
  .sec-head h2.display em { color: var(--orange); }
  .sec-head p {
    color: var(--ink-soft); font-size: 16.5px;
    max-width: 46ch; margin: 0;
  }
  @media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; } }

  .svc-grid-e {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  }
  .svc-e {
    grid-column: span 4;
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 32px 28px 28px;
    border: 1.5px solid rgba(14,108,106,0.14);
    transition: transform .2s, border-color .2s, background .2s;
    display: flex; flex-direction: column; gap: 16px;
    min-height: 280px;
  }
  .svc-e:hover { transform: translateY(-4px); border-color: var(--teal); }
  .svc-e.large { grid-column: span 6; min-height: 320px; }
  .svc-e .top {
    display: flex; justify-content: space-between; align-items: center;
  }
  .svc-e .nr {
    font-family: var(--f-display); font-weight: 700; font-size: 14px;
    color: var(--orange);
    letter-spacing: 0.06em;
  }
  .svc-e .chip {
    background: var(--teal-3); color: var(--teal);
    padding: 4px 10px; border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .svc-e h3 {
    font-family: var(--f-display); font-weight: 600;
    font-size: 28px; line-height: 1.0; margin: 0;
    color: var(--teal);
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 32;
  }
  .svc-e h3 em { font-style: italic; color: var(--orange); }
  .svc-e p { margin: 0; font-size: 14.5px; color: var(--ink-soft); flex: 1; }
  .svc-e .more {
    font-weight: 700; font-size: 14px;
    color: var(--teal);
    display: inline-flex; gap: 6px; align-items: center;
  }
  .svc-e .more::after { content: "→"; transition: transform .15s; }
  .svc-e:hover .more::after { transform: translateX(4px); }
  .svc-e.orange { background: var(--orange); color: var(--paper); border-color: var(--orange); }
  .svc-e.orange h3, .svc-e.orange .more { color: var(--paper); }
  .svc-e.orange h3 em { color: var(--yellow); }
  .svc-e.orange p { color: rgba(255,255,255,0.85); }
  .svc-e.orange .chip { background: rgba(255,255,255,0.18); color: var(--paper); }
  .svc-e.orange .nr { color: var(--yellow); }
  .svc-e.yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
  .svc-e.yellow h3, .svc-e.yellow .more { color: var(--teal); }
  .svc-e.yellow h3 em { color: var(--orange); }
  .svc-e.pink { background: var(--pink); border-color: var(--pink); }
  .svc-e.teal { background: var(--teal); color: var(--paper); border-color: var(--teal); }
  .svc-e.teal h3, .svc-e.teal .more { color: var(--paper); }
  .svc-e.teal h3 em { color: var(--yellow); }
  .svc-e.teal p { color: rgba(255,255,255,0.8); }
  .svc-e.teal .chip { background: var(--yellow); color: var(--ink); }
  .svc-e.teal .nr { color: var(--yellow); }
  @media (max-width: 900px) { .svc-e, .svc-e.large { grid-column: span 6; } }
  @media (max-width: 600px) { .svc-e, .svc-e.large { grid-column: span 12; } }

  /* ========== PROCESS ========== */
  .process-e {
    background: var(--paper-cream);
    padding: clamp(64px, 9vw, 128px) 0;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    margin: 0 var(--pad);
    max-width: var(--maxw);
    margin-left: auto; margin-right: auto;
  }
  .process-e h2 { color: var(--teal); }
  .process-e h2 em { color: var(--orange); }
  .steps-e {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 48px;
  }
  .step-e {
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 24px;
    border: 1.5px solid rgba(14,108,106,0.10);
  }
  .step-e .nr {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--paper);
    display: grid; place-items: center;
    font-family: var(--f-display); font-weight: 700; font-size: 16px;
  }
  .step-e:nth-child(2) .nr { background: var(--orange); }
  .step-e:nth-child(3) .nr { background: var(--yellow); color: var(--teal); }
  .step-e:nth-child(4) .nr { background: var(--pink); color: var(--teal); }
  .step-e h3 {
    font-family: var(--f-display); font-weight: 600;
    font-size: 22px; line-height: 1.05;
    margin: 18px 0 8px;
    color: var(--teal);
  }
  .step-e p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
  @media (max-width: 900px) { .steps-e { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .steps-e { grid-template-columns: 1fr; } }

  /* ========== FÖRDERUNG ========== */
  .foerderung-e {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(64px, 9vw, 128px) 0;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .foerderung-e .container { padding-left: clamp(22px, 4vw, 56px); padding-right: clamp(22px, 4vw, 56px); }
  .foerderung-e h2.display { color: var(--paper); }
  .foerderung-e h2.display em { color: var(--yellow); }
  .foerderung-e .grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
  .foerderung-e .lead { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 48ch; }
  .foerderung-e .pct {
    text-align: center;
    background: var(--yellow); color: var(--ink);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    transform: rotate(-3deg);
    box-shadow: 0 24px 60px -16px rgba(245,201,94,0.4);
  }
  .foerderung-e .pct .n {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(140px, 18vw, 240px); line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--orange);
  }
  .foerderung-e .pct .n .pct-mark { color: var(--teal); font-size: 0.5em; }
  .foerderung-e .pct .l { font-weight: 700; font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 12px; color: var(--teal); }
  @media (max-width: 800px) {
    .foerderung-e .grid { grid-template-columns: 1fr; }
    .foerderung-e .pct { transform: none; }
  }

  /* ========== CONTACT ========== */
  .contact-e {
    background: var(--orange);
    color: var(--paper);
    padding: clamp(64px, 9vw, 128px) 0;
  }
  .contact-e .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; }
  .contact-e h2.display { color: var(--paper); font-size: clamp(40px, 6vw, 80px); }
  .contact-e h2.display em { color: var(--yellow); }
  .contact-e p { font-size: 17px; color: rgba(255,255,255,0.88); max-width: 46ch; }
  .contact-e .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
  .contact-e .actions .btn-teal { background: var(--teal); }
  .contact-e .actions .btn-ghost { color: var(--paper); border-color: var(--paper); }
  .contact-e .actions .btn-ghost:hover { background: var(--paper); color: var(--orange); border-color: var(--paper); }
  .contact-e .card-e {
    background: var(--paper); color: var(--ink);
    border-radius: var(--r-lg);
    padding: 32px;
  }
  .contact-e .card-e dl { margin: 0; display: grid; gap: 16px; }
  .contact-e .card-e dt {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange); font-weight: 700;
  }
  .contact-e .card-e dd { margin: 4px 0 0; font-size: 16px; color: var(--ink); font-weight: 500; }
  @media (max-width: 800px) { .contact-e .grid { grid-template-columns: 1fr; } }

  /* ========== FOOTER ========== */
  footer.e {
    background: var(--teal);
    color: var(--paper);
    padding: 48px 0 24px;
  }
  footer.e .row {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
  footer.e h4 {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--yellow); font-weight: 700;
    margin: 0 0 14px;
  }
  footer.e a {
    display: block; padding: 4px 0;
    color: rgba(255,255,255,0.78); font-size: 14px;
  }
  footer.e a:hover { color: var(--paper); }
  footer.e .fb-brand {
    font-family: var(--f-display); font-weight: 700; font-size: 26px;
    color: var(--paper); margin-bottom: 10px;
    font-variation-settings: "opsz" 32;
    letter-spacing: -0.02em;
  }
  footer.e .fb-brand em { color: var(--yellow); font-style: italic; }
  footer.e .tag {
    margin-top: 12px;
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--orange); font-weight: 700;
  }
  footer.e .meta {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
  }
  @media (max-width: 800px) { footer.e .row { grid-template-columns: 1fr 1fr; } }

/* ========== RIBBON (scrolling) ========== */
.ribbon-e {
  background: var(--orange);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  margin-top: 80px;
  position: relative;
}
.ribbon-e .ribbon-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: ribbon-scroll 36s linear infinite;
  font-family: var(--f-display); font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.ribbon-e .ribbon-track span { display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.ribbon-e .ribbon-track span::after {
  content: "●"; color: var(--yellow); font-size: 14px;
}
@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== ÜBER-TEASER ========== */
.about-e {
  padding: clamp(72px, 10vw, 144px) 0;
  background: var(--paper);
}
.about-e .grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.about-e h2.display {
  font-size: clamp(44px, 6.5vw, 88px);
  color: var(--teal);
  margin: 20px 0 0;
}
.about-e h2.display em { color: var(--orange); }
.about-e p.lead {
  margin: 28px 0 0;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.55;
}
.about-e p.lead strong { color: var(--teal); font-weight: 700; }
.about-e .mute { margin: 18px 0 0; color: var(--ink-faint); max-width: 52ch; font-size: 15px; }
.about-e .photo-stack {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 14px;
  position: relative;
}
.about-e .photo-stack .ph {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.about-e .photo-stack .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-e .photo-stack .tall {
  aspect-ratio: 3/4;
  grid-row: 1 / 3;
}
.about-e .photo-stack .square { aspect-ratio: 1/1; }
.about-e .photo-stack .badge {
  background: var(--teal); color: var(--paper);
  border-radius: var(--r-lg);
  aspect-ratio: 1/1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
}
.about-e .photo-stack .badge.depi-badge {
  background: var(--paper);
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line, #d8cdb6);
}
.about-e .photo-stack .badge.depi-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about-e .photo-stack .badge .lbl {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  color: var(--yellow);
}
.about-e .photo-stack .badge .v {
  font-family: var(--f-display); font-weight: 700; font-size: 42px; line-height: 1;
  color: var(--paper);
}
.about-e .photo-stack .badge .sub {
  font-size: 11px; letter-spacing: 0.06em; line-height: 1.3;
  color: rgba(255,255,255,0.78);
}
.about-e .actions { margin-top: 32px; }
.about-e .btn-link {
  font-weight: 700; font-size: 15px;
  color: var(--orange);
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 0;
  border-bottom: 2px solid currentColor;
}
.about-e .btn-link:hover { color: var(--teal); }
@media (max-width: 900px) {
  .about-e .grid { grid-template-columns: 1fr; }
}

/* ========== MANIFESTO (dark) ========== */
.manifesto-e {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 10vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto-e::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: var(--teal); opacity: 0.5;
  border-radius: 50%; filter: blur(80px);
}
.manifesto-e::after {
  content: ""; position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: var(--orange); opacity: 0.3;
  border-radius: 50%; filter: blur(70px);
}
.manifesto-e .container { position: relative; z-index: 1; }
.manifesto-e .grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
.manifesto-e h2.display {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--paper);
  margin: 20px 0 0;
}
.manifesto-e h2.display em { color: var(--yellow); }
.manifesto-e h2.display .line { display: block; }
.manifesto-e .eyebrow { color: var(--yellow); }
.manifesto-e .eyebrow .bd { background: var(--yellow); }
.manifesto-e p.lead {
  margin: 32px 0 0;
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.55;
}
.manifesto-e .values {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.manifesto-e .values > div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: grid; grid-template-columns: 1fr 2.2fr; gap: 24px;
  align-items: baseline;
}
.manifesto-e .values dt {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: -0.01em;
}
.manifesto-e .values dd {
  margin: 0;
  font-size: 15.5px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.manifesto-e .actions { margin-top: 32px; }
@media (max-width: 900px) {
  .manifesto-e .grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-e .values > div { grid-template-columns: 1fr; gap: 6px; }
}

/* ========== GALLERY ========== */
.gallery-e {
  padding: clamp(64px, 9vw, 128px) 0;
  background: var(--paper);
}
.gallery-e .head {
  display: flex; justify-content: space-between; align-items: end; gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-e .head h2.display {
  font-size: clamp(40px, 5.5vw, 76px);
  color: var(--teal);
  margin: 16px 0 0;
}
.gallery-e .head h2.display em { color: var(--orange); }
.gallery-e .head p { color: var(--ink-soft); max-width: 36ch; margin: 0; }
.gallery-e .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-e .ph {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--teal-3);
}
.gallery-e .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-e .ph::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--paper); color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s, transform .2s;
}
.gallery-e .ph:hover::after { opacity: 1; transform: translateY(0); }
.gallery-e .g1 { grid-column: span 4; grid-row: span 2; }
.gallery-e .g2 { grid-column: span 2; grid-row: span 2; }
.gallery-e .g3 { grid-column: span 2; grid-row: span 2; }
.gallery-e .g4 { grid-column: span 4; grid-row: span 1; }
.gallery-e .g5 { grid-column: span 4; grid-row: span 1; }
@media (max-width: 900px) {
  .gallery-e .grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .gallery-e .g1 { grid-column: span 4; grid-row: span 2; }
  .gallery-e .g2 { grid-column: span 2; grid-row: span 2; }
  .gallery-e .g3 { grid-column: span 2; grid-row: span 2; }
  .gallery-e .g4, .gallery-e .g5 { grid-column: span 4; grid-row: span 1; }
}
@media (max-width: 540px) {
  .gallery-e .grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery-e .g1 { grid-column: span 2; grid-row: span 2; }
  .gallery-e .g2 { grid-column: span 2; grid-row: span 2; }
  .gallery-e .g3 { grid-column: span 2; grid-row: span 2; }
  .gallery-e .g4, .gallery-e .g5 { grid-column: span 2; grid-row: span 1; }
}

/* ========== HERSTELLER ========== */
.hersteller-e {
  padding: clamp(64px, 9vw, 128px) 0;
  background: var(--paper-cream);
}
.hersteller-e .head {
  display: flex; justify-content: space-between; align-items: end; gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hersteller-e h2.display {
  font-size: clamp(40px, 5.5vw, 76px);
  color: var(--teal);
  margin: 16px 0 0;
}
.hersteller-e h2.display em { color: var(--orange); }
.hersteller-e .head p { color: var(--ink-soft); max-width: 38ch; margin: 0; }
.hersteller-e .logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  background: var(--teal);
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hersteller-e .logo {
  background: var(--paper);
  padding: 36px 16px;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px;
  color: var(--teal);
  letter-spacing: -0.01em;
  transition: background .15s, color .15s;
  min-height: 110px;
  text-align: center;
}
.hersteller-e .logo:hover {
  background: var(--orange); color: var(--paper);
}
@media (max-width: 900px) {
  .hersteller-e .logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .hersteller-e .logos { grid-template-columns: repeat(2, 1fr); }
}

/* ========== FÖRDERUNG DETAILS (list) ========== */
.foerderung-e .detail-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.foerderung-e .detail-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.foerderung-e .detail-list .row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
}
.foerderung-e .detail-list .lbl {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700;
  display: inline-flex; gap: 8px; align-items: center;
}
.foerderung-e .detail-list .lbl::before {
  content: ""; width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%;
}
.foerderung-e .detail-list .val {
  font-family: var(--f-display); font-weight: 600;
  font-size: 28px; line-height: 1;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.foerderung-e .detail-list p {
  margin: 10px 0 0; color: rgba(255,255,255,0.78); font-size: 14.5px;
  max-width: 56ch;
}
.foerderung-e .grid-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 900px) { .foerderung-e .grid-detail { grid-template-columns: 1fr; } }

/* ========== PRESSEZITAT ========== */
.quote-e {
  background: var(--paper-blush);
  padding: clamp(64px, 9vw, 128px) 0;
}
.quote-e .container {
  max-width: 1100px;
}
.quote-e blockquote {
  margin: 0;
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal);
  position: relative;
  padding-left: 48px;
}
.quote-e blockquote::before {
  content: "„";
  position: absolute; top: -32px; left: -8px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 180px; line-height: 1;
  color: var(--orange);
  opacity: 0.6;
}
.quote-e em { font-style: italic; color: var(--orange); }
.quote-e cite {
  display: block;
  margin-top: 28px;
  font-family: var(--f-body); font-weight: 600;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 48px;
}

/* Floating certification stamp over a sub-hero cover */
.sub-hero .cover.cover-with-badge { position: relative; }
.sub-hero .cover .floating-cert {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: clamp(96px, 14vw, 150px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(14, 32, 31, 0.35));
  transform: rotate(-6deg);
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

/* ===================== SUBPAGE STYLES (added) ===================== */
.sub-hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sub-hero .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end; }
.sub-hero .crumb {
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 20px;
}
.sub-hero .crumb a:hover { text-decoration: underline; }
.sub-hero h1 { margin: 16px 0 0; }
.sub-hero .lead { margin: 24px 0 0; max-width: 50ch; opacity: 0.85; }
.sub-hero .cover {
  aspect-ratio: 4/5;
  border-radius: var(--r, 12px);
  overflow: hidden;
}
.sub-hero .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 800px) {
  .sub-hero .container { grid-template-columns: 1fr; }
  .sub-hero .cover { aspect-ratio: 16/10; }
}

/* Prose */
.prose-section { padding: clamp(48px, 7vw, 96px) 0; }
.prose-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.prose { max-width: 56ch; }
.prose h2 { font-size: clamp(28px, 3vw, 40px); margin: 32px 0 16px; line-height: 1.1; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 22px; margin: 24px 0 8px; line-height: 1.15; }
.prose p { font-size: 16.5px; line-height: 1.6; margin: 0 0 1em; opacity: 0.85; }
.prose ul { margin: 0 0 1em; padding-left: 1.2em; }
.prose ul li { margin: 0.4em 0; line-height: 1.55; opacity: 0.85; }
.prose strong { font-weight: 600; opacity: 1; }
.prose-aside { display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 800px) { .prose-section .container { grid-template-columns: 1fr; gap: 32px; } }

/* Stats grid (subpages) */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  margin: 32px 0;
}
.stats-row .cell { padding: 24px 20px; border-right: 1px solid rgba(0,0,0,0.10); }
.stats-row .cell:last-child { border-right: 0; }
.stats-row .v { font-size: clamp(32px, 4vw, 48px); line-height: 1; }
.stats-row .l { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; margin-top: 12px; }
@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .cell:nth-child(2) { border-right: 0; }
}

/* Definition list */
.deflist-sub { border-top: 1px solid rgba(0,0,0,0.12); margin: 0; }
.deflist-sub > div {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.deflist-sub dt {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55;
  margin: 0; padding-top: 2px;
}
.deflist-sub dd { margin: 0; line-height: 1.55; }
.deflist-sub dd strong { font-weight: 600; }
@media (max-width: 700px) { .deflist-sub > div { grid-template-columns: 1fr; gap: 4px; } }

/* Manufacturers strip */
.makers {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(0,0,0,0.12);
  margin: 24px 0;
}
.makers .m {
  padding: 20px;
  border-right: 1px solid rgba(0,0,0,0.10);
  display: grid; place-items: center;
  min-height: 84px;
  font-family: var(--f-display, serif);
  font-size: 18px;
  opacity: 0.78;
}
.makers .m:last-child { border-right: 0; }
@media (max-width: 900px) {
  .makers { grid-template-columns: repeat(3, 1fr); }
  .makers .m { border-bottom: 1px solid rgba(0,0,0,0.10); }
  .makers .m:nth-last-child(-n+3) { border-bottom: 0; }
  .makers .m:nth-child(3n) { border-right: 0; }
}

/* Related links */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.related a {
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .15s, border-color .15s;
}
.related a:hover { transform: translateY(-2px); border-color: currentColor; }
.related a .nr { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; }
.related a .ttl { font-family: var(--f-display, serif); font-size: 22px; line-height: 1.05; }
.related a .arr { margin-top: auto; }
@media (max-width: 800px) { .related { grid-template-columns: 1fr; } }

/* Form grid (Kontakt) */
.form-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field-sub { display: flex; flex-direction: column; gap: 6px; }
.field-sub.full { grid-column: 1 / -1; }
.field-sub label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; }
.field-sub input, .field-sub select, .field-sub textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.6);
  color: inherit;
  border-radius: 6px;
  width: 100%;
}
.field-sub textarea { min-height: 140px; resize: vertical; }
.field-sub input:focus, .field-sub select:focus, .field-sub textarea:focus {
  outline: 2px solid currentColor;
  outline-offset: -1px;
}
@media (max-width: 600px) { .form-sub { grid-template-columns: 1fr; } }

/* Compare-back link in footer */
.compare-back {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  opacity: 0.7;
}
.compare-back:hover { opacity: 1; text-decoration: underline; }
