@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5F0E8; --dark: #1A1A2E; --gold: #C9A84C; --gold-light: #E8D5A3;
  --rose: #C4726A; --text: #2C2C3E; --muted: #7A7A8C; --white: #FFFFFF; --card-bg: #FDFAF5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* HEADER */
header { background: var(--dark); padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 200; border-bottom: 1px solid rgba(201,168,76,0.3); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); text-decoration: none; }
.logo span { color: var(--white); }
nav { display: flex; align-items: center; gap: 4px; }
nav a { background: none; border: none; color: rgba(255,255,255,0.65); font-size: 0.78rem; padding: 7px 14px; border-radius: 6px; text-decoration: none; font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; }
nav a:hover, nav a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* WAVE */
.wave { line-height: 0; }
.wave svg { display: block; width: 100%; }

/* SECTIONS */
section { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.section-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--dark); margin-bottom: 8px; }
.section-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 36px; font-weight: 300; }

/* RANK CARDS */
.ranking-list { display: flex; flex-direction: column; gap: 18px; }
.rank-card { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.15); border-radius: 16px; padding: 26px 30px; display: grid; grid-template-columns: 44px 130px 1fr auto; align-items: center; gap: 22px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; position: relative; overflow: hidden; }
.rank-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); opacity: 0; transition: opacity 0.2s; }
.rank-card:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: rgba(201,168,76,0.3); }
.rank-card:hover::before { opacity: 1; }
.rank-card.top { background: linear-gradient(135deg, #FDFAF5, #FBF5E6); border-color: rgba(201,168,76,0.3); }
.rank-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold-light); font-weight: 700; }
.rank-card.top .rank-num { color: var(--gold); }
.rank-logo { width: 120px; height: 70px; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 10px; box-shadow: 0 1px 6px rgba(0,0,0,0.10); flex-shrink: 0; background: #fff; overflow: hidden; margin-right: 16px; }
.rank-logo img { max-width: 96px; max-height: 46px; object-fit: contain; display: block; margin: auto; }
.rank-logo img.invert { filter: invert(1) hue-rotate(180deg); }
.rank-info { flex: 1; }
.rank-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 4px; }
.rank-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.5; margin-bottom: 9px; font-weight: 300; }
.rank-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.tag { background: rgba(201,168,76,0.1); color: #8B6914; font-size: 0.68rem; padding: 2px 9px; border-radius: 20px; font-weight: 500; }
.tag.rose { background: rgba(196,114,106,0.1); color: var(--rose); }
.rank-action { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 126px; }
.stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; }
.score { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); font-weight: 700; line-height: 1; }
.score span { font-size: 0.75rem; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 300; }
.btn-cta { display: block; background: var(--gold); color: var(--dark); text-decoration: none; font-size: 0.78rem; font-weight: 700; padding: 10px 18px; border-radius: 8px; letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s, transform 0.15s; text-align: center; width: 100%; }
.btn-cta:hover { background: #B8952A; transform: scale(1.02); }
.best-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--dark); font-size: 0.62rem; font-weight: 700; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.08em; text-transform: uppercase; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 36px; }
.why-card { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.12); border-radius: 13px; padding: 26px 22px; text-align: center; }
.why-icon { font-size: 1.9rem; margin-bottom: 12px; display: block; }
.why-title { font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--dark); margin-bottom: 7px; }
.why-text { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* DARK SECTION */
.dark-section { background: var(--dark); padding: 60px 24px; }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,0.45); }
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 32px; max-width: 900px; margin-left: auto; margin-right: auto; }
.method-item { text-align: center; padding: 18px 10px; }
.method-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: rgba(201,168,76,0.25); display: block; margin-bottom: 7px; }
.method-title { font-size: 0.83rem; color: var(--white); font-weight: 500; margin-bottom: 5px; }
.method-text { font-size: 0.76rem; color: rgba(255,255,255,0.38); line-height: 1.5; font-weight: 300; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.faq-item { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.12); border-radius: 11px; overflow: hidden; }
.faq-q { padding: 18px 22px; font-weight: 500; font-size: 0.92rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform 0.2s; font-weight: 300; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 0.87rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* HERO */
.hero { background: var(--dark); padding: 80px 40px 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 28px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; max-width: 540px; margin: 0 auto 36px; font-weight: 300; }
.hero-stats { display: flex; justify-content: center; gap: 48px; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); display: block; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* BLOG */
.blog-hero { background: var(--dark); padding: 60px 40px 80px; text-align: center; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 12px; }
.blog-hero h1 em { font-style: italic; color: var(--gold); }
.blog-hero p { color: rgba(255,255,255,0.5); font-size: 0.95rem; font-weight: 300; }
.blog-grid { max-width: 900px; margin: 0 auto; padding: 28px 24px 60px; display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.article-card { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.12); border-radius: 15px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: rgba(201,168,76,0.3); }
.card-thumb { height: 150px; background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.card-thumb.rose { background: linear-gradient(135deg, #2A1A1E, #1A1A2E); }
.card-thumb.teal { background: linear-gradient(135deg, #0F2A2A, #1A1A2E); }
.card-thumb.warm { background: linear-gradient(135deg, #2A1E0F, #1A1A2E); }
.card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.card-tag { background: rgba(201,168,76,0.1); color: #8B6914; font-size: 0.67rem; padding: 2px 9px; border-radius: 20px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.card-tag.rose { background: rgba(196,114,106,0.1); color: var(--rose); }
.card-date { font-size: 0.73rem; color: var(--muted); font-weight: 300; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); line-height: 1.35; margin-bottom: 9px; }
.card-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; flex: 1; }
.card-footer { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.read-more { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.read-time { font-size: 0.72rem; color: var(--muted); font-weight: 300; }
.featured { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; }
.featured .card-thumb { height: 100%; min-height: 210px; font-size: 3.5rem; }
.featured .card-title { font-size: 1.35rem; }

/* ARTICLE */
.article-view { max-width: 760px; margin: 0 auto; padding: 0 24px 60px; }
.breadcrumb { padding: 20px 0 0; font-size: 0.76rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-light); margin: 0 6px; }
.art-header { padding: 28px 0 0; }
.art-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.art-tag { background: rgba(201,168,76,0.1); color: #8B6914; font-size: 0.68rem; padding: 3px 11px; border-radius: 20px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.art-date, .art-read { font-size: 0.78rem; color: var(--muted); font-weight: 300; }
.art-dot { color: var(--gold-light); }
.art-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3.5vw, 2.3rem); color: var(--dark); line-height: 1.25; margin-bottom: 16px; }
.art-intro { font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 300; border-left: 3px solid var(--gold); padding-left: 18px; margin-bottom: 28px; }
.toc { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.2); border-radius: 11px; padding: 20px 24px; margin-bottom: 36px; }
.toc-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.toc ol { padding-left: 16px; }
.toc li { margin-bottom: 5px; }
.toc a { font-size: 0.86rem; color: var(--text); text-decoration: none; transition: color 0.2s; }
.toc a:hover { color: var(--gold); }
.art-body h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--dark); margin: 36px 0 14px; }
.art-body h3 { font-size: 1.02rem; color: var(--dark); font-weight: 600; margin: 24px 0 10px; }
.art-body p { font-size: 0.93rem; color: var(--text); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.art-body ul, .art-body ol { padding-left: 20px; margin-bottom: 16px; }
.art-body li { font-size: 0.93rem; line-height: 1.8; margin-bottom: 5px; font-weight: 300; }
.art-body strong { font-weight: 600; color: var(--dark); }
.highlight-box { background: rgba(201,168,76,0.07); border-left: 3px solid var(--gold); border-radius: 0 9px 9px 0; padding: 16px 20px; margin: 22px 0; font-size: 0.9rem; color: var(--text); line-height: 1.7; font-weight: 300; }
.highlight-box strong { color: var(--dark); }
.art-rank-card { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.15); border-radius: 13px; padding: 22px 26px; margin: 20px 0; display: grid; grid-template-columns: 36px 1fr auto; gap: 18px; align-items: center; }
.art-rank-card.top { background: linear-gradient(135deg, #FDFAF5, #FBF5E6); border-color: rgba(201,168,76,0.3); }
.art-rank-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--gold-light); font-weight: 700; }
.art-rank-card.top .art-rank-num { color: var(--gold); }
.art-rank-info h3 { font-size: 1rem; color: var(--dark); margin: 0 0 3px; font-weight: 600; }
.art-rank-info p { font-size: 0.81rem; color: var(--muted); margin: 0 0 7px; font-weight: 300; }
.art-rank-action { display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 110px; }
.art-score { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); font-weight: 700; }
.art-score span { font-size: 0.72rem; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.cta-box { background: var(--dark); border-radius: 14px; padding: 26px 28px; margin: 32px 0; text-align: center; }
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); margin-bottom: 7px; }
.cta-box p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 18px; font-weight: 300; }
.cta-box .btn-cta { display: inline-block; width: auto; }
.comparison-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 0.86rem; }
.comparison-table th { background: var(--dark); color: var(--gold); padding: 11px 14px; text-align: left; font-weight: 500; font-size: 0.78rem; }
.comparison-table td { padding: 11px 14px; border-bottom: 1px solid rgba(201,168,76,0.1); color: var(--text); font-weight: 300; background: var(--card-bg); }
.comparison-table tr:hover td { background: #F8F3EA; }
.check { color: #4CAF50; font-weight: 600; }
.cross { color: var(--rose); font-weight: 600; }
.author-box { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.12); border-radius: 11px; padding: 20px 24px; margin: 36px 0; display: flex; gap: 14px; align-items: flex-start; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.88rem; color: var(--dark); margin-bottom: 3px; }
.author-bio { font-size: 0.8rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 18px; }
.related-card { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.12); border-radius: 11px; padding: 16px; text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s; display: block; }
.related-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.related-emoji { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.related-title { font-size: 0.85rem; color: var(--dark); font-weight: 500; line-height: 1.4; }

/* LEGAL */
.legal-hero { background: var(--dark); padding: 56px 40px; text-align: center; }
.legal-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white); margin-bottom: 10px; }
.legal-hero p { color: rgba(255,255,255,0.5); font-size: 0.92rem; font-weight: 300; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 50px 24px; }
.legal-block { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.13); border-radius: 15px; padding: 32px 38px; margin-bottom: 22px; }
.legal-block h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--dark); margin-bottom: 14px; padding-bottom: 11px; border-bottom: 1px solid rgba(201,168,76,0.13); }
.legal-block p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 11px; font-weight: 300; }
.legal-block ul { padding-left: 18px; margin: 8px 0 11px; }
.legal-block ul li { font-size: 0.9rem; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 3px; }
.impressum-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.impressum-table tr { border-bottom: 1px solid rgba(201,168,76,0.08); }
.impressum-table tr:last-child { border-bottom: none; }
.impressum-table td { padding: 9px 0; font-size: 0.88rem; vertical-align: top; }
.impressum-table td:first-child { color: var(--dark); font-weight: 500; width: 180px; }
.impressum-table td:last-child { color: var(--muted); font-weight: 300; }
.info-box { background: rgba(201,168,76,0.07); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 14px 18px; margin-top: 14px; font-size: 0.83rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.updated-badge { display: inline-block; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: #8B6914; font-size: 0.72rem; padding: 3px 11px; border-radius: 20px; margin-bottom: 28px; }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); border-top: 1px solid rgba(201,168,76,0.3); padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 22px; z-index: 999; transition: transform 0.3s ease; }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { color: rgba(255,255,255,0.65); font-size: 0.83rem; line-height: 1.5; font-weight: 300; flex: 1; }
.cookie-banner a { color: var(--gold); text-decoration: none; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept { background: var(--gold); color: var(--dark); border: none; padding: 9px 20px; border-radius: 7px; font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-decline { background: transparent; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.18); padding: 9px 20px; border-radius: 7px; font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* FOOTER */
footer { background: #0F0F1E; padding: 36px 40px 22px; color: rgba(255,255,255,0.35); font-size: 0.76rem; }
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 6px; text-decoration: none; display: block; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.76rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.22); line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 720px) {
  header { padding: 13px 18px; }
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 53px; left: 0; right: 0; background: var(--dark); padding: 12px 18px; border-bottom: 1px solid rgba(201,168,76,0.25); z-index: 9999; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
  .menu-toggle { display: block; }
  .hero { padding: 50px 20px 60px; }
  .hero-stats { gap: 22px; }
  .rank-card { grid-template-columns: 36px 1fr; }
  .rank-logo { display: none; }
  .rank-action { grid-column: 1/-1; flex-direction: row; justify-content: space-between; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 18px; }
  .cookie-banner { flex-direction: column; padding: 18px 20px; }
  .cookie-buttons { width: 100%; }
  .art-rank-card { grid-template-columns: 30px 1fr; }
  .art-rank-action { grid-column: 1/-1; flex-direction: row; justify-content: space-between; }
}
