/* ============================================================
   B2SQUARE – main.css  v0.8.0
   Google Fonts: Montserrat 400 / 600 / 700
   ============================================================ */


/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary:        #44D42C;
    --color-primary-dark:   #2fa81e;
    --color-primary-light:  #d4f9cc;
    --color-background:     #FFFFFF;
    --color-dark:           #000000;
    --color-dark-bg:        #020101;

    /* Neutral */
    --color-gray-100:       #f5f5f5;
    --color-gray-200:       #e9e9e9;
    --color-gray-500:       #888888;
    --color-gray-800:       #222222;

    /* Typography */
    --font-body:            'Montserrat', sans-serif;
    --font-heading:         'Montserrat', sans-serif;

    --fs-xs:    0.75rem;
    --fs-sm:    0.875rem;
    --fs-base:  1rem;
    --fs-md:    1.125rem;
    --fs-lg:    1.25rem;
    --fs-xl:    clamp(1.25rem, 1rem + 1.2vw,  1.5rem);
    --fs-2xl:   clamp(1.5rem,  1rem + 2.5vw,  2rem);
    --fs-3xl:   clamp(1.75rem, 1rem + 4vw,    2.5rem);
    --fs-4xl:   clamp(2rem,    1rem + 6vw,    3.5rem);

    --fw-light:    300;
    --fw-regular:  400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;

    /* Spacing */
    --space-1:   0.25rem;
    --space-2:   0.5rem;
    --space-3:   0.75rem;
    --space-4:   1rem;
    --space-6:   1.5rem;
    --space-8:   2rem;
    --space-12:  3rem;
    --space-16:  4rem;
    --space-24:  6rem;
    --space-32:  8rem;

    /* CTA spacing – consistent gap above all section CTA buttons */
    --cta-gap:   2.5rem;

    /* Layout */
    --container-max:  1280px;
    --container-pad:  1.5rem;

    /* Border radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast:   150ms ease;
    --transition-base:   250ms ease;
    --transition-slow:   400ms ease;

    /* ── Calculator-Stil: Surfaces & Borders ── */
    --surface:    #ffffff;
    --surface2:   #f8f8f8;
    --border:     #e4e4e4;
    --border2:    #f0f0f0;

    /* ── Calculator-Stil: Text-Hierarchie ── */
    --text:       #000000;
    --text2:      #222222;
    --muted:      #555555;
    --subtle:     #888888;
    --faint:      #aaaaaa;

    /* ── Calculator-Stil: Inputs ── */
    --color-input-bg: #f5f5f5;
    --input-bg:       #fafafa;
    --input-bd:       #d8d8d8;

    /* ── Calculator-Stil: Chips / Highlights ── */
    --chip-bg:    #ffffff;
    --chip-bd:    #d4f9cc;

    /* ── Calculator-Stil: Warning ── */
    --warn-bg:    #fff3cd;
    --warn-bd:    #f0ad00;
    --warn-tx:    #7a5000;

    /* ── Schatten ── */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 18px rgba(0,0,0,0.12);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.22);

    /* ── Map ── */
    --map-land:   #d5d2cd;
}

/* ============================================================
   DARK MODE  — [data-theme="dark"] auf <html>
   Light = Standard (kein Attribut nötig)
   ============================================================ */
[data-theme="dark"] {
    --color-background:   #1a1a1a;
    --color-dark:         #ffffff;
    --color-dark-bg:      #111111;
    --color-gray-100:     #2a2a2a;
    --color-gray-200:     #383838;
    --color-gray-500:     #888888;
    --color-gray-800:     #eeeeee;

    --surface:    #222222;
    --surface2:   #2a2a2a;
    --border:     #383838;
    --border2:    #2e2e2e;

    --text:       #ffffff;
    --text2:      #eeeeee;
    --muted:      #bbbbbb;
    --subtle:     #888888;
    --faint:      #555555;

    --input-bg:   #2a2a2a;
    --input-bd:   #444444;
    --chip-bg:    #2a2a2a;
    --chip-bd:    #2fa81e;
    --map-land:   #3e3e3e;

    --warn-bg:    #3d2b00;
    --warn-bd:    #aa7700;
    --warn-tx:    #ffd060;
}

/* ============================================================
   CSS Reset
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    transition: background-color var(--transition-base), color var(--transition-base);
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-base), color var(--transition-base);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: 1.15;
    overflow-wrap: break-word;
    word-break: break-word;
}

button, input, select, textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1440px;
}

/* ============================================================
   Section
   ============================================================ */
.section {
    padding-block: var(--space-24);
}

.section--sm {
    padding-block: var(--space-12);
}

.section--lg {
    padding-block: var(--space-32);
}

.section--dark {
    background-color: var(--color-dark-bg);
    color: #ffffff;
}

.section--gray {
    background-color: var(--color-gray-100);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    line-height: 1;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #000;
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: #000;
}

.btn--dark {
    background-color: var(--color-dark);
    color: var(--color-background);
}

.btn--dark:hover {
    background-color: var(--color-gray-800);
}

.btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--fs-md);
}

/* ============================================================
   Grid helpers
   ============================================================ */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid--2,
    .grid--3,
    .grid--4 { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid--3,
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Flex helpers
   ============================================================ */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap { gap: var(--space-4); }

/* ============================================================
   Text utilities
   ============================================================ */
.text-center  { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-light   { color: var(--color-gray-500); }

.heading-xl {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    line-height: 1.05;
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
}

.heading-md {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-semibold);
}

/* ============================================================
   Responsive helpers
   ============================================================ */
@media (max-width: 768px) {
    :root {
        /* --fs-4xl / --fs-3xl: fluid via clamp() – kein Override nötig */
        --space-24: 4rem;
        --space-32: 5rem;
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-block: var(--space-4);
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.header-logo {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

/* ============================================================
   HEADER NAV (Desktop)
   ============================================================ */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-6);
}

.header-nav a {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--muted);
    white-space: nowrap;
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.header-nav a:hover,
.header-nav a.is-active { color: var(--color-primary); }

.header-nav a.is-active::after,
.header-nav a:hover::after { transform: scaleX(1); }

/* Header Controls (GCC, Lang, Theme, Hamburger) */
.header-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-shrink: 0;
}

/* Sprach-Buttons */
.lang-group {
    display: flex;
    gap: 2px;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 5px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast);
    line-height: 1;
}

.lang-btn img { display: block; border-radius: 1px; }

.lang-btn:hover,
.lang-btn.active {
    border-color: var(--color-primary);
    color: var(--text);
}

/* Theme-Toggle Button */
.theme-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--muted);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.theme-btn:hover { border-color: var(--color-primary); color: var(--text); }

/* Logo-Varianten: Light → schwarzes Logo, Dark → weißes Logo */
.logo-img--white { display: none; }
.logo-img--black { display: block; }
[data-theme="dark"] .logo-img--white { display: block; }
[data-theme="dark"] .logo-img--black { display: none; }

/* Mobile: Desktop-Nav ausblenden */
@media (max-width: 767px) {
    .header-nav { display: none; }
    .lang-group { display: none; }
}

/* ── Mobile Sprach-Picker ── */
.lang-mobile {
    display: none; /* Desktop: versteckt, nur Mobile */
    position: relative;
}

@media (max-width: 767px) {
    .lang-mobile { display: block; }
}

/* ── Mobile Header Layout: kein Overlap, alle Controls erreichbar ── */
@media (max-width: 767px) {
    /* Platz für fixed Hamburger (40px) + container-pad + gap nach links */
    .header-inner {
        padding-right: calc(var(--container-pad) + 40px + 0.5rem);
    }
    /* lang-mobile + theme-btn nebeneinander mit klarem Abstand */
    .header-controls {
        gap: 0.5rem;
    }
    /* Mindest-Tipp-Ziel für theme-btn */
    .theme-btn {
        min-height: 32px;
        padding-inline: 10px;
    }
    /* Dropdown über allen anderen Header-Inhalten */
    .lang-mobile__dropdown {
        z-index: 999;
    }
}

.lang-mobile__trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 7px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast);
    line-height: 1;
}
.lang-mobile__trigger:hover { border-color: var(--color-primary); color: var(--text); }
.lang-mobile__trigger img   { display: block; border-radius: 1px; }
.lang-mobile__caret         { font-size: 0.55rem; opacity: 0.7; }

.lang-mobile__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.14);
    min-width: 72px;
}
.lang-mobile__dropdown[hidden] { display: none; }
[data-theme="dark"] .lang-mobile__dropdown {
    background: var(--color-gray-800);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Footer Ergänzungen */
.footer-claim {
    font-size: var(--fs-sm);
    color: var(--muted);
    margin-top: var(--space-3);
    max-width: 440px;
    line-height: 1.6;
}

.footer-label--gap { margin-top: var(--space-6); }

.footer-address {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.65;
}

.footer-tagline {
    font-style: italic;
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
}

.footer-version {
    font-size: var(--fs-xs);
    color: var(--faint);
}

/* ============================================================
   HAMBURGER BUTTON
   position:fixed → eigener Stacking-Context im Body (z-index 600 schlägt Overlay 500)
   Außerhalb des Header-Elements → kein Stacking-Context-Problem
   ============================================================ */
.hamburger {
    display: flex;           /* Mobile: sichtbar (default) */
    position: fixed;
    top: var(--space-4);
    right: var(--container-pad);
    z-index: 600;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Desktop: Hamburger ausblenden (nach Basisregel → gewinnt kaskade) */
@media (min-width: 768px) {
    .hamburger { display: none; }
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
    pointer-events: none;
}

/* Hamburger → X bei geöffnetem Menü */
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   NAV OVERLAY
   ============================================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background-color: #020101;
    z-index: 500;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    overflow-y: auto;
}

.nav-overlay.is-open {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__inner {
    display: flex;
    flex-direction: column;
    padding-top: var(--space-8);
    padding-bottom: var(--space-16);
    min-height: 100%;
}

.nav-overlay__nav ul {
    list-style: none;
}

.nav-overlay__nav li + li {
    margin-top: var(--space-3);
}

.nav-overlay__nav a {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, var(--fs-4xl));
    font-weight: var(--fw-bold);
    color: #ffffff;
    display: inline-block;
    line-height: 1.1;
    transition: color var(--transition-fast);
}

.nav-overlay__nav a:hover {
    color: var(--color-primary);
}

/* Scroll lock */
body.menu-open {
    overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background-color: var(--surface);
    color: var(--text);
    border-top: 1px solid var(--border);
    transition: background-color var(--transition-base), color var(--transition-base);
}

.footer-top {
    padding: var(--space-12) 0 var(--space-8);
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-cols {
    padding-block: var(--space-12);
}

.footer-cols__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    align-items: start;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
    align-items: start;
}

.footer-logo--dark { display: block; }
.footer-logo--white { display: none; }
[data-theme="dark"] .footer-logo--white { display: block; }
[data-theme="dark"] .footer-logo--dark  { display: none; }

.footer-label {
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--subtle);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
}

.footer-label:first-child {
    margin-top: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-2);
}

.footer-col a {
    font-size: var(--fs-sm);
    color: var(--text2);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-col--nav ul {
    list-style: none;
}

.footer-col--nav li {
    margin-bottom: var(--space-3);
}

.footer-col--nav a {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: 1.1;
    transition: color var(--transition-fast);
}

.footer-col--nav a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-block: var(--space-6);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    font-size: var(--fs-xs);
    color: var(--muted);
}

.footer-bottom__inner a {
    color: var(--muted);
    transition: color var(--transition-fast);
}

.footer-bottom__inner a:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .footer-inner        { grid-template-columns: 1fr; }
    .footer-cols__inner  { grid-template-columns: 1fr; }
    .footer-col--nav a   { font-size: var(--fs-xl); }
}

.footer-col .fa-brands {
    color: var(--color-primary);
    font-size: var(--fs-base);
    margin-right: var(--space-1);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background-color: var(--color-dark-bg);
    color: #ffffff;
    overflow: hidden;
}

/* Video + Overlay decken die gesamte Section ab (inkl. Spotlight) */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2,1,1,0.55) 0%, rgba(2,1,1,0.35) 50%, rgba(2,1,1,0.75) 100%);
    z-index: 1;
}

/* Viewport-hoher Bereich mit H1 + CTA */
.hero__main {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 780px;
    text-align: center;
    margin-inline: auto;
}

.hero__sub {
    margin-inline: auto;
}

/* ── Hero footer: absolute wrapper for both logo rows ── */
.hero__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* hero__assoc is now static inside hero__footer */
.hero__assoc {
    text-align: center;
}

.hero__assoc-label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    margin-bottom: var(--space-3);
}

.hero__assoc-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.hero__assoc-logos img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.65;
}

/* ── Hero spotlight strip (media logos row) ── */
.hero__spotlight {
    text-align: center;
}

.hero__spotlight .hero__assoc-label {
    margin-bottom: var(--space-3);
}

.hero__spotlight-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-inline: var(--container-pad);
}

/* Logos inside hero are always on dark bg → keep white */
.hero__spotlight-logos .press__logo {
    filter: brightness(0) invert(1) !important;
    opacity: 0.55;
    height: 26px;
}
.hero__spotlight-logos .press__logo:hover {
    opacity: 0.85;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--fw-bold);
    line-height: 1.05;
    margin-bottom: var(--space-6);
}

.hero__sub {
    font-size: var(--fs-lg);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.btn--hero {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 14px 32px;
    font-size: var(--fs-md);
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn--hero:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .hero__main {
        min-height: 100svh;
        justify-content: flex-start;
        padding-top: 5.5rem;  /* Freiraum über Header (ca. 72 px + Luft) */
        padding-bottom: 2rem;
        gap: 2.5rem;
        box-sizing: border-box;
    }
    .hero__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero__footer {
        position: static;        /* aus absoluter in normale Fluss-Position */
        padding-bottom: 0;
        gap: 1.25rem;
        width: 100%;
    }
    .hero__spotlight-logos { gap: 1.25rem; }
    .hero__spotlight-logos .press__logo { height: 18px; }
    .hero__assoc-logos { gap: 1.5rem; }
    .hero__assoc-logos img { height: 26px; }
    .hero__video { display: none; }
    .hero__sub   { font-size: var(--fs-base); }
}

/* ============================================================
   SECTION 2 · ASSOCIATION PARTNER
   ============================================================ */
.section--assoc {
    padding-block: var(--space-12);
    background-color: var(--color-background);
}

.assoc__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gray-500);
    text-align: center;
    margin-bottom: var(--space-6);
}

.assoc__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.assoc__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.assoc__logo:hover { opacity: 1; }

/* ============================================================
   SECTION 3 · IN THE SPOTLIGHT
   ============================================================ */
.section--spotlight {
    padding-block: 60px;
    background-color: var(--color-dark-bg);
}

.spotlight__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gray-500);
    margin-bottom: var(--space-6);
}

.spotlight__scroll {
    overflow-x: auto;
    padding-block: var(--space-4);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.spotlight__scroll::-webkit-scrollbar { height: 4px; }
.spotlight__scroll::-webkit-scrollbar-track { background: transparent; }
.spotlight__scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.spotlight__track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-inline: var(--container-pad);
    min-width: max-content;
}

.spotlight__logo {
    max-height: 40px;
    height: auto;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    /* Logos auf weißem Hintergrund werden invertiert; bei transparenten Logos gut sichtbar */
    filter: brightness(0) invert(1);
    opacity: 0.65;
    transition: opacity var(--transition-fast);
}

.spotlight__logo:hover { opacity: 1; }

/* ============================================================
   SECTION 4 · PRODUKTE
   ============================================================ */
.section--products {
    background-color: var(--color-dark-bg);
    color: #ffffff;
}

.products__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--space-4);
}

.products__intro {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.55);
    text-align: center;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: var(--space-12);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.product-card {
    background-color: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
    position: relative;
}

.product-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #44D42C;
    color: #000;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-card__icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: var(--space-2);
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.product-card__co2 {
    display: inline-block;
    background-color: rgba(68,212,44,0.15);
    color: var(--color-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.product-card__specs {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-2) var(--space-4);
    font-size: var(--fs-sm);
    margin-top: var(--space-2);
}

.product-card__specs dt {
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
}

.product-card__specs dd {
    color: rgba(255,255,255,0.85);
}

.products__download {
    text-align: center;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}

.download-link:hover { color: var(--color-primary); }

.download-link__meta {
    font-weight: var(--fw-regular);
    color: rgba(255,255,255,0.45);
}

@media (max-width: 900px) {
    .products__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 3 · STORY (zweispaltig)
   ============================================================ */
.section--story {
    background-color: var(--color-dark-bg);
    color: #ffffff;
    overflow: hidden;
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
}

.story__text {
    padding: var(--space-24) var(--space-16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-6);
    text-align: left;
}

.story__image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.story__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.story__h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-bold);
    color: #ffffff;
    line-height: 1.1;
}

.story__sub {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .story__grid { grid-template-columns: 1fr; }
    .story__image { min-height: 300px; }
    .story__text { padding: var(--space-12) var(--space-6); }
}

.btn--outline-white {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-8);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn--outline-white:hover {
    background-color: #ffffff;
    color: #000; /* fixed: var(--color-dark) flips to white in dark-theme → invisible */
}

/* ============================================================
   SECTION 5b · SERVICES (3 Karten)
   ============================================================ */
.section--services {
    background-color: var(--color-dark-bg);
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.service-card__text {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .services__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 5c · TAGLINE
   ============================================================ */
.section--tagline {
    background-color: #000;
    color: #ffffff;
    text-align: center;
}

.tagline__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: var(--fw-bold);
    color: #ffffff;
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.tagline__sub {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.62);
    max-width: 760px;
    margin-inline: auto;
    line-height: 1.65;
}

/* ============================================================
   SECTION 7 · TESTIMONIALS
   ============================================================ */
.section--testimonials {
    background-color: var(--color-background);
}

.testimonials {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.testimonials__slider {
    position: relative;
    min-height: 180px;
    margin-bottom: var(--space-8);
}

.testimonial {
    display: none;
}

.testimonial.is-active {
    display: block;
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testimonial__quote {
    font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
    font-weight: var(--fw-regular);
    font-style: italic;
    line-height: 1.5;
    color: var(--color-dark);
    margin-bottom: var(--space-4);
    quotes: none;
}

.testimonial__source {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-gray-500);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
}

.testimonials__btn {
    background: none;
    border: 1px solid var(--color-gray-200);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: var(--fs-md);
    color: var(--color-dark);
    cursor: pointer;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials__btn:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.testimonials__dots {
    display: flex;
    gap: var(--space-2);
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gray-200);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.testimonials__dot.is-active {
    background-color: var(--color-primary);
    transform: scale(1.3);
}

/* ============================================================
   SECTION 8 · FOUNDER VIDEO
   Seitenfüllendes Hintergrundbild + Play-Button Overlay
   ============================================================ */
.section--founder-video {
    background-color: var(--color-dark-bg);
}

.founder-video__bg {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center top;
    background-color: var(--color-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,1,1,0.50);
}

.founder-video__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    text-align: center;
    color: #ffffff;
}

.founder-video__caption {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.9);
    max-width: 480px;
    line-height: 1.5;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: #000;
}
.media-hero-vid {
    padding: var(--space-8) 0 0;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: #44D42C;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    z-index: 2;
    border: none;
    padding-left: 5px;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

/* ============================================================
   SECTION 9 · CO₂ LIVE COUNTER (heller Hintergrund + Lucky Drops)
   ============================================================ */
.section--co2 {
    background: #fff;
    color: #000;
    text-align: center;
}

.co2-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.co2-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
    font-weight: var(--fw-bold);
    color: #000;
}

.co2-section__sub {
    font-size: var(--fs-md);
    color: rgba(0,0,0,0.65);
    max-width: 560px;
    line-height: 1.6;
}

.co2-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-block: var(--space-4);
    flex-wrap: wrap;
}

.co2-counter__main {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
}

.co2-counter__number {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.co2-counter__unit {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: #000;
}

.co2-lucky-drop {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.co2-lucky-drop--flip {
    transform: scaleX(-1);
}

.co2-section__link a {
    font-size: var(--fs-sm);
    color: rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(0,0,0,0.3);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.co2-section__link a:hover {
    color: #000;
    border-color: #000;
}

/* CO₂-Gegenüberstellung: konventionell vs B2PURE */
.co2-vs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-4);
    align-items: center;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
    margin-block: var(--space-2);
}

.co2-vs__card {
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    text-align: center;
}

.co2-vs__card--conv {
    background: var(--color-gray-100);
    border: 2px solid var(--color-gray-200);
    color: var(--text);
}

.co2-vs__card--b2pure {
    background: rgba(68,212,44,0.12);
    border: 2px solid var(--color-primary);
    color: var(--text);
}

.co2-vs__icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}

.co2-vs__card--conv .co2-vs__icon  { color: var(--color-gray-500); }
.co2-vs__card--b2pure .co2-vs__icon { color: var(--color-primary); }

.co2-vs__name {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.co2-vs__value {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
}

.co2-vs__card--conv .co2-vs__value   { color: var(--text); }
.co2-vs__card--b2pure .co2-vs__value { color: var(--color-primary); }

.co2-vs__unit {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.co2-vs__tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px var(--space-3);
    border-radius: var(--radius-full);
    margin-top: var(--space-1);
}

.co2-vs__card--conv .co2-vs__tag {
    background: var(--color-gray-200);
    color: var(--text2);
}

.co2-vs__card--b2pure .co2-vs__tag {
    background: var(--color-primary);
    color: #000;
}

.co2-vs__note {
    font-size: var(--fs-xs);
    color: var(--muted);
    font-style: italic;
}

.co2-vs__sep {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--muted);
    letter-spacing: 0.1em;
}

.co2-vs__diff {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-primary-dark);
    text-align: center;
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    background: rgba(68,212,44,0.12);
    display: inline-block;
    border: 1px solid rgba(68,212,44,0.3);
    margin-inline: auto;
}

.calc-note {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.04em;
    padding: var(--space-2) var(--space-4);
    background: var(--surface2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

@media (max-width: 560px) {
    .co2-vs { grid-template-columns: 1fr; }
    .co2-vs__sep { display: none; }
}

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
    background-color: var(--color-background);
    color: var(--color-dark);
    padding-top: calc(var(--space-32) + 60px);
    padding-bottom: var(--space-16);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: var(--fw-bold);
    line-height: 1.05;
    color: var(--color-dark);
}

.page-hero__sub {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-top: var(--space-3);
}

/* Header-Variante für helle Seiten (Imprint, Privacy) */
.site-header--onlight {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-gray-200);
}

.hamburger--dark span {
    background-color: var(--color-dark);
}

/* ============================================================
   NEWS – Artikel-Karten
   ============================================================ */
.news-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.news-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-8);
    align-items: start;
    padding-bottom: var(--space-12);
    border-bottom: 1px solid var(--color-gray-200);
}

.news-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-card__img-wrap {
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--color-gray-100);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__img--logo {
    object-fit: contain;
    padding: var(--space-6);
    filter: grayscale(1);
}

.news-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.news-card__date {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
}

.news-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    line-height: 1.15;
    color: var(--color-dark);
}

.news-card__text {
    font-size: var(--fs-base);
    color: var(--color-gray-800);
    line-height: 1.65;
}

.btn--sm {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border: 1px solid var(--color-dark);
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    transition: background-color var(--transition-fast), color var(--transition-fast);
    align-self: flex-start;
}

.btn--sm:hover {
    background-color: var(--color-dark);
    color: var(--color-background);
}

@media (max-width: 700px) {
    .news-card { grid-template-columns: 1fr; }
    .news-card__img-wrap { max-width: 100%; }
}

/* ============================================================
   IMPACT – Weltkarte
   ============================================================ */
.world-map {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.world-map__caption {
    margin-top: var(--space-6);
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
    text-align: center;
}

@media (max-width: 768px) {
    .world-map { height: 320px; }
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.case-study-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.case-study-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.case-study-gallery__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.case-study-text {
    font-size: var(--fs-md);
    line-height: 1.7;
    color: var(--color-gray-800);
    max-width: 720px;
}

@media (max-width: 600px) {
    .case-study-gallery { grid-template-columns: 1fr; }
}

/* ============================================================
   APPLICATION – Produkte + Video-Grid
   ============================================================ */
.app-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-4);
}

.app-product {
    text-align: center;
}

.app-product__img {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
    object-fit: contain;
}

.app-product__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-top: var(--space-3);
    color: var(--color-dark);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.video-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.video-grid__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: #ffffff;
    margin-bottom: var(--space-4);
}

@media (max-width: 900px) {
    .app-products { grid-template-columns: 1fr; }
    .video-grid   { grid-template-columns: 1fr; }
    .video-grid--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   TEAM – Karten
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.team-card {
    text-align: center;
}

.team-card__img-wrap {
    overflow: hidden;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin-inline: auto;
    margin-bottom: var(--space-4);
    background-color: var(--color-gray-100);
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-1);
}

.team-card__role {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    font-weight: var(--fw-medium);
}

@media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card__img-wrap { width: 140px; height: 140px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info {
    max-width: 480px;
}

.contact-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-3) var(--space-6);
    align-items: baseline;
}

.contact-list__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    padding-top: 2px;
}

.contact-list__link {
    font-size: var(--fs-md);
    color: var(--color-dark);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.contact-list__link:hover {
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* ============================================================
   CONSULTING – Icon-Grid + Galerie
   ============================================================ */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-4);
}

.icon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.icon-item__img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.icon-item__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-dark);
    line-height: 1.4;
}

.consulting-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.consulting-gallery__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .icon-grid         { grid-template-columns: repeat(2, 1fr); }
    .consulting-gallery { grid-template-columns: 1fr; }
}

/* ============================================================
   RHEOFALT
   ============================================================ */
.rheofalt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-8);
}

.rheofalt-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.rheofalt-img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.rheofalt-text {
    font-size: var(--fs-md);
    line-height: 1.7;
    color: var(--color-gray-800);
}

.rheofalt-downloads__media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.rheofalt-downloads__img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.rheofalt-downloads__cta {
    text-align: center;
}

@media (max-width: 768px) {
    .rheofalt-layout          { grid-template-columns: 1fr; }
    .rheofalt-downloads__media { grid-template-columns: 1fr; }
}

/* ============================================================
   TEXT PAGES (Imprint, Privacy Policy)
   ============================================================ */
.text-page {
    background-color: var(--color-background);
    padding-top: calc(var(--space-16) + 80px);
}

.text-page__inner {
    max-width: 720px;
}

.text-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-8);
}

.text-page__content {
    font-size: var(--fs-base);
    line-height: 1.8;
    color: var(--color-gray-800);
}

.text-page__content p {
    margin-bottom: var(--space-4);
}

.text-page__content a {
    color: var(--color-primary-dark);
    border-bottom: 1px solid currentColor;
}

.text-page__todo {
    margin-top: var(--space-8);
    padding: var(--space-4);
    background-color: var(--color-primary-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: var(--fs-sm);
    color: var(--color-primary-dark);
}

/* ============================================================
   SECTION 10 · IMPACT CALCULATOR
   ============================================================ */
.section--calculator {
    background: var(--color-gray-100);
}

.calc__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--space-4);
}

.calc__sub {
    font-size: var(--fs-base);
    color: var(--color-gray-800);
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-8);
    line-height: 1.65;
}

.calc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    max-width: 800px;
    margin-inline: auto;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.calc-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
    text-align: center;
}

.calc-field__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
}

.calc-field__input {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--fw-bold);
    color: var(--text);
    text-align: center;
    border: none;
    border-bottom: 2px solid var(--border);
    background: transparent;
    width: 100%;
    padding: var(--space-2) 0;
    outline: none;
    transition: border-color var(--transition-fast);
    caret-color: var(--color-primary);
}

.calc-field__input:focus {
    border-color: var(--color-primary);
}

.calc__btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-4);
    font-size: var(--fs-md);
    letter-spacing: 0.05em;
}

.calc-result {
    text-align: center;
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--color-primary-dark);
    min-height: 1.5em;
}

@media (max-width: 600px) {
    .calc-fields { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 11 · INDUSTRY DISRUPTERS
   ============================================================ */
.section--disrupters {
    background: var(--color-background);
}

.disrupters__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-12);
}

.disrupters__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.disrupter-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.disrupter-card__icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--color-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.disrupter-card__icon-box i {
    font-size: 1.5rem;
    color: #fff;
}

.disrupter-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
}

.disrupter-card__text {
    font-size: var(--fs-base);
    color: var(--color-gray-800);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .disrupters__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 12 · ENGINEERED IN EUROPE
   ============================================================ */
.section--europe {
    background: var(--color-background);
    border-top: 1px solid var(--color-gray-200);
}

.europe__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.europe__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.europe__h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    line-height: 1.05;
}

.europe__h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--fw-semibold);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-2);
}

.europe__body {
    font-size: var(--fs-md);
    color: var(--color-gray-800);
    line-height: 1.7;
    max-width: 480px;
}

.europe__magazine-link {
    display: block;
    text-decoration: none;
}

.europe__magazine-img {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform var(--transition-base);
}

.europe__magazine-link:hover .europe__magazine-img {
    transform: translateY(-4px);
}

.europe__magazine-caption {
    display: block;
    margin-top: var(--space-3);
    font-size: var(--fs-sm);
    color: var(--color-primary-dark);
    font-weight: var(--fw-semibold);
    text-align: center;
}

@media (max-width: 768px) {
    .europe__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 13 · LEARN MORE (3 Bild-Karten)
   ============================================================ */
.section--learn-more {
    background: var(--color-gray-100);
}

.learn-more__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-4);
}

.learn-more__sub {
    font-size: var(--fs-md);
    color: var(--color-gray-800);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: var(--space-12);
}

.learn-more__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.learn-card__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
}

.learn-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.learn-card:hover .learn-card__img {
    transform: scale(1.04);
}

.learn-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2,1,1,0.3) 0%, rgba(2,1,1,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-6);
}

.learn-card__number {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: rgba(255,255,255,0.6);
    line-height: 1;
}

.learn-card__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.learn-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: 1.2;
}

.learn-card__btn {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    border-radius: var(--radius-sm);
    align-self: flex-start;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.learn-card__btn:hover {
    background-color: #fff;
    color: var(--color-dark);
    border-color: #fff;
}

@media (max-width: 900px) {
    .learn-more__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 14 · LET'S PAVE THE ROAD
   ============================================================ */
.section--road {
    /* no padding – bg div fills */
}

.road__bg {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.road__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,1,1,0.62);
}

.road__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.road__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: 1.1;
}

.road__sub {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    line-height: 1.6;
}

/* ============================================================
   CALCULATOR-STIL BASISKOMPONENTEN  (v0.6.0)
   Ergänzend zu den bestehenden .btn-- Klassen
   ============================================================ */

/* Section Marker – grüner linker Rand, wie Calculator-Header */
.section-marker {
    border-left: 5px solid var(--color-primary);
    padding-left: 18px;
}

/* Badge Number – grüner Kreis mit weißer Zahl */
.badge-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Label – uppercase, kleines Label wie Calculator card-title */
.label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--subtle, #888);
}

/* btn-primary / btn-secondary – Calculator-Stil (einfaches Naming) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-primary:active { background: #259016; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    background: var(--surface, #fff);
    color: var(--text2, #222);
    border: 1.5px solid var(--border, #e4e4e4);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.87rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}
.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--text, #000);
}

/* Input – Calculator-Stil (hellgrauer BG, kein sichtbarer Border im Default) */
.input {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid var(--input-bd, #d8d8d8);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text, #000);
    background: var(--input-bg, #fafafa);
    outline: none;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}
.input:focus {
    border-color: var(--color-primary);
    background: var(--surface, #fff);
}

/* Card – Calculator-Stil (weißer BG, leichte Border, gerundete Ecken) */
.card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, #e4e4e4);
    border-radius: 10px;
    padding: 22px 22px 18px;
}

.card__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--subtle, #888);
    margin-bottom: 16px;
}

.card__divider {
    height: 1px;
    background: var(--border2, #f0f0f0);
    margin: 16px 0;
}

/* .section und .container sind oben als Basis-Layout-Klassen definiert */

/* ============================================================
   v0.8.0 – HOME JOURNEY SECTIONS
   ============================================================ */

/* ── Shared: Section overline + headline + CTA ── */
.section-overline {
    display: block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-headline {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: var(--space-6);
    line-height: 1.15;
}

.section-cta {
    text-align: center;
    margin-top: var(--cta-gap);
}

/* ── Hero: two-button actions + calc link ── */
.hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero__calc-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.5);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}
.hero__calc-link:hover { color: rgba(255,255,255,.85); }

/* ── Testimonials: CSS quote marks (i18n-friendly) ── */
.testimonial__quote::before { content: '\201C'; }
.testimonial__quote::after  { content: '\201D'; }

/* ── S2 · PROOF ── */
.section--proof {
    background-color: var(--color-gray-100);
    color: var(--text);
    text-align: center;
}

.section--proof .section-overline { display: block; }

.proof__headline { color: var(--text); }

.proof__inner { max-width: 800px; margin-inline: auto; }

.proof__sub {
    font-size: var(--fs-md);
    color: var(--muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto var(--space-12);
}

.proof__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-16);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.proof__stat { text-align: center; }

.proof__stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1;
}

.proof__stat-label {
    display: block;
    font-size: var(--fs-sm);
    color: var(--muted);
    margin-top: var(--space-2);
}

.proof__countries {
    font-size: var(--fs-sm);
    color: var(--subtle);
    letter-spacing: .04em;
    margin-bottom: 0;
}

/* ── S3 · APPLICATION CARDS ── */
.section--app-cards {
    background-color: var(--surface);
    padding-bottom: var(--space-16);
}
.section--app-cards .section-cta {
    margin-bottom: var(--space-8);
}

.app-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.app-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.app-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.app-card__img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.app-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    max-width: none;
}
.app-card:hover .app-card__img { transform: scale(1.05); }

.app-card__body {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.app-card__title {
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: var(--space-2);
}

.app-card__text {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: var(--space-3);
}

.app-card__arrow {
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

@media (max-width: 900px) {
    .app-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .app-cards { grid-template-columns: 1fr; }
}

/* ── S4 · PRESS STRIP (below testimonials) ── */
.section--press {
    background-color: var(--surface);
    padding-block: var(--space-8);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.press__label {
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: var(--space-5);
}

.press__scroll {
    overflow-x: auto;
    padding-bottom: var(--space-2);
}
.press__scroll::-webkit-scrollbar { display: none; }

.press__track {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    padding-inline: var(--container-pad);
    width: max-content;
    margin-inline: auto;
}

.press__logo {
    height: 30px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: opacity var(--transition-base), filter var(--transition-base);
    flex-shrink: 0;
}
/* Light mode: white PNGs → invert to black so they're visible on white bg */
:root:not([data-theme="dark"]) .press__logo {
    filter: brightness(0);
    opacity: .45;
}
:root:not([data-theme="dark"]) .press__logo:hover {
    filter: brightness(0);
    opacity: .75;
}
/* Dark mode: boost brightness so white PNGs stay visible on dark bg */
[data-theme="dark"] .press__logo {
    filter: grayscale(1) brightness(2);
    opacity: .5;
}
[data-theme="dark"] .press__logo:hover {
    filter: grayscale(1) brightness(2.5);
    opacity: .8;
}

/* ── S6 · CO₂: fix light-only hardcoding ── */
.section--co2 {
    background: var(--surface);
    color: var(--text);
}
.co2-section__sub { color: var(--muted); }

/* ── S7 · MAIN CTA ── */
.section--main-cta {
    background-color: var(--color-gray-100);
    color: var(--text);
    text-align: center;
}

.main-cta__inner {
    max-width: 680px;
    margin-inline: auto;
}

.main-cta__headline {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: 1.15;
    margin-bottom: var(--space-4);
}

.main-cta__sub {
    font-size: var(--fs-md);
    color: var(--muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto var(--space-8);
}

.main-cta__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.main-cta__tagline {
    font-size: var(--fs-sm);
    color: var(--faint);
    font-style: italic;
    letter-spacing: .02em;
}

/* ============================================================
   PRODUCTS PAGE  v0.9.0
   ============================================================ */

/* Hero intro paragraph */
.prod-hero__intro {
    font-size: var(--fs-md);
    line-height: 1.7;
    color: var(--muted);
    max-width: 680px;
    margin-top: var(--space-6);
}

/* Family subtitle */
.prod-family__sub {
    font-size: var(--fs-md);
    color: var(--muted);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: var(--space-10);
}

/* ── Product Cards grid ── */
.prod-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.prod-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
}

.prod-card--featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-sm);
}

.prod-card__badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--color-gray-100);
    color: var(--subtle);
    border: 1px solid var(--border);
}

.prod-card__badge--featured {
    background: rgba(68,212,44,.12);
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
}

.prod-card__name-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.prod-card__name {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: 1.15;
}

.prod-card__grade {
    color: var(--color-primary);
}

.prod-card__hcr {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--subtle);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.prod-card__desc {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.prod-card__app {
    border-top: 1px solid var(--border);
    padding-top: var(--space-4);
}

.prod-card__app .label {
    display: block;
    margin-bottom: var(--space-1);
}

.prod-card__app p {
    font-size: var(--fs-sm);
    color: var(--text2);
    line-height: 1.5;
}

.prod-card__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-2);
    min-height: 120px;
}

.prod-card__img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .prod-cards { grid-template-columns: 1fr; }
}

/* ── Components grid ── */
.prod-comp__sub {
    font-size: var(--fs-md);
    color: var(--muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: var(--space-10);
}

.prod-comp__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-8);
}

.prod-comp__card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    height: 100%;
}

.prod-comp__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(68,212,44,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.prod-comp__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text);
}

.prod-comp__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    list-style: none;
}

.prod-comp__tags li {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: .07em;
    background: var(--color-gray-100);
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 2px 9px;
}

.prod-comp__desc {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.65;
}

.prod-comp__plus {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    text-align: center;
    line-height: 1;
    align-self: center;
}

.prod-comp__note {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.prod-comp__note > i {
    font-size: 1.25rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.prod-comp__note > p {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

@media (max-width: 700px) {
    .prod-comp__grid {
        grid-template-columns: 1fr;
    }
    .prod-comp__plus { font-size: var(--fs-2xl); }
}

/* ── Spec KPI tiles ── */
.prod-specs__sub {
    font-size: var(--fs-md);
    color: var(--muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: var(--space-10);
}

.prod-specs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.prod-spec-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.prod-spec-card--highlight {
    border-color: var(--color-primary);
    background: rgba(68,212,44,.05);
}

.prod-spec-card__kpi {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1.1;
}

.prod-spec-card--highlight .prod-spec-card__kpi {
    font-size: var(--fs-2xl);
}

.prod-spec-card__kpi--todo {
    color: var(--subtle);
    font-size: var(--fs-lg);
}

.prod-spec-card__unit {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--text2);
}

.prod-spec-card__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--text);
}

.prod-spec-card__note {
    font-size: var(--fs-xs);
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .prod-specs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .prod-specs__grid { grid-template-columns: 1fr; }
}

/* ── Ring & Ball slider ── */
.prod-spec-card--rb {
    grid-column: 1 / -1;
}

.rb-slider {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
    margin-top: var(--space-2);
}

.rb-slider__val-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.rb-slider__val {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1.1;
}

.rb-slider__unit-lbl {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--muted);
}

.rb-slider__track-wrap {
    position: relative;
    padding-bottom: 2.75rem;
}

.rb-slider__input {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(
        to right,
        var(--color-primary) var(--pct, 31%),
        var(--border) 0
    );
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.rb-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--surface);
    box-shadow: 0 0 0 2px var(--color-primary);
    cursor: pointer;
}

.rb-slider__input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    box-shadow: 0 0 0 3px var(--surface), 0 0 0 5px var(--color-primary);
    cursor: pointer;
}

.rb-slider__pips {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
}

.rb-slider__pip {
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    left: var(--p);
}

.rb-slider__pip::before {
    content: '';
    display: block;
    width: 2px;
    height: 8px;
    background: currentColor;
    border-radius: 1px;
}

.rb-slider__pip span {
    font-size: 0.65rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.rb-slider__pip--conv {
    color: var(--muted);
}

.rb-slider__pip--b2pure {
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
}

.rb-slider__legend {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    font-size: var(--fs-xs);
}

.rb-slider__legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
}

.rb-slider__legend-item--b2pure {
    color: var(--color-primary);
}

.rb-slider__legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* ============================================================
   SPEC COMPARISON (Konventionell vs. B2PURE®)  v0.39.0
   ============================================================ */
.spec-cmp {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: var(--space-6);
    align-items: start;
    margin-top: var(--space-8);
}
.spec-conv {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    opacity: 0.82;
}
.spec-conv__frozen {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--muted);
    color: var(--surface);
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4);
}
.spec-conv__heading {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: var(--space-1);
}
.spec-conv__title {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: var(--space-4);
}
.pen-grade-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.pen-grade {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--muted);
    letter-spacing: 0.04em;
}
.spec-conv__note {
    font-size: var(--fs-xs);
    color: var(--muted);
    font-style: italic;
}
.spec-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--subtle);
    letter-spacing: 0.06em;
    padding-top: var(--space-8);
}
.spec-panel {
    background: var(--surface);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.spec-panel__heading {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-dark);
}
[data-theme="dark"] .spec-panel__heading { color: var(--color-primary); }
.pen-formula {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    letter-spacing: 0.02em;
}
.pen-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.pen-display {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
}
.pen-display__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    flex: 1;
}
.pen-display__value {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1;
}
.pen-range {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--color-primary) var(--pct-pen, 35%), var(--border) 0);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.pen-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--surface);
    box-shadow: 0 0 0 2px var(--color-primary);
    cursor: pointer;
}
.pen-range::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    box-shadow: 0 0 0 3px var(--surface), 0 0 0 5px var(--color-primary);
    cursor: pointer;
}
.pen-minmax {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--subtle);
    padding: 0 2px;
}
.pen-note {
    font-size: var(--fs-sm);
    color: var(--muted);
    font-style: italic;
}
@media (max-width: 680px) {
    .spec-cmp { grid-template-columns: 1fr; }
    .spec-vs { padding: var(--space-2) 0; }
}

/* ── Rheofalt block ── */
.prod-rheofalt__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.prod-rheofalt__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.prod-rheofalt__desc {
    font-size: var(--fs-md);
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
}

.prod-rheofalt__img-wrap {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.prod-rheofalt__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    max-height: 360px;
}

@media (max-width: 768px) {
    .prod-rheofalt__grid { grid-template-columns: 1fr; }
}

/* ── Downloads grid ── */
.prod-dl__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.prod-dl__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.prod-dl__list li {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    font-size: var(--fs-sm);
    color: var(--text2);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--border2);
}

.prod-dl__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prod-dl__list li > i {
    color: var(--color-primary);
    font-size: var(--fs-base);
}

.prod-dl__todo {
    font-size: var(--fs-xs);
    color: var(--subtle);
    font-style: italic;
}

.prod-dl__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prod-dl__link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border2);
    color: var(--text);
    transition: color var(--transition-fast);
}

.prod-dl__links li:last-child .prod-dl__link {
    border-bottom: none;
}

.prod-dl__link:hover {
    color: var(--color-primary);
}

.prod-dl__link > i:first-child {
    font-size: var(--fs-md);
    color: var(--color-primary);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.prod-dl__link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.prod-dl__link-text strong {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text);
}

.prod-dl__link:hover .prod-dl__link-text strong {
    color: var(--color-primary);
}

.prod-dl__link-text em {
    font-size: var(--fs-xs);
    color: var(--muted);
    font-style: normal;
}

.prod-dl__ext {
    font-size: var(--fs-xs);
    color: var(--subtle);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .prod-dl__grid { grid-template-columns: 1fr; }
}

/* ── CTA block ── */
.prod-cta__inner {
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.prod-cta__h2 {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: 1.15;
    margin-bottom: var(--space-2);
}

.prod-cta__sub {
    font-size: var(--fs-md);
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}

.prod-cta__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-2);
}

/* Light-mode: btn--outline-white in section--main-cta → dark outline */
:root:not([data-theme="dark"]) .section--main-cta .btn--outline-white {
    border-color: var(--text);
    color: var(--text);
}
:root:not([data-theme="dark"]) .section--main-cta .btn--outline-white:hover {
    background-color: var(--text);
    color: var(--color-background);
}

/* ============================================================
   PROJECTS PAGE v0.10.0
   ============================================================ */

/* --- World Map -------------------------------------------- */
.proj-map-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: var(--space-8);
    align-items: start;
    margin-top: var(--space-8);
}

.proj-map {
    background: transparent;
    position: relative;
    aspect-ratio: 960 / 400;
    overflow: hidden;
}

.world-map-svg { display: block; width: 100%; height: 100%; pointer-events: all; }

/* Country fills */
.map-country {
    fill: var(--map-land);
    stroke: rgba(0,0,0,0.22);
    stroke-width: 0.6;
    vector-effect: non-scaling-stroke;
    pointer-events: none;
}

[data-theme="dark"] .map-country {
    stroke: rgba(255,255,255,0.18);
}

.map-country--active {
    fill: var(--color-primary) !important;
    stroke: rgba(0,0,0,0.3) !important;
    stroke-width: 0.6;
    vector-effect: non-scaling-stroke;
    pointer-events: all;
    cursor: pointer;
    transition: fill 0.15s;
}

[data-theme="dark"] .map-country--active {
    stroke: rgba(0,0,0,0.3) !important;
}

.map-country--active:hover { fill: #72e85a !important; }
.map-country--selected { fill: #2fa81e !important; }

/* Europa-Zoom back button */
.proj-map__back {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: var(--fs-xs);
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    opacity: 0.85;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    transition: opacity 0.15s, background 0.15s;
}
.proj-map__back:hover { opacity: 1; background: var(--faint); }
.proj-map__back[hidden] { display: none; }

.proj-map__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    font-size: var(--fs-sm);
    color: var(--muted);
}

.proj-map__legend {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-1);
    font-size: var(--fs-xs);
    color: var(--muted);
}

.proj-map__legend-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

/* Right column: CO₂ stat + info panel */
.proj-map-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-self: start;
}

/* Country info panel */
.proj-map-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    animation: panel-in 0.2s ease;
}

.proj-map-panel[hidden] { display: none; }

.proj-map-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--border);
    background: var(--faint);
}

.proj-map-panel__title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--text);
}

.proj-map-panel__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background 0.15s;
}

.proj-map-panel__close:hover { background: var(--border); }

.proj-panel-list {
    padding: var(--space-3) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.proj-panel-item { border-bottom: 1px solid var(--border); padding-bottom: var(--space-3); }
.proj-panel-item:last-child { border-bottom: none; padding-bottom: 0; }

.proj-panel-item__loc {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: 2px;
}

.proj-panel-item__meta {
    font-size: var(--fs-xs);
    color: var(--muted);
}

.proj-panel-item__ccs {
    font-size: var(--fs-xs);
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- CO₂ stat -------------------------------------------- */
.proj-co2-stat {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.proj-co2-stat__value {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: var(--space-2);
}

.proj-co2-stat__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text);
    margin-bottom: var(--space-1);
}

.proj-co2-stat__note {
    font-size: var(--fs-xs);
    color: var(--muted);
    line-height: 1.5;
}

/* --- Project Slider --------------------------------------- */
.proj-slider {
    margin-top: 2rem;
}

.proj-slider__viewport {
    position: relative;
}

.proj-slide {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.proj-slide[aria-hidden="true"] {
    display: none;
}

.proj-slide[aria-hidden="false"] {
    display: block;
}

@keyframes psSlideInFwd {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: none; }
}
@keyframes psSlideInBk {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: none; }
}

.proj-slide[aria-hidden="false"].ps-anim-fwd {
    animation: psSlideInFwd 0.32s ease both;
}
.proj-slide[aria-hidden="false"].ps-anim-bk {
    animation: psSlideInBk 0.32s ease both;
}

.proj-slide--rich .proj-slide__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.proj-slide__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.proj-slide:not(.proj-slide--rich) .proj-slide__body {
    padding: 2rem 1.5rem 2.5rem;
}

.proj-slide__tag {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}

.proj-slide__title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.proj-slide__text {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.proj-slide__meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.proj-slide__meta-item {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.proj-slide__meta-label {
    font-size: var(--fs-xs);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: var(--fw-semibold);
}

.proj-slide__meta-val {
    font-size: var(--fs-sm);
    color: var(--text);
    font-weight: var(--fw-semibold);
}

.proj-slide__ccs-val {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.proj-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.proj-slider__btn {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.35rem;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s, color .15s;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.proj-slider__btn:hover:not(:disabled) {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

.proj-slider__btn:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.proj-slider__count {
    font-size: var(--fs-sm);
    color: var(--muted);
    min-width: 4.5rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* --- All Projects Table ----------------------------------- */
.proj-table-wrap {
    overflow-x: auto;
    margin-top: var(--space-8);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.proj-table {
    width: 100%;
    border-collapse: collapse;
}

.proj-table th {
    text-align: left;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    padding: var(--space-3) var(--space-5);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
    background: var(--surface);
}

.proj-table td {
    padding: var(--space-3) var(--space-5);
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-sm);
    color: var(--text);
    vertical-align: middle;
}

.proj-table tbody tr:last-child td { border-bottom: none; }
.proj-table tbody tr:hover td { background: var(--faint); }

.proj-table td:first-child { color: var(--muted); font-size: var(--fs-xs); }

.proj-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: var(--fw-bold);
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.proj-badge--regular {
    background: rgba(74, 163, 68, .12);
    color: var(--color-primary);
}

.proj-badge--stark {
    background: rgba(74, 163, 68, .22);
    color: var(--color-primary);
}

.proj-badge--multi {
    background: rgba(74, 163, 68, .12);
    color: var(--color-primary);
}

.proj-ccs { font-weight: var(--fw-semibold); }
.proj-area-unknown { color: var(--subtle); }

/* --- GCC CTA --------------------------------------------- */
.proj-gcc {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.proj-gcc__text {
    font-size: var(--fs-md);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

/* --- Final CTA ------------------------------------------- */
.proj-final-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.proj-final-cta__h2 {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: 1.15;
    margin-bottom: var(--space-4);
}

.proj-final-cta__sub {
    font-size: var(--fs-md);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.proj-final-cta__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 900px) {
    .proj-map-layout {
        grid-template-columns: 1fr;
    }

    .proj-map-right {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .proj-co2-stat {
        padding: var(--space-6);
        flex: 1;
        min-width: 200px;
    }

    .proj-map-panel {
        flex: 1;
        min-width: 220px;
    }

}

@media (max-width: 600px) {
    .proj-table th,
    .proj-table td {
        padding: var(--space-2) var(--space-3);
        font-size: 12px;
    }
}

/* ============================================================
   APPLICATIONS PAGE  v0.11.0
   ============================================================ */

.app-sec__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-top: var(--space-8);
}

.app-sec__text { }

.app-sec__p {
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--space-4);
}

.app-sec__p:last-of-type { margin-bottom: 0; }

.app-sec__grade {
    display: inline-block;
    margin-top: var(--space-4);
    padding: 4px 14px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: .05em;
    text-transform: uppercase;
}

[data-theme="dark"] .app-sec__grade {
    background: rgba(68, 212, 44, 0.15);
    color: var(--color-primary);
}

.app-sec__cs-link {
    display: inline-block;
    margin-top: var(--space-3);
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.app-sec__cs-link:hover { color: var(--color-primary-dark); }

.app-sec__img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--border);
}

.app-sec__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.app-sec__placeholder {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: var(--surface2);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: var(--fs-sm);
}

.app-nav-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.app-nav-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.app-nav-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    transform: translateY(-2px);
}

.app-nav-card__icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-4);
    line-height: 1;
    color: var(--color-primary-dark);
}
[data-theme="dark"] .app-nav-card__icon { color: var(--color-primary); }

.app-nav-card__title {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: var(--space-2);
}

.app-nav-card__text {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}

.app-nav-card__arrow {
    margin-top: var(--space-4);
    color: var(--color-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
}

@media (max-width: 900px) {
    .app-sec__split {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    .app-nav-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .app-nav-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   TEAM & PARTNER PAGE  v0.13.0
   ============================================================ */

.team-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-card__img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface2);
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.team-card__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: var(--fs-sm);
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
}

.team-card__body {
    padding: var(--space-5);
    flex: 1;
}

.team-card__name {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: var(--space-1);
}

.team-card__role {
    font-size: var(--fs-sm);
    color: var(--color-primary-dark);
    font-weight: var(--fw-semibold);
}

[data-theme="dark"] .team-card__role {
    color: var(--color-primary);
}

.team-bridge {
    text-align: center;
    padding: var(--space-8) 0 0;
    font-size: var(--fs-md);
    color: var(--muted);
    font-style: italic;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.partner-tile {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    background: var(--surface);
    gap: var(--space-2);
    text-align: center;
}

.partner-tile__name {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text2);
}

.partner-tile__type {
    font-size: var(--fs-xs);
    color: var(--subtle);
}

.partner-tile--more {
    border-style: dashed;
    background: transparent;
}

.partner-tile--more .partner-tile__name {
    color: var(--muted);
    font-weight: var(--fw-regular);
}

.team-global {
    text-align: center;
    padding-top: var(--space-8);
}

.team-global__text {
    font-size: var(--fs-base);
    color: var(--muted);
    max-width: 560px;
    margin: var(--space-3) auto 0;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .team-cards {
        grid-template-columns: 1fr;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   LOCATION MAP + COMING SOON / NEWSLETTER  v0.27.0
   ============================================================ */

/* Map container */
.loc-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    margin-top: var(--space-8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.loc-map-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Sea / land fills – hardcoded so dark-mode selectors work cleanly */
.loc-sea  { fill: #b4cfe0; }
.loc-land { fill: #e8e2d4; stroke: #cbbfa8; stroke-width: 0.8; vector-effect: non-scaling-stroke; }
.loc-border { fill: none; stroke: #c0b89a; stroke-width: 0.5; stroke-dasharray: 3 2; vector-effect: non-scaling-stroke; }
[data-theme="dark"] .loc-sea   { fill: #0d1d2b; }
[data-theme="dark"] .loc-land  { fill: #1d2537; stroke: #2d3855; }
[data-theme="dark"] .loc-border { stroke: #2d3855; }

/* Pin markers */
.loc-pin-pulse { fill: var(--color-primary); opacity: 0.22; }
.loc-pin-dot   { fill: var(--color-primary); }

/* HTML labels overlaid on the SVG */
.loc-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1px;
    pointer-events: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 3px 6px;
    line-height: 1.25;
    white-space: nowrap;
}
.loc-label__city {
    font-size: 10px;
    font-weight: var(--fw-bold);
    color: var(--text);
}
.loc-label__role {
    font-size: 9px;
    color: var(--color-primary-dark);
}
[data-theme="dark"] .loc-label__role { color: var(--color-primary); }

@media (max-width: 600px) {
    .loc-map-wrap { aspect-ratio: 4 / 3; }
    .loc-label { padding: 2px 4px; }
    .loc-label__city { font-size: 8px; }
    .loc-label__role { font-size: 7px; }
}

/* Coming-soon + newsletter */
.loc-soon-text {
    font-size: var(--fs-md);
    color: var(--muted);
    max-width: 560px;
    margin: var(--space-4) auto 0;
    line-height: 1.7;
}
.loc-nl-form {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-6);
}
.loc-nl-input {
    flex: 1 1 220px;
    max-width: 300px;
    padding: 0.65rem var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text);
    font-size: var(--fs-base);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}
.loc-nl-input:focus { border-color: var(--color-primary); }
.loc-nl-input::placeholder { color: var(--subtle); }
.loc-nl-thanks {
    display: none;
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    margin-top: var(--space-4);
    font-size: var(--fs-md);
}

/* ============================================================
   CONTACT PAGE  v0.14.0
   ============================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-12);
    align-items: start;
    margin-top: var(--space-8);
}

/* Form */
.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.contact-form__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text2);
}

.contact-form__required {
    color: var(--color-primary-dark);
    margin-left: 2px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 10px var(--space-4);
    background: var(--input-bg);
    border: 1px solid var(--input-bd);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-sizing: border-box;
    appearance: none;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(68, 212, 44, 0.15);
}

.contact-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-8);
}

.contact-form__textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form__error {
    font-size: var(--fs-xs);
    color: #c0392b;
    display: none;
}

.contact-form__group--invalid .contact-form__error {
    display: block;
}

.contact-form__group--invalid .contact-form__input,
.contact-form__group--invalid .contact-form__select,
.contact-form__group--invalid .contact-form__textarea {
    border-color: #c0392b;
}

#contact-form > .btn[type="submit"] {
    margin-top: 1.75rem;
}

.contact-form__success {
    display: none;
    margin-top: var(--space-6);
    padding: var(--space-5) var(--space-6);
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    color: var(--color-primary-dark);
    font-weight: var(--fw-semibold);
}

[data-theme="dark"] .contact-form__success {
    background: rgba(68, 212, 44, 0.12);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Sidebar */
.contact-sidebar__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.contact-sidebar__heading {
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: var(--space-5);
}

.contact-info__item {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    align-items: flex-start;
}

.contact-info__item:last-child { margin-bottom: 0; }

.contact-info__icon {
    width: 18px;
    flex-shrink: 0;
    color: var(--color-primary-dark);
    margin-top: 2px;
    text-align: center;
    font-size: var(--fs-sm);
}

[data-theme="dark"] .contact-info__icon { color: var(--color-primary); }

.contact-info__label {
    font-size: var(--fs-xs);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: var(--fw-semibold);
    margin-bottom: 2px;
}

.contact-info__value {
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: 1.5;
}

.contact-info__value a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-info__value a:hover { color: var(--color-primary); }

[data-theme="dark"] .contact-info__value a { color: var(--color-primary); }

.contact-testkit {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.contact-testkit__title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: var(--space-2);
}

.contact-testkit__text {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 0;
}

.contact-testkit .btn {
    margin-top: 1.25rem;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HOME NEWS – Game Changer Chronicles teaser section
   ============================================================ */
.home-news {
    background-color: var(--surface2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.home-news__inner {
    max-width: 760px;
    margin: 0 auto;
}
.home-news__nav {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}
.home-news__nav .newspaper-nav__flip {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast);
    font-family: Georgia, serif;
}
.home-news__nav .newspaper-nav__flip:hover:not(:disabled) {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.home-news__nav .newspaper-nav__flip:disabled { opacity: .3; cursor: default; }
.home-news__nav-count {
    font-size: var(--fs-sm);
    color: var(--muted);
    min-width: 5rem;
    text-align: center;
}
.home-news__cta {
    text-align: center;
    margin-top: var(--cta-gap);
}

/* ============================================================
   NEWSPAPER COMPONENT (shared, also scoped in news/index.html)
   ============================================================ */
/* Stage + flip animation */
.newspaper-stage { position: relative; user-select: none; }
.newspaper       { display: none; max-width: 720px; margin: 0 auto; }
.newspaper.is-active { display: block; }
.newspaper.np-anim-fwd { animation: npFlipFwd .32s cubic-bezier(.25,.46,.45,.94); }
.newspaper.np-anim-bk  { animation: npFlipBk  .32s cubic-bezier(.25,.46,.45,.94); }
@keyframes npFlipFwd {
    from { opacity: 0; transform: perspective(900px) rotateY(-7deg) translateX(2%); }
    to   { opacity: 1; transform: perspective(900px) rotateY(0deg)  translateX(0);  }
}
@keyframes npFlipBk {
    from { opacity: 0; transform: perspective(900px) rotateY(7deg)  translateX(-2%); }
    to   { opacity: 1; transform: perspective(900px) rotateY(0deg)  translateX(0);   }
}
/* Paper (scoped vintage palette – never leaks globally) */
.np {
    --np-cream: #f5eed9; --np-sepia: #3b2e1e; --np-ink: #1c110a;
    --np-rule: #9a8060;  --np-muted: #6e5840;
    background-color: var(--np-cream);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.78 0 0 0 0 0.68 0 0 0 0 0.44 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 160px;
    color: var(--np-ink);
    font-family: 'Old Standard TT', Georgia, serif;
    padding: 2rem 2.5rem 1.25rem;
    border: 1px solid var(--np-rule);
    box-shadow: 4px 6px 28px rgba(0,0,0,.24), 0 0 0 1px rgba(154,128,96,.18);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "mast" "date" "rubr" "hl" "fig" "body" "foot";
}
.np__mast { grid-area: mast; text-align: center; margin-bottom: .5rem; }
.np__rule-dbl { border-top: 2px solid var(--np-sepia); border-bottom: 1px solid var(--np-sepia); height: 4px; margin: .3rem 0; }
.np__name { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem,5vw,2.65rem); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; color: var(--np-sepia); line-height: 1.05; padding: .3rem 0 .2rem; }
.np__tagline { font-size: .57rem; letter-spacing: .18em; text-transform: uppercase; color: var(--np-muted); font-family: 'Old Standard TT', Georgia, serif; margin-top: .1rem; }
.np__date { grid-area: date; text-align: center; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--np-muted); border-top: 1px solid var(--np-rule); border-bottom: 1px solid var(--np-rule); padding: .28rem 0; margin-bottom: .85rem; }
.np__rubrik { grid-area: rubr; display: inline-block; border: 1px solid var(--np-sepia); padding: .1rem .42rem; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--np-sepia); margin-bottom: .55rem; align-self: start; }
.np__hl { grid-area: hl; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.1; color: var(--np-sepia); border-bottom: 1px solid var(--np-rule); padding-bottom: .6rem; margin-bottom: .85rem; align-self: start; }
.np-lA .np__hl, .np-lD .np__hl { font-size: clamp(1.4rem,3.5vw,2.1rem); }
.np-lB .np__hl, .np-lC .np__hl { font-size: clamp(1.1rem,2.2vw,1.55rem); }
.np__fig { grid-area: fig; margin: 0 0 .85rem; }
.np__fig img { width: 100%; height: auto; display: block; filter: sepia(22%) contrast(1.04) grayscale(8%); border: 1px solid var(--np-rule); }
.np-lD .np__fig { margin-top: .6rem; margin-bottom: 0; }
.np__placeholder { display: flex; align-items: center; justify-content: center; width: 100%; background: var(--np-cream); border: 1px solid var(--np-rule); color: var(--np-muted); font-style: italic; font-size: .75rem; letter-spacing: .04em; }
.np-lA .np__placeholder { height: 240px; }
.np-lD .np__placeholder { height: 200px; }
.np-lB .np__placeholder, .np-lC .np__placeholder { height: 260px; }
.np__body { grid-area: body; font-size: .82rem; line-height: 1.68; text-align: justify; hyphens: auto; color: var(--np-ink); align-self: start; }
.np-lA .np__body, .np-lD .np__body { column-count: 2; column-gap: 1.4rem; column-rule: 1px solid var(--np-rule); }
.np-lB .np__body, .np-lC .np__body { column-count: 1; }
.np__foot { grid-area: foot; margin-top: .9rem; padding-top: .4rem; border-top: 2px solid var(--np-sepia); display: flex; align-items: center; justify-content: space-between; font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; color: var(--np-muted); font-family: 'Old Standard TT', Georgia, serif; }
.np__foot-center { color: var(--np-rule); font-size: .85rem; line-height: 1; }
/* Layout B – image left */
.np-lB { grid-template-columns: 42% 1fr; column-gap: 1.3rem; grid-template-areas: "mast mast" "date date" "fig rubr" "fig hl" "fig body" "foot foot"; }
.np-lB .np__fig { margin-bottom: 0; align-self: start; }
.np-lB .np__rubrik { margin-top: .3rem; }
/* Layout C – image right */
.np-lC { grid-template-columns: 1fr 42%; column-gap: 1.3rem; grid-template-areas: "mast mast" "date date" "rubr fig" "hl fig" "body fig" "foot foot"; }
.np-lC .np__fig { margin-bottom: 0; align-self: start; }
.np-lC .np__rubrik { margin-top: .3rem; }
/* Layout D – text first, image below */
.np-lD { grid-template-areas: "mast" "date" "rubr" "hl" "body" "fig" "foot"; }
/* Mobile */
@media (max-width: 600px) {
    .np { padding: 1.2rem 1rem 1rem; }
    .np__name { font-size: 1.4rem; letter-spacing: .1em; }
    .np-lA .np__body, .np-lD .np__body { column-count: 1; }
    .np-lB, .np-lC { grid-template-columns: 1fr; grid-template-areas: "mast" "date" "rubr" "hl" "fig" "body" "foot"; }
    .np-lB .np__fig, .np-lC .np__fig { margin-bottom: .85rem; }
}
/* ── Newspaper image carousel (e.g. e28 Tashkent) ── */
.np-carousel__slide { display: none; }
.np-carousel__slide.is-active { display: block; }
.np-carousel__controls { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .4rem; }
.np-car-btn { background: none; border: 1px solid var(--np-rule); color: var(--np-sepia); font-size: 1rem; cursor: pointer; padding: .1rem .45rem; border-radius: 2px; font-family: Georgia, serif; line-height: 1.4; }
.np-car-btn:disabled { opacity: .3; cursor: default; }
.np-car-btn:hover:not(:disabled) { background: var(--np-sepia); color: var(--np-cream); }
.np-car-indicator { font-size: .65rem; letter-spacing: .1em; color: var(--np-muted); font-family: 'Old Standard TT', Georgia, serif; }
