/* =============================================
   AtomicMartini – Heimsicherheit-Ratgeber
   Dark Elegant Design — Charcoal + Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary:      #c9a84c;
  --primary-dark: #a8893a;
  --primary-light: #e8c97a;
  --accent:       #e53e3e;
  --accent-soft:  rgba(229,62,62,0.12);
  --green:        #38a169;
  --text:         #e8e8e8;
  --text-muted:   #9ca3af;
  --text-dim:     #6b7280;
  --border:       rgba(255,255,255,0.07);
  --border-gold:  rgba(201,168,76,0.3);
  --bg:           #10111a;
  --bg2:          #0c0d14;
  --surface:      #181923;
  --surface2:     #1f2030;
  --dark:         #0c0d14;
  --dark-2:       #181923;
  --white:        #ffffff;
  --card-shadow:  0 2px 16px rgba(0,0,0,0.4);
  --card-shadow-hover: 0 8px 40px rgba(201,168,76,0.18);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width:    1200px;
  --content-width: 740px;
  --radius:       10px;
  --radius-sm:    6px;
  --transition:   all 0.25s ease;
  --grad-gold:    linear-gradient(135deg, #c9a84c 0%, #e8c97a 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--white);
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── HEADER ── */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.site-nav a:hover, .site-nav a.active {
  color: var(--primary-light);
  background: rgba(201,168,76,0.08);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--primary-light); padding-left: 8px; }

/* ── HERO ── */
.hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--border-gold);
  background: rgba(201,168,76,0.07);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: #1a1100;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  color: #1a1100;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--border-gold); color: var(--primary-light); background: rgba(201,168,76,0.05); }

.hero-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border-gold);
  position: relative;
  z-index: 1;
}
.hero-image-wrap img { width: 100%; object-fit: cover; }

/* ── DISCLOSURE ── */
.disclosure {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 24px 0;
}
.disclosure strong { color: var(--primary-light); }

/* ── ARTICLE CONTENT ── */
.article-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 56px 1.5rem 80px;
}
.article-wrap h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.article-wrap h3 { font-size: 1.05rem; color: var(--primary-light); margin: 28px 0 10px; font-family: var(--font-sans); font-weight: 600; }
.article-wrap p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.article-wrap ul { padding-left: 1.2rem; list-style: disc; }
.article-wrap li { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
.article-wrap strong { color: var(--text); }
.article-wrap a { color: var(--primary-light); text-decoration: underline; }

/* ── COMPARISON TABLE ── */
.table-wrap { overflow-x: auto; margin: 28px 0; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead { background: var(--surface2); }
thead th {
  text-align: left;
  padding: 13px 16px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(201,168,76,0.04); }
td { padding: 12px 16px; color: var(--text-muted); vertical-align: top; line-height: 1.5; }
td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
td strong { color: var(--text); }

/* ── FEATURE GRID (optionen page) ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-gold); box-shadow: var(--card-shadow-hover); }
.feature-icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature-title { font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 6px; }
.feature-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── PRODUCT / OFFER CARD ── */
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 32px;
  margin: 40px 0;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: var(--transition);
}
.offer-card:hover { box-shadow: var(--card-shadow-hover); }
.offer-card img { width: 200px; flex-shrink: 0; border-radius: var(--radius); background: rgba(255,255,255,0.03); }
.offer-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--grad-gold);
  color: #1a1100;
  margin-bottom: 10px;
}
.offer-title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--white); margin-bottom: 10px; }
.offer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.75; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.82rem; color: var(--text-dim); }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 0.78rem; color: var(--text-dim); }

/* ── LEGAL / STATIC PAGES ── */
.page-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 52px 1.5rem 80px;
}
.page-wrap h1 { font-size: 1.9rem; margin-bottom: 8px; }
.page-wrap .page-meta { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 36px; }
.page-wrap h2 { font-size: 1.15rem; margin: 32px 0 10px; }
.page-wrap p, .page-wrap li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.page-wrap ul { padding-left: 1.2rem; list-style: disc; }
.page-wrap a { color: var(--primary-light); text-decoration: underline; }

/* ── CONTACT ── */
.contact-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 52px 1.5rem 80px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.breadcrumb span { margin: 0 7px; color: var(--text-dim); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-light); }

/* ── ARTICLE META ── */
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.article-meta .tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── SECTION ── */
.section { padding: 60px 0; }
.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.section-sub { font-size: 0.93rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--surface2);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 36px 40px;
  text-align: center;
  margin: 48px 0;
}
.cta-block h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cta-block p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 22px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .offer-card { flex-direction: column; }
  .offer-card img { width: 100%; max-width: 280px; }
}
@media (max-width: 640px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 48px 0 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
