/* Aktives Farbschema: ruhiges Grün/Blau, weiche UI-Neutraltöne, minimale Eckenradien */

:root {
    --cream: #f0f6f6;
    --cream-deep: #e2eef0;
    --surface-warm: #fbfdfe;
    --warm-ink: #0f2433;
    --warm-muted: #3d5a66;
    --brand-teal: #0d6b6b;
    --brand-teal-hover: #095252;
    --sea: #0c5a8c;
    --sea-light: #e8f4fc;
    --teal-soft: #0f766e;
    --teal-light: #d8f3ef;
    --navy: #0f2433;
    --navy-mid: #1a3d52;
    --blue: #0c6b9e;
    --blue-bright: #0e8faf;
    --blue-soft: #dcecf5;
    --ice: #eef6f8;
    --mist: #f2f8f9;
    --color-bg: var(--cream);
    --color-surface: var(--surface-warm);
    --color-border: #c8dce0;
    --color-text: var(--warm-ink);
    --color-muted: var(--warm-muted);
    --color-primary: var(--brand-teal);
    --color-primary-hover: var(--brand-teal-hover);
    --color-accent: var(--ice);
    --shadow-sm: 0 1px 0 rgba(15, 36, 51, 0.04), 0 8px 24px rgba(15, 36, 51, 0.06);
    --shadow-md: 0 1px 0 rgba(15, 36, 51, 0.05), 0 20px 48px rgba(15, 36, 51, 0.08);
    --radius: 3px;
    --radius-lg: 4px;
    --panel-bg: linear-gradient(180deg, #fafcf9 0%, #eef4f0 100%);
    --panel-border: #d4e6e0;
}

body {
    background-color: #e8f0ee;
    background-image:
        radial-gradient(90% 40% at 50% 0%, rgba(13, 107, 107, 0.06), transparent 55%),
        linear-gradient(180deg, #f7fcfa 0%, #eef6f3 35%, #e5eeeb 72%, #dce8e4 100%);
}

.skip-link:focus {
    outline-color: var(--blue-bright);
}

.site-header__bar {
    background: rgba(251, 253, 254, 0.97);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: transparent;
    color: var(--brand-teal);
    border-color: transparent;
}

.site-nav__trigger:hover,
.site-nav__trigger[aria-expanded="true"] {
    color: var(--brand-teal);
}

.site-nav__tile:hover {
    background: rgba(13, 107, 107, 0.06);
}

.site-nav__tile-icon {
    color: var(--teal-soft);
}

.site-nav__link--cta {
    background: linear-gradient(135deg, var(--brand-teal) 0%, #0a5f7a 100%);
    border-color: transparent;
    color: #fff;
}

.site-nav__link--cta:hover,
.site-nav__link--cta.is-active {
    background: linear-gradient(135deg, var(--brand-teal-hover) 0%, #084a62 100%);
    border-color: transparent;
    color: #fff;
}

.nav-toggle:hover {
    border-color: rgba(13, 107, 107, 0.35);
}

.hero__veil {
    background:
        linear-gradient(118deg, rgba(8, 40, 52, 0.9) 0%, rgba(10, 58, 72, 0.62) 45%, rgba(12, 90, 140, 0.38) 100%),
        linear-gradient(to top, rgba(8, 35, 48, 0.82), transparent 46%);
}

.kicker {
    color: var(--teal-soft);
}

.kicker--on-dark {
    color: #b8f0e8;
}

.btn {
    border-radius: var(--radius-lg);
}

.btn--primary {
    background: linear-gradient(135deg, #0f766e 0%, #0c6b9e 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 22px rgba(12, 90, 140, 0.28);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--brand-teal-hover) 0%, #0a5580 100%);
    border-color: transparent;
    color: #fff;
}

.btn--solid {
    background: linear-gradient(135deg, #0f766e 0%, #0c6b9e 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(12, 90, 140, 0.26);
}

.btn--solid:hover {
    background: linear-gradient(135deg, var(--brand-teal-hover) 0%, #0a5580 100%);
    border-color: transparent;
    color: #fff;
}

.layout .btn--outline {
    color: var(--navy);
    border-color: var(--color-border);
}

.layout .btn--outline:hover {
    border-color: var(--blue-bright);
    color: var(--sea);
    background: var(--sea-light);
}

.btn:focus-visible {
    outline-color: var(--blue-bright);
}

.editorial-panel {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.editorial-panel__rule {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #0f766e 0%, #0d9488 35%, #0ea5e9 70%, #2563eb 100%);
}

.editorial-panel__inner {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(1.35rem, 3.5vw, 2.25rem);
}

@media (min-width: 768px) {
    .editorial-panel__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        align-items: stretch;
    }
}

.editorial-panel__figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 14rem;
    align-self: stretch;
}

.editorial-panel__figure img {
    flex: 1 1 auto;
    width: 100%;
    min-height: 12rem;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .editorial-panel__figure {
        min-height: 100%;
        max-height: none;
    }

    .editorial-panel__figure img {
        min-height: 100%;
    }
}

.editorial-panel__text .display-heading {
    margin-bottom: 0.85rem;
}

.editorial-panel__lead {
    font-family: var(--font-display);
    font-size: var(--step-2);
    color: var(--navy);
    margin: 0 0 1rem;
    line-height: 1.38;
    max-width: none;
}

.editorial-panel__body {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.72;
    max-width: none;
    font-size: var(--step-0);
}

.editorial-split {
    display: grid;
    gap: clamp(1.35rem, 3vw, 2.25rem);
    align-items: stretch;
    padding: 0;
}

@media (min-width: 880px) {
    .editorial-split {
        grid-template-columns: 1.05fr 1fr;
    }

    .editorial-split--reverse .editorial-split__figure {
        order: 2;
    }

    .editorial-split--reverse .editorial-split__text {
        order: 1;
    }
}

.editorial-split__figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    min-height: 14rem;
    align-self: stretch;
}

.editorial-split__figure--tall {
    min-height: 18rem;
}

.editorial-split__figure img {
    flex: 1 1 auto;
    width: 100%;
    min-height: 12rem;
    object-fit: cover;
    display: block;
}

@media (min-width: 880px) {
    .editorial-split__figure,
    .editorial-split__figure--tall {
        min-height: 100%;
        max-height: none;
    }

    .editorial-split__figure img {
        min-height: 100%;
    }
}

.editorial-panel .read-rich,
.editorial-split .read-rich {
    max-width: none;
}

.partner-band__inner {
    background: linear-gradient(135deg, #063d42 0%, #0a4f5c 42%, #0c3d5c 100%);
}

.partner-band__inner--light {
    background: linear-gradient(180deg, #fbfdfe 0%, var(--cream-deep) 100%);
    border-color: var(--color-border);
}

.bento__cell--hero {
    background: linear-gradient(145deg, #0b3d4a 0%, #0a4f62 42%, #0b3d5e 100%);
}

.bento__cell--hero .bento__eyebrow {
    color: #f0f9ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.bento__cell--hero .bento__go {
    color: #f8fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.bento__cell--hero .bento__text {
    color: rgba(248, 252, 252, 0.94);
}

.bento__cell--accent {
    background: linear-gradient(135deg, #f0faf9 0%, #fbfdfe 70%);
    border-color: #c5e8e4;
}

.site-footer {
    background: linear-gradient(180deg, #082830 0%, #051820 100%);
    border-top-color: #0f766e;
}

.travel-teaser__accent {
    background: linear-gradient(180deg, #0f766e, #0c5a8c);
}

.bank-box {
    background: linear-gradient(145deg, #0a3d44 0%, #0c3550 100%);
    border-color: rgba(255, 255, 255, 0.12);
}

.read-rich {
    max-width: none;
    width: 100%;
}

.read-rich p {
    margin: 0 0 1.15rem;
    line-height: 1.75;
    color: var(--color-muted);
}

.read-rich h2 {
    font-family: var(--font-display);
    font-size: var(--step-3);
    color: var(--navy);
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    line-height: 1.22;
}

.read-rich h3 {
    font-family: var(--font-display);
    font-size: var(--step-1);
    color: var(--navy);
    margin: 2rem 0 0.6rem;
    font-weight: 700;
}

.read-rich ul {
    margin: 0 0 1.15rem;
    padding-left: 1.25rem;
    color: var(--color-muted);
    line-height: 1.68;
}

.read-rich li {
    margin-bottom: 0.45rem;
}

.section--cream {
    background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
    margin-top: 0;
}

.section--sand {
    background: linear-gradient(180deg, var(--surface-warm) 0%, var(--cream) 100%);
}

.section--tone-band {
    background: linear-gradient(180deg, rgba(13, 107, 107, 0.08) 0%, rgba(12, 107, 155, 0.05) 45%, transparent 95%);
}

.section--faq {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.04) 0%, transparent 55%);
}

.callout {
    margin: 1.5rem 0;
    padding: 1.2rem 1.3rem;
    border-left: 3px solid #0f766e;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.07), rgba(15, 118, 110, 0.05));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    max-width: none;
}

.callout p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.68;
}

.faq-block {
    max-width: none;
    margin: 0;
    width: 100%;
}

.faq-block h2 {
    margin-bottom: 0.5rem;
}

.faq-intro {
    margin: 0 0 1.35rem;
    color: var(--color-muted);
    font-size: var(--step--1);
    max-width: none;
    line-height: 1.62;
}

.faq-block .faq-item {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-block .faq-item:first-of-type {
    border-top: 1px solid var(--color-border);
}

.faq-item summary {
    padding: 1.05rem 0.25rem 1.05rem 0;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: var(--step-0);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 0.45em;
    height: 0.45em;
    margin-top: -0.2em;
    border-right: 2px solid var(--brand-teal);
    border-bottom: 2px solid var(--brand-teal);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.85;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 0.15em;
}

.faq-item summary:hover {
    background: transparent;
    color: var(--sea);
}

.faq-item__body {
    padding: 0 1.75rem 1.2rem 0;
    color: var(--color-muted);
    line-height: 1.72;
    border-top: 0;
    max-width: none;
    font-size: var(--step--1);
}

.two-col {
    display: grid;
    gap: 2rem;
}

@media (min-width: 880px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.hero__title {
    color: #fff;
    max-width: 22ch;
}

@media (min-width: 600px) {
    .hero__title {
        max-width: 26ch;
    }
}

.material-card--accent {
    background: linear-gradient(160deg, #eef8f7 0%, #fbfdfe 60%);
    border-color: #c0e4df;
}

.material-card__icon {
    color: var(--teal-soft);
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
    border-radius: var(--radius-lg);
}

.form input:focus-visible,
.form textarea:focus-visible {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 3px rgba(14, 143, 175, 0.18);
}

.content-panel {
    width: 100%;
    background: #fff;
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.1rem, 2.5vw, 1.65rem);
}

.content-panel--note {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.07) 0%, rgba(15, 118, 110, 0.04) 100%);
    border-color: rgba(12, 107, 155, 0.15);
}

.content-panel + .content-panel {
    margin-top: clamp(0.55rem, 1.4vw, 0.95rem);
}

.content-panel--travel {
    background: #fff;
    border: 0;
    box-shadow: none;
    margin: 0;
}

.travel-teaser__copy.content-panel--travel {
    border-radius: 0;
}

.section--tight .layout > .content-panel + .content-panel {
    margin-top: 0.85rem;
}

.hero__main {
    max-width: 100%;
    padding: clamp(1.1rem, 3vw, 1.65rem);
    background: rgba(8, 40, 52, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

@supports (backdrop-filter: blur(6px)) {
    .hero__main {
        backdrop-filter: blur(8px);
    }
}

.editorial-split__text {
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: #fff;
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.standorte-map {
    margin-top: 1.25rem;
}

.standorte-map__placeholder {
    padding: 1.25rem 1.2rem;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.06) 0%, rgba(15, 118, 110, 0.04) 100%);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
}

.standorte-map__placeholder-text {
    margin: 0 0 1rem;
    font-size: var(--step--1);
    color: var(--color-muted);
    line-height: 1.65;
}

.standorte-map__frame {
    height: min(28rem, 62vh);
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    z-index: 0;
}

.standorte-map__legend {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    font-size: var(--step--1);
    color: var(--color-muted);
    line-height: 1.55;
}

.standorte-map__legend li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.35rem;
}

.standorte-map__swatch {
    width: 1rem;
    height: 1rem;
    border-radius: 2px;
    flex-shrink: 0;
    border: 1px solid rgba(15, 36, 51, 0.12);
}

.standorte-map__swatch--help {
    background: rgba(56, 189, 248, 0.35);
    border-color: #0ea5e9;
}

.standorte-map__swatch--donation {
    background: #10b981;
    border-color: #059669;
}

.standorte-map__note {
    margin: 0.85rem 0 0;
    font-size: var(--step--1);
    color: var(--color-muted);
    line-height: 1.6;
}

#drdh-map-config {
    display: none;
}

.leaflet-container {
    font-family: var(--font-sans);
}

.section--cream,
.section--sand,
.section--tone-band,
.section--faq,
.section--press,
.section--splitband,
.section--material,
.section-divider--hairline,
.section-divider--soft,
.section-divider--none {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.section--splitband {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.content-panel--navy-band {
    padding: clamp(1.35rem, 3vw, 2rem);
    background: linear-gradient(135deg, #071f38 0%, var(--navy-mid) 45%, #0c4a7a 100%);
    color: rgba(232, 241, 251, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.content-panel--navy-band::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 80%;
    background: radial-gradient(ellipse at 30% 0%, rgba(31, 127, 232, 0.35), transparent 55%);
    pointer-events: none;
}

.content-panel--navy-band > * {
    position: relative;
    z-index: 1;
}

.content-panel--navy-band .partner-band__title {
    color: #fff;
}

.content-panel--navy-band .partner-band__text {
    color: rgba(248, 252, 255, 0.94);
}

.content-panel--navy-band .kicker {
    color: #9fd4ff;
}

.content-panel--navy-band .btn--outline {
    color: rgba(232, 241, 251, 0.95);
    border-color: rgba(232, 241, 251, 0.55);
    background: transparent;
    box-shadow: none;
}

.content-panel--navy-band .btn--outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
}

.layout .btn--subtle {
    border-color: rgba(12, 107, 155, 0.35);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.layout .btn--subtle:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    background: #fff;
}

.page-sub-hero__symbol {
    font-size: var(--step--1);
    opacity: 0.92;
    max-width: 60ch;
}
