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

:root {
    --cream: #F7F4EF;
    --warm-white: #FDFBF8;
    --sage: #8A9E8C;
    --sage-light: #C4D1C5;
    --sage-dark: #5C7260;
    --earth: #9E8A72;
    --charcoal: #2C2C2A;
    --mid: #5A5A56;
    --light: #9A9A94;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.7;
}

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(253,251,248,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(138,158,140,0.15);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    text-decoration: none;
}

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

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

.nav-links a:hover { color: var(--sage-dark); }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(138,158,140,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 700px;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
}

.hero-text {
    font-size: 1.05rem;
    color: var(--mid);
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-text p + p { margin-top: 1rem; }

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--sage);
    margin: 2.5rem 0;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* SECTION BASE */
section {
    padding: 7rem 4rem;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 3rem;
}

/* LEISTUNGEN */
.leistungen {
    background: var(--cream);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    margin-top: 1rem;
    border: 1px solid rgba(138,158,140,0.2);
}

.leistung-item {
    padding: 2.5rem;
    border-right: 1px solid rgba(138,158,140,0.2);
    border-bottom: 1px solid rgba(138,158,140,0.2);
    transition: background 0.3s;
    position: relative;
}

.leistung-item:hover {
    background: rgba(138,158,140,0.06);
}

.leistung-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sage-light);
    margin-bottom: 1rem;
    line-height: 1;
}

.leistung-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.leistung-item p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.7;
}

.leistung-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(138,158,140,0.2);
    font-size: 0.82rem;
    color: var(--light);
    line-height: 1.8;
}

/* ÜBER MICH */
.ueber {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.ueber-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.ueber-left h2 em {
    font-style: italic;
    color: var(--sage-dark);
}

.ueber-right p {
    font-size: 0.97rem;
    color: var(--mid);
    margin-bottom: 1.3rem;
}

.ueber-right .signatur {
    margin-top: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
}

/* KONTAKT */
.kontakt {
    background: var(--charcoal);
    color: var(--cream);
}

.kontakt .section-label {
    color: var(--sage-light);
}

.kontakt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.kontakt h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.kontakt h2 em {
    font-style: italic;
    color: var(--sage-light);
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontakt-item label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 0.3rem;
}

.kontakt-item p, .kontakt-item a {
    font-size: 0.97rem;
    color: rgba(247,244,239,0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.kontakt-item a:hover { color: var(--sage-light); }

/* FOOTER */
footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--light);
}

footer a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover { color: var(--sage-light); }

.footer-links { display: flex; gap: 2rem; }

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { display: block; }
    section { padding: 5rem 2rem; }
    .hero { padding: 7rem 2rem 4rem; }
    .ueber, .kontakt-inner { grid-template-columns: 1fr; gap: 3rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
