/* ================================================= */
/* FARBEN */
/* ================================================= */

:root {
    --cream: #f5f0e8;
    --cream-dark: #ece3d6;

    --gold: #b89455;
    --gold-light: #cbb07d;

    --text: #171513;
    --muted: #7e756b;

    --white: #fbf9f5;

    --line: rgba(184, 148, 85, .35);
}


/* ================================================= */
/* GRUNDEINSTELLUNGEN */
/* ================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 90%);
    margin: auto;
}


/* ================================================= */
/* NAVIGATION */
/* ================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;

    background: rgba(245, 240, 232, .93);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(184, 148, 85, .16);
}

.nav-inner {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 24px;
    letter-spacing: .16em;
}

.brand span {
    color: var(--gold);
}

.links {
    display: flex;
    gap: 30px;

    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.links a:hover {
    color: var(--gold);
}


/* ================================================= */
/* HERO / STARTSEITE */
/* ================================================= */

.hero {
    min-height: 100vh;

    display: grid;
    place-items: center;

    padding: 120px 0 70px;

    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    top: 110px;
    left: 50%;

    transform: translateX(-50%);

    opacity: .35;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    width: min(300px, 58vw);
    height: auto;
    margin-bottom: 28px;
}

.eyebrow {
    color: var(--gold);

    font-size: 13px;
    letter-spacing: .32em;
    text-transform: uppercase;

    margin-bottom: 14px;
}

h1 {
    font-size: clamp(48px, 8vw, 94px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: .02em;

    margin: 0;
}

.hero-sub {
    max-width: 650px;

    margin: 28px auto 38px;

    color: var(--muted);

    font-size: clamp(19px, 2.2vw, 26px);
    line-height: 1.55;
}


/* ================================================= */
/* BUTTONS */
/* ================================================= */

.button {
    display: inline-block;

    padding: 14px 28px;

    border: 1px solid var(--gold);

    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;

    transition: .25s ease;
}

.button:hover {
    background: var(--gold);
    color: white;
}


/* ================================================= */
/* STANDARD-SEKTIONEN */
/* ================================================= */

section {
    padding: 105px 0;
}

.section-label {
    color: var(--gold);

    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;

    margin-bottom: 12px;
}

h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.05;

    margin: 0 0 25px;
}

.intro {
    font-size: 19px;
    color: var(--muted);

    max-width: 680px;
}

.divider {
    width: 130px;
    height: 1px;

    background: var(--line);

    margin: 28px 0;
}


/* ================================================= */
/* ÜBER MICH */
/* ================================================= */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 90px;
    align-items: center;
}

/* ================================================= */
/* PORTRAIT */
/* ================================================= */

.two-col {
    display: grid;
    grid-template-columns: 65% 35%;

    gap: 50px;
    align-items: center;
}

.portrait-box {
    width: 320px;
    height: 420px;

    justify-self: end;

    overflow: hidden;

    background: var(--cream-dark);

    border: 4px solid var(--gold);

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
``

/* ================================================= */
/* KARTEN */
/* ================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
    margin-top: 48px;
}

.card {
    background: rgba(251, 249, 245, .55);

    padding: 34px 28px;

    border-top: 1px solid var(--gold);

    min-height: 230px;
}

.card h3 {
    font-size: 24px;
    font-weight: 400;

    margin: 0 0 12px;
}

.card p {
    color: var(--muted);
    margin: 0;
}


/* ================================================= */
/* HELLER HINTERGRUND */
/* ================================================= */

.soft {
    background: var(--cream-dark);
}


/* ================================================= */
/* ABLAUF */
/* ================================================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
    margin-top: 50px;
}

.step-number {
    color: var(--gold);

    font-size: 16px;
    letter-spacing: .15em;
}

.step h3 {
    font-size: 24px;
    font-weight: 400;

    margin: 12px 0 8px;
}

.step p {
    color: var(--muted);
    margin: 0;
}


/* ================================================= */
/* ZITAT */
/* ================================================= */

.quote {
    max-width: 820px;

    margin: auto;
    text-align: center;

    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.25;
}


/* ================================================= */
/* PREISE */
/* ================================================= */

.pricing {
    display: grid;
    grid-template-columns: 1.3fr .7fr;

    gap: 60px;
    align-items: center;
}

.price-box {
    padding: 45px;

    border: 1px solid var(--line);
    background: rgba(251, 249, 245, .55);
}

.price {
    font-size: 48px;
}

.price small {
    font-size: 16px;
    color: var(--muted);
}


/* ================================================= */
/* HINWEIS BOX */
/* ================================================= */

.notice {
    margin-top: 28px;
    padding: 20px 24px;

    border-left: 2px solid var(--gold);

    background: rgba(251, 249, 245, .55);

    color: var(--muted);
}


/* ================================================= */
/* KONTAKT */
/* ================================================= */

.contact {
    background: #1c1916;
    color: #f5f0e8;
}

.contact .section-label {
    color: var(--gold-light);
}

.contact .intro {
    color: #c9c0b5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;
}

.contact-item {
    padding: 20px 0;

    border-bottom: 1px solid rgba(203, 176, 125, .25);
}

.contact-item small {
    display: block;

    color: var(--gold-light);

    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}


/* ================================================= */
/* IMPRESSUM / DATENSCHUTZ */
/* ================================================= */

.legal {
    padding-top: 150px;
    min-height: 75vh;
}

.legal h1 {
    font-size: clamp(44px, 7vw, 72px);
    margin-bottom: 35px;
}

.legal h2 {
    font-size: 32px;
    margin-top: 48px;
}

.legal p,
.legal li {
    max-width: 850px;
    color: #5f574f;
}

.legal .placeholder {
    color: #9b6f2d;
    background: #f0e5d3;

    padding: 2px 6px;
    border-radius: 3px;
}

.legal-back {
    display: inline-block;

    margin-top: 30px;

    color: var(--gold);

    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ================================================= */
/* FOOTER */
/* ================================================= */

footer {
    background: #1c1916;
    color: #a9a095;

    border-top: 1px solid rgba(203, 176, 125, .2);

    padding: 25px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}

footer a:hover {
    color: white;
}


/* ================================================= */
/* MOBILE */
/* ================================================= */

@media (max-width: 800px) {

    .links {
        display: none;
    }

    .two-col,
    .pricing,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cards,
    .steps {
        grid-template-columns: 1fr;
    }

    .portrait-box {
        width: 100%;
max-width: 380px;
height: 460px;
    }

    section {
        padding: 75px 0;
    }

    .hero:before {
        width: 420px;
        height: 420px;
    }

    footer .container {
        flex-direction: column;
    }
}