/* __________________________________________________________________________________ */
/* ______________________________[[[  Allgemein  ]]]_________________________________ */
/* __________________________________________________________________________________ */


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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--deep);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    /* -webkit-font-smoothing: antialiased; */
}


/* ====================[[[  Colors  ]]]==================== */


:root {
    --cream:    #f8f3ec;
    --sand:     #e8ddd0;
    --rose:     #d4a89a;
    --terracot: #b87060;
    --deep:     #3d3530;
    --mid:      #5e5049;
    --fb:       #4a5f4a;
    --moss:     #708170;
}


/* ====================[[[  Typography  ]]]==================== */


h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--deep);
    margin-bottom: 1.8rem;
}

h1 em {
    font-style: italic;
    color: var(--terracot);
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--deep);
    margin-bottom: 1.6rem;
}

h2 em {
    font-style: italic;
}

h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--deep);
    margin-bottom: 0.9rem;
}

h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--deep);
    margin-bottom: 0.5rem;
}

p, a, li {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.75;
}

strong {
    color: var(--deep);
    font-weight: 400;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracot);
    margin-bottom: 0.8rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background: var(--terracot);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1.2rem;
    white-space: nowrap;
}

.btn:hover {
    background: var(--deep);
    transform: translateY(-2px);
    cursor: pointer;
}


/* __________________________________________________________________________________ */
/* __________________________________[[[  Nav  ]]]___________________________________ */
/* __________________________________________________________________________________ */


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 4rem;
    background: rgba(248,243,236,0.88);
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-family: 'MonteCarlo', cursive;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--deep);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--terracot);
    cursor: pointer;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deep);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--cream);
    justify-content: center;
    align-items: center;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-menu ul a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--deep);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mobile-menu ul a:hover {
    color: var(--terracot);
}


/* __________________________________________________________________________________ */
/* ________________________________[[[  Hero  ]]]____________________________________ */
/* __________________________________________________________________________________ */


#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
    opacity: 0.7;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracot);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--terracot);
}

.hero-sub {
    font-size: 1rem;
    color: var(--mid);
    max-width: 420px;
    margin-bottom: 2.8rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.blob-wrap {
    width: min(420px, 90vw);
    aspect-ratio: 0.88;
    position: relative;
}

.blob-bg {
    position: absolute;
    inset: 0;
    background: url('Anja-Zeichnung-tiny.png') center / 117% no-repeat;
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
    animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
    0%,100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
    33%      { border-radius: 44% 56% 60% 40% / 50% 62% 38% 50%; }
    66%      { border-radius: 54% 46% 38% 62% / 40% 54% 46% 60%; }
}

.blob-quote {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    border-radius: 24px;
    padding: 1.2rem 1.6rem;
    max-width: 260px;
    box-shadow: 0 8px 32px rgba(61,53,48,0.10);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--deep);
    line-height: 1.5;
}

.blob-quote span {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--terracot);
}


/* __________________________________________________________________________________ */
/* _______________________________[[[  Über mich  ]]]________________________________ */
/* __________________________________________________________________________________ */


#ueber {
    padding: 0 0 7rem;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: var(--sand);
    border-radius: 40px;
    margin: 0 2rem;
    padding: 6rem 5rem;
}

.about-img-stack {
    position: relative;
    height: 420px;
}

.about-card {
    position: absolute;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(61,53,48,0.12);
}

.about-card-main {
    width: 260px;
    height: 340px;
    background: url('Anja-tiny.jpg') center / cover no-repeat;
    top: 0;
    left: 0;
}

.about-card-accent {
    width: 170px;
    height: 210px;
    background: linear-gradient(160deg, var(--moss) 0%, #6a8870 100%);
    bottom: 0;
    right: 0;
}

.about-stat {
    position: absolute;
    bottom: 70px;
    left: -20px;
    background: #fff;
    border-radius: 20px;
    padding: 1rem 1.4rem;
    box-shadow: 0 6px 24px rgba(61,53,48,0.10);
    text-align: center;
}

.about-stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--terracot);
}

.about-stat small {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--mid);
}

.about p {
    color: var(--mid);
    margin-bottom: 1.1rem;
}

.about p strong {
    color: var(--deep);
    font-weight: 400;
}


/* __________________________________________________________________________________ */
/* ______________________________[[[  Leistungen  ]]]________________________________ */
/* __________________________________________________________________________________ */


#leistungen {
    padding: 7rem 4rem;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.leistung-card {
    background: #fff;
    border-radius: 28px;
    padding: 2.4rem 2.2rem;
    box-shadow: 0 4px 24px rgba(61,53,48,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.leistung-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(61,53,48,0.12);
}

.leistung-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.leistung-card p {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.75;
}


/* __________________________________________________________________________________ */
/* _________________________________[[[  Pakete  ]]]_________________________________ */
/* __________________________________________________________________________________ */


#pakete {
    padding: 0 0 7rem;
}

.pakete-section {
    background: var(--fb);
    border-radius: 40px;
    margin: 0 2rem;
    padding: 6rem 5rem;
}

.pakete-section .section-tag {
    color: var(--rose);
}

.pakete-section h2 {
    color: #fff;
}

.pakete-section h2 em {
    color: var(--rose);
}

.pakete-section > p {
    color: rgba(255,255,255,0.65);
    /* max-width: 560px; */
    margin-bottom: 3rem;
}

.pakete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 64rem) {
    .pakete-grid {
        grid-template-columns: 1fr;
    }
}

.paket-card {
    border-radius: 28px;
    padding: 2.4rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    transition: background 0.3s, transform 0.3s;
}

.paket-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}

.paket-card.highlight {
    background: var(--moss);
    border-color: var(--moss);
}

.paket-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.6rem;
}

.paket-card.highlight .paket-label {
    color: rgba(255,255,255,0.75);
}

.paket-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.5rem;
}

.paket-preis {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 1.4rem;
    line-height: 1;
}

.paket-preis small {
    font-size: 1rem;
    opacity: 0.6;
    font-family: 'Jost', sans-serif;
}

.paket-card ul {
    list-style: none;
    flex: 1;
}

.paket-card ul li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.paket-card ul li::before {
    content: '·';
    color: var(--rose);
    font-size: 1.2rem;
}

.paket-card.highlight ul li::before {
    color: rgba(255,255,255,0.6);
}

.paket-note {
    margin-top: 2.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    text-align: center;
}


/* __________________________________________________________________________________ */
/* ________________________________[[[  Kontakt  ]]]_________________________________ */
/* __________________________________________________________________________________ */


#kontakt {
    padding: 7rem 4rem;
}

.kontakt-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.kontakt-inner .section-tag {
    text-align: center;
}

.kontakt-inner h2 {
    text-align: center;
}

.kontakt-inner > p {
    color: var(--mid);
    margin-bottom: 3rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.kontakt-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.kontakt-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(61,53,48,0.07);
}

.k-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: block;
}

.kontakt-card p {
    font-size: 1rem;
    color: var(--mid);
}

.kontakt-card a {
    color: var(--terracot);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-top: 0.3rem;
}

.kontakt-card a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.kontakt-hinweis {
    background: var(--sand);
    border-radius: 20px;
    padding: 1.4rem 2rem;
    font-size: 0.88rem;
    color: var(--mid);
    font-style: italic;
    text-align: center;
}


/* __________________________________________________________________________________ */
/* ________________________________[[[  Footer  ]]]__________________________________ */
/* __________________________________________________________________________________ */


footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.78rem;
    color: var(--mid);
    border-top: 1px solid var(--sand);
}

footer a {
    color: var(--terracot);
    text-decoration: none;
}


/* __________________________________________________________________________________ */
/* ______________________________[[[  Animationen  ]]]_______________________________ */
/* __________________________________________________________________________________ */


.js .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ====================================================== */
/* =================  Mobile-Vertikal  ================== */
/* ====================================================== */
/* ===================  max-w: 52rem  =================== */
/* ====================================================== */


@media (max-width: 52rem) {

    nav {
        padding: 1.2rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    #hero {
        grid-template-columns: 1fr;
        padding: 6rem 2rem 4rem;
    }

    .hero-image {
        order: -1;
    }

    .blob-wrap {
        width: min(280px, 75vw);
    }

    .blob-quote {
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -30px;
    }

    .about {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .about-img-stack {
        height: 340px;
        display: flex;
        justify-content: center;
    }

    .about-card-main {
        position: relative;
        top: auto;
        left: auto;
    }

    .about-card-accent {
        display: none;
    }

    .about-stat {
        display: none;
    }

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

    #leistungen {
        padding: 5rem 2rem;
    }

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

    .pakete-section {
        margin: 0 1rem;
        padding: 4rem 2rem;
    }

    .kontakt-cards {
        grid-template-columns: 1fr;
    }

    #kontakt {
        padding: 5rem 2rem;
    }

}


/* __________________________________________________________________________________ */
/* _______________________________[[[  Legal Pages  ]]]______________________________ */
/* __________________________________________________________________________________ */


.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.legal-inner > .section-tag {
    margin-bottom: 0.5rem;
}

.legal-inner > h2 {
    margin-bottom: 3rem;
}

.legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--deep);
    margin: 2.2rem 0 0.6rem;
}

.legal-content p,
.legal-content ul {
    color: var(--mid);
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-content ul {
    padding-left: 1.4rem;
}

.legal-content ul li {
    margin-bottom: 0.3rem;
}

.legal-content a {
    color: var(--terracot);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}
