/* ═══════════════════════════════════════════
   Bewusstseinsbox · style.css
   ═══════════════════════════════════════════ */

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

:root {
  --navy:        #0F2240;
  --navy-mid:    #1A3A5C;
  --teal:        #1A6B72;
  --teal-light:  #E8F4F5;
  --gold:        #C9A84C;
  --gold-light:  #FBF5E6;
  --off-white:   #F7F5F0;
  --slate:       #4A5568;
  --light:       #718096;
  --rule:        #CBD5E0;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: 5rem 1.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 34, 64, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__brand span { color: var(--gold); }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav__links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(26, 107, 114, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; }

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* Signature element: the pause line */
.pause-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
  animation: drawLine 1.2s ease-out 0.3s forwards;
}
@keyframes drawLine {
  to { width: 120px; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 50ch;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.hero__meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: #d4b05a; }
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero__frankl {
  margin-top: 4rem;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  max-width: 55ch;
}
.hero__frankl p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.hero__frankl cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════ */
.problem {
  padding: var(--section-pad);
  background: var(--off-white);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.section-eyebrow {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.problem__stats {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-top: 2rem;
}
.stat {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3.5rem;
}
.stat__label {
  font-size: 0.9rem;
  color: var(--slate);
  padding-top: 0.5rem;
}

.problem__text p { margin-bottom: 1.25rem; font-size: 1rem; }

/* ══════════════════════════════════════════
   PROGRAM SECTION
══════════════════════════════════════════ */
.program {
  padding: var(--section-pad);
  background: var(--white);
}
.program__header { text-align: center; max-width: 60ch; margin: 0 auto 3rem; }
.program__header p { font-size: 1rem; color: var(--slate); margin-top: 1rem; }

.weeks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.weeks-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.weeks-table th:first-child { border-radius: 2px 0 0 0; min-width: 120px; }
.weeks-table th:last-child { border-radius: 0 2px 0 0; }
.weeks-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.weeks-table tr:nth-child(even) td { background: var(--off-white); }
.weeks-table tr:hover td { background: var(--teal-light); }
.week-label {
  font-weight: 700; color: var(--navy);
  font-size: 0.8rem;
  white-space: nowrap;
}
.week-label--special { color: var(--teal); }
.weeks-table tr.special td { background: var(--gold-light) !important; }

.program__note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  font-size: 0.9rem;
  color: var(--slate);
}

/* ══════════════════════════════════════════
   NUTZEN / BENEFITS
══════════════════════════════════════════ */
.benefits {
  padding: var(--section-pad);
  background: var(--navy);
}
.benefits__header { text-align: center; max-width: 55ch; margin: 0 auto 3rem; }
.benefits__header .section-title { color: var(--white); }
.benefits__header .section-eyebrow { color: var(--gold); }
.benefits__header p { color: rgba(255,255,255,0.6); margin-top: 1rem; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.07); }
.benefit-card__num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.benefit-card__text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ══════════════════════════════════════════
   HALTUNG / DISTINKTIV
══════════════════════════════════════════ */
.haltung {
  padding: var(--section-pad);
  background: var(--teal-light);
}
.haltung__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.haltung__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.haltung__text p { margin-bottom: 1rem; font-size: 0.95rem; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  padding: var(--section-pad);
  background: var(--off-white);
}
.about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.about__photo-wrap {
  position: relative;
}
.about__photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(10%);
}
.about__photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--navy);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about__photo-wrap::after {
  content: '';
  position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.about__certs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.5rem;
}
.cert-tag {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  border-radius: 2px;
}
.about__text p { margin-bottom: 1.1rem; font-size: 0.975rem; }
.about__text strong { color: var(--navy); font-weight: 600; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  padding: var(--section-pad);
  background: var(--teal);
  text-align: center;
}
.cta-section .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 50ch; margin: 0 auto 2rem; font-size: 1rem; }
.btn--white {
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
}
.btn--white:hover { background: var(--off-white); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 2.5rem 1.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.3);
  z-index: 999;
  padding: 1rem 1.5rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner p { color: rgba(255,255,255,0.75); font-size: 0.85rem; flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn--cookie-accept {
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1.25rem; font-size: 0.8rem; font-weight: 700;
  border-radius: 2px; border: none; cursor: pointer;
  letter-spacing: 0.04em;
}
.btn--cookie-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  padding: 0.5rem 1.25rem; font-size: 0.8rem;
  border-radius: 2px; border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
}
.btn--cookie-decline:hover { color: var(--white); }

/* ══════════════════════════════════════════
   INNER PAGES (Impressum / Datenschutz)
══════════════════════════════════════════ */
.inner-hero {
  padding: 8rem 1.5rem 3rem;
  background: var(--navy);
}
.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 700;
}
.inner-hero p {
  color: rgba(255,255,255,0.5); margin-top: 0.5rem; font-size: 0.9rem;
}

.inner-content {
  padding: 4rem 1.5rem 5rem;
  background: var(--off-white);
}
.inner-content .container { max-width: 720px; }
.inner-content h2 {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--navy); margin: 2.5rem 0 0.75rem; font-weight: 700;
}
.inner-content h3 {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.inner-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.inner-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.inner-content li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.inner-content a { color: var(--teal); text-decoration: underline; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .problem__grid,
  .haltung__grid,
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits__grid { grid-template-columns: 1fr; }
  .about__photo-wrap { max-width: 280px; }
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 1rem; }
  .footer__inner { flex-direction: column; text-align: center; }
  .weeks-table { font-size: 0.8rem; }
  .weeks-table td, .weeks-table th { padding: 0.6rem 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .pause-line { animation: none; width: 120px; }
}
