/* =========================================================
   Dichterinnenland — Relaunch (lokaler Prototyp)
   HTML / CSS / JS, keine Build-Tools nötig
   Farbwelt: Navy-Tinte, warme Cremes, Teal, Terracotta, Gold
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

:root {
  --bg:          #faf6f1;
  --bg-alt:      #f3ebe0;
  --bg-deep:     #ebe0cf;
  --ink:         #1b3a5c;   /* tiefes Navy – Text & mittlere dunkle Flächen */
  --ink-soft:    #4a6380;   /* Navy-Grau für Leads, Subtext */
  --ink-mute:    #7a8a9c;   /* Leichter Blau-Grauton für Meta-Text */
  --ink-deep:    #0f2642;   /* Sehr tiefes Navy – Footer, dunkle CTA-Boxen */
  --line:        #e4d9c5;
  --accent:      #2d7a7a;   /* Teal */
  --accent-dark: #1e5757;
  --accent-soft: #cde0de;
  --warm:        #c76b3a;   /* Terracotta */
  --warm-dark:   #a65327;
  --gold:        #d4a744;   /* Leuchtendes Altgold – Akzente, feine Linien */
  --sunny:       #f5c542;   /* Freebie-Gelb – Highlight-Boxen */
  --white:       #ffffff;

  --shadow-sm: 0 1px 2px rgba(27, 58, 92, 0.08);
  --shadow-md: 0 6px 20px rgba(27, 58, 92, 0.10);
  --shadow-lg: 0 20px 50px rgba(27, 58, 92, 0.14);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --container: 1120px;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script:  "Parisienne", "Monotype Corsiva", "Apple Chancery", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

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

.narrow { max-width: 780px; margin-left: auto; margin-right: auto; }

/* ---------- Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand::before {
  content: "";
  display: inline-block;
  width: 28px; height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='46' fill='%231b3a5c'/%3E%3Cpath d='M72 22 C 58 28, 44 42, 36 62 L 28 78 L 42 70 C 60 60, 72 46, 78 30 Z' fill='%23d4a744'/%3E%3Cpath d='M28 78 L 72 22' stroke='%231b3a5c' stroke-width='1.5' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 1px 2px rgba(15, 38, 66, 0.15));
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.97rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--warm);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.nav-cta:hover { background: var(--warm-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.12s ease, background 0.12s ease;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--warm);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--warm-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

/* ---------- Sections ---------- */

section { padding: 80px 0; }
section.tight { padding: 48px 0; }
section.bg-alt { background: var(--bg-alt); }
section.bg-deep { background: var(--bg-deep); }
section.bg-ink  { background: var(--ink-deep); color: #dfe6ef; }
section.bg-ink h2, section.bg-ink h3 { color: var(--white); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 14px;
}

.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(199, 107, 58, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -120px; bottom: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(45, 122, 122, 0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 0.3em; }
.hero .sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-visual {
  aspect-ratio: 4/5;
  background:
    radial-gradient(at 30% 30%, rgba(199, 107, 58, 0.25), transparent 55%),
    radial-gradient(at 70% 70%, rgba(45, 122, 122, 0.3), transparent 55%),
    linear-gradient(140deg, var(--bg-deep), var(--accent-soft));
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-align: center;
  padding: 24px;
}
.hero-visual::before {
  content: "✒";
  font-size: 5rem;
  position: absolute;
  top: 30px; left: 30px;
  color: var(--warm);
  opacity: 0.4;
}
.hero-visual:has(img)::before {
  display: none;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 3/2; }
}

/* ---------- Cards ---------- */

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-top: 0; }
.card .icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card.product {
  display: flex; flex-direction: column;
  height: 100%;
}
.card.product .price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--warm);
  margin: 6px 0 12px;
}
.card.product .meta {
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card.product ul {
  padding-left: 0;
  list-style: none;
  margin: 16px 0 24px;
  flex-grow: 1;
}
.card.product li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.card.product li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--accent);
  font-weight: 700;
}
.card.highlight {
  border: 2px solid var(--warm);
  position: relative;
}
.card.highlight::before {
  content: "Empfohlen";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--warm);
  color: var(--white);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

/* ---------- Timeline ---------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.timeline .step {
  position: relative;
  padding-top: 52px;
}
.timeline .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.timeline .step h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.timeline .step p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ---------- Split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse > *:first-child { order: 2; }
.split .visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-deep));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  padding: 32px;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > *:first-child { order: 0; }
}

/* ---------- Pain-Points ---------- */

.pain-list {
  list-style: none;
  padding: 0; margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pain-list li {
  background: var(--white);
  border-left: 3px solid var(--warm);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.97rem;
}
@media (max-width: 700px) {
  .pain-list { grid-template-columns: 1fr; }
}

/* ---------- Quote / Testimonial ---------- */

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 58px 28px 28px;
  position: relative;
}
.quote::before {
  content: "„";
  position: absolute;
  left: 22px;
  top: 14px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--warm);
  line-height: 0.8;
  opacity: 0.85;
  pointer-events: none;
}
.quote blockquote {
  margin: 0 0 18px;
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
}
.quote .author {
  font-size: 0.92rem;
  color: var(--ink-mute);
}
.quote .author strong { color: var(--ink); font-weight: 600; }
.quote .book {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ---------- Comparison table ---------- */

.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare th, .compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  vertical-align: top;
}
.compare thead th {
  background: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td.me {
  background: rgba(199, 107, 58, 0.08);
  font-weight: 500;
}
@media (max-width: 700px) {
  .compare { font-size: 0.88rem; }
  .compare th, .compare td { padding: 10px 12px; }
}

/* ---------- FAQ ---------- */

.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--font-display);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}
details[open] .faq-q::after { content: "−"; }
.faq-a {
  padding-top: 14px;
  color: var(--ink-soft);
}

/* ---------- Opt-in form ---------- */

.optin {
  background: var(--ink-deep);
  color: var(--bg);
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.optin h2 { color: var(--white); }
.optin p { color: #cfd8e2; max-width: 560px; margin-left: auto; margin-right: auto; }
.optin-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 24px auto 0;
}
.optin-form input {
  flex: 1;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
}
.optin-form button {
  background: var(--warm);
  color: var(--white);
  border: 0;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.optin-form button:hover { background: var(--warm-dark); }
.optin small { display: block; margin-top: 12px; color: #b4ac9c; font-size: 0.85rem; }
@media (max-width: 600px) {
  .optin-form { flex-direction: column; }
  .optin-form button { padding: 14px; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-deep);
  color: #cfd8e2;
  padding: 60px 0 28px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.site-footer ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: #cfd8e2;
  text-decoration: none;
}
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #a59e8f;
  font-size: 0.85rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Utility ---------- */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }

.chip {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-right: 6px;
}
.chip.warm { background: rgba(199,107,58,0.15); color: var(--warm-dark); }

.blog-filter .chip {
  cursor: pointer;
  user-select: none;
  padding: 8px 18px;
  font-size: 0.9rem;
  margin: 4px;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
}
.blog-filter .chip:hover {
  border-color: var(--accent);
}
.blog-filter .chip.active {
  background: var(--ink-deep);
  color: var(--white);
  border-color: var(--ink-deep);
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 780px;
}
.big-quote::before {
  content: "„";
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--warm);
  line-height: 0.7;
  margin-bottom: 0.1em;
}
.big-quote::after {
  content: """;
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--warm);
  line-height: 0.3;
  margin-top: 0.2em;
}

.big-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 780px;
}

.signature {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.9rem;
  color: var(--accent);
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin: 24px 0 0;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ---------- App mockup (Freebie page) ---------- */

.app-mockup {
  background: linear-gradient(160deg, var(--bg-deep), var(--accent-soft));
  border-radius: 40px;
  padding: 40px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}
.app-mockup::before {
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 6px;
  background: var(--ink);
  border-radius: 4px;
  opacity: 0.7;
}
.app-screen {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 18px;
  min-height: 480px;
}
.app-screen h4 {
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.day-list { list-style: none; padding: 0; margin: 0; }
.day-list li {
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
}
.day-list li.done { background: var(--accent-soft); color: var(--accent-dark); }
.day-list li.active { background: var(--warm); color: var(--white); font-weight: 500; }
.day-list li.todo { background: var(--bg); color: var(--ink-mute); }
.day-list .bullet {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

/* ---------- Dichterinnen-Banner (für Blog-Säule „Dichterinnen im Dichterinnenland") ---------- */

.dichterin-banner {
  position: relative;
  width: 100%;
  background: url('../assets/blog/dichterinnen-banner-template.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.dichterin-banner .name {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  text-shadow: 0 2px 12px rgba(15, 38, 66, 0.65);
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0 20px;
  margin: 0;
}


/* ---------- Status-Badge (Plätze-Verfügbarkeit) ---------- */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid;
  background: var(--white);
  margin: 14px 0 4px;
}
.status-badge::before {
  content: "●";
  font-size: 0.75em;
  line-height: 1;
}
.status-badge--available {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: var(--accent-soft);
}
.status-badge--soon {
  color: #6e5515;
  border-color: var(--gold);
  background: #fcefce;
}
.status-badge--full {
  color: var(--warm-dark);
  border-color: var(--warm);
  background: #fbe5d9;
}

/* ---------- Highlight-Box (Freebie-PDF-Look) ---------- */

.highlight-box {
  background: var(--sunny);
  color: var(--ink);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 24px 0;
  border-left: 5px solid var(--gold);
}
.highlight-box h3,
.highlight-box h4,
.highlight-box strong { color: var(--ink-deep); }
.highlight-box p:last-child { margin-bottom: 0; }
