/* ============================================================
   Silvia redet – Version 4
   Warm-elegantes Design, mobile-first, ohne Frameworks
   ============================================================ */

:root {
    --paper: #FBF6EF;
    --paper-deep: #F3EADF;
    --ink: #2C2119;
    --ink-soft: #5C4F44;
    --accent: #BC5220;
    --accent-dark: #9A3F14;
    --accent-soft: #F7E3D5;
    --gold: #AD8433;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(44, 33, 25, .10);
    --shadow-soft: 0 4px 14px rgba(44, 33, 25, .07);
    --radius: 18px;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Jost", "Segoe UI", system-ui, sans-serif;
    --font-script: "Great Vibes", cursive;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.075rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-dark); }

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

/* ---------- Typografie ---------- */

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--accent);
    display: block;
    margin-bottom: .3rem;
    font-weight: 400;
}

.lead { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    padding: .85rem 1.9rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    text-align: center;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(188, 82, 32, .35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn-whatsapp {
    background: #1FA855;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}
.btn-whatsapp:hover { background: #178643; transform: translateY(-2px); }

.btn svg { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- Header / Navigation ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 246, 239, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 33, 25, .08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
}

.brand {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--ink);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.brand em { font-style: normal; color: var(--accent); }

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--ink);
    border-radius: 10px;
    padding: .35rem .7rem;
    font: 500 1rem var(--font-body);
    color: var(--ink);
    cursor: pointer;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: .2rem;
    list-style: none;
}

.nav-list > li > a,
.nav-list .sub-toggle {
    display: block;
    padding: .55rem .8rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    border-radius: 10px;
    white-space: nowrap;
}
.nav-list > li > a:hover, .nav-list .sub-toggle:hover { background: var(--accent-soft); }
.nav-list > li > a[aria-current="page"] { color: var(--accent-dark); }

.has-sub { position: relative; }
.sub-toggle::after { content: " ▾"; font-size: .75em; }

.sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    list-style: none;
    padding: .5rem;
    z-index: 50;
}
.has-sub.open .sub, .has-sub:focus-within .sub { display: block; }
@media (hover: hover) { .has-sub:hover .sub { display: block; } }

.sub a {
    display: block;
    padding: .55rem .8rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
}
.sub a:hover { background: var(--accent-soft); }

.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .55rem 1.2rem; font-size: .95rem; }

.lang-switch a {
    border: 1.5px solid rgba(44, 33, 25, .35);
    border-radius: 999px;
    padding: .3rem .75rem !important;
    font-size: .88rem !important;
    letter-spacing: .04em;
}
.lang-switch a:hover { border-color: var(--accent); }

@media (max-width: 920px) {
    .nav-toggle { display: block; }
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 4%;
        gap: .15rem;
        border-bottom: 1px solid rgba(44,33,25,.1);
        box-shadow: var(--shadow);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .nav-list.open { display: flex; }
    .sub { position: static; box-shadow: none; background: var(--paper-deep); margin: .2rem 0 .4rem; display: none; }
    .has-sub.open .sub { display: block; }
    .nav-cta { margin: .5rem 0 0; }
    .nav-cta .btn { display: block; }
}

/* ---------- Hero ---------- */

.hero {
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.hero-text .lead { margin: 1.2rem 0 1.8rem; max-width: 34em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }

.hero-photo { position: relative; }

.hero-photo img {
    border-radius: 200px 200px var(--radius) var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 4 / 4.6;
}

.hero-badge {
    position: absolute;
    bottom: 1.2rem;
    left: -1.2rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: .7rem 1.1rem;
    font-size: .95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.hero-badge svg { width: 1.6rem; height: 1.6rem; color: var(--gold); flex: none; }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.6rem;
    color: var(--ink-soft);
    font-size: .98rem;
}
.trust-row span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-row svg { width: 1.1rem; height: 1.1rem; color: var(--accent); flex: none; }

@media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-photo { order: -1; max-width: 420px; margin-inline: auto; }
    .hero-badge { left: 0; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-deep { background: var(--paper-deep); }
.section-head { max-width: 46em; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .8rem; color: var(--ink-soft); }

/* ---------- Leistungs-Karten ---------- */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--accent-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media img.top { object-position: top; }
.card-media.icon { display: grid; place-items: center; }
.card-media.icon svg { width: 84px; height: 84px; }

.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body h3 { color: var(--ink); }
.card-body p { color: var(--ink-soft); font-size: 1rem; flex: 1; }

.card-link {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 1rem;
}
.card-link::after { content: " →"; }

/* ---------- Bild/Text-Splits ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.split.reverse { grid-template-columns: 1.2fr 1fr; }

.split-photo img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}
.split-photo.arch img { border-radius: 200px 200px var(--radius) var(--radius); }

.split-text h2 { margin-bottom: 1rem; }
.split-text p + p { margin-top: .9rem; }
.split-text .btn { margin-top: 1.6rem; }

@media (max-width: 820px) {
    .split, .split.reverse { grid-template-columns: 1fr; }
    .split-photo { max-width: 420px; margin-inline: auto; }
}

/* ---------- USP-Reihe ---------- */

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
}

.usp {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-soft);
}
.usp svg { width: 2.4rem; height: 2.4rem; color: var(--accent); margin-bottom: .8rem; }
.usp h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.usp p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Referenzen ---------- */

.quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}

.quote {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem 1.7rem 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
}
.quote::before {
    content: "„";
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    position: absolute;
    top: .6rem;
    left: 1.2rem;
    opacity: .35;
}
.quote p { font-size: 1rem; color: var(--ink-soft); flex: 1; }
.quote footer { margin-top: 1rem; font-weight: 600; color: var(--ink); font-size: .98rem; }
.quote footer small { display: block; font-weight: 400; color: var(--ink-soft); }

.stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .6rem; font-size: .95rem; }

/* ---------- Preise ---------- */

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card.featured { outline: 2.5px solid var(--accent); }

.price-tag {
    position: absolute;
    top: -0.9rem;
    right: 1.4rem;
    background: var(--accent);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: .25rem .9rem;
    border-radius: 999px;
}

.price-card h3 { margin-bottom: .2rem; }
.price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin: .3rem 0 .8rem;
}
.price small { font-size: 1rem; color: var(--ink-soft); font-weight: 400; font-family: var(--font-body); }

.price-card ul { list-style: none; margin: 0 0 1.4rem; flex: 1; }
.price-card li {
    padding: .38rem 0 .38rem 1.7rem;
    position: relative;
    font-size: .99rem;
    color: var(--ink-soft);
}
.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin-inline: auto; }

.faq details {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    margin-bottom: .8rem;
    overflow: hidden;
}
.faq summary {
    cursor: pointer;
    padding: 1.05rem 1.3rem;
    font-weight: 600;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); flex: none; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* ---------- Ablauf / Schritte ---------- */

.steps { counter-reset: step; display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-soft);
    counter-increment: step;
}
.step::before {
    content: counter(step);
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: .9rem;
    font-family: var(--font-display);
}
.step h3 { font-size: 1.22rem; margin-bottom: .35rem; }
.step p { font-size: .99rem; color: var(--ink-soft); }

/* ---------- CTA-Band ---------- */

.cta-band {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(2.2rem, 5vw, 3.5rem);
    text-align: center;
    box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { max-width: 40em; margin: 0 auto 1.6rem; opacity: .93; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-secondary { border-color: #fff; color: #fff; }
.cta-band .btn-secondary:hover { background: #fff; color: var(--accent-dark); }
.cta-band .btn-primary { background: #fff; color: var(--accent-dark); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--paper); }
.cta-band a.phone-link { color: #fff; font-weight: 600; }

/* ---------- Zitat-Band ---------- */

.poem {
    text-align: center;
    max-width: 40em;
    margin-inline: auto;
}
.poem blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
}
.poem cite { display: block; margin-top: .8rem; font-style: normal; color: var(--ink-soft); font-family: var(--font-body); font-size: 1rem; }

/* ---------- Kontakt ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 1.5rem; height: 1.5rem; color: var(--accent); flex: none; margin-top: .2rem; }
.contact-list a { color: var(--ink); font-weight: 500; }
.contact-list small { color: var(--ink-soft); display: block; }

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

label { font-weight: 500; font-size: .95rem; display: block; margin-bottom: .3rem; }

input, select, textarea {
    width: 100%;
    padding: .75rem .9rem;
    border: 1.5px solid #D9CFC2;
    border-radius: 10px;
    font: 400 1rem var(--font-body);
    background: var(--paper);
    color: var(--ink);
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
    border-color: var(--accent);
}

.form-note { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */

.site-footer {
    background: var(--ink);
    color: #D8CFC5;
    padding: 3.5rem 0 2rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand { color: #fff; font-size: 2.2rem; }
.site-footer h3 { color: #fff; font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; margin-bottom: .8rem; }
.site-footer ul { list-style: none; display: grid; gap: .45rem; }
.site-footer a { color: #D8CFC5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-about p { margin-top: .8rem; font-size: .98rem; max-width: 30em; }

.social-row { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social-row a {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    transition: background .15s;
}
.social-row a:hover { background: var(--accent); }
.social-row svg { width: 1.3rem; height: 1.3rem; color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: .92rem;
}
.footer-bottom a { margin-left: 1.2rem; }

/* ---------- Floating WhatsApp ---------- */

.float-wa {
    position: fixed;
    bottom: 1.3rem;
    right: 1.3rem;
    z-index: 90;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: #1FA855;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(31, 168, 85, .45);
    transition: transform .15s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 2rem; height: 2rem; color: #fff; }

/* ---------- Breadcrumb ---------- */

.breadcrumb {
    font-size: .92rem;
    color: var(--ink-soft);
    padding-top: 1.2rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; }
.breadcrumb li + li::before { content: "›"; margin-right: .4rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }

/* ---------- Seiten-Hero (Unterseiten) ---------- */

.page-hero { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .lead { margin-top: 1rem; max-width: 42em; }

/* ---------- Diverses ---------- */

.checklist { list-style: none; display: grid; gap: .55rem; margin: 1.2rem 0; }
.checklist li { padding-left: 1.9rem; position: relative; color: var(--ink-soft); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.notice {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.3rem;
    font-size: 1rem;
    color: var(--ink-soft);
    margin: 1.5rem 0;
}

.video-wrap {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 760px;
    margin-inline: auto;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

.legal-text { max-width: 760px; }
.legal-text h2 { font-size: 1.5rem; margin: 2rem 0 .6rem; }
.legal-text p + p { margin-top: .8rem; }

::selection { background: var(--accent); color: #fff; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}
