:root {
    --bg: #f6f8f7;
    --bg-alt: #ffffff;
    --surface: #ffffff;
    --text: #162220;
    --muted: #526463;
    --primary: #006a61;
    --primary-dark: #00544d;
    --accent: #ee7d21;
    --accent-soft: #fff0e2;
    --border: #d9e2df;
    --shadow: 0 14px 40px rgba(14, 33, 30, 0.12);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Barlow", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1000px 500px at 95% -5%, #d8ece8 0%, transparent 60%),
        radial-gradient(900px 500px at -5% 30%, #ffe9d2 0%, transparent 55%),
        var(--bg);
    line-height: 1.5;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 0 0 10px 10px;
    z-index: 1000;
}

.skip-link:focus {
    left: 1rem;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-header {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(8, 37, 33, 0.08);
    backdrop-filter: blur(6px);
    background: rgba(246, 248, 247, 0.76);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-top {
    margin: 0;
    font-family: "Oswald", "Barlow", sans-serif;
    letter-spacing: 0.02em;
    font-size: 1.32rem;
    line-height: 1;
}

.brand-sub {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.header-nav {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.header-nav a {
    color: #24423e;
    text-decoration: none;
    font-weight: 600;
}

.header-nav a:hover,
.header-nav a:focus-visible {
    text-decoration: underline;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: linear-gradient(180deg, transparent 0%, #eff5f3 100%);
}

.section-head {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section h2,
.section-head h2 {
    font-family: "Oswald", "Barlow", sans-serif;
    letter-spacing: 0.02em;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0 0 0.8rem;
    line-height: 1.2;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.07rem;
}

#erwartet-sie .section-head {
    max-width: none;
}

#erwartet-sie .section-head p {
    max-width: none;
    width: 100%;
}

.legal-main {
    padding-bottom: 0.5rem;
}

.legal-section {
    padding-top: 2.2rem;
    padding-bottom: 3.5rem;
}

.legal-intro {
    color: var(--muted);
    max-width: 74ch;
}

.legal-section h1 {
    font-family: "Oswald", "Barlow", sans-serif;
    letter-spacing: 0.02em;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin: 0 0 0.8rem;
    line-height: 1.2;
}

.legal-entities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.legal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    box-shadow: 0 8px 22px rgba(9, 30, 26, 0.06);
}

.legal-card h2 {
    margin: 0;
    font-family: "Oswald", "Barlow", sans-serif;
    font-size: 1.3rem;
    line-height: 1.25;
}

.legal-address {
    margin: 0.85rem 0 1rem;
    color: #2f433f;
}

.legal-address p {
    margin: 0;
}

.legal-details {
    margin: 0;
    display: grid;
    gap: 0.62rem;
}

.legal-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    align-items: start;
}

.legal-details dt {
    margin: 0;
    font-weight: 700;
    color: #1f3432;
}

.legal-details dt::after {
    content: ":";
}

.legal-details dd {
    margin: 0;
    color: var(--muted);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-details a {
    color: #0f5f58;
    text-decoration: none;
}

.legal-details a:hover,
.legal-details a:focus-visible {
    text-decoration: underline;
}

.legal-block {
    margin-top: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    box-shadow: 0 8px 22px rgba(9, 30, 26, 0.06);
}

.legal-block h2 {
    margin: 0 0 0.7rem;
    font-family: "Oswald", "Barlow", sans-serif;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.2;
}

.privacy-main .legal-block p {
    margin: 0.45rem 0 0;
    color: #334946;
}

.privacy-main .legal-block ul {
    margin: 0.45rem 0 0;
    padding-left: 1.2rem;
    color: #3e5350;
}

.privacy-main .legal-block li + li {
    margin-top: 0.28rem;
}

.legal-responsibility p {
    margin: 0;
    font-weight: 600;
}

.legal-disclaimer-list {
    display: grid;
    gap: 1rem;
}

.legal-disclaimer-item h3 {
    margin: 0 0 0.42rem;
    font-size: 1.08rem;
    line-height: 1.3;
}

.legal-disclaimer-item p {
    margin: 0;
    color: var(--muted);
}

.hero {
    padding-top: 2.2rem;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 4vw, 3rem);
    color: #fff;
    background:
        radial-gradient(circle at 88% 18%, rgba(238, 125, 33, 0.72) 0%, transparent 42%),
        linear-gradient(150deg, #0f312d 0%, #00544d 50%, #006a61 100%);
    box-shadow: var(--shadow);
}

.hero-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-eyebrow {
    display: inline-flex;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15);
}

.hero h1 {
    font-family: "Oswald", "Barlow", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin: 0;
    max-width: 14ch;
}

.hero-subtitle {
    margin: 0.8rem 0 0;
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
    font-weight: 600;
}

.hero-tagline {
    margin: 1rem 0 0;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 700;
    color: #ffddb9;
}

.hero-facts {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.fact {
    padding: 0.9rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.fact span {
    display: block;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.fact strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.03rem;
    line-height: 1.25;
}

.hero-actions {
    margin-top: 1.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    padding: 0.86rem 1.22rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn-primary {
    background: var(--accent);
    color: #1f1103;
    box-shadow: 0 8px 18px rgba(238, 125, 33, 0.38);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #ff8b2b;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.24);
}

.btn-large {
    padding: 1rem 1.6rem;
    font-size: 1.05rem;
}

.hero-status {
    margin-top: 0.7rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.62rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(9, 30, 27, 0.28);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 600;
    font-size: 0.96rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.hero-note {
    margin: 0.9rem 0 0;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.86);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    box-shadow: 0 4px 12px rgba(10, 20, 20, 0.04);
}

.feature-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: "Oswald", "Barlow", sans-serif;
}

.feature-card p {
    margin: 0.72rem 0 0;
    color: var(--muted);
}

.cta-panel {
    border-radius: var(--radius-xl);
    padding: clamp(1.3rem, 2.5vw, 2rem);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 10px 24px rgba(9, 30, 26, 0.08);
}

.cta-panel h2 {
    margin-top: 0;
}

.cta-panel p {
    margin: 0 0 1.1rem;
    color: var(--muted);
    max-width: 70ch;
}

#gewinnspiel .cta-panel p,
#kalender .cta-panel p {
    max-width: none;
    width: 100%;
}

.cta-panel-calendar {
    background: linear-gradient(160deg, #f8fcfb 0%, #fff8ef 100%);
}

.cta-panel-calendar .btn-secondary {
    background: #0f5f58;
    border-color: #0f5f58;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 95, 88, 0.24);
}

.cta-panel-calendar .btn-secondary:hover,
.cta-panel-calendar .btn-secondary:focus-visible {
    background: #0b4f49;
    border-color: #0b4f49;
}

.section-trust {
    padding-bottom: 6.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.trust-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    text-align: center;
    font-weight: 700;
    min-height: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item-link {
    text-decoration: none;
    color: inherit;
}

.trust-item-link:focus-visible {
    outline: 2px solid #24423e;
    outline-offset: 2px;
}

.trust-logo {
    width: 100%;
    max-width: 190px;
    max-height: 56px;
    object-fit: contain;
    object-position: center;
}

.trust-fallback {
    display: none;
    font-family: "Oswald", "Barlow", sans-serif;
    font-size: 1.02rem;
    line-height: 1.2;
}

.trust-item.logo-missing .trust-logo {
    display: none;
}

.trust-item.logo-missing .trust-fallback {
    display: block;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #fff;
    padding-top: 1.3rem;
    padding-bottom: 5rem;
}

.footer-inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-inner strong {
    font-family: "Oswald", "Barlow", sans-serif;
    font-size: 1.1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-brand-copy {
    color: #1f3432;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
}

.footer-brand-link img {
    display: block;
    width: 160px;
    max-width: 100%;
    height: auto;
}

.footer-brand-link:hover {
    opacity: 0.9;
}

.footer-brand-link:focus-visible {
    outline: 2px solid #24423e;
    outline-offset: 2px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
}

.footer-nav a {
    text-decoration: none;
    color: #24423e;
    font-weight: 600;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    text-decoration: underline;
}

.footer-copy {
    padding-top: 1rem;
    color: #647470;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(11, 24, 22, 0.88);
    backdrop-filter: blur(5px);
    z-index: 80;
}

.mobile-sticky-cta .btn {
    width: 100%;
    font-size: 1.02rem;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

@media (max-width: 1040px) {
    .legal-entities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .section {
        padding: 3rem 0;
    }

    .header-inner {
        align-items: flex-start;
    }

    .legal-entities {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-status {
        padding: 0.55rem 0.75rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .trust-item {
        min-height: 102px;
        height: 102px;
    }

    .footer-brand {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .footer-brand-link img {
        width: 142px;
    }

    .footer-nav {
        width: 100%;
    }

    .features-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .site-footer {
        padding-bottom: 7.25rem;
    }
}

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