/* ==========================================================================
   Genuvita Vitale – Landingpage
   Design tokens
   ========================================================================== */
:root {
  --bianco: #FAF7F0;
  --oliva: #4A5240;
  --oliva-dark: #3c4334;
  --salvia: #8B9178;
  --terra: #A8672F;
  --carbone: #2B2A26;
  --sabbia: #EDE6D6;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Karla', sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bianco);
  color: var(--carbone);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.font-serif { font-family: var(--font-serif); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Scroll-reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Icons (inline SVG sprite, referenced via <use>)
   ========================================================================== */
.icon { display: block; }
.icon-branch { width: 120px; height: 40px; color: var(--salvia); }
.icon-divider { width: 160px; height: 32px; color: var(--salvia); }
.icon-leaf { width: 20px; height: 20px; color: var(--terra); flex-shrink: 0; }

.divider {
  display: flex;
  justify-content: center;
  padding: 8px 0 40px;
}

/* ==========================================================================
   Typography utilities
   ========================================================================== */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin: 0 0 20px;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: #D9C9A3; }

.lead {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--oliva);
  color: var(--bianco);
  font-size: 16px;
  padding: 18px 36px;
}
.btn-primary:hover {
  background: var(--oliva-dark);
  box-shadow: 0 8px 24px rgba(74, 82, 64, 0.25);
}
.btn-secondary {
  background: var(--bianco);
  color: var(--oliva);
  font-weight: 700;
  font-size: 17px;
  padding: 20px 44px;
}
.btn-secondary:hover {
  background: #F0ECDF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Section layout
   ========================================================================== */
.section {
  margin: 0 auto;
  padding: 24px 24px 96px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  max-width: 1000px;
  padding: 96px 24px 72px;
  text-align: center;
}
.hero__branch {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
}
.hero__eyebrow { margin: 64px 0 28px; }
.hero__title {
  font-weight: 600;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--oliva);
  margin: 0 0 28px;
}
.hero__lead {
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero__note {
  font-size: 13px;
  color: var(--salvia);
  margin: 16px 0 56px;
}
.hero__mockup-frame {
  background: var(--sabbia);
  border-radius: 16px;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
}

/* Book mockup */
.book-mockup {
  width: 200px;
  height: 270px;
  background: var(--oliva);
  border-radius: 3px 8px 8px 3px;
  box-shadow: 0 20px 40px rgba(43, 42, 38, 0.25), inset -6px 0 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.book-mockup__eyebrow {
  font-style: italic;
  color: var(--sabbia);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.book-mockup__title {
  font-weight: 600;
  color: var(--bianco);
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
}
.book-mockup__divider { margin-top: 18px; color: var(--salvia); }
.book-mockup__caption {
  font-family: var(--font-sans);
  color: #C9CBB8;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 18px;
}

/* ==========================================================================
   Problem section
   ========================================================================== */
.problem { max-width: 680px; text-align: left; padding-bottom: 88px; }
.problem__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--oliva);
  margin: 0 0 24px;
}

/* ==========================================================================
   Program (4 weeks)
   ========================================================================== */
.program { max-width: 1080px; text-align: center; }
.program__title {
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--oliva);
  margin: 0 0 56px;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  text-align: left;
}
.week-card {
  background: var(--sabbia);
  border-radius: 14px;
  padding: 32px 28px;
}
.week-card__label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin: 0 0 12px;
}
.week-card__title {
  font-weight: 600;
  font-size: 24px;
  color: var(--oliva);
  margin: 0 0 12px;
}
.week-card__text { font-size: 16px; line-height: 1.6; margin: 0; }

/* ==========================================================================
   Program contents (feature list)
   ========================================================================== */
.contents { max-width: 720px; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item__icon { margin-top: 4px; }
.feature-item__text { font-size: 17px; line-height: 1.7; margin: 0; }
.feature-item__text strong { color: var(--oliva); }

/* ==========================================================================
   Audience (for whom / not for whom)
   ========================================================================== */
.audience { max-width: 1000px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.audience-col__title {
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 20px;
}
.audience-col--yes .audience-col__title { color: var(--oliva); }
.audience-col--no .audience-col__title { color: var(--carbone); }
.audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.audience-item {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
}
.audience-item__marker { flex-shrink: 0; }
.audience-col--yes .audience-item__marker { color: var(--oliva); }
.audience-col--no .audience-item__marker { color: var(--terra); }
.audience-col--no .audience-item { color: #55534c; }

/* ==========================================================================
   About (Eleonore)
   ========================================================================== */
.about { max-width: 680px; text-align: center; }
.about__text { text-align: left; margin: 0 0 36px; }
.about__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  color: var(--oliva);
  margin: 0;
}

/* ==========================================================================
   Pricing / CTA
   ========================================================================== */
.pricing {
  background: var(--oliva);
  color: var(--bianco);
  padding: 96px 24px;
  text-align: center;
}
.pricing__inner { max-width: 640px; margin: 0 auto; }
.pricing__title {
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin: 0 0 28px;
}
.pricing__lead { font-size: 18px; line-height: 1.7; margin: 0 0 40px; color: #EFE9DC; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.price-old {
  font-size: 26px;
  color: #C9C2AE;
  text-decoration: line-through;
  text-decoration-color: #C9C2AE;
}
.price-new { font-weight: 600; font-size: 56px; color: #E4A860; }
.pricing__terms { font-size: 14px; color: #D9CFB8; margin: 0 0 40px; }
.pricing__note { font-size: 13px; color: #C9C2AE; margin: 24px 0 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 680px; }
.faq-item {
  border-bottom: 1px solid var(--sabbia);
  padding: 20px 0;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  color: var(--oliva);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-plus {
  font-size: 22px;
  color: var(--terra);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-answer { font-size: 16px; line-height: 1.7; margin: 16px 0 0; }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.closing { max-width: 680px; text-align: center; padding-bottom: 112px; }
.closing__branch { display: flex; justify-content: center; }
.closing__text {
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.3;
  color: var(--oliva);
  margin: 32px 0 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--carbone);
  color: #E9E5D8;
  padding: 48px 24px;
  text-align: center;
}
.site-footer__brand {
  font-size: 18px;
  font-style: italic;
  margin: 0 0 14px;
  color: var(--bianco);
}
.site-footer__disclaimer {
  font-size: 13px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 20px;
  color: #B9B4A4;
}
.site-footer__links {
  font-size: 13px;
  margin: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer__links a { color: #B9B4A4; text-decoration: none; }

/* ==========================================================================
   Legal pages (Impressum, Datenschutz, AGB, Widerruf)
   ========================================================================== */
.legal-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 0;
}
.legal-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--oliva);
  text-decoration: none;
  font-weight: 600;
}
.legal-header__back:hover { text-decoration: underline; }

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 96px;
}
.legal__title {
  font-weight: 600;
  font-size: clamp(30px, 4vw, 40px);
  color: var(--oliva);
  margin: 0 0 8px;
}
.legal__stand {
  font-size: 13px;
  color: var(--salvia);
  margin: 0 0 40px;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--oliva);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.legal-content li { font-size: 16px; line-height: 1.7; margin-bottom: 4px; }
.legal-content a { color: var(--terra); }
.legal-content strong { color: var(--carbone); }
