/* ===== SEELENZUHAUSE — Sanzo Wada "Dictionary of Color Combinations" Palette ===== */

@font-face {
  font-family: 'Cormorant';
  src: url('cormorant-italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

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

:root {
  /*
   * Farben direkt aus Sanzo Wada "Dictionary of Color Combinations" Vol. 1 & 2
   * Digitale HEX-Werte via wscolors.com / sanzo-wada.dmbk.io
   */
  --slate:       #34454c;   /* Slate Color — Hauptfarbe, kühles Blau-Grau */
  --slate-deep:  #243038;   /* Dunkler Slate — Header */
  --andover:     #6d7e77;   /* Andover Green — ruhiges Salbeigrün */
  --andover-mid: #849e95;   /* Heller Andover — Akzente */
  --sudan:       #a36752;   /* Sudan Brown — warmer Akzent */
  --sudan-dark:  #7d4e3d;   /* Dunkleres Sudan Brown */
  --vandyke:     #4b3317;   /* Vandyke Brown — tiefes Braun */
  --ecru:        #c2ae93;   /* Ecru — warmer Mittelton */
  --sulphur:     #f5ecc2;   /* Sulphur Yellow — helles Cream */
  --sumi:        #1e1a14;   /* Tusche — für Pinselstrich + tiefe Schatten */
  --warm-gray:   #a1a39a;   /* Warm Gray — Borders, dezent */
  --mineral:     #a2b0ad;   /* Mineral Gray */

  /* Anwendung */
  --warm-bg:    #f7f3ea;    /* Washi-Papier Hintergrund (aufgehelltes Sulphur) */
  --cream:      #ede8dc;    /* Karten-Hintergrund */
  --sand:       #e3ddd2;
  --border:     #cec8ba;
  --white:      #fdfaf5;    /* Warmes Weiß */

  --text:       #1e1a14;    /* Sumi — fast schwarz, sehr warm */
  --text-mid:   #4a4035;    /* Mittleres Warm-Braun */
  --text-light: #7a7060;    /* Helles Warm-Grau */

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 4px rgba(30,26,20,0.07);
  --shadow:     0 2px 14px rgba(30,26,20,0.09);
  --shadow-md:  0 4px 24px rgba(30,26,20,0.12);
  --max-w:      1100px;
  --font-sans:  'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', serif;
  --font-brand: 'Cormorant', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--warm-bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 500;
}

a { color: var(--andover); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--slate); }

/* ===== TOPBAR (schmale Zeile ganz oben) ===== */
.topbar {
  background: var(--sumi);
  color: rgba(245,236,194,0.72);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  padding: 0.5rem 1rem;
  line-height: 1.5;
}

/* ===================================================
   SUMI-E PINSELSTRICH — echter japanischer Pinsel-SVG
   als Trennlinie zwischen Sektionen
   =================================================== */
.brush-stroke {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.brush-stroke img,
.brush-stroke svg {
  display: block;
  width: 100%;
  height: 20px;
}

/* ===== HEADER ===== */
header {
  background: var(--slate-deep);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.28);
}

.logo {
  font-size: 1.7rem;
  font-family: var(--font-brand);
  font-style: italic;
  font-weight: 600;
  color: var(--sulphur);
  letter-spacing: 0.02em;
}
.logo span { color: var(--andover-mid); }

nav { display: flex; align-items: center; gap: 0.15rem; }
nav a {
  color: rgba(245,236,194,0.6);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
nav a:hover { background: rgba(255,255,255,0.07); color: var(--sulphur); text-decoration: none; }
nav a.active { color: var(--sulphur); font-weight: 600; }
nav .nav-cta {
  background: var(--andover);
  color: var(--sulphur);
  margin-left: 0.5rem;
}
nav .nav-cta:hover { background: var(--andover-mid); color: white; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--slate-deep) 0%, var(--slate) 55%, #3d5248 100%);
  color: var(--sulphur);
  padding: 5.5rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(109,126,119,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(52,69,76,0.25) 0%, transparent 55%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,236,194,0.09);
  border: 1px solid rgba(245,236,194,0.18);
  color: rgba(245,236,194,0.75);
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.33rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  position: relative;
}
.hero h1 em { color: var(--andover-mid); font-style: normal; }

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: rgba(245,236,194,0.72);
  line-height: 1.75;
  position: relative;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-primary {
  display: inline-block;
  background: var(--sudan);
  color: var(--sulphur);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sudan-dark); transform: translateY(-1px); text-decoration: none; color: var(--sulphur); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--sulphur);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 500;
  border: 1.5px solid rgba(245,236,194,0.32);
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(245,236,194,0.07); text-decoration: none; color: var(--sulphur); }

/* ===== TRUST-BAR ===== */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--text-mid); }
.trust-item span { font-size: 1rem; }

/* ===== PERSÖNLICHE NOTE ===== */
.personal-note {
  background: var(--white);
  border-left: 4px solid var(--andover);
  max-width: 800px;
  margin: 3.5rem auto;
  padding: 2rem 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}
.personal-note p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--slate);
  font-style: normal;
  line-height: 1.9;
}
.author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.author-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--slate), var(--andover));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sulphur); font-size: 0.95rem;
  font-family: var(--font-serif);
}
.author-info .name { font-weight: 600; color: var(--text); font-size: 0.88rem; }
.author-info .role { color: var(--text-light); font-size: 0.78rem; }

/* ===== SECTION ===== */
.section { padding: 4rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--andover); margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700; color: var(--slate);
  margin-bottom: 0.5rem;
}
.section-sub { color: var(--text-light); max-width: 540px; margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.65; }

/* ===== KARTEN ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.1rem; }

.card {
  --cc: var(--card-color, var(--andover));
  background: linear-gradient(160deg, color-mix(in srgb, var(--cc) 11%, var(--white)) 0%, color-mix(in srgb, var(--cc) 28%, var(--white)) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--cc);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  display: flex; flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: linear-gradient(160deg, color-mix(in srgb, var(--cc) 16%, var(--white)) 0%, color-mix(in srgb, var(--cc) 36%, var(--white)) 100%);
}

.card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cc, var(--slate)) 16%, var(--cream)), color-mix(in srgb, var(--cc, var(--slate)) 30%, var(--cream)));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
  border: 1px solid color-mix(in srgb, var(--cc, var(--slate)) 38%, var(--border));
  color: var(--cc, var(--slate));
}
/* Ruhige Linien-Icons (inline SVG, Tusche-Strich statt Emoji) */
.card-icon svg { width: 22px; height: 22px; display: block; }
.oc-icon, .pc-icon { color: var(--slate); }
.oc-icon svg, .pc-icon svg { width: 26px; height: 26px; display: block; margin-bottom: 0.5rem; }
.vorsorge-icon { color: var(--andover); }
.vorsorge-icon svg { width: 40px; height: 40px; display: block; }
.card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--slate-deep); margin-bottom: 0.5rem; line-height: 1.4; }
.card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.card a.card-link { font-size: 0.9rem; font-weight: 600; color: var(--andover); }
.card a.card-link:hover { text-decoration: none; color: var(--slate); }

/* ===== ZEITSTRAHL ===== */
.timeline-section { background: var(--slate); padding: 3.5rem 2rem; }
.timeline-section .section-label { color: rgba(245,236,194,0.5); }
.timeline-section .section-sub { color: rgba(245,236,194,0.58); }

.timeline { display: flex; overflow-x: auto; border-radius: var(--radius); overflow: hidden; }
.tl-item {
  flex: 1; min-width: 140px;
  background: rgba(245,236,194,0.07);
  border-right: 1px solid rgba(245,236,194,0.1);
  padding: 1.2rem 1.1rem;
  transition: background 0.2s;
}
.tl-item:last-child { border-right: none; }
.tl-item:hover { background: rgba(245,236,194,0.13); }
.tl-zeit { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--andover-mid); margin-bottom: 0.4rem; }
.tl-thema { font-size: 0.93rem; color: rgba(245,236,194,0.88); line-height: 1.4; }

/* ===== VORSORGE-BOX ===== */
.vorsorge-strip { background: var(--sand); padding: 3rem 2rem; }
.vorsorge-inner {
  max-width: 800px; margin: 0 auto;
  background: linear-gradient(160deg, color-mix(in srgb, var(--sudan) 9%, var(--white)) 0%, color-mix(in srgb, var(--sudan) 24%, var(--white)) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem; box-shadow: var(--shadow);
  border-left: 5px solid var(--sudan);
  display: flex; gap: 2rem; align-items: center;
}
.vorsorge-icon { font-size: 2.2rem; flex-shrink: 0; color: var(--sudan); }
.vorsorge-text h3 { font-size: 1.1rem; font-weight: 600; color: var(--slate); margin-bottom: 0.5rem; }
.vorsorge-text p { color: var(--text-mid); font-size: 0.97rem; line-height: 1.65; margin-bottom: 1.1rem; }

/* ===== ARTIKEL-SEITEN ===== */
.page-hero {
  background: linear-gradient(160deg, var(--slate-deep) 0%, var(--slate) 100%);
  color: var(--sulphur); padding: 3.5rem 2rem 3rem;
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.breadcrumb { font-size: 0.78rem; color: rgba(245,236,194,0.48); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(245,236,194,0.48); }
.breadcrumb a:hover { color: rgba(245,236,194,0.82); text-decoration: none; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(1.55rem, 4vw, 2.25rem); font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; }
.page-hero .lead { font-size: 1.02rem; color: rgba(245,236,194,0.72); max-width: 600px; line-height: 1.75; }

.article-body { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.article-body h2 {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--slate); margin: 2.75rem 0 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.article-body h3 { font-size: 1.08rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 0.5rem; }
.article-body p { color: var(--text-mid); line-height: 1.82; margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body li { color: var(--text-mid); line-height: 1.72; margin-bottom: 0.35rem; }
.article-body strong { color: var(--text); }

.info-box {
  background: #eef1ec; border-left: 3px solid var(--andover);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.6rem; margin: 1.5rem 0;
}
.info-box p { margin: 0; font-size: 0.97rem; color: var(--text-mid); }

/* ===== "SIE DÜRFEN SICH ZEIT LASSEN" — wiederkehrender Herz-Hinweis auf jeder Seite ===== */
.zeit-box {
  background: #eef1ec;
  border: 1px solid #cfd8cf;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.8rem 1.6rem;
  margin: 2rem 0;
  text-align: center;
}
.zeit-box .zb-ornament { width: 130px; height: 24px; display: block; margin: 0 auto 0.5rem; opacity: 0.85; }
.zeit-box .zb-titel {
  font-family: var(--font-serif);
  font-size: 1.14rem; font-weight: 700;
  color: var(--slate); margin-bottom: 0.55rem;
}
.zeit-box p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.72; max-width: 580px; margin: 0 auto; }
.zeit-box a { font-weight: 600; }

/* Ornament als ruhiger Abschnitts-Trenner */
.ornament { display: flex; justify-content: center; margin: 2.75rem 0 0.25rem; }
.ornament img { width: 150px; height: 28px; opacity: 0.5; }

.warn-box {
  background: #f2ede8; border-left: 3px solid var(--sudan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.6rem; margin: 1.5rem 0;
}
.warn-box p { margin: 0; font-size: 0.97rem; color: var(--text-mid); }

.step-list { list-style: none; padding: 0; counter-reset: steps; }
.step-list li { counter-increment: steps; display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.step-list li::before {
  content: counter(steps);
  background: var(--slate); color: var(--sulphur);
  width: 27px; height: 27px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; flex-shrink: 0; margin-top: 0.15rem;
}

.produkt-card { background: linear-gradient(160deg, color-mix(in srgb, var(--sudan) 8%, var(--white)) 0%, color-mix(in srgb, var(--sudan) 22%, var(--white)) 100%); border: 1px solid var(--border); border-top: 3px solid var(--sudan); border-radius: var(--radius-lg); padding: 2rem; margin: 1.5rem 0; box-shadow: var(--shadow-sm); }
.produkt-card .tag {
  display: inline-block; background: var(--cream); color: var(--andover);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.22rem 0.75rem; border-radius: 50px; border: 1px solid var(--border); margin-bottom: 0.75rem;
}
.produkt-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--slate); margin-bottom: 0.5rem; }
.produkt-card p { font-size: 0.97rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.72; }
.produkt-card .pros { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.produkt-card .pros li { font-size: 0.93rem; color: var(--text-mid); padding: 0.2rem 0; }
.produkt-card .pros li::before { content: "✓  "; color: var(--andover); font-weight: 700; }
.btn-affiliate {
  display: inline-block; background: var(--sudan); color: var(--sulphur);
  padding: 0.68rem 1.5rem; border-radius: var(--radius); font-size: 0.88rem; font-weight: 600; transition: background 0.2s;
}
.btn-affiliate:hover { background: var(--sudan-dark); text-decoration: none; color: var(--sulphur); }
.affiliate-hint { font-size: 0.73rem; color: var(--text-light); display: block; margin-top: 0.6rem; }

/* ===== FOOTER ===== */
footer { background: var(--sumi); color: rgba(245,236,194,0.5); padding: 3rem 2rem 2rem; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(245,236,194,0.08); margin-bottom: 1.5rem;
}
.footer-brand .logo { color: var(--sulphur); font-size: 1.35rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 { color: rgba(245,236,194,0.8); font-size: 0.78rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: 0.07em; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(245,236,194,0.45); font-size: 0.83rem; margin-bottom: 0.4rem; }
.footer-col a:hover { color: rgba(245,236,194,0.85); text-decoration: none; }
.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(245,236,194,0.28); }

/* ===== SANFTES EINBLENDEN BEIM SCROLLEN ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header { padding: 0 1.25rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .vorsorge-inner { flex-direction: column; padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .article-body { padding: 2rem 1.25rem; }
  .personal-note { margin: 2rem 1rem; padding: 1.5rem 1.75rem; }
}
@media (max-width: 480px) {
  nav a:not(.nav-cta):not(.active) { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
