/* ==========================================================
   MARKUS KAPELLER
   STARTSEITE / STYLE V5
   MODX REVOLUTION 2.8.4

   Version: 5.1
   Namespace: mk-
========================================================== */


/* ==========================================================
   1. GRUNDWERTE
========================================================== */

:root {
    --mk-color-black: #171513;
    --mk-color-black-soft: #211f1c;
    --mk-color-dark: #292622;
    --mk-color-text: #403c37;
    --mk-color-muted: #756f67;
    --mk-color-light: #f7f5f1;
    --mk-color-white: #ffffff;
    --mk-color-border: rgba(23, 21, 19, 0.14);

    --mk-color-gold: #b99a5f;
    --mk-color-gold-light: #d2bb8c;
    --mk-color-gold-dark: #8f713b;

    --mk-font-heading: "PT Serif", Georgia, serif;
    --mk-font-body: "Open Sans", Arial, sans-serif;

    --mk-container-width: 1240px;
    --mk-container-padding: clamp(20px, 4vw, 64px);

    --mk-header-height: 92px;

    --mk-shadow-soft:
        0 20px 60px rgba(23, 21, 19, 0.12);

    --mk-transition:
        220ms ease;
}


/* ==========================================================
   2. ALTE TEMPLATE-KONFLIKTE ENTFERNEN
========================================================== */

html {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: var(--mk-color-white);
    scroll-behavior: smooth;
    scroll-padding-top: var(--mk-header-height);
}

body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-top: 0 !important;
    outline: 0 !important;
    background: var(--mk-color-white) !important;
}

body::before,
body::after,
html::before,
html::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    content: none !important;
    background: transparent !important;
    border: 0 !important;
}

body > div:first-child:empty,
body > span:first-child:empty {
    display: none !important;
}

#top,
#top-bar,
#topbar,
.top-bar,
.topbar,
.red-bar,
.header-red,
.site-topbar,
.page-topbar,
.color-bar,
.colour-bar {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.bjqs,
.bjqs-wrapper,
.bjqs-controls,
.bjqs-markers,
.bjqs-caption,
.slider-wrapper,
.slider-shadow {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

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

.mk-site {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: clip;
    color: var(--mk-color-text);
    background: var(--mk-color-white);
    font-family: var(--mk-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mk-site img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.mk-site a {
    color: inherit;
    text-decoration: none;
}

.mk-site button,
.mk-site input,
.mk-site textarea,
.mk-site select {
    font: inherit;
}

.mk-site ul,
.mk-site ol {
    margin-top: 0;
}

.mk-site p {
    margin-top: 0;
}

.mk-site h1,
.mk-site h2,
.mk-site h3,
.mk-site h4,
.mk-site h5,
.mk-site h6 {
    margin-top: 0;
    color: var(--mk-color-black);
    font-family: var(--mk-font-heading);
    font-weight: 400;
    line-height: 1.13;
    text-wrap: balance;
}

.mk-site h1 {
    font-size: clamp(48px, 7vw, 98px);
}

.mk-site h2 {
    margin-bottom: 28px;
    font-size: clamp(38px, 4.5vw, 64px);
}

.mk-site h3 {
    font-size: clamp(26px, 2.5vw, 34px);
}

.mk-site :focus-visible {
    outline: 2px solid var(--mk-color-gold);
    outline-offset: 5px;
}


/* ==========================================================
   3. LAYOUT
========================================================== */

.mk-container {
    width: min(
        calc(100% - (var(--mk-container-padding) * 2)),
        var(--mk-container-width)
    );
    margin-inline: auto;
}

.mk-main {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mk-overline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--mk-color-gold-dark);
    font-family: var(--mk-font-body);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mk-overline::before {
    flex: 0 0 34px;
    width: 34px;
    height: 1px;
    content: "";
    background: currentColor;
}

.mk-overline-light {
    color: var(--mk-color-gold-light);
}

.mk-text-intro {
    color: var(--mk-color-black);
    font-family: var(--mk-font-heading);
    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.5;
}

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

.mk-section-heading > p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--mk-color-muted);
    font-size: 17px;
}

.mk-section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.mk-section-heading-centered .mk-overline {
    justify-content: center;
}

.mk-section-action {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}


/* ==========================================================
   4. BUTTONS UND LINKS
========================================================== */

.mk-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
    transition:
        color var(--mk-transition),
        border-color var(--mk-transition),
        background-color var(--mk-transition),
        transform var(--mk-transition);
}

.mk-button:hover {
    transform: translateY(-2px);
}

.mk-button-gold {
    color: var(--mk-color-black);
    border-color: var(--mk-color-gold);
    background: var(--mk-color-gold);
}

.mk-button-gold:hover {
    color: var(--mk-color-black);
    border-color: var(--mk-color-gold-light);
    background: var(--mk-color-gold-light);
}

.mk-button-outline {
    color: var(--mk-color-white);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.mk-button-outline:hover {
    color: var(--mk-color-black);
    border-color: var(--mk-color-white);
    background: var(--mk-color-white);
}

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

.mk-button-dark:hover {
    border-color: var(--mk-color-dark);
    background: var(--mk-color-dark);
}

.mk-text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--mk-color-gold);
    color: var(--mk-color-black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        gap var(--mk-transition),
        color var(--mk-transition);
}

.mk-text-link:hover {
    gap: 22px;
    color: var(--mk-color-gold-dark);
}


/* ==========================================================
   5. HEADER
========================================================== */

.mk-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: var(--mk-header-height);
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    background:
        linear-gradient(
            180deg,
            rgba(12, 11, 10, 0.58) 0%,
            rgba(12, 11, 10, 0.18) 100%
        );
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.mk-header::before,
.mk-header::after {
    display: none;
    content: none;
}

.mk-header-inner {
    display: flex;
    width: min(
        calc(100% - (var(--mk-container-padding) * 2)),
        var(--mk-container-width)
    );
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-inline: auto;
}

.mk-brand {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    color: var(--mk-color-white);
}

.mk-brand-name {
    color: var(--mk-color-white);
    font-family: var(--mk-font-heading);
    font-size: clamp(23px, 2vw, 31px);
    line-height: 1.05;
    letter-spacing: 0.025em;
}

.mk-brand-subline {
    margin-top: 7px;
    color: var(--mk-color-gold-light);
    font-size: 8px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.21em;
    text-transform: uppercase;
}

.mk-main-navigation {
    display: block;
    min-width: 0;
}

.mk-main-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-main-navigation li {
    position: relative;
    margin: 0;
    padding: 0;
}

.mk-main-navigation a {
    position: relative;
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color var(--mk-transition);
}

.mk-main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    margin: auto;
    content: "";
    background: var(--mk-color-gold-light);
    transition: width var(--mk-transition);
}

.mk-main-navigation a:hover,
.mk-main-navigation a[aria-current="page"],
.mk-main-navigation .mk-nav-active {
    color: var(--mk-color-gold-light);
}

.mk-main-navigation a:hover::after,
.mk-main-navigation a[aria-current="page"]::after,
.mk-main-navigation .mk-nav-active::after {
    width: 100%;
}


/* ==========================================================
   6. MOBILE NAVIGATION
========================================================== */

.mk-mobile-navigation {
    position: relative;
    display: none;
    margin: 0;
    padding: 0;
}

.mk-mobile-navigation summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--mk-color-white);
    cursor: pointer;
    list-style: none;
}

.mk-mobile-navigation summary::-webkit-details-marker {
    display: none;
}

.mk-mobile-navigation-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mk-mobile-navigation-icon {
    display: flex;
    width: 25px;
    flex-direction: column;
    gap: 5px;
}

.mk-mobile-navigation-icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--mk-color-white);
    transition:
        transform var(--mk-transition),
        opacity var(--mk-transition);
}

.mk-mobile-navigation[open]
    .mk-mobile-navigation-icon
    span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mk-mobile-navigation[open]
    .mk-mobile-navigation-icon
    span:nth-child(2) {
    opacity: 0;
}

.mk-mobile-navigation[open]
    .mk-mobile-navigation-icon
    span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mk-mobile-navigation nav {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    width: min(320px, calc(100vw - 40px));
    padding: 18px 22px;
    border: 1px solid rgba(185, 154, 95, 0.28);
    background: rgba(23, 21, 19, 0.98);
    box-shadow: var(--mk-shadow-soft);
}

.mk-mobile-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-mobile-navigation li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.mk-mobile-navigation li:last-child {
    border-bottom: 0;
}

.mk-mobile-navigation a {
    display: block;
    padding: 14px 0;
    color: var(--mk-color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mk-mobile-navigation a[aria-current="page"] {
    color: var(--mk-color-gold-light);
}


/* ==========================================================
   7. HERO
========================================================== */

.mk-hero {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
   min-height: clamp(680px, 82vh, 820px);
    align-items: center;
    margin: 0;
    padding:
        calc(var(--mk-header-height) + 70px)
        0
        90px;
    overflow: hidden;
    border: 0;
    background: var(--mk-color-black);
}

.mk-hero::before,
.mk-hero::after {
    display: none;
    content: none;
}

.mk-hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mk-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    transform: scale(1.01);
}

.mk-hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(15, 14, 13, 0.84) 0%,
            rgba(15, 14, 13, 0.62) 38%,
            rgba(15, 14, 13, 0.24) 70%,
            rgba(15, 14, 13, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(15, 14, 13, 0.35) 0%,
            rgba(15, 14, 13, 0.06) 45%,
            rgba(15, 14, 13, 0.54) 100%
        );
}

.mk-hero-inner {
    position: relative;
    z-index: 2;
    width: min(
        calc(100% - (var(--mk-container-padding) * 2)),
        var(--mk-container-width)
    );
    margin-inline: auto;
}

.mk-hero-content {
    max-width: 760px;
    color: var(--mk-color-white);
}

.mk-hero-overline {
    margin-bottom: 24px;
    color: var(--mk-color-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.mk-hero h1 {
    max-width: 900px;
    margin-bottom: 26px;
    color: var(--mk-color-white);
    letter-spacing: -0.025em;
    text-shadow: 0 7px 32px rgba(0, 0, 0, 0.28);
}

.mk-hero-divider {
    width: 72px;
    height: 2px;
    margin-bottom: 26px;
    background: var(--mk-color-gold);
}

.mk-hero-lead {
    max-width: 650px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.89);
    font-family: var(--mk-font-heading);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.55;
}

.mk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.mk-hero-scroll {
    position: absolute;
    z-index: 3;
    right: clamp(22px, 4vw, 68px);
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.mk-hero-scroll-line {
    display: block;
    width: 46px;
    height: 1px;
    background: var(--mk-color-gold-light);
}


/* ==========================================================
   8. WILLKOMMEN
========================================================== */

.mk-welcome {
    position: relative;
    padding: clamp(90px, 11vw, 150px) 0;
    background: var(--mk-color-white);
}

.mk-welcome .mk-container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: start;
}

.mk-welcome-heading h2 {
    max-width: 540px;
    margin-bottom: 0;
}

.mk-welcome-text {
    position: relative;
    max-width: 620px;
    padding-top: 38px;
}

.mk-welcome-text::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 76px;
    height: 1px;
    content: "";
    background: var(--mk-color-gold);
}

.mk-welcome-text p {
    margin-bottom: 20px;
    color: var(--mk-color-muted);
    font-size: 17px;
}

.mk-welcome-text p:first-of-type {
    color: var(--mk-color-black);
    font-family: var(--mk-font-heading);
    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.55;
}


/* ==========================================================
   9. ÃœBER MICH
========================================================== */

.mk-about {
    padding: clamp(90px, 11vw, 150px) 0;
    background: var(--mk-color-light);
}

.mk-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.91fr) minmax(0, 1.09fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.mk-about-image {
    position: relative;
    min-height: 680px;
}

.mk-about-image img {
    width: calc(100% - 28px);
    height: 680px;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--mk-shadow-soft);
}

.mk-about-image-frame {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: -28px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border: 1px solid rgba(185, 154, 95, 0.5);
    pointer-events: none;
}

.mk-about-image img {
    position: relative;
    z-index: 1;
}

.mk-about-content {
    max-width: 650px;
}

.mk-about-copy p {
    margin-bottom: 20px;
    color: var(--mk-color-muted);
    font-size: 16px;
}

.mk-about-copy .mk-text-intro {
    color: var(--mk-color-black);
    font-size: clamp(21px, 2vw, 27px);
}

.mk-quote {
    position: relative;
    margin: 38px 0 30px;
    padding: 30px 0 30px 38px;
    border: 0;
    border-left: 2px solid var(--mk-color-gold);
}

.mk-quote p {
    margin: 0;
    color: var(--mk-color-black);
    font-family: var(--mk-font-heading);
    font-size: clamp(21px, 2.2vw, 29px);
    font-style: italic;
    line-height: 1.5;
}


/* ==========================================================
   10. REZEPTE
========================================================== */

.mk-recipes {
    padding: clamp(90px, 11vw, 150px) 0;
    background: var(--mk-color-white);
}

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

.mk-recipe-card {
    position: relative;
    min-width: 0;
    height: 500px;
    margin: 0;
    overflow: hidden;
    background: var(--mk-color-black);
}

.mk-recipe-card > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.mk-recipe-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mk-recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.mk-recipe-card-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(17, 16, 14, 0.08) 10%,
            rgba(17, 16, 14, 0.2) 45%,
            rgba(17, 16, 14, 0.88) 100%
        );
    transition: background-color var(--mk-transition);
}

.mk-recipe-card-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 38px 34px;
    color: var(--mk-color-white);
}

.mk-recipe-card-content p {
    margin-bottom: 12px;
    color: var(--mk-color-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mk-recipe-card-content h3 {
    margin-bottom: 17px;
    color: var(--mk-color-white);
    font-size: clamp(28px, 2.4vw, 36px);
}

.mk-recipe-card-content span {
    display: inline-flex;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--mk-color-gold-light);
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mk-recipe-card:hover .mk-recipe-card-image img {
    transform: scale(1.06);
}


/* ==========================================================
   11. WERTE
========================================================== */

.mk-values {
    padding: clamp(90px, 10vw, 140px) 0;
    color: var(--mk-color-white);
    background: var(--mk-color-black);
}

.mk-values .mk-section-heading h2 {
    color: var(--mk-color-white);
}

.mk-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mk-value-card {
    min-width: 0;
    padding: 48px 46px 30px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.mk-value-card + .mk-value-card {
    padding-left: 46px;
}

.mk-value-card:last-child {
    padding-right: 0;
    border-right: 0;
}

.mk-value-number {
    margin-bottom: 32px;
    color: var(--mk-color-gold);
    font-family: var(--mk-font-heading);
    font-size: 20px;
}

.mk-value-card h3 {
    margin-bottom: 18px;
    color: var(--mk-color-white);
}

.mk-value-card > p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
}


/* ==========================================================
   12. PHILOSOPHIE
========================================================== */

.mk-philosophy {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: var(--mk-color-white);
    background: var(--mk-color-black);
}

.mk-philosophy-background {
    position: absolute;
    inset: 0;
}

.mk-philosophy-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mk-philosophy-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 17, 15, 0.9) 0%,
            rgba(18, 17, 15, 0.74) 45%,
            rgba(18, 17, 15, 0.28) 100%
        );
}

.mk-philosophy-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 700px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.mk-philosophy-content {
    max-width: 730px;
}

.mk-philosophy-content h2 {
    color: var(--mk-color-white);
}

.mk-philosophy-content > p:not(.mk-overline) {
    max-width: 620px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}


/* ==========================================================
   13. NATUR
========================================================== */

.mk-nature {
    padding: clamp(90px, 11vw, 150px) 0;
    background: var(--mk-color-light);
}

.mk-nature-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.mk-nature-content {
    max-width: 560px;
}

.mk-nature-content > p:not(.mk-overline):not(.mk-text-intro) {
    margin-bottom: 25px;
    color: var(--mk-color-muted);
}

.mk-nature-image {
    position: relative;
    min-height: 580px;
}

.mk-nature-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    box-shadow: var(--mk-shadow-soft);
}

.mk-nature-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    padding: 22px 26px;
    color: var(--mk-color-white);
    background: rgba(23, 21, 19, 0.92);
}

.mk-nature-caption span:first-child {
    margin-bottom: 4px;
    color: var(--mk-color-gold-light);
    font-family: var(--mk-font-heading);
    font-size: 21px;
}

.mk-nature-caption span:last-child {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* ==========================================================
   14. KONTAKT CTA
========================================================== */

.mk-contact-cta {
    padding: clamp(75px, 8vw, 110px) 0;
    color: var(--mk-color-white);
    background: var(--mk-color-black-soft);
}

.mk-contact-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    align-items: center;
}

.mk-contact-cta h2 {
    max-width: 780px;
    margin-bottom: 20px;
    color: var(--mk-color-white);
    font-size: clamp(34px, 4vw, 55px);
}

.mk-contact-cta p:not(.mk-overline) {
    max-width: 710px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.mk-contact-cta-action {
    display: flex;
    justify-content: flex-end;
}


/* ==========================================================
   15. RESPONSIVE â€“ TABLET
========================================================== */

@media (max-width: 1120px) {

    :root {
        --mk-header-height: 82px;
    }

    .mk-main-navigation {
        display: none;
    }

    .mk-mobile-navigation {
        display: block;
    }

    .mk-hero {
        min-height: 760px;
    }

    .mk-recipe-card {
        height: 450px;
    }

    .mk-value-card {
        padding-right: 30px;
    }

    .mk-value-card + .mk-value-card {
        padding-left: 30px;
    }

}


/* ==========================================================
   16. RESPONSIVE â€“ KLEINES TABLET
========================================================== */

@media (max-width: 900px) {

    .mk-welcome .mk-container,
    .mk-about-grid,
    .mk-nature-grid {
        grid-template-columns: 1fr;
    }

    .mk-welcome .mk-container {
        gap: 44px;
    }

    .mk-welcome-text {
        max-width: 720px;
    }

    .mk-about-grid,
    .mk-nature-grid {
        gap: 75px;
    }

    .mk-about-image {
        width: min(100%, 650px);
        min-height: 670px;
    }

    .mk-about-image img {
        height: 670px;
    }

    .mk-about-content,
    .mk-nature-content {
        max-width: 720px;
    }

    .mk-recipe-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mk-recipe-card:last-child {
        grid-column: 1 / -1;
    }

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

    .mk-value-card,
    .mk-value-card + .mk-value-card {
        padding: 38px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .mk-value-card:last-child {
        border-bottom: 0;
    }

    .mk-contact-cta-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mk-contact-cta-action {
        justify-content: flex-start;
    }

}


/* ==========================================================
   17. RESPONSIVE â€“ MOBIL
========================================================== */

@media (max-width: 680px) {

    :root {
        --mk-container-padding: 20px;
        --mk-header-height: 74px;
    }

    .mk-site {
        font-size: 15px;
        line-height: 1.7;
    }

    .mk-site h1 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .mk-site h2 {
        font-size: clamp(35px, 10vw, 48px);
    }

    .mk-header {
        background: rgba(17, 16, 14, 0.73);
        backdrop-filter: blur(10px);
    }

    .mk-brand-name {
        font-size: 23px;
    }

    .mk-brand-subline {
        display: none;
    }

    .mk-hero {
        min-height: 740px;
        align-items: flex-end;
        padding:
            calc(var(--mk-header-height) + 70px)
            0
            92px;
    }

    .mk-hero-media img {
        object-position: 58% center;
    }

    .mk-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(15, 14, 13, 0.38) 0%,
                rgba(15, 14, 13, 0.35) 25%,
                rgba(15, 14, 13, 0.86) 100%
            );
    }

    .mk-hero-overline {
        max-width: 300px;
        font-size: 9px;
        line-height: 1.6;
    }

    .mk-hero-lead {
        font-size: 18px;
        line-height: 1.55;
    }

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

    .mk-hero-actions .mk-button {
        width: 100%;
    }

    .mk-hero-scroll {
        display: none;
    }

    .mk-welcome,
    .mk-about,
    .mk-recipes,
    .mk-values,
    .mk-nature {
        padding: 85px 0;
    }

    .mk-overline {
        font-size: 10px;
    }

    .mk-about-image {
        min-height: 520px;
    }

    .mk-about-image img {
        width: calc(100% - 18px);
        height: 520px;
    }

    .mk-about-image-frame {
        bottom: -18px;
        width: calc(100% - 18px);
        height: calc(100% - 18px);
    }

    .mk-quote {
        padding-left: 25px;
    }

    .mk-recipe-grid {
        grid-template-columns: 1fr;
    }

    .mk-recipe-card,
    .mk-recipe-card:last-child {
        grid-column: auto;
        height: 440px;
    }

    .mk-recipe-card-content {
        padding: 30px 25px;
    }

    .mk-philosophy,
    .mk-philosophy-inner {
        min-height: 650px;
    }

    .mk-philosophy-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(18, 17, 15, 0.45) 0%,
                rgba(18, 17, 15, 0.86) 100%
            );
    }

    .mk-nature-image {
        min-height: 430px;
    }

    .mk-nature-image img {
        height: 430px;
    }

    .mk-nature-caption {
        min-width: 190px;
        padding: 18px 20px;
    }

    .mk-contact-cta {
        padding: 75px 0;
    }

    .mk-contact-cta .mk-button {
        width: 100%;
    }

}


/* ==========================================================
   18. SEHR KLEINE DISPLAYS
========================================================== */

@media (max-width: 390px) {

    .mk-brand-name {
        font-size: 21px;
    }

    .mk-mobile-navigation-label {
        display: none;
    }

    .mk-hero h1 br {
        display: none;
    }

    .mk-recipe-card {
        height: 410px;
    }

}


/* ==========================================================
   19. REDUZIERTE BEWEGUNG
========================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .mk-site *,
    .mk-site *::before,
    .mk-site *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/* ==========================================================
   20. DRUCK
========================================================== */

@media print {

    .mk-header,
    .mk-hero-scroll,
    .mk-mobile-navigation,
    .mk-hero-actions,
    .mk-section-action,
    .mk-contact-cta {
        display: none !important;
    }

    .mk-hero {
        min-height: auto;
        padding: 60px 0;
        color: var(--mk-color-black);
        background: var(--mk-color-white);
    }

    .mk-hero-media,
    .mk-hero-overlay,
    .mk-philosophy-background,
    .mk-philosophy-overlay {
        display: none;
    }

    .mk-hero h1,
    .mk-philosophy h2 {
        color: var(--mk-color-black);
    }

}/* =====================================================
   FOOTER
===================================================== */

.mk-footer{

    background:#171513;

    color:#ffffff;

    padding:90px 0 40px;

}

.mk-footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;

}

.mk-footer h3{

    font-family:var(--mk-font-heading);

    font-size:38px;

    margin-bottom:18px;

}

.mk-footer h4{

    color:var(--mk-color-gold);

    margin-bottom:20px;

    text-transform:uppercase;

    letter-spacing:.15em;

    font-size:.85rem;

}

.mk-footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.mk-footer li{

    margin:12px 0;

}

.mk-footer a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.mk-footer a:hover{

    color:var(--mk-color-gold);

}

.mk-footer-bottom{

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.mk-footer-bottom nav{

    display:flex;

    gap:25px;

}

@media(max-width:900px){

.mk-footer-grid{

grid-template-columns:1fr;

gap:40px;

}

.mk-footer-bottom{

flex-direction:column;

align-items:flex-start;

}

}/* ==========================================================
   FOOTER
========================================================== */

.mk-footer {
    position: relative;
    padding: 96px 0 34px;
    color: rgba(255, 255, 255, 0.78);
    background: #171513;
    border-top: 1px solid rgba(185, 154, 95, 0.24);
}

.mk-footer .mk-container {
    position: relative;
}

.mk-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(180px, 0.7fr)
        minmax(220px, 0.85fr);
    gap: clamp(50px, 7vw, 110px);
    align-items: start;
}

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

.mk-footer-brand h3 {
    margin: 0 0 24px;
    color: #ffffff;
    font-family: var(--mk-font-heading);
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.mk-footer-text {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.85;
}

.mk-footer-location {
    margin: 0;
    color: var(--mk-color-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mk-footer h4 {
    margin: 4px 0 24px;
    color: var(--mk-color-gold-light);
    font-family: var(--mk-font-body);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.mk-footer-nav li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-footer-nav li:last-child {
    border-bottom: 0;
}

.mk-footer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    transition:
        color var(--mk-transition),
        padding-left var(--mk-transition);
}

.mk-footer-nav a::after {
    content: "→";
    color: var(--mk-color-gold);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-8px);
    transition:
        opacity var(--mk-transition),
        transform var(--mk-transition);
}

.mk-footer-nav a:hover {
    padding-left: 5px;
    color: #ffffff;
}

.mk-footer-nav a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.mk-footer-contact p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.7;
}

.mk-footer-contact > p:first-of-type a {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(185, 154, 95, 0.65);
    color: #ffffff;
    word-break: break-word;
    transition:
        color var(--mk-transition),
        border-color var(--mk-transition);
}

.mk-footer-contact > p:first-of-type a:hover {
    color: var(--mk-color-gold-light);
    border-color: var(--mk-color-gold-light);
}

.mk-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
}

.mk-footer-social a {
    position: relative;
    padding-bottom: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--mk-transition);
}

.mk-footer-social a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    margin: auto;
    content: "";
    background: var(--mk-color-gold-light);
    transition: width var(--mk-transition);
}

.mk-footer-social a:hover {
    color: var(--mk-color-gold-light);
}

.mk-footer-social a:hover::after {
    width: 100%;
}

.mk-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 72px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mk-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.6;
}

.mk-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
}

.mk-footer-legal a {
    color: rgba(255, 255, 255, 0.54);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--mk-transition);
}

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


/* ==========================================================
   FOOTER – TABLET
========================================================== */

@media (max-width: 900px) {

    .mk-footer {
        padding-top: 78px;
    }

    .mk-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 58px 50px;
    }

    .mk-footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

}


/* ==========================================================
   FOOTER – MOBIL
========================================================== */

@media (max-width: 680px) {

    .mk-footer {
        padding: 68px 0 28px;
    }

    .mk-footer-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .mk-footer-brand {
        grid-column: auto;
    }

    .mk-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 56px;
    }

    .mk-footer-legal {
        justify-content: flex-start;
    }

}/* ==========================================================
   HEADER – FEINSCHLIFF
========================================================== */

.mk-header {
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        backdrop-filter 220ms ease;
}

.mk-header-inner {
    min-height: var(--mk-header-height);
}

.mk-brand {
    gap: 4px;
}

.mk-brand-name {
    line-height: 1;
    letter-spacing: 0.015em;
}

.mk-brand-subline {
    margin-top: 6px;
    opacity: 0.9;
}

.mk-main-navigation ul {
    gap: clamp(16px, 1.7vw, 28px);
}

.mk-main-navigation a {
    padding: 14px 0;
    white-space: nowrap;
}

.mk-mobile-navigation summary {
    min-width: 112px;
    justify-content: flex-end;
}

.mk-mobile-navigation-icon {
    width: 28px;
}

.mk-mobile-navigation-icon span {
    height: 2px;
    border-radius: 2px;
}

.mk-mobile-navigation nav {
    top: calc(100% + 14px);
    border-color: rgba(185, 154, 95, 0.34);
    backdrop-filter: blur(14px);
}

.mk-mobile-navigation a {
    transition:
        color var(--mk-transition),
        padding-left var(--mk-transition);
}

.mk-mobile-navigation a:hover {
    padding-left: 6px;
    color: var(--mk-color-gold-light);
}


/* ==========================================================
   HERO – FEINSCHLIFF
========================================================== */

.mk-hero {
    min-height: clamp(680px, 82vh, 820px);
}

.mk-hero-content {
    max-width: 720px;
}

.mk-hero-overline {
    max-width: 620px;
    line-height: 1.6;
}

.mk-hero h1 {
    max-width: 780px;
    font-size: clamp(54px, 6vw, 88px);
    line-height: 1.02;
}

.mk-hero-lead {
    max-width: 610px;
}

.mk-hero-actions {
    gap: 14px;
}

.mk-hero-scroll {
    opacity: 0.78;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1120px) {

    .mk-header-inner {
        gap: 20px;
    }

    .mk-hero {
        min-height: 720px;
    }

    .mk-hero h1 {
        font-size: clamp(50px, 7vw, 78px);
    }

}


/* ==========================================================
   MOBIL
========================================================== */

@media (max-width: 680px) {

    .mk-header-inner {
        width: calc(100% - 40px);
    }

    .mk-mobile-navigation summary {
        min-width: auto;
    }

    .mk-hero {
        min-height: 700px;
        padding-bottom: 72px;
    }

    .mk-hero-content {
        max-width: 100%;
    }

    .mk-hero h1 {
        font-size: clamp(42px, 12vw, 60px);
        line-height: 1.03;
    }

    .mk-hero-overline {
        max-width: 290px;
    }

}