:root {
    --bg: #faf7f2;
    --bg-muted: #f1ebe1;
    --ink: #2d2a26;
    --ink-soft: #5a544d;
    --accent: #a87c5f;
    --accent-soft: #d9c4b0;
    --lavender: #b8a4c9;
    --border: #e7dfd2;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { color: var(--ink-soft); }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ink); }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.centered { text-align: center; }
.eyebrow.centered { display: block; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--ink);
    letter-spacing: 0.05em;
}

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

.nav-links a {
    color: var(--ink-soft);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7f2 0%, #f1ebe1 100%);
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lead {
    font-size: 1.15rem;
    margin: 1.5rem 0 2.5rem;
    color: var(--ink-soft);
}

.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 164, 201, 0.35) 0%, rgba(217, 196, 176, 0.2) 40%, transparent 70%);
    filter: blur(30px);
    animation: breathe 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--ink);
    color: var(--bg);
    border: none;
    border-radius: 2rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Sections with distinct hues + long, soft crossfades */
.section {
    padding: 7rem 0;
    position: relative;
}

.section > .container { position: relative; z-index: 2; }

/* Each section is itself a vertical gradient whose bottom colour
   matches the top colour of the next — one continuous flow. */
#ueber-mich { background: linear-gradient(to bottom, #faf7f2 0%, #f1e8dc 100%); }
#angebot    { background: linear-gradient(to bottom, #f1e8dc 0%, #f6eee3 100%); }
#ablauf     { background: linear-gradient(to bottom, #f6eee3 0%, #e8ddcd 100%); }
#stimmen    { background: linear-gradient(to bottom, #e8ddcd 0%, #f7f1e7 100%); }
#kontakt    { background: #f7f1e7; }

/* Seamless color flow between sections — no hard edges */
.section { position: relative; }
.site-footer { position: relative; background: #f7f1e7; }

/* Card / blockquote backgrounds tuned per section */
#angebot .card      { background: #faf7f2; }
#stimmen blockquote { background: #f7f1e7; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.col-text p { margin-bottom: 1rem; }

.values {
    list-style: none;
    margin-top: 2rem;
}

.values li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft);
    position: relative;
    padding-left: 1.5rem;
}

.values li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Portrait */
.portrait-frame {
    aspect-ratio: 1/1;
    border-radius: 63% 37% 52% 48% / 55% 48% 52% 45%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-soft), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(45, 42, 38, 0.12);
    animation: morph 14s ease-in-out infinite;
    max-width: 420px;
    margin: 0 auto;
}

@keyframes morph {
    0%, 100% { border-radius: 63% 37% 52% 48% / 55% 48% 52% 45%; }
    50% { border-radius: 45% 55% 40% 60% / 50% 60% 40% 50%; }
}

.lotus {
    width: 70%;
    height: 70%;
    animation: spin 60s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.08);
}

.card-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.card-meta {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Steps */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    counter-reset: step;
}

.steps li {
    text-align: center;
}

.step-num {
    display: inline-block;
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

blockquote {
    background: var(--bg);
    padding: 2rem;
    border-left: 3px solid var(--accent);
    border-radius: 4px;
}

blockquote p {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--ink);
}

blockquote cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
}

/* Contact */
.contact-info {
    list-style: none;
    margin-top: 2rem;
}

.contact-info li {
    padding: 0.7rem 0;
    color: var(--ink-soft);
}

.contact-info strong {
    color: var(--ink);
    font-weight: 500;
    margin-right: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink);
    background: var(--bg);
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form textarea { resize: vertical; }

.form-note {
    color: var(--accent);
    font-size: 0.9rem;
    text-align: center;
}

.form-note.error {
    color: #b04a4a;
}

/* Honeypot: für Menschen unsichtbar, für Bots ein Input-Feld */
.hp {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Footer */
.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

/* Mini week calendar (inside contact section) */
.mini-calendar {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.mini-cal-title {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 0.9rem;
    letter-spacing: 0.02em;
}

.mini-cal-title strong {
    color: var(--ink);
    font-weight: 500;
}

.week-compact {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.week-compact-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 0.6rem;
}

.week-compact-row > span {
    font-size: 0.8rem;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.week-compact-row .bar {
    height: 14px;
    border-radius: 7px;
    background: repeating-linear-gradient(
        90deg,
        rgba(45, 42, 38, 0.05) 0,
        rgba(45, 42, 38, 0.05) 1px,
        transparent 1px,
        transparent 7px
    );
    position: relative;
}

.week-compact-row.open > span {
    color: var(--ink);
    font-weight: 500;
}

.week-compact-row.open .bar {
    background: linear-gradient(135deg, var(--accent-soft), var(--lavender));
    box-shadow: 0 2px 8px rgba(168, 124, 95, 0.2);
}

.slot-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: #fff;
    letter-spacing: 0.06em;
    font-family: var(--sans);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-orb { animation: none; }
    .portrait-frame { animation: none; }
    .lotus { animation: none; }
}

.site-header {
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(45, 42, 38, 0.06);
    background: rgba(250, 247, 242, 0.96);
}

/* Legal pages */
.legal {
    padding: 4rem 0 6rem;
}

.legal h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.legal h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--ink);
}

.legal h3 {
    font-size: 1.1rem;
    margin-top: 1.8rem;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.legal p, .legal ul {
    margin-bottom: 1rem;
    max-width: 70ch;
}

.legal ul {
    padding-left: 1.5rem;
}

.legal ul li {
    margin-bottom: 0.3rem;
    color: var(--ink-soft);
}

.muster-hinweis {
    background: #fff5e6;
    border-left: 3px solid #d4a574;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    color: var(--ink);
    font-size: 0.95rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 1.5rem;
        background: var(--bg);
        padding: 1rem 1.5rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        gap: 1rem;
    }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .section { padding: 4rem 0; }
    .hero { min-height: 70vh; }
}
