:root {
    --white:#fff;
    --red:#BE0F34;
    --gold:#D4AF37;
    --navy:#002855;
    --ink:#111827;
    --soft:#F7F4EE;
    --line:rgba(212,175,55,.55);
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
    margin:0;
    color:var(--ink);
    background:var(--white);
    font-family:Inter,Arial,sans-serif;
}

a { color:inherit; }

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

.site-header {
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(255,255,255,.97);
    border-bottom:2px solid var(--gold);
    backdrop-filter:blur(12px);
}

.header-inner {
    width:min(1180px,calc(100% - 40px));
    min-height:88px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand {
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.brand-mark {
    width:2px;
    height:52px;
    background:var(--gold);
}

.brand strong {
    display:block;
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:clamp(25px,3vw,38px);
    letter-spacing:.02em;
    line-height:.9;
    color:var(--navy);
}

.brand strong span { color:var(--red); }

.brand small {
    display:block;
    margin-top:8px;
    color:#9d7410;
    font-weight:600;
    letter-spacing:.04em;
}

.main-menu {
    display:flex;
    align-items:center;
    gap:30px;
}

.main-menu a {
    position:relative;
    padding:33px 0 27px;
    text-decoration:none;
    font-weight:600;
}

.main-menu a::after {
    content:'';
    position:absolute;
    left:0;
    right:100%;
    bottom:19px;
    height:2px;
    background:var(--gold);
    transition:right .2s ease;
}

.main-menu a:hover { color:var(--red); }

.main-menu a:hover::after { right:0; }

.menu-toggle {
    display:none;
    padding:10px 14px;
    border:1px solid var(--gold);
    background:var(--white);
    color:var(--navy);
    font-weight:700;
    cursor:pointer;
}

.hero {
    position:relative;
    isolation:isolate;
    min-height:390px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background-color:var(--navy);
}

.hero::before {
    content:'';
    position:absolute;
    inset:0;
    z-index:-3;
    background-image:var(--hero-image);
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    transform:scale(1.01);
}

.hero::after { content:none; }

.hero-overlay {
    position:absolute;
    inset:0;
    z-index:-2;
    overflow:hidden;
    background:linear-gradient(
        90deg,
        rgba(0,21,44,.97) 0%,
        rgba(0,28,57,.90) 42%,
        rgba(0,40,85,.35) 67%,
        rgba(0,40,85,.12) 100%
    );
}

.hero-overlay::before {
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:380px;
    height:100%;
    z-index:1;
    pointer-events:none;
    background:var(--red);

    clip-path:polygon(
        320px 0,
        352px 0,
        210px 78%,
        140px 100%,
        0 100%,
        0 78%,
        72px 78%
    );
}
/* Durchgehende goldene Kante */
.hero-overlay::after {
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:380px;
    height:100%;
    z-index:2;
    pointer-events:none;
    background:var(--gold);

    clip-path:polygon(
        352px 0,
        365px 0,
        225px 78%,
        154px 100%,
        140px 100%,
        210px 78%
    );
}

.hero-inner {
    position:relative;
    z-index:3;
    width:min(1180px,calc(100% - 40px));
    margin:auto;
    padding:42px 0 46px;
    color:var(--white);
}

.eyebrow {
    margin:0 0 14px;
    color:var(--gold);
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:.07em;
}

.eyebrow::after {
    content:'';
    display:block;
    width:38px;
    height:3px;
    margin-top:12px;
    background:var(--gold);
}

.hero h1 {
    max-width:920px;
    margin:0;
    color:var(--white);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:clamp(38px,4.4vw,58px);
    line-height:1.02;
    font-weight:600;
    text-wrap:balance;
}

.hero-subtitle {
    max-width:820px;
    margin:15px 0 22px;
    color:rgba(255,255,255,.84);
    font-size:clamp(16px,1.6vw,19px);
    line-height:1.45;
}

.hero-button {
    display:inline-flex;
    align-items:center;
    gap:24px;
    padding:13px 22px;
    border:1px solid var(--gold);
    background:var(--red);
    color:var(--white);
    text-decoration:none;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:.07em;
    box-shadow:0 12px 30px rgba(0,0,0,.24);
    transition:background .2s ease,transform .2s ease;
}

.hero-button:hover {
    background:#9d0d2c;
    transform:translateY(-1px);
}

.hero-button span {
    color:var(--gold);
    font-size:21px;
}

.article-shell {
    width:min(1180px,calc(100% - 40px));
    margin:auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:70px;
    padding:65px 0 75px;
}

.article-main { min-width:0; }

.article-meta {
    display:flex;
    align-items:center;
    gap:15px;
    color:#667085;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.article-meta span {
    color:var(--red);
    font-weight:800;
}

.article-meta i {
    width:1px;
    height:18px;
    background:var(--gold);
}

.article-title {
    margin:16px 0 12px;
    color:#0d1726;
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:clamp(39px,5vw,60px);
    line-height:1;
    text-wrap:balance;
}

.author {
    margin:0 0 25px;
    color:#916c18;
    font-style:italic;
}

.lead {
    padding-bottom:25px;
    border-bottom:1px solid var(--gold);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:23px;
    line-height:1.45;
}

.article-image { margin:32px 0; }

.article-image img {
    width:100%;
    max-height:520px;
    object-fit:cover;
}

.article-body {
    color:#252b35;
    font-family:Georgia,'Times New Roman',serif;
    font-size:18px;
    line-height:1.75;
}

.article-body h2 {
    margin:38px 0 12px;
    color:var(--navy);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:34px;
    line-height:1.1;
}

.article-body h3 {
    color:var(--navy);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:27px;
}

.article-body p { margin:0 0 22px; }

.article-body strong { color:#151c27; }

.article-body a { color:var(--red); }

.article-body blockquote {
    margin:28px 0;
    padding:15px 22px;
    border-left:4px solid var(--gold);
    background:var(--soft);
    font-style:italic;
}

.article-body ul {
    padding-left:25px;
    margin:22px 0;
}

.article-body li { margin-bottom:8px; }

.article-inline-image { margin:28px 0; }

.featured-quote {
    position:relative;
    margin:38px 0 0;
    padding:28px 30px 24px 74px;
    border-left:4px solid var(--gold);
    background:linear-gradient(135deg,#fbf8f1,#f3efe8);
}

.featured-quote > span {
    position:absolute;
    left:20px;
    top:8px;
    color:var(--gold);
    font:70px/1 Georgia,serif;
}

.featured-quote p {
    margin:0;
    font:italic 22px/1.45 Georgia,serif;
}

.featured-quote cite {
    display:block;
    margin-top:12px;
    color:#a4760f;
    font-size:13px;
    font-style:normal;
    font-weight:700;
    text-transform:uppercase;
}

.editor-note {
    position:sticky;
    top:115px;
    align-self:start;
    padding:28px;
    border:1px solid var(--gold);
    background:#fffdfa;
    box-shadow:0 14px 40px rgba(0,40,85,.08);
}

.note-icon {
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border:1px solid var(--gold);
    border-radius:50%;
    color:var(--gold);
    font-size:23px;
}

.editor-note h3 {
    margin:18px 0;
    color:var(--red);
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.editor-note p {
    color:#46505d;
    line-height:1.65;
}

.editor-note hr {
    margin:24px 0;
    border:0;
    border-top:1px solid var(--gold);
}

.note-point {
    display:flex;
    flex-direction:column;
    gap:3px;
    margin:18px 0;
}

.note-point b {
    color:var(--navy);
    font-size:13px;
    text-transform:uppercase;
}

.note-point span {
    color:#667085;
    font-size:13px;
}

.site-footer {
    text-align:center;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-weight:700;
}

.footer-red {
    padding:23px 30px;
    background:var(--red);
    color:var(--white);
}

.footer-gold {
    padding:20px 30px;
    background:var(--gold);
    color:#251b04;
}

.footer-dark {
    display:flex;
    justify-content:space-between;
    gap:30px;
    padding:28px max(30px,calc((100vw - 1180px)/2));
    background:var(--navy);
    color:var(--gold);
}

.footer-dark span {
    color:var(--white);
    opacity:.84;
}

.footer-links {
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.footer-links a {
    color:var(--white);
    text-decoration:none;
    opacity:.9;
}

.footer-links a:hover {
    color:var(--gold);
    opacity:1;
}

.legal-shell {
    width:min(960px,calc(100% - 40px));
    margin:auto;
    padding:58px 0 70px;
}

.legal-card {
    border:1px solid var(--gold);
    background:#fffdfa;
    box-shadow:0 14px 40px rgba(0,40,85,.08);
    padding:36px;
}

.legal-card h1 {
    margin:0 0 18px;
    color:var(--navy);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:clamp(38px,5vw,58px);
    line-height:1;
}

.legal-card h2 {
    margin:34px 0 10px;
    color:var(--red);
    font-size:17px;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.legal-card p,
.legal-card li {
    color:#252b35;
    font-size:17px;
    line-height:1.65;
}

.legal-card p {
    margin:0 0 16px;
}

.legal-card ul {
    margin:0 0 18px;
    padding-left:22px;
}

.legal-card a {
    color:var(--red);
    font-weight:700;
}

@media (max-width:900px) {
    .header-inner { min-height:75px; }

    .menu-toggle { display:block; }

    .main-menu {
        display:none;
        position:absolute;
        top:75px;
        left:0;
        right:0;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 20px 20px;
        border-bottom:2px solid var(--gold);
        background:var(--white);
    }

    .main-menu.is-open { display:flex; }

    .main-menu a {
        padding:14px 5px;
        border-bottom:1px solid #eee;
    }

    .main-menu a::after { display:none; }

    .hero { min-height:360px; }

    .hero-inner { padding:38px 0 42px; }

    .hero h1 {
        max-width:760px;
        font-size:clamp(38px,6vw,52px);
    }

    .article-shell {
        grid-template-columns:1fr;
        gap:35px;
    }

    .editor-note { position:static; }
}

@media (max-width:600px) {
    .header-inner,
    .hero-inner,
    .article-shell {
        width:min(100% - 28px,1180px);
    }

    .brand strong { font-size:28px; }

    .brand small { font-size:11px; }

    .hero { min-height:330px; }

    .hero-inner { padding:32px 0 36px; }

    .hero-overlay::before {
        width:230px;

        clip-path:polygon(
            188px 0,
            208px 0,
            135px 78%,
            92px 100%,
            0 100%,
            0 82%,
            42px 82%
        );
    }

    .hero-overlay::after {
        width:230px;

        clip-path:polygon(
            208px 0,
            216px 0,
            143px 78%,
            100px 100%,
            92px 100%,
            135px 78%
        );
	}
	
    .eyebrow {
        margin-bottom:12px;
        font-size:13px;
    }

    .eyebrow::after { margin-top:10px; }

    .hero h1 {
        max-width:100%;
        font-size:clamp(36px,11vw,46px);
        line-height:1;
    }

    .hero-subtitle {
        margin:14px 0 20px;
        font-size:16px;
    }

    .hero-button {
        gap:20px;
        padding:12px 18px;
        font-size:14px;
    }

    .article-shell { padding:45px 0 55px; }

    .article-title { font-size:43px; }

    .lead { font-size:20px; }

    .article-body { font-size:17px; }

    .featured-quote { padding:25px 20px 22px 60px; }

    .featured-quote > span {
        left:14px;
        font-size:58px;
    }

    .featured-quote p { font-size:19px; }

    .footer-dark {
        flex-direction:column;
        padding:25px 20px;
    }

    .legal-card { padding:26px; }
}
