:root {
    --bg: #f7f2e8;
    --bg-soft: #efe3d3;
    --bg-card: #fffaf4;
    --bg-footer: #e8d8c5;
    --text: #2f1b12;
    --text-soft: #6d4d3a;
    --primary: #c96a2b;
    --primary-hover: #aa5621;
    --border: #e2cfba;
    --shadow: 0 12px 35px rgba(70, 35, 15, 0.10);
    --radius: 22px;
    --container: 1200px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 242, 232, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 78px;
}

.brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

.navbar a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    transition: 0.25s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary);
}

/* HERO STARTSEITE */
.hero {
    padding: 50px 0 70px;
    background: linear-gradient(to bottom, #f7f2e8 0%, #efe3d3 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
}

.hero-text {
    text-align: left;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-text p {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* PAGE HERO */
.page-hero {
    padding: 90px 0 70px;
    background: linear-gradient(to bottom, #f7f2e8 0%, #efe3d3 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.page-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: var(--text-soft);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #f3e8da;
    transform: translateY(-2px);
}

/* SECTIONS */
.section {
    padding: 90px 0;
}

.section-light {
    background: var(--bg);
}

.section-accent {
    background: var(--bg-soft);
}

.section-contact {
    background: #f4ede3;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.2;
}

.text-box {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
    text-align: center;
}

.text-box p + p {
    margin-top: 18px;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-soft);
}

.card-wide {
    grid-column: span 2;
}

/* CTA */
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

/* CONTACT */
.contact-box {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
    text-align: center;
}

.contact-box p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-box a {
    color: var(--primary);
    font-weight: 600;
}

.contact-box a:hover {
    color: var(--primary-hover);
}

/* ABOUT PAGE */
.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    align-items: center;
}

.about-image-card,
.about-text-card,
.certificate-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image-card {
    padding: 18px;
    text-align: center;
}

.about-image-card img {
    width: 60%;
    min-width: 220px;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    object-fit: cover;
}

.about-text-card {
    padding: 36px;
}

.about-text-card h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.about-text-card p {
    color: var(--text-soft);
    margin-bottom: 16px;
}

.about-values-grid {
    grid-template-columns: repeat(3, 1fr);
}

.certificate-box {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: center;
    padding: 30px;
}

.certificate-text h2 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.certificate-text p {
    color: var(--text-soft);
}

.certificate-image {
    text-align: center;
}

.certificate-image img {
    width: 60%;
    min-width: 240px;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid var(--border);
}

/* PREISE */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: 0.25s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-6px);
}

.price-card-highlight {
    background: linear-gradient(180deg, #fffaf4 0%, #f8ecdd 100%);
    border: 1px solid #d9b48f;
}

.price-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-card h3 {
    font-size: 1.3rem;
    line-height: 1.2;
}

.price-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 14px;
    border-radius: 999px;
    background: #f3e8da;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.price-card-text {
    color: var(--text-soft);
    flex-grow: 1;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    line-height: 1.2;
}

.info-card p {
    color: var(--text-soft);
}

.pricing-list {
    list-style: none;
    margin-top: 10px;
}

.pricing-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
}

.pricing-list li:last-child {
    border-bottom: none;
}

/* IMPRESSUM / DATENSCHUTZ */
body > .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 242, 232, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 78px;
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
    padding: 0;
}

body > .navbar .logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
}

body > .navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
}

body > .navbar a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    transition: 0.25s ease;
}

body > .navbar a:hover,
body > .navbar a.active {
    color: var(--primary);
}

body > section {
    width: min(100% - 40px, 900px);
    margin: 70px auto 90px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

body > section h1,
body > section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text);
}

body > section h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text);
}

body > section p {
    color: var(--text-soft);
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.8;
}

body > section ul,
body > section ol {
    margin: 10px 0 18px 22px;
    color: var(--text-soft);
    line-height: 1.8;
}

body > section li {
    margin-bottom: 8px;
}

body > section strong {
    color: var(--text);
}

body > section a {
    color: var(--primary);
    text-decoration: none;
    word-break: break-word;
}

body > section a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

body > footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
    color: var(--text-soft);
    margin-top: 0;
}

/* FOOTER */
.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border);
    padding: 28px 0;
    text-align: center;
    color: var(--text-soft);
}

/* FLOATING BUTTONS */
.floating-btn {
    position: fixed;
    right: 20px;
    z-index: 999;
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

.floating-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn {
    bottom: 20px;
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #1fb95a;
}

.instagram-btn {
    bottom: 72px;
    background: #e1306c;
}

.instagram-btn:hover {
    background: #c62860;
}

/* RESPONSIVE 1024 */
@media (max-width: 1024px) {
    .about-grid,
    .certificate-box,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-image-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .certificate-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-wide {
        grid-column: span 2;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-info-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE 768 */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }

    .brand {
        white-space: normal;
        text-align: center;
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .section {
        padding: 70px 0;
    }

    .text-box,
    .contact-box,
    .cta-box,
    .card,
    .about-text-card,
    .certificate-box,
    .info-card,
    .price-card {
        padding: 24px;
    }

    .card-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .card-wide {
        grid-column: span 1;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .floating-btn {
        right: 12px;
        font-size: 0.82rem;
        padding: 10px 14px;
    }

    .instagram-btn {
        bottom: 64px;
    }

    .whatsapp-btn {
        bottom: 14px;
    }

    .about-image-card img {
        width: 70%;
        min-width: 180px;
    }

    .certificate-image img {
        width: 70%;
        min-width: 200px;
    }

    body > .navbar {
        flex-direction: column;
        justify-content: center;
        width: min(100% - 28px, var(--container));
        padding: 14px 0;
    }

    body > .navbar .logo {
        white-space: normal;
        text-align: center;
    }

    body > .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    body > section {
        width: min(100% - 28px, 900px);
        margin: 40px auto 60px;
        padding: 24px 18px;
        border-radius: 18px;
    }

    body > section h1,
    body > section h2 {
        font-size: 1.8rem;
    }

    body > section h3 {
        font-size: 1.08rem;
    }

    body > section p,
    body > section li {
        font-size: 0.97rem;
    }
}