/* ============================================================
   Lebensechte Sexpuppen – Premium Design
   Farbpalette: Warmes Dunkel + Champagner/Gold-Akzent
   Ziel: Seriös, warm, vertrauenswürdig, conversion-optimiert
   ============================================================ */
:root {
    --bg:           #0e0d0b;
    --bg-alt:       #131210;
    --card:         #1a1916;
    --soft:         #222018;
    --border:       rgba(255,248,235,0.09);
    --border-gold:  rgba(196,160,100,0.35);
    --text:         #f0ebe0;
    --text-soft:    #c8bfa8;
    --muted:        #9a9080;       /* etwas heller für besseren Kontrast */
    --accent:       #c4a064;
    --accent-light: #d4b47a;
    --accent-soft:  rgba(196,160,100,0.10);
    --accent-glow:  rgba(196,160,100,0.08);
    --navy:         #1e1c16;
    --line:         rgba(255,248,235,0.09);
    --max:          1180px;
    --max-prose:    72ch;          /* max Zeilenlänge für Fließtext */
    --radius:       12px;
    --radius-lg:    18px;
    --shadow:       0 4px 24px rgba(0,0,0,0.40);
    --shadow-lg:    0 12px 48px rgba(0,0,0,0.50);
    --transition:   0.22s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, "Noto Sans", Ubuntu, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    font-size: 1.0625rem;          /* 17px – angenehmer Lesefluss */
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(196,160,100,0.04), transparent);
}

/* Fließtext-Absätze: max. Zeilenlänge für Lesbarkeit */
.content p,
.content li {
    max-width: var(--max-prose);
}

a { color: var(--text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: min(var(--max), calc(100% - 2.5rem));
    margin: 0 auto;
}

/* ── Header & Navigation ──────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 13, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    color: var(--text);
    text-transform: uppercase;
    flex-shrink: 0;
}
.logo span {
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 0.06em;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav-toggle .bar {
    width: 22px;
    height: 2px;
    background: var(--text-soft);
    border-radius: 2px;
    transition: var(--transition);
}

.main-nav {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    flex-wrap: wrap;
}
.main-nav a {
    color: var(--text-soft);          /* heller als --muted: besser lesbar */
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 0.45rem 0.8rem;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    min-height: 44px;                 /* Touch-Target */
    display: inline-flex;
    align-items: center;
}
.main-nav a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}
.main-nav a[aria-current="page"] {
    color: var(--accent);
    background: var(--accent-soft);
}

@media (max-width: 1024px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-alt);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem 1.25rem;
        border-bottom: 1px solid var(--border);
        gap: 0.1rem;
        z-index: 99;
    }
    .main-nav.active {
        display: flex;
        animation: slideDown 0.25s ease-out forwards;
    }
    .main-nav a {
        width: 100%;
        padding: 0.7rem 0.75rem;
        font-size: 1rem;              /* größer auf Mobile */
        min-height: 48px;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    padding: 5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196,160,100,0.10), transparent),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(30,28,22,0.7), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero h1, .page-head h1 {
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    line-height: 1.18;
    margin: 0 0 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}

.kicker {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 0.85rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    background: var(--accent-soft);
}

.lead {
    font-size: 1.075rem;
    color: var(--text-soft);
    max-width: 60ch;
    line-height: 1.85;
    margin-bottom: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #c4a064, #d4b47a);
    color: #0e0d0b;
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 24px rgba(196,160,100,0.35), 0 1px 0 rgba(255,255,255,0.15) inset;
    text-transform: uppercase;
    min-height: 48px;
}
.button:hover {
    background: linear-gradient(135deg, #d4b47a, #e0c48a);
    color: #0e0d0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196,160,100,0.50);
}

/* ── Cards & Boxes ────────────────────────────────────────── */
.hero-card, .card, .info-box, .table-wrap, .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.hero-card { padding: 1.25rem; }

.info-box {
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 3.5rem 0; }           /* mehr Luft zwischen Abschnitten */
.section + .section {
    border-top: 1px solid var(--border);  /* dezente Trennung */
}
.section h2 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    margin-top: 0;
    margin-bottom: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.25;
}
.section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 0;
    line-height: 1.4;
}

.section h2::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2px;
    background: var(--accent);
    margin-top: 0.65rem;
    border-radius: 2px;
}

/* ── Grid Layouts ─────────────────────────────────────────── */
.two-col, .three-col, .card-grid { display: grid; gap: 1.5rem; }
.two-col   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card, .info-box, .faq-item { padding: 1.75rem; }
.card h3 { margin-top: 0; color: var(--text); margin-bottom: 0.6rem; }
.card p  { color: var(--text-soft); margin-bottom: 0; line-height: 1.75; }

/* ── Lists ────────────────────────────────────────────────── */
ul.checks { padding-left: 0; list-style: none; }
ul.checks li {
    margin-bottom: 0.7rem;
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-soft);
    line-height: 1.65;
}
ul.checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ── Page Head & Breadcrumb ───────────────────────────────── */
.page-head {
    padding: 3.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}
.breadcrumb {
    color: var(--muted);
    font-size: 0.85rem;
    padding-top: 0.75rem;
    letter-spacing: 0.02em;
}
.breadcrumb span { color: var(--muted); }

/* ── Content Typography ───────────────────────────────────── */
.content p, .content li {
    color: var(--text-soft);
    line-height: 1.85;
}
.content p + p { margin-top: 1.1rem; }
.content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(196,160,100,0.4);
    text-underline-offset: 3px;
}
.content a:hover {
    color: var(--accent-light);
    text-decoration-color: var(--accent-light);
}
.content strong { color: var(--text); }

/* ── Tables ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td {
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    font-size: 0.95rem;
    line-height: 1.6;
}
th {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    background: rgba(196,160,100,0.05);
    white-space: nowrap;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.025); }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band { padding: 3.5rem 0; }
.cta-inner {
    background: linear-gradient(135deg, rgba(196,160,100,0.12) 0%, rgba(30,28,22,0.6) 60%, rgba(196,160,100,0.06) 100%);
    border: 1px solid rgba(196,160,100,0.45);
    border-radius: var(--radius-lg);
    padding: 2.75rem 3rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 40px rgba(196,160,100,0.08);
}
.cta-inner h2 { color: var(--text); margin-bottom: 0.5rem; }
.cta-inner p  { color: var(--text-soft); margin: 0; max-width: 55ch; }
.cta-inner h2::after { display: none; }
.cta-inner .button { margin-top: 0; flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    border-left: 3px solid var(--border-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--card);
    transition: border-color var(--transition);
}
.faq-item:hover { border-left-color: var(--accent); }
.faq-item h2 {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--text);
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-weight: 600;
    line-height: 1.4;
}
/* FAQ-Fragen erben NICHT den Gold-Strich von .section h2 */
.faq-item h2::after { display: none; }
.faq-item p { margin: 0; color: var(--text-soft); line-height: 1.75; }

/* ── Notice ───────────────────────────────────────────────── */
.notice {
    color: var(--muted);
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
    background: var(--soft);
    border-radius: var(--radius);
    border-left: 3px solid var(--border-gold);
    line-height: 1.7;
}

/* ── Affiliate-Hinweis ────────────────────────────────────── */
.affiliate-note {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 0.85rem 1.1rem;
    background: rgba(196,160,100,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 1.5rem auto 0;
    max-width: var(--max);
    width: min(var(--max), calc(100% - 2.5rem));
    line-height: 1.65;
    display: block;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    margin-top: 5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
}
.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 1.1rem;
}
.footer-grid p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a { color: var(--muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-grid a:hover { color: var(--accent-light); }
.footer-bottom {
    padding: 1.25rem 0 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid,
    .two-col,
    .three-col,
    .card-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid { gap: 2rem; padding: 2.5rem 0 2rem; }
    .section { padding: 3rem 0; }
}

@media (max-width: 600px) {
    body { font-size: 1rem; }
    .section { padding: 2.25rem 0; }
    .hero { padding: 3rem 0 2rem; }
    .hero h1 { font-size: 1.75rem; line-height: 1.2; }
    .page-head { padding: 2.25rem 0 1.25rem; }
    .card, .info-box, .faq-item { padding: 1.25rem; }
    .cta-inner { padding: 1.5rem 1.25rem; }
    .cta-inner .button { width: 100%; text-align: center; justify-content: center; }
    .two-col, .three-col, .card-grid { gap: 1rem; }
    .lead { font-size: 1rem; }
}

/* ── Focus-Styles (Accessibility) ────────────────────────── */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}
