/* ============================================================
   MICHAELA LIU ART — v2 Redesign
   Inspired by: Cara Westerkamp, Jessica Ihlein, Kea Elisa, Art by Bjoerk
   Edge-to-edge · No box layout · Art-first · Minimal UI
   ============================================================ */

/* === LOCAL FONTS — DSGVO-konform, kein Google-Server-Kontakt === */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-400.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-400-italic.ttf') format('truetype');
    font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-600.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-700.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-400.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-500.ttf') format('truetype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-700.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Sacramento';
    src: url('../fonts/sacramento-400.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}

:root {
    --ml-bg:          #FFFFFF;
    --ml-bg-warm:     #FAFAFA;
    --ml-primary:     #D4789A;
    --ml-accent:      #2C2C2C;
    --ml-text:        #333333;
    --ml-text-light:  #888888;
    --ml-border:      #EBEBEB;
    --ml-white:       #FFFFFF;

    --ml-font-heading:  'Cormorant Garamond', Georgia, serif;
    --ml-font-body:     'DM Sans', -apple-system, sans-serif;
    --ml-font-accent:   'Sacramento', cursive;

    --ml-ease:          cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* === GLOBAL RESET === */
body {
    background: var(--ml-bg) !important;
    margin: 0;
    padding: 0;
}

/* Kill ALL Kadence wrapper padding/margins */
.site-container,
.site-inner-wrap,
.content-wrap,
.entry-content-wrap,
.entry-content,
.wp-site-blocks,
.kadence-inner-column,
.wp-block-post-content {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Remove Kadence content container max-width */
.site .content-wrap,
.site .site-container {
    max-width: none !important;
}

/* === TYPOGRAPHY === */
.ml-hero, .ml-gallery, .ml-about, .ml-workshops, .ml-contact,
.ml-page-about, .ml-artwork-single {
    font-family: var(--ml-font-body);
    color: var(--ml-text);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3,
.ml-hero__title,
.ml-about__title,
.ml-section-title,
.ml-gallery__title {
    font-family: var(--ml-font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ml-accent);
}

.ml-about__quote,
.ml-page-about blockquote {
    font-family: var(--ml-font-accent);
    font-size: 2.2rem;
    color: var(--ml-primary);
    border: none;
    padding: 0;
    margin: 40px 0;
    line-height: 1.3;
}

/* === BUTTONS — Minimal, Kea Elisa style === */
.ml-btn {
    display: inline-block;
    font-family: var(--ml-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 14px 40px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ml-ease);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--ml-accent);
}

.ml-btn--primary {
    background: var(--ml-accent);
    color: var(--ml-white);
}
.ml-btn--primary:hover {
    background: transparent;
    color: var(--ml-accent);
}

.ml-btn--outline {
    background: transparent;
    color: var(--ml-accent);
}
.ml-btn--outline:hover {
    background: var(--ml-accent);
    color: var(--ml-white);
}

.ml-btn--full {
    width: 100%;
    text-align: center;
}

/* === HERO — Fullscreen with watercolor splashes === */
.ml-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f1f1ef;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.ml-hero__overlay {
    display: none;
}

/* Watercolor splash decorations */
.ml-hero__splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 1;
    animation: ml-splash-float 8s ease-in-out infinite;
}

.ml-hero__splash--1 {
    width: 400px;
    height: 350px;
    background: radial-gradient(ellipse, #F5A0B8 0%, rgba(245,160,184,0) 70%);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.ml-hero__splash--2 {
    width: 300px;
    height: 280px;
    background: radial-gradient(ellipse, #FFD4A8 0%, rgba(255,212,168,0) 70%);
    bottom: 10%;
    left: -30px;
    animation-delay: 3s;
}

.ml-hero__splash--3 {
    width: 250px;
    height: 200px;
    background: radial-gradient(ellipse, #FF6B8A 0%, rgba(255,107,138,0) 70%);
    top: 30%;
    right: 15%;
    opacity: 0.35;
    animation-delay: 5s;
}

@keyframes ml-splash-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.05); }
}

.ml-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px;
}

.ml-hero__title {
    font-family: var(--ml-font-heading);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--ml-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
}

.ml-hero__title-name {
    display: block;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    white-space: nowrap;
}

.ml-hero__title-art {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.4em;
    margin-top: 4px;
}

.ml-hero__subtitle {
    font-family: var(--ml-font-accent);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--ml-primary);
    margin-bottom: 0;
    line-height: 1.2;
    margin-top: 24px;
}

/* Scroll indicator */
.ml-hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.ml-hero__scroll-hint span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ml-text-light);
}

.ml-hero__scroll-line {
    width: 1px;
    height: 50px;
    background: var(--ml-accent);
    animation: ml-scroll-hint 2s ease-in-out infinite;
}

.ml-hero::after {
    display: none;
}

@keyframes ml-scroll-hint {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* === GALLERY — Edge-to-edge grid, Kea Elisa meets Cara === */
.ml-gallery {
    padding: 0;
    margin: 0;
    width: 100%;
}

.ml-gallery__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--ml-border);
    margin-bottom: 0;
}

.ml-filter-btn {
    font-family: var(--ml-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: var(--ml-text-light);
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ml-filter-btn:hover {
    color: var(--ml-accent);
}

.ml-filter-btn--active {
    color: var(--ml-accent);
    border-bottom: 1.5px solid var(--ml-accent);
}

/* Grid: edge-to-edge, no gaps (Jessica Ihlein style) */
.ml-masonry {
    columns: unset;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 100%;
}

.ml-gallery__item {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 1;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.ml-gallery__item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
}

.ml-gallery__link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.ml-gallery__image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ml-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ml-ease), filter 0.5s;
}

.ml-gallery__item:hover .ml-gallery__img {
    transform: scale(1.05);
}

/* Room image on hover */
.ml-gallery__room-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s var(--ml-ease);
}

.ml-gallery__item:hover .ml-gallery__room-img {
    opacity: 1;
}

/* Info overlay on hover — minimal, Kea Elisa style */
.ml-gallery__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ml-ease);
}

.ml-gallery__item:hover .ml-gallery__info {
    opacity: 1;
    transform: translateY(0);
}

.ml-gallery__title {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    margin: 0 0 4px;
    letter-spacing: 0.05em;
}

.ml-gallery__material,
.ml-gallery__size {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin: 2px 0;
}

/* Available badge */
.ml-gallery__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ml-white);
    color: var(--ml-accent);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 6px 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ml-gallery__empty {
    text-align: center;
    color: var(--ml-text-light);
    font-size: 1rem;
    padding: 80px 0;
    letter-spacing: 0.05em;
}

/* === ABOUT — Fullwidth split, Cara Westerkamp text-forward === */
.ml-about {
    padding: 0;
    margin: 0;
    background: var(--ml-bg);
    position: relative;
}

.ml-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 80vh;
    align-items: stretch;
}

.ml-about__image {
    overflow: hidden;
}

.ml-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ml-about__placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #F5E6EC 0%, #E8D5C4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: var(--ml-font-accent);
    font-size: 2rem;
}

.ml-about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    max-width: 560px;
}

.ml-about__title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}

.ml-about__text p {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 16px;
    color: var(--ml-text);
}

/* === WORKSHOPS — Clean cards, no background === */
.ml-workshops {
    padding: 100px 40px;
    text-align: center;
    background: var(--ml-bg);
    position: relative;
}

.ml-workshops__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ml-section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.ml-section-subtitle {
    font-size: 0.95rem;
    color: var(--ml-text-light);
    margin-bottom: 60px;
    letter-spacing: 0.02em;
}

.ml-workshops__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ml-border);
    margin-bottom: 60px;
    text-align: left;
}

.ml-workshop-card {
    background: var(--ml-white);
    padding: 48px 36px;
    transition: all 0.4s var(--ml-ease);
}

.ml-workshop-card:hover {
    background: var(--ml-bg-warm);
}

.ml-workshop-card__icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.ml-workshop-card h3 {
    font-family: var(--ml-font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--ml-accent);
    letter-spacing: 0.02em;
}

.ml-workshop-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--ml-text-light);
    margin-bottom: 20px;
}

.ml-workshop-card__meta {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ml-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === CONTACT — Edge-to-edge split === */
.ml-contact {
    padding: 0;
    background: var(--ml-bg-warm);
    margin: 0;
}

.ml-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    min-height: 600px;
}

.ml-contact__info {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ml-contact__info .ml-section-title {
    text-align: left;
    margin-bottom: 20px;
}

.ml-contact__info > p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 400px;
}

.ml-contact__details p {
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ml-contact__details strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ml-text-light);
    margin-bottom: 4px;
    font-weight: 500;
}

.ml-contact__details a {
    color: var(--ml-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.ml-contact__details a:hover {
    border-bottom-color: var(--ml-accent);
}

.ml-contact__note {
    font-size: 0.85rem;
    color: var(--ml-text-light);
    font-style: italic;
    margin-top: 20px;
}

/* === INQUIRY FORM — Clean, minimal === */
.ml-contact__form-wrap {
    display: flex;
    align-items: center;
    padding: 60px;
    background: var(--ml-white);
}

.ml-inquiry-form {
    width: 100%;
    max-width: 500px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.ml-inquiry-form__artwork-ref {
    background: var(--ml-bg-warm);
    padding: 14px 20px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    border-left: 2px solid var(--ml-primary);
}

.ml-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ml-form-group {
    margin-bottom: 20px;
}

.ml-form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--ml-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ml-form-group input[type="text"],
.ml-form-group input[type="email"],
.ml-form-group select,
.ml-form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--ml-border);
    font-family: var(--ml-font-body);
    font-size: 16px;
    color: var(--ml-text);
    background: transparent;
    transition: border-color 0.3s;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-appearance: none;
}

.ml-form-group input:focus,
.ml-form-group select:focus,
.ml-form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--ml-accent);
}

.ml-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.ml-form-group--consent {
    font-size: 0.8rem;
    color: var(--ml-text-light);
}

.ml-form-group--consent a {
    color: var(--ml-accent);
}

.ml-inquiry-form__status {
    margin-top: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.ml-inquiry-form__status--success {
    color: #2d8a4e;
    padding: 16px;
    background: #f0f8f0;
}

.ml-inquiry-form__status--error {
    color: #c0392b;
    padding: 16px;
    background: #fdf0f0;
}

/* === SINGLE ARTWORK — Clean detail view === */
.ml-artwork-single {
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    min-height: 100vh;
}

.ml-artwork-single__image {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.ml-artwork-single__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    border-radius: 0;
    box-shadow: none;
}

.ml-artwork-single__room {
    margin-top: 0;
}

.ml-artwork-single__room img {
    width: 100%;
    border-radius: 0;
}

.ml-artwork-single__room-label {
    font-size: 0.7rem;
    color: var(--ml-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 60px 8px;
    font-weight: 500;
}

.ml-artwork-single__details {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ml-artwork-single__details h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.ml-artwork-single__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--ml-border);
}

.ml-artwork-single__meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.ml-artwork-single__meta-label {
    color: var(--ml-text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ml-artwork-single__meta-value {
    font-weight: 500;
    color: var(--ml-accent);
}

.ml-artwork-single__availability {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid;
}

.ml-artwork-single__availability--yes {
    color: #2d8a4e;
    border-color: #2d8a4e;
}

.ml-artwork-single__availability--no {
    color: var(--ml-text-light);
    border-color: var(--ml-border);
}

/* === LIGHTBOX === */
.ml-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(255,255,255,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: zoom-out;
}

.ml-lightbox--active {
    opacity: 1;
    visibility: visible;
}

.ml-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.ml-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--ml-accent);
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

/* === PAGE: ABOUT === */
.ml-page-about {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px;
}

.ml-page-about h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 60px 0 20px;
    letter-spacing: 0.03em;
}

.ml-page-about h2:first-child {
    margin-top: 0;
}

.ml-page-about p {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.ml-page-about blockquote {
    padding: 0;
    margin: 40px 0;
    background: none;
    border-radius: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .ml-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .ml-gallery__item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .ml-hero {
        height: 100svh;
    }

    .ml-hero__title-name {
        font-size: 2.4rem;
    }
    .ml-hero__title-art {
        font-size: 1.4rem;
    }

    .ml-about__inner {
        grid-template-columns: 1fr;
    }

    .ml-about__image {
        height: 50vh;
    }

    .ml-about__content {
        padding: 48px 24px;
    }

    .ml-contact__inner {
        grid-template-columns: 1fr;
    }

    .ml-contact__info {
        padding: 48px 24px;
    }

    .ml-contact__form-wrap {
        padding: 48px 24px;
    }

    .ml-workshops {
        padding: 60px 24px;
    }

    .ml-workshops__grid {
        grid-template-columns: 1fr;
    }

    .ml-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .ml-artwork-single {
        grid-template-columns: 1fr;
    }

    .ml-artwork-single__image {
        position: relative;
        height: 60vh;
    }

    .ml-artwork-single__details {
        padding: 40px 24px;
    }

    .ml-about__quote,
    .ml-page-about blockquote {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .ml-masonry {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .ml-gallery__item {
        aspect-ratio: 4/3;
    }

    .ml-hero__title-name {
        font-size: 2rem;
    }
    .ml-hero__title-art {
        font-size: 1.2rem;
    }

    .ml-hero__subtitle {
        font-size: 1.3rem;
    }

    .ml-filter-btn {
        padding: 10px 16px;
        font-size: 0.7rem;
    }
}

/* === SCROLL ANIMATIONS === */
.ml-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ml-ease), transform 0.8s var(--ml-ease);
}

.ml-fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* === ANGEBOT — Two CTA cards with art background === */
.ml-angebot {
    padding: 0;
    margin: 0;
}

.ml-angebot__bg {
    padding: 80px 40px;
    background: var(--ml-bg-warm);
    position: relative;
}

.ml-angebot__inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.ml-angebot__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
    background: var(--ml-white);
    text-decoration: none;
    color: var(--ml-accent);
    transition: all 0.4s var(--ml-ease);
    border: 1px solid var(--ml-border);
}

.ml-angebot__card:hover {
    background: var(--ml-accent);
    color: var(--ml-white);
    border-color: var(--ml-accent);
}

.ml-angebot__label {
    font-family: var(--ml-font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.ml-angebot__arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.ml-angebot__card:hover .ml-angebot__arrow {
    transform: translateX(5px);
}

/* === AUFTRAGSARBEITEN === */
.ml-auftrag {
    padding: 0;
    margin: 0;
}

.ml-auftrag__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 70vh;
    align-items: stretch;
}

.ml-auftrag__image {
    overflow: hidden;
}

.ml-auftrag__placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #FDE8E0 0%, #E8D0E8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: var(--ml-font-accent);
    font-size: 1.5rem;
}

.ml-auftrag__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.ml-auftrag__tagline {
    font-family: var(--ml-font-accent);
    font-size: 1.6rem;
    color: var(--ml-primary);
    margin-bottom: 40px;
    line-height: 1.4;
}

.ml-auftrag__steps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === PREISE === */
.ml-preise {
    padding: 100px 40px;
    background: var(--ml-bg);
    position: relative;
}

.ml-preise__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ml-preise__intro {
    font-size: 0.95rem;
    color: var(--ml-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.ml-preise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ml-border);
    margin-bottom: 40px;
}

.ml-preis-card {
    background: var(--ml-white);
    padding: 36px 24px;
    text-align: center;
    transition: background 0.3s;
}

.ml-preis-card:hover {
    background: var(--ml-bg-warm);
}

.ml-preis-card__size {
    display: block;
    font-family: var(--ml-font-heading);
    font-size: 1.1rem;
    color: var(--ml-accent);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.ml-preis-card__price {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ml-primary);
    letter-spacing: 0.05em;
}

.ml-preise__note {
    font-size: 0.85rem;
    color: var(--ml-text-light);
    font-style: italic;
}

/* === GUTSCHEIN === */
.ml-gutschein {
    padding: 80px 40px;
    background: var(--ml-bg-warm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ml-gutschein::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(245,160,184,0.3) 0%, transparent 70%);
    filter: blur(30px);
}

.ml-gutschein__inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ml-gutschein__inner p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--ml-text-light);
}

/* === COLLABORATIONS === */
.ml-collabs {
    padding: 100px 40px;
    background: var(--ml-accent);
    color: var(--ml-white);
    text-align: center;
}

.ml-collabs .ml-section-title {
    color: var(--ml-white);
}

.ml-collabs__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.ml-collabs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
}

.ml-collab-card {
    padding: 40px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}

.ml-collab-card:hover {
    background: rgba(255,255,255,0.08);
}

.ml-collab-card__name {
    font-family: var(--ml-font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9);
}

/* === WORKSHOPS v2 === */
.ml-workshops__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-align: left;
    background: none;
    margin-bottom: 0;
}

.ml-workshops__info {
    padding: 0 40px 0 0;
}

.ml-workshop-item {
    margin-bottom: 32px;
}

.ml-workshop-item h3 {
    font-family: var(--ml-font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--ml-accent);
}

.ml-workshop-item p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--ml-text-light);
}

.ml-workshop-item a {
    color: var(--ml-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--ml-primary);
}

.ml-workshops__image {
    overflow: hidden;
}

.ml-workshops__placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #FFE0D0 0%, #F5A0B8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--ml-font-accent);
    font-size: 1.5rem;
}

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 768px) {
    .ml-angebot__inner {
        grid-template-columns: 1fr;
    }

    .ml-auftrag__inner {
        grid-template-columns: 1fr;
    }

    .ml-auftrag__content {
        padding: 48px 24px;
    }

    .ml-preise__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ml-collabs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ml-workshops__grid {
        grid-template-columns: 1fr;
    }

    .ml-workshops__info {
        padding: 0;
        margin-bottom: 32px;
    }

    .ml-hero__splash--1 {
        width: 250px;
        height: 200px;
    }
    .ml-hero__splash--2 {
        width: 200px;
        height: 180px;
    }
    .ml-hero__splash--3 {
        width: 150px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .ml-preise__grid {
        grid-template-columns: 1fr;
    }

    .ml-collabs__grid {
        grid-template-columns: 1fr;
    }

    .ml-angebot__card {
        padding: 28px 24px;
    }

    .ml-auftrag__steps {
        flex-direction: column;
    }
}

/* === Hide Kadence header/footer defaults if needed === */
.entry-header {
    display: none !important;
}

/* Hide Kadence default footer */
.site-footer {
    display: none !important;
}

/* === CUSTOM FOOTER — Minimal, elegant === */
.ml-footer {
    background: #f1f1ef;
    border-top: 1px solid rgba(44, 44, 44, 0.08);
    padding: 24px 0;
    font-family: var(--ml-font-body);
}

.ml-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ml-footer__copy {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.03em;
}

.ml-footer__links {
    display: flex;
    gap: 24px;
}

.ml-footer__links a {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.ml-footer__links a:hover {
    color: #2C2C2C;
}

.ml-footer__social {
    color: #888;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.ml-footer__social:hover {
    color: #2C2C2C;
}

@media (max-width: 600px) {
    .ml-footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 20px;
    }
}

/* === HEADER — Transparent overlay on hero === */
#masthead {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent !important;
}
#masthead .site-header-row-container-inner {
    background: transparent !important;
}

/* Hide site title text — hero has it */
.site-branding,
.site-title {
    display: none !important;
}

/* Nav links — Canva style: uppercase, letter-spacing, minimal */
.main-navigation .primary-menu-container > ul > li.menu-item > a {
    font-family: 'DM Sans', -apple-system, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #2C2C2C !important;
    text-decoration: none !important;
    transition: color 0.3s ease, text-decoration 0.3s ease !important;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a:hover {
    color: #2C2C2C !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

.main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a,
.main-navigation .primary-menu-container > ul > li.menu-item.current_menu-item > a {
    color: #2C2C2C !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

/* Remove Kadence underline animation */
.header-navigation[class*="header-navigation-style-underline"] .header-menu-container.primary-menu-container > ul > li > a:after {
    display: none !important;
}

/* Header min-height smaller for minimal look */
.site-main-header-inner-wrap {
    min-height: 60px !important;
}

/* Hero section — full viewport, starts behind transparent header */
.ml-hero {
    background: #f1f1ef !important;
}

/* Mobile header */
.mobile-toggle-open-container .menu-toggle-open,
.mobile-toggle-open-container .menu-toggle-open:focus {
    color: #2C2C2C !important;
}

#mobile-drawer .drawer-inner,
#mobile-drawer .drawer-content {
    background: #f1f1ef !important;
}

.mobile-navigation ul li > a,
.mobile-navigation ul li.menu-item-has-children > .drawer-nav-drop-wrap {
    color: #2C2C2C !important;
    font-family: 'DM Sans', -apple-system, sans-serif !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

.mobile-navigation ul li.menu-item-has-children .drawer-nav-drop-wrap,
.mobile-navigation ul li:not(.menu-item-has-children) a {
    border-bottom: 1px solid rgba(44, 44, 44, 0.1) !important;
}

#mobile-drawer .drawer-header .drawer-toggle {
    color: #2C2C2C !important;
}

/* Content area — remove top margin so hero is flush with header */
.home .content-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Non-home pages: header needs background + content needs padding-top */
body:not(.home) #masthead {
    position: relative !important;
    background: #f1f1ef !important;
}
body:not(.home) #masthead .site-header-row-container-inner {
    background: #f1f1ef !important;
}

/* Entry content wrap — no padding for edge-to-edge */
.home .entry-content-wrap {
    padding: 0 !important;
}

/* Back to Top */
.ml-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ml-accent, #2C2C2C);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(12px);
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ml-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ml-to-top:hover {
    background: var(--ml-primary, #D4789A);
    transform: translateY(-2px);
}
