/* Shared tokens + reset for the Alicia "Natürlich leichter" homepage. */

:root {
    --sage: #3d8160;
    --sage-dark: #2c5e47;
    --sage-deep: #1f4534;
    --mist: #eef5f0;
    --paper: #fefdfb;
    --sand: #f7efe4;
    --gold: #c9a24b;
    --ink: #2b2b33;
    --muted: #5c5c66;
    --line: rgba(43, 43, 51, 0.12);
    --radius: 18px;
    --shadow: 0 10px 30px rgba(31, 69, 52, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--paper);
    line-height: 1.65;
    font-size: 17px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: Fraunces, Georgia, serif;
    line-height: 1.15;
    margin: 0 0 0.6em;
    color: var(--ink);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

p {
    margin: 0 0 1em;
}

/* ── Layout container ── */
.site {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    background: var(--sage);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    padding: 0.9em 1.9em;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--sage-dark);
    transform: translateY(-1px);
}

.btn-small {
    padding: 0.55em 1.3em;
    font-size: 0.9rem;
}

.btn-ghost {
    background: transparent;
    color: var(--sage-dark);
    box-shadow: inset 0 0 0 2px var(--sage);
}

.btn-ghost:hover {
    background: var(--mist);
    color: var(--sage-deep);
}

/* ── Cards ── */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ── Section labels ── */
.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sage);
    margin: 0 0 0.6em;
}

.section-label.light {
    color: #bfe3cf;
}

/* ── Footer ── */
footer {
    background: var(--sage-deep);
    color: #dfeae3;
    padding: 3rem 0 2.5rem;
    margin-top: 4rem;
}

footer .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: baseline;
}

footer a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

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

.footer-disclaimer {
    width: 100%;
    font-size: 0.82rem;
    color: #b9cfc2;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

/* ── Utility ── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
