/* marketingcallboy.de - dunkel & premium
   Farbwelt: Schwarz/Anthrazit mit Gold-Akzenten */

:root {
  --bg: #0b0b0d;
  --bg-elevated: #141418;
  --bg-card: #17171c;
  --border: #26262e;
  --text: #ece9e3;
  --text-muted: #a5a099;
  --gold: #c9a24b;
  --gold-soft: #e2c67f;
  --gold-dim: rgba(201, 162, 75, 0.14);
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1140px;
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-soft); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; font-family: var(--font-body); font-weight: 600; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1.1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}

.lead { font-size: 1.2rem; color: var(--text-muted); }

.text-center { text-align: center; }
.muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #1a1408;
}
.btn-primary:hover { color: #1a1408; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand:hover { color: var(--white); }
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 96px;
  background:
    radial-gradient(1100px 460px at 78% -10%, rgba(201, 162, 75, 0.16), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(201, 162, 75, 0.07), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.22rem; color: var(--text-muted); margin-bottom: 30px; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(201, 162, 75, 0.4); transform: translateY(-3px); }
.card h3 { margin-bottom: 10px; color: var(--white); }
.card p { color: var(--text-muted); font-size: 0.98rem; }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.card .icon svg { width: 24px; height: 24px; }

/* number badges */
.step-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

/* ---------- Split / prose ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.prose { max-width: 760px; }
.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 30px 0 12px; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.2rem; color: var(--text); }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.section-alt { background: var(--bg-elevated); }

/* ---------- Panel / callout ---------- */
.panel {
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.10), rgba(201, 162, 75, 0.02));
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin: 30px 0;
}
.panel h3 { color: var(--gold-soft); margin-bottom: 8px; }

.cta-band {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(201, 162, 75, 0.16), transparent 65%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 70px 0;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin-left: 0 !important; }
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 5px;
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px; top: 7px;
  width: 5px; height: 9px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 74px 0 48px;
  background:
    radial-gradient(800px 340px at 82% -20%, rgba(201, 162, 75, 0.13), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero p { color: var(--text-muted); max-width: 640px; font-size: 1.1rem; }

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 26px; grid-template-columns: repeat(2, 1fr); }
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 30px 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { border-color: rgba(201, 162, 75, 0.4); transform: translateY(-3px); }
.post-meta { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.post-card h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.post-card h3 a { color: var(--white); }
.post-card h3 a:hover { color: var(--gold); }
.post-card p { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 18px; }
.post-card .read-more { margin-top: auto; font-weight: 600; font-size: 0.92rem; }

.article { max-width: 760px; margin: 0 auto; }
.article-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 30px; }
.article-body h2 { margin: 38px 0 14px; }
.article-body h3 { margin: 28px 0 10px; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem 1.3rem; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 22px 0;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold-soft);
  font-style: italic;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 { color: var(--white); margin-bottom: 8px; font-size: 1.2rem; }
.faq-item p { color: var(--text-muted); }

/* ---------- Contact ---------- */
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-box .mail {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--gold);
  display: inline-block;
  margin: 14px 0 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--border);
  padding: 56px 0 30px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--text-muted); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  z-index: 80;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 9px 20px; font-size: 0.88rem; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mb-40 { margin-bottom: 40px; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .post-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .hero { padding: 74px 0 64px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-bottom { flex-direction: column; }
}
