:root {
    --black: #090909;
    --soft-black: #141414;
    --white: #fff;
    --cream: #f2eee7;
    --gold: #c6a565;
    --gold-light: #dfc58d;
    --grey: #706d67;
    --max: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--black);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: .98;
    letter-spacing: -.055em;
}

.navigation {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    padding: 22px 34px;
    color: white;
    align-items: center;
    justify-content: space-between;
    background: rgba(9, 9, 9, .72);
    backdrop-filter: blur(18px);
}

.logo {
    font-weight: 900;
    letter-spacing: .2em;
}

.navigation nav {
    display: flex;
    gap: 25px;
    font-size: .8rem;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    padding: 150px max(24px, calc((100vw - var(--max)) / 2));
    background:
        radial-gradient(circle at 75% 35%, rgba(198, 165, 101, .25), transparent 28%),
        linear-gradient(145deg, #050505, #15120e);
    color: white;
    align-items: center;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    right: -12vw;
    bottom: -23vw;
    width: 72vw;
    height: 72vw;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    background:
        radial-gradient(circle at 43% 35%, rgba(198, 165, 101, .48), transparent 18%),
        linear-gradient(145deg, rgba(198, 165, 101, .08), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(820px, 74%);
}

.eyebrow {
    margin-bottom: 26px;
    color: var(--gold);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 35px;
    font-size: clamp(4.7rem, 11vw, 11rem);
    font-weight: 600;
    letter-spacing: -.08em;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.lead {
    max-width: 700px;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.button {
    display: inline-flex;
    min-height: 54px;
    margin-top: 28px;
    padding: 0 25px;
    background: var(--gold);
    color: var(--black);
    align-items: center;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-numbers {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100vw - var(--max)) / 2));
    bottom: 55px;
    display: flex;
    gap: 35px;
}

.hero-numbers article {
    display: flex;
    width: 125px;
    flex-direction: column;
}

.hero-numbers strong {
    color: var(--gold-light);
    font-size: 1.8rem;
}

.hero-numbers span {
    margin-top: 7px;
    color: rgba(255, 255, 255, .48);
    font-size: .7rem;
    line-height: 1.4;
}

.section {
    padding: 135px max(24px, calc((100vw - var(--max)) / 2));
}

.light {
    background: var(--cream);
}

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

.gold {
    background: linear-gradient(140deg, #c6a565, #8e6e37);
}

.family,
.partner-dark {
    background:
        radial-gradient(circle at 80% 35%, rgba(198, 165, 101, .3), transparent 25%),
        var(--black);
    color: white;
}

.section-head {
    max-width: 1050px;
    margin-bottom: 70px;
}

.section h2 {
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 600;
}

.two-columns,
.success-grid {
    display: grid;
    gap: 75px;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
}

.copy {
    max-width: 590px;
    color: #4f4c46;
}

.copy .intro {
    color: var(--black);
    font-size: 1.45rem;
    font-weight: 600;
}

.image-placeholder {
    display: flex;
    min-height: 570px;
    padding: 40px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 75% 25%, #c6a565, transparent 25%),
        linear-gradient(145deg, #74634a, #171512);
    color: white;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .15);
    flex-direction: column;
    justify-content: flex-end;
}

.image-placeholder small {
    color: var(--gold-light);
    text-transform: uppercase;
}

.image-placeholder strong {
    margin-top: 8px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.image-placeholder span {
    margin-top: 15px;
    color: rgba(255, 255, 255, .6);
}

.timeline {
    max-width: 880px;
    margin: 120px 0 0 auto;
}

.timeline article {
    display: grid;
    min-height: 160px;
    gap: 45px;
    grid-template-columns: 90px 1fr;
}

.timeline article > span {
    color: #8e6e37;
    font-size: .8rem;
    font-weight: 800;
}

.timeline h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.timeline p {
    color: var(--grey);
}

.timeline .highlight div {
    padding: 32px;
    border-radius: 22px;
    background: var(--black);
    color: white;
}

.timeline .highlight p {
    color: rgba(255, 255, 255, .6);
}

.narrow {
    max-width: 650px;
    margin-left: auto;
    color: rgba(255, 255, 255, .65);
}

blockquote {
    margin: 45px 0 0;
    padding-left: 25px;
    border-left: 2px solid var(--gold);
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-style: italic;
}

.statement h2 {
    font-size: clamp(4rem, 9vw, 9rem);
}

.statement h2 span {
    display: block;
    color: white;
}

.statement > p:last-child {
    max-width: 760px;
    font-size: 1.3rem;
}

.dark-eyebrow {
    color: #4d391a;
}

.values,
.partner-grid {
    display: grid;
    gap: 1px;
    margin-top: 90px;
    background: rgba(0, 0, 0, .15);
    grid-template-columns: repeat(4, 1fr);
}

.values article,
.partner-grid article {
    min-height: 300px;
    padding: 34px;
    background: rgba(255, 255, 255, .15);
}

.values span,
.partner-grid span {
    font-size: .7rem;
    font-weight: 900;
}

.values h3,
.partner-grid h3 {
    margin-top: 60px;
    font-size: 1.7rem;
}

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

.partner-grid article {
    background: white;
}

.big-number {
    color: #8e6e37;
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 500;
    letter-spacing: -.08em;
}

.strong {
    color: var(--black);
    font-weight: 800;
}

.family {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.family-content {
    max-width: 700px;
}

.family-content h2 {
    font-size: clamp(4rem, 10vw, 10rem);
}

.family-content p {
    color: rgba(255, 255, 255, .65);
}

.family-content .family-lead {
    color: var(--gold-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.partner-lead {
    max-width: 700px;
    color: rgba(255, 255, 255, .62);
    font-size: 1.25rem;
}

footer {
    display: flex;
    padding: 30px 34px;
    background: #050505;
    color: rgba(255, 255, 255, .4);
    justify-content: space-between;
    font-size: .75rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 800px) {
    .navigation nav {
        display: none;
    }

    .hero {
        display: block;
        padding-top: 135px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(4rem, 22vw, 7rem);
    }

    .hero-numbers {
        position: relative;
        right: auto;
        bottom: auto;
        display: grid;
        margin-top: 75px;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-numbers article {
        width: auto;
    }

    .section {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .two-columns,
    .success-grid {
        grid-template-columns: 1fr;
    }

    .values,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .timeline article {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        min-height: 430px;
    }

    footer {
        gap: 15px;
        flex-direction: column;
    }
}


/* ===== BrandBook 0.3 ===== */

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: currentColor;
}

.founder-section {
    display: grid;
    min-height: 90vh;
    background: #ebe5dc;
    grid-template-columns: 1fr 1fr;
}

.founder-visual {
    position: relative;
    display: flex;
    min-height: 720px;
    padding: 70px;
    background:
        linear-gradient(180deg, transparent 25%, rgba(5, 5, 5, .86)),
        radial-gradient(circle at 65% 25%, rgba(214, 182, 121, .8), transparent 20%),
        linear-gradient(145deg, #85715b, #171411);
    color: white;
    flex-direction: column;
    justify-content: flex-end;
}

.founder-visual small {
    color: var(--gold-light);
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.founder-visual strong {
    margin-top: 12px;
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: .95;
    letter-spacing: -.065em;
}

.founder-visual span {
    margin-top: 18px;
    color: rgba(255, 255, 255, .62);
    font-size: 1.1rem;
}

.founder-copy {
    display: flex;
    padding: 100px max(35px, 9vw);
    flex-direction: column;
    justify-content: center;
}

.founder-copy h2 {
    font-size: clamp(3rem, 6vw, 6.5rem);
}

.founder-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: #57534c;
    font-size: 1.12rem;
}

.founder-copy .founder-quote {
    margin-top: 35px;
    padding-left: 25px;
    border-left: 2px solid var(--gold);
    color: var(--black);
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
}

.memory-quote {
    display: flex;
    margin-top: 110px;
    padding: 55px;
    border-radius: 28px;
    background: var(--black);
    color: white;
    flex-direction: column;
}

.memory-quote span {
    color: rgba(255, 255, 255, .5);
    font-size: 1.15rem;
}

.memory-quote strong {
    max-width: 900px;
    margin-top: 20px;
    color: var(--gold-light);
    font-size: clamp(2.2rem, 5vw, 5.2rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.family-values {
    display: flex;
    gap: 12px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.family-values span {
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.family-manifest {
    max-width: 620px;
    margin: 100px 0 0 auto;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 25px;
    background: rgba(255, 255, 255, .035);
}

.family-manifest p {
    color: rgba(255, 255, 255, .48);
}

.family-manifest strong {
    display: block;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.45;
}

.partner-promise {
    display: grid;
    margin-top: 85px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 1px solid rgba(255, 255, 255, .13);
    grid-template-columns: repeat(3, 1fr);
}

.partner-promise article {
    min-height: 310px;
    padding: 38px;
    border-right: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.partner-promise small {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.partner-promise strong {
    display: block;
    margin-top: 80px;
    font-size: 1.65rem;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.finale {
    display: grid;
    min-height: 90vh;
    padding: 130px max(24px, calc((100vw - var(--max)) / 2));
    gap: 80px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .2), transparent 24%),
        linear-gradient(140deg, #c7a665, #87672f);
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
}

.finale-content h2 {
    font-size: clamp(3.8rem, 8vw, 8rem);
}

.finale-content h2 span {
    display: block;
    color: white;
}

.finale-content > p {
    max-width: 680px;
    font-size: 1.3rem;
}

.finale-actions {
    display: flex;
    gap: 28px;
    margin-top: 38px;
    align-items: center;
    flex-wrap: wrap;
}

.finale-actions .button {
    margin-top: 0;
    background: var(--black);
    color: white;
}

.text-link {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.finale-card {
    display: flex;
    min-height: 520px;
    padding: 48px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 75% 20%, rgba(198, 165, 101, .5), transparent 25%),
        #090909;
    color: white;
    box-shadow: 0 45px 100px rgba(0, 0, 0, .3);
    flex-direction: column;
    justify-content: flex-end;
}

.finale-card > span {
    margin-bottom: auto;
    font-weight: 900;
    letter-spacing: .2em;
}

.finale-card strong {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: .92;
    letter-spacing: -.06em;
}

.finale-card small {
    margin-top: 25px;
    color: var(--gold-light);
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .menu-button {
        display: block;
    }

    .navigation nav {
        position: fixed;
        top: 70px;
        right: 14px;
        left: 14px;
        display: none;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 18px;
        background: rgba(8, 8, 8, .97);
        box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation nav.open {
        display: flex;
    }

    .founder-section,
    .finale {
        grid-template-columns: 1fr;
    }

    .founder-visual {
        min-height: 520px;
        padding: 35px;
    }

    .founder-copy {
        padding: 85px 24px;
    }

    .partner-promise {
        grid-template-columns: 1fr;
    }

    .partner-promise article {
        min-height: 245px;
    }

    .partner-promise strong {
        margin-top: 45px;
    }

    .memory-quote {
        padding: 36px 25px;
    }

    .finale {
        gap: 55px;
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .finale-card {
        min-height: 430px;
    }
}

/* ===== BrandBook 0.4 Documentary Story ===== */

.story-documentary {
    background:
        linear-gradient(180deg, #ece6dd 0%, #f5f1eb 100%);
}

.documentary-timeline {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
}

.documentary-timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 180px;
    width: 1px;
    background: rgba(20, 20, 20, .14);
    content: "";
}

.documentary-item {
    display: grid;
    min-height: 250px;
    gap: 70px;
    grid-template-columns: 145px 1fr;
}

.documentary-year {
    padding-top: 10px;
    color: #8e6e37;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.documentary-copy {
    position: relative;
    padding: 0 0 85px 45px;
}

.documentary-copy::before {
    position: absolute;
    top: 10px;
    left: -7px;
    width: 14px;
    height: 14px;
    border: 4px solid #f2eee7;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
    content: "";
}

.documentary-copy h3 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.documentary-copy p {
    max-width: 700px;
    color: #5a5650;
    font-size: 1.12rem;
}

.documentary-copy blockquote {
    max-width: 680px;
    margin: 35px 0;
    color: #7f6231;
}

.documentary-highlight .documentary-copy {
    margin-bottom: 80px;
    padding: 55px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 20%, rgba(198, 165, 101, .28), transparent 25%),
        var(--black);
    color: white;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .18);
}

.documentary-highlight .documentary-copy::before {
    top: 66px;
    left: -52px;
}

.documentary-highlight .documentary-copy p {
    color: rgba(255, 255, 255, .65);
}

.documentary-highlight .documentary-copy strong {
    color: var(--gold-light);
}

.documentary-final {
    display: flex;
    margin-top: 80px;
    padding: 75px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 75% 25%, rgba(198, 165, 101, .4), transparent 24%),
        #090909;
    color: white;
    flex-direction: column;
}

.documentary-final span {
    color: var(--gold-light);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.documentary-final strong {
    max-width: 900px;
    margin-top: 25px;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: .98;
    letter-spacing: -.06em;
}

@media (max-width: 800px) {
    .documentary-timeline::before {
        left: 7px;
    }

    .documentary-item {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .documentary-year {
        padding-left: 34px;
    }

    .documentary-copy {
        padding: 0 0 70px 34px;
    }

    .documentary-copy::before {
        left: 0;
    }

    .documentary-highlight .documentary-copy {
        margin-left: 25px;
        padding: 35px 26px;
    }

    .documentary-highlight .documentary-copy::before {
        top: 45px;
        left: -31px;
    }

    .documentary-final {
        padding: 45px 28px;
    }
}

.quote-big{
    margin:70px 0;
    padding:55px;
    border-left:8px solid #c7a45a;
    background:rgba(255,255,255,.06);
    border-radius:20px;
}

.quote-big h2{
    margin:0;
    font-size:clamp(2.2rem,5vw,4.8rem);
    line-height:1.02;
    font-weight:900;
}

.quote-big .gold{
    color:#d6b36a;
}


/* ===== BrandBook 0.6 ===== */

.corona-section {
    background:
        radial-gradient(circle at 80% 15%, rgba(198,165,101,.18), transparent 25%),
        #0a0a0a;
    color: white;
}

.corona-intro {
    max-width: 1050px;
}

.corona-intro h2 {
    font-size: clamp(3.4rem, 7vw, 7.5rem);
}

.corona-intro h2 span {
    display: block;
    color: var(--gold);
}

.corona-grid {
    display: grid;
    gap: 90px;
    margin-top: 90px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.corona-copy {
    max-width: 620px;
}

.corona-copy p {
    color: rgba(255,255,255,.62);
    font-size: 1.15rem;
}

.corona-copy .corona-strong {
    color: var(--gold-light);
    font-size: 1.45rem;
    font-weight: 800;
}

.corona-quote {
    padding: 50px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background: rgba(255,255,255,.035);
}

.corona-quote small {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.corona-quote blockquote {
    margin-top: 35px;
    color: white;
    font-size: 1.75rem;
}

.future-direction {
    background: #eee8df;
}

.direction-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
}

.direction-card {
    min-height: 340px;
    padding: 42px;
    border: 1px solid rgba(20,20,20,.12);
    border-radius: 25px;
    background: rgba(255,255,255,.45);
}

.direction-card > span {
    color: #8e6e37;
    font-size: .75rem;
    font-weight: 900;
}

.direction-card h3 {
    margin-top: 70px;
    font-size: 2.2rem;
}

.direction-card p {
    max-width: 520px;
    color: #5f5a53;
}

.europe-section {
    display: grid;
    gap: 90px;
    background:
        radial-gradient(circle at 15% 20%, rgba(198,165,101,.18), transparent 25%),
        var(--black);
    color: white;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
}

.europe-copy h2 {
    font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.europe-copy p {
    max-width: 690px;
    color: rgba(255,255,255,.62);
    font-size: 1.15rem;
}

.country-list {
    display: flex;
    gap: 12px;
    align-content: flex-start;
    flex-wrap: wrap;
}

.country-list span {
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    text-transform: uppercase;
}

.people-section {
    background: var(--cream);
}

.people-statement {
    max-width: 1000px;
}

.people-statement h2 span {
    display: block;
    color: #9a793e;
}

.people-statement > p:last-child {
    max-width: 700px;
    color: var(--grey);
    font-size: 1.2rem;
}

.people-types {
    display: grid;
    margin-top: 90px;
    border-top: 1px solid rgba(20,20,20,.14);
    border-left: 1px solid rgba(20,20,20,.14);
    grid-template-columns: repeat(5, 1fr);
}

.people-types article {
    min-height: 240px;
    padding: 30px;
    border-right: 1px solid rgba(20,20,20,.14);
    border-bottom: 1px solid rgba(20,20,20,.14);
}

.people-types small {
    color: #8e6e37;
    font-weight: 900;
}

.people-types strong {
    display: block;
    margin-top: 95px;
    font-size: 1.3rem;
    line-height: 1.15;
}

.invitation-section {
    display: grid;
    min-height: 90vh;
    background:
        radial-gradient(circle at 75% 20%, rgba(255,255,255,.18), transparent 22%),
        linear-gradient(140deg, #c8a766, #7d5d29);
    place-items: center;
    text-align: center;
}

.invitation-content {
    max-width: 1050px;
}

.invitation-content h2 {
    font-size: clamp(3.7rem, 8vw, 8rem);
}

.invitation-content h2 span {
    display: block;
    color: white;
}

.invitation-content > p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.25rem;
}

.invitation-content .invitation-strong {
    margin-top: 35px;
    color: white;
    font-size: 1.55rem;
    font-weight: 800;
}

@media (max-width: 800px) {
    .corona-grid,
    .europe-section {
        grid-template-columns: 1fr;
    }

    .direction-grid {
        grid-template-columns: 1fr;
    }

    .people-types {
        grid-template-columns: 1fr;
    }

    .people-types article {
        min-height: 180px;
    }

    .people-types strong {
        margin-top: 60px;
    }

    .corona-quote {
        padding: 35px 25px;
    }

    .country-list {
        margin-top: 25px;
    }
}


/* ===== BrandBook 0.9 · Image Architecture ===== */

.media-slot {
    position: relative;
    min-height: 420px;
    margin: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 75% 20%, rgba(198,165,101,.46), transparent 24%),
        linear-gradient(145deg, #6f604b, #171512);
    box-shadow: 0 35px 90px rgba(0,0,0,.16);
    overflow: hidden;
}

.media-slot > img {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
    transition: transform 1.2s ease;
}

.media-slot:hover > img {
    transform: scale(1.025);
}

.media-slot.image-missing > img {
    display: none;
}

.media-slot figcaption {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 90px 38px 36px;
    background: linear-gradient(transparent, rgba(4,4,4,.92));
    color: white;
    flex-direction: column;
}

.media-slot figcaption small {
    color: var(--gold-light);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.media-slot figcaption strong {
    margin-top: 8px;
    font-size: clamp(1.8rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.media-slot figcaption span {
    margin-top: 13px;
    color: rgba(255,255,255,.62);
}

.media-placeholder {
    position: absolute;
    z-index: 1;
    display: flex;
    padding: 38px;
    color: white;
    inset: 0;
    flex-direction: column;
    justify-content: flex-end;
}

.media-placeholder small {
    color: var(--gold-light);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.media-placeholder strong {
    max-width: 650px;
    margin-top: 8px;
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.media-placeholder span {
    margin-top: 15px;
    color: rgba(255,255,255,.42);
    font-family: monospace;
    font-size: .72rem;
}

.media-slot:not(.image-missing) .media-placeholder {
    display: none;
}

.media-slot.image-missing figcaption {
    display: none;
}

.media-slot-portrait {
    min-height: 570px;
}

.founder-visual.media-slot {
    margin: 0;
    border-radius: 0;
}

.founder-visual.media-slot figcaption {
    padding: 100px 70px 65px;
}

.story-gallery {
    display: grid;
    gap: 20px;
    margin: 80px 0 110px;
    grid-template-columns: 1.25fr .75fr;
}

.story-gallery-large {
    min-height: 660px;
    grid-row: span 2;
}

.story-gallery-small {
    min-height: 320px;
}

.family-gallery {
    display: grid;
    gap: 16px;
    margin-top: 90px;
    grid-template-columns: 1.2fr .8fr .8fr;
}

.family-gallery .media-slot {
    min-height: 420px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: none;
}

.family-gallery .media-slot:first-child {
    min-height: 530px;
}

@media (max-width: 800px) {
    .media-slot-portrait {
        min-height: 450px;
    }

    .founder-visual.media-slot figcaption {
        padding: 75px 30px 35px;
    }

    .story-gallery {
        grid-template-columns: 1fr;
    }

    .story-gallery-large,
    .story-gallery-small {
        min-height: 430px;
        grid-row: auto;
    }

    .family-gallery {
        grid-template-columns: 1fr;
    }

    .family-gallery .media-slot,
    .family-gallery .media-slot:first-child {
        min-height: 430px;
    }

    .media-placeholder {
        padding: 28px;
    }
}


/* ===== MSE Partnerportal 1.0 · Business Model ===== */

.business-system {
    background:
        radial-gradient(circle at 82% 12%, rgba(198,165,101,.2), transparent 25%),
        #0a0a0a;
    color: white;
}

.business-system .section-head h2 span {
    display: block;
    color: var(--gold);
}

.business-intro {
    max-width: 760px;
    margin-bottom: 80px;
}

.business-intro p {
    color: rgba(255,255,255,.65);
    font-size: 1.25rem;
}

.business-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.business-card {
    min-height: 390px;
    padding: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: rgba(255,255,255,.035);
}

.business-card > span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
}

.business-card h3 {
    margin-top: 80px;
    font-size: 2rem;
}

.business-card p {
    color: rgba(255,255,255,.56);
}

.business-statement {
    display: flex;
    margin-top: 80px;
    padding: 60px;
    border-radius: 28px;
    background: var(--gold);
    color: var(--black);
    flex-direction: column;
}

.business-statement small {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.business-statement strong {
    margin-top: 14px;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: .95;
    letter-spacing: -.065em;
}

.partner-benefits {
    background: var(--cream);
}

.benefit-list {
    border-top: 1px solid rgba(20,20,20,.14);
}

.benefit-list article {
    display: grid;
    gap: 70px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(20,20,20,.14);
    grid-template-columns: 210px 1fr;
    align-items: start;
}

.benefit-list span {
    color: #8e6e37;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.benefit-list strong {
    max-width: 850px;
    font-size: clamp(1.45rem, 3vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.cooperation-process {
    background: #111;
    color: white;
}

.process-steps {
    max-width: 980px;
    margin-left: auto;
}

.process-steps article {
    display: grid;
    gap: 45px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    grid-template-columns: 80px 1fr;
}

.process-steps > article > span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
}

.process-steps h3 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.process-steps p {
    max-width: 680px;
    color: rgba(255,255,255,.58);
}

.conditions-preview {
    background: #e9e2d8;
}

.conditions-head {
    max-width: 1040px;
}

.conditions-head h2 span {
    display: block;
    color: #96743a;
}

.conditions-head > p:last-child {
    max-width: 760px;
    color: #625d55;
    font-size: 1.18rem;
}

.conditions-grid {
    display: grid;
    gap: 14px;
    margin-top: 80px;
    grid-template-columns: repeat(2, 1fr);
}

.conditions-grid article {
    min-height: 240px;
    padding: 34px;
    border: 1px solid rgba(20,20,20,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.38);
}

.conditions-grid strong {
    font-size: 1.5rem;
}

.conditions-grid p {
    margin-top: 55px;
    color: #655f56;
}

.conditions-note {
    max-width: 850px;
    margin-top: 45px;
    padding-left: 22px;
    border-left: 2px solid var(--gold);
    color: #635d54;
    font-size: .9rem;
}

.partner-shop-section {
    display: grid;
    min-height: 90vh;
    padding: 130px max(24px, calc((100vw - var(--max)) / 2));
    gap: 65px;
    background:
        radial-gradient(circle at 10% 15%, rgba(255,255,255,.14), transparent 20%),
        linear-gradient(140deg, #c9aa6b, #81612f);
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
}

.shop-panel h2 {
    font-size: clamp(4rem, 8vw, 8rem);
}

.shop-panel h2 span {
    display: block;
    color: white;
}

.shop-panel > p {
    max-width: 720px;
    font-size: 1.2rem;
}

.shop-features {
    display: flex;
    gap: 10px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.shop-features span {
    padding: 10px 15px;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-actions {
    display: flex;
    gap: 26px;
    margin-top: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.button-dark {
    margin-top: 0;
    background: var(--black);
    color: white;
}

.shop-contact-link {
    color: var(--black);
}

.shop-status {
    display: block;
    max-width: 620px;
    margin-top: 30px;
    color: rgba(0,0,0,.58);
}

.shop-visual {
    display: flex;
    min-height: 580px;
    padding: 46px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 75% 20%, rgba(198,165,101,.5), transparent 24%),
        #080808;
    color: white;
    box-shadow: 0 45px 110px rgba(0,0,0,.3);
    flex-direction: column;
    justify-content: flex-end;
}

.shop-visual > span {
    margin-bottom: auto;
    font-weight: 900;
    letter-spacing: .2em;
}

.shop-visual strong {
    font-size: clamp(3.4rem, 6vw, 6.5rem);
    line-height: .86;
    letter-spacing: -.065em;
}

.shop-visual small {
    margin-top: 25px;
    color: var(--gold-light);
    letter-spacing: .09em;
    text-transform: uppercase;
}

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

    .partner-shop-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .business-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        min-height: 310px;
    }

    .business-card h3 {
        margin-top: 55px;
    }

    .business-statement {
        padding: 42px 26px;
    }

    .benefit-list article {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .process-steps article {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .conditions-grid article {
        min-height: 210px;
    }

    .conditions-grid p {
        margin-top: 35px;
    }

    .partner-shop-section {
        gap: 55px;
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .shop-visual {
        min-height: 430px;
    }
}


/* ==========================================================
   MSE PARTNERPORTAL 1.2 – PARTNERBEWERBUNG
   ========================================================== */

.partner-application-section {
    display: grid;
    padding: 130px max(24px, calc((100vw - var(--max)) / 2));
    gap: 70px;
    background: #f4efe7;
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
}

.application-intro {
    position: sticky;
    top: 110px;
}

.application-intro h2 {
    font-size: clamp(3.6rem, 7vw, 7rem);
}

.application-intro h2 span {
    display: block;
    color: #96743a;
}

.application-intro > p {
    max-width: 600px;
    margin-top: 30px;
    color: #625d55;
    font-size: 1.12rem;
}

.application-notes {
    display: flex;
    gap: 10px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.application-notes span {
    padding: 10px 14px;
    border: 1px solid rgba(20,20,20,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.5);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.partner-application-form {
    padding: 42px;
    border: 1px solid rgba(20,20,20,.1);
    border-radius: 30px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 35px 90px rgba(0,0,0,.08);
}

.form-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: flex;
    gap: 9px;
    flex-direction: column;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(20,20,20,.18);
    border-radius: 12px;
    outline: none;
    background: white;
    color: var(--black);
    font: inherit;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #96743a;
    box-shadow: 0 0 0 4px rgba(150,116,58,.13);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(150,45,45,.5);
}

.form-consent {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    color: #554f47;
    font-size: .88rem;
    grid-template-columns: auto 1fr;
    align-items: start;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #96743a;
}

.form-privacy-note {
    max-width: 720px;
    margin-top: 18px;
    color: #726b62;
    font-size: .78rem;
}

.form-actions {
    display: flex;
    gap: 24px;
    margin-top: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.form-actions .button {
    margin-top: 0;
    border: 0;
    cursor: pointer;
}

.form-status {
    min-height: 1.4em;
    margin-top: 20px;
    color: #4d3b1d;
    font-size: .86rem;
    font-weight: 700;
}

.form-status.error {
    color: #8d2f2f;
}

.form-status.success {
    color: #38613e;
}

@media (max-width: 1000px) {
    .partner-application-section {
        grid-template-columns: 1fr;
    }

    .application-intro {
        position: static;
    }
}

@media (max-width: 700px) {
    .partner-application-section {
        gap: 45px;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .partner-application-form {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }

    .form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-actions .button {
        width: 100%;
        text-align: center;
    }
}


/* ==========================================================
   MSE PARTNERPORTAL 1.3 – RECHTLICHE LINKS
   ========================================================== */

.form-consent a,
.form-privacy-note a {
    color: #7a5b28;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.site-footer {
    display: grid;
    gap: 20px;
    padding: 28px max(24px, calc((100vw - var(--max)) / 2));
    background: #080808;
    color: rgba(255,255,255,.65);
    font-size: .76rem;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.site-footer > span:last-child {
    text-align: right;
}

.footer-legal {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
}

.footer-legal a {
    color: white;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: var(--gold-light);
}

@media (max-width: 800px) {
    .site-footer {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .site-footer > span:last-child {
        text-align: center;
    }

    .footer-legal {
        gap: 15px 22px;
        flex-wrap: wrap;
    }
}


/* ==========================================================
   MSE PARTNERPORTAL 1.3.1 – TABLET OVERFLOW FIX
   ========================================================== */

@media (max-width: 1000px) and (min-width: 701px) {
    .people-types {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .people-types article {
        width: auto;
        min-width: 0;
    }

    .people-types strong {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}


/* ==========================================================
   MSE DE MOBILE OVERFLOW FIX FINAL
   Behebt die diagnostizierten Überläufe bei 390 Pixel.
   ========================================================== */

@media (max-width: 700px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

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

    .navigation {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        left: 0;
        right: 0;
    }

    .navigation > *,
    #mainNavigation {
        min-width: 0;
    }

    .logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .menu-button {
        position: relative;
        z-index: 2;
        flex: 0 0 44px;
        width: 44px;
        max-width: 44px;
        min-width: 44px;
    }

    main,
    section,
    footer,
    form,
    fieldset,
    .section-head,
    .section-inner,
    .container {
        min-width: 0;
        max-width: 100%;
    }

    .hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-orb {
        max-width: 72vw;
        pointer-events: none;
    }

    /*
     * Hauptverursacher des 64-Pixel-Dokumentüberlaufs.
     */
    .family {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .family-manifest,
    .family-manifest > *,
    .family-manifest div {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .family-manifest {
        overflow: hidden;
        padding-left: min(42px, 8vw);
        padding-right: min(42px, 8vw);
    }

    .family-manifest p,
    .family-manifest strong,
    .family-manifest span,
    .family-manifest a {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    /*
     * Im Diagnosebericht erkannte interne Textüberläufe.
     */
    .documentary-final,
    .documentary-final > *,
    .documentary-timeline,
    .documentary-timeline > *,
    .documentary-item,
    .documentary-item > *,
    .quote-big,
    .quote-big > *,
    .section-head,
    .section-head > * {
        min-width: 0;
        max-width: 100%;
    }

    .documentary-final,
    .documentary-timeline,
    .documentary-item,
    .quote-big,
    .section-head {
        overflow: hidden;
    }

    .documentary-final strong,
    .documentary-final h2,
    .quote-big h2,
    .section-head h2 {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .quote-big {
        padding-left: min(55px, 9vw);
        padding-right: min(55px, 9vw);
    }

    .story-documentary,
    .partner-benefits {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    img,
    svg,
    video,
    canvas {
        max-width: 100%;
    }
}


/* ==========================================================
   MSE LANGUAGE SWITCHER FINAL 1.4.1
   ========================================================== */

.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    margin-left: 0.75rem;
    white-space: nowrap;
    font-size: 0.76rem;
    line-height: 1;
    letter-spacing: 0.12em;
}

.language-switcher a {
    color: inherit;
    opacity: 0.58;
    text-decoration: none;
    transition:
        opacity 160ms ease,
        color 160ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.is-active {
    opacity: 1;
}

.language-switcher a.is-active {
    color: var(--gold, #bf9950);
    font-weight: 700;
}

.language-switcher span {
    opacity: 0.35;
}

.portal-version {
    margin-top: 1rem;
    font-size: 0.72rem;
    opacity: 0.55;
}

@media (max-width: 700px) {
    .language-switcher {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        margin: 0.65rem 0 0;
        padding-top: 0.65rem;
        border-top: 1px solid rgba(191, 153, 80, 0.22);
        font-size: 0.8rem;
        box-sizing: border-box;
    }

    #mainNavigation .language-switcher {
        min-width: 0;
    }
}

/* ===== MSE_PORTAL_V170_IMAGE_CLEANUP ===== */

/*
 * Solange Bilder noch nicht hinterlegt sind:
 * keine technischen Platzhalter oder leeren Bildboxen anzeigen.
 *
 * Sobald eine Bilddatei vorhanden ist, fehlt image-missing
 * und normale media-slots werden automatisch wieder sichtbar.
 */
.media-placeholder {
    display: none !important;
}

.media-slot.image-missing {
    display: none !important;
}

/*
 * Family-Galerie enthält aktuell ausschließlich die drei
 * später geplanten Family-Bilder.
 *
 * Sie war die Ursache der sichtbaren drei vertikalen Striche.
 * Sobald die drei Bilder eingesetzt werden, diese eine Regel entfernen.
 */
#family .family-gallery {
    display: none !important;
    margin: 0 !important;
}

/* ===== END MSE_PORTAL_V170_IMAGE_CLEANUP ===== */
