:root {
    --bg: #f8f4ee;
    --bg-soft: #efe7dd;
    --surface: #ffffff;
    --surface-alt: #f3ece3;
    --text: #2f2924;
    --text-soft: #6f655d;
    --line: rgba(47, 41, 36, 0.12);
    --accent: #c58b5d;
    --accent-dark: #a66f45;
    --shadow-soft: 0 18px 40px rgba(47, 41, 36, 0.08);
    --shadow-card: 0 10px 24px rgba(47, 41, 36, 0.06);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1200px;
    --container-narrow: 760px;
    --header-height: 92px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.narrow {
    width: min(100%, var(--container-narrow));
    margin: 0 auto;
}

.section-space {
    padding: 110px 0;
}

.section-alt {
    background: var(--surface-alt);
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

h1,
h2,
h3 {
    margin: 0 0 18px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 18px;
    color: var(--text-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(248, 244, 238, 0.88);
    border-bottom: 1px solid rgba(47, 41, 36, 0.06);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: var(--header-height);
}

.site-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    color: var(--text);
}

.site-brand-line {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.site-brand-strong {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-family: "Georgia", "Times New Roman", serif;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    position: relative;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(197, 139, 93, 0.4);
    background: #fff;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 14px 28px rgba(197, 139, 93, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-dark);
}

.button-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #fff;
    border-color: rgba(47, 41, 36, 0.18);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 999px;
}

.hero-section {
    padding: 70px 0 40px;
    background: linear-gradient(180deg, #f8f4ee 0%, #f3ece3 100%);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 56px;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 40px);
}

.hero-copy {
    max-width: 680px;
}

.hero-copy h1 {
    color: var(--text);
}

.hero-text {
    max-width: 620px;
    font-size: 1.08rem;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.hero-portrait-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    width: 100%;
    max-width: 520px;
    max-height: 760px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(47, 41, 36, 0.16);
    border: 1px solid rgba(47, 41, 36, 0.08);
    background: #ddd;
}

.quote-section {
    text-align: center;
}

.section-quote {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.35rem);
    line-height: 1.45;
    letter-spacing: -0.03em;
    color: var(--text);
    font-family: "Georgia", "Times New Roman", serif;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.intro-content h2 {
    max-width: 640px;
}

.intro-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.intro-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 520px;
    filter: grayscale(100%);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.content-block {
    max-width: 560px;
}

.feature-boxes {
    display: grid;
    gap: 20px;
}

.feature-box {
    padding: 28px 28px 26px;
    border: 1px solid rgba(47, 41, 36, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-card);
}

.feature-box p:last-child,
.info-card p:last-child,
.news-card p:last-child {
    margin-bottom: 0;
}

.split-highlight {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.highlight-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.highlight-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
}

.highlight-content {
    max-width: 580px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.card-grid,
.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.info-card,
.news-card {
    padding: 30px 28px 28px;
    border: 1px solid rgba(47, 41, 36, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-card);
}

.news-date {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s ease;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--accent-dark);
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(3px);
}

.cta-section {
    padding-top: 40px;
}

.cta-box {
    text-align: center;
    padding: 56px 40px;
    border: 1px solid rgba(47, 41, 36, 0.08);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 236, 227, 0.92) 100%);
    box-shadow: var(--shadow-soft);
}

.cta-box h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.site-footer {
    margin-top: 80px;
    padding-top: 72px;
    background: #ebe3d8;
    border-top: 1px solid rgba(47, 41, 36, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 36px;
    padding-bottom: 44px;
}

.footer-brand p {
    max-width: 420px;
}

.footer-brand-link {
    margin-bottom: 16px;
}

.footer-links h3 {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--accent-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(47, 41, 36, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-bottom a {
    font-weight: 700;
    color: var(--text);
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 18px;
    }

    .header-inner {
        gap: 18px;
    }

    .intro-grid,
    .two-column,
    .split-highlight,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .news-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-card img,
    .highlight-image img {
        min-height: 420px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 82px;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-nav,
    .header-actions .button-primary {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-section {
        padding: 40px 0 20px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-portrait {
        max-width: 100%;
        max-height: none;
    }

    .section-space {
        padding: 82px 0;
    }

    .card-grid,
    .news-preview-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section-space {
        padding: 70px 0;
    }

    .hero-text {
        font-size: 1rem;
    }

    .button {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-box {
        padding: 42px 22px;
    }

    .feature-box,
    .info-card,
    .news-card {
        padding: 24px 22px;
    }

    .intro-card img,
    .highlight-image img {
        min-height: 320px;
    }
}

/* ========================================
ABOUT PAGE
======================================== */

.about-hero {
    padding: 80px 0 40px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.about-hero-copy {
    max-width: 720px;
}

.about-hero-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: var(--surface);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: grayscale(100%);
}

/* TIMELINE */

.timeline-section {
    padding-top: 40px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 28px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 9px;
    width: 2px;
    background: rgba(47, 41, 36, 0.12);
}

.timeline-item {
    position: relative;
    padding: 0 0 42px 34px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1px;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(197, 139, 93, 0.14);
}

.timeline-year {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

/* SPLIT SECTION */

.about-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.about-side-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: var(--surface);
}

.about-side-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
}

.about-note {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width:1100px) {

    .about-hero-grid,
    .about-split {
        grid-template-columns: 1fr;
    }

}

@media (max-width:640px) {

    .about-hero-image img,
    .about-side-image img {
        min-height: 320px;
    }

}

/* ========================================
SUBTLE MOTION + HERO TUNING + CTA BOOST
======================================== */

/* sanfte Scroll-Animationen */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Startseite Hero etwas größer und präsenter */
.hero-split {
    grid-template-columns: 1fr 580px;
    gap: 72px;
    min-height: calc(100vh - var(--header-height) - 20px);
}

.hero-copy h1 {
    max-width: 720px;
}

.hero-text {
    max-width: 640px;
    font-size: 1.12rem;
}

.hero-portrait {
    max-width: 580px;
    max-height: 820px;
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(47, 41, 36, 0.18);
}

/* Intro- und Highlight-Bilder etwas edler */
.intro-card img,
.highlight-image img,
.about-hero-image img,
.about-side-image img {
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.intro-card:hover img,
.highlight-image:hover img,
.about-hero-image:hover img,
.about-side-image:hover img {
    transform: scale(1.035);
}

/* Spenden-CTA stärker hervorheben */
.cta-section {
    padding-top: 60px;
    padding-bottom: 20px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 64px 46px;
    border: 1px solid rgba(197, 139, 93, 0.18);
    background:
        radial-gradient(circle at top right, rgba(197, 139, 93, 0.16) 0%, rgba(197, 139, 93, 0) 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 236, 227, 0.98) 100%);
    box-shadow:
        0 24px 60px rgba(47, 41, 36, 0.10),
        0 8px 24px rgba(197, 139, 93, 0.10);
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.cta-box h2 {
    max-width: 820px;
}

.cta-box .button-primary {
    min-width: 220px;
    min-height: 56px;
    font-size: 1rem;
    box-shadow: 0 18px 34px rgba(197, 139, 93, 0.28);
}

/* Karten etwas lebendiger */
.info-card,
.news-card,
.feature-box {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.news-card:hover,
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(47, 41, 36, 0.10);
    border-color: rgba(197, 139, 93, 0.20);
}

/* mobile */
@media (max-width: 1100px) {
    .hero-split {
        grid-template-columns: 1fr 500px;
        gap: 48px;
    }

    .hero-portrait {
        max-width: 500px;
    }
}

@media (max-width: 860px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
    }

    .hero-portrait {
        max-width: 100%;
        max-height: none;
    }

    .cta-box {
        padding: 52px 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.is-visible,
    .intro-card img,
    .highlight-image img,
    .about-hero-image img,
    .about-side-image img,
    .info-card,
    .news-card,
    .feature-box {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
