/* ============================================
   RED'HAUS — Entwurf 2: „Die Seite ist das Gespräch"
   Kursive Serif = gesprochene Stimme / Sans = Antwort
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --paper: #FAF6EF;
  --paper-deep: #F1E8D9;
  --sand: #EAD9BC;
  --ink: #3E3833;
  --ink-soft: #6E655C;
  --red: #9A241C;
  --red-dark: #6E1712;
  --white: #FFFFFF;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Work Sans', -apple-system, sans-serif;

  --max-w: 1080px;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 550;
  line-height: 1.12;
  margin: 0 0 1rem;
}

/* Die „Stimme" — gesprochene Sätze, kursive Serif */
.voice {
  font-family: var(--display);
  font-style: italic;
  font-weight: 450;
  font-size: 1.15em;
  color: var(--ink-soft);
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: var(--sand); }

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-head {
  max-width: 620px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
.section-head p { color: var(--ink-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-icon { width: 1em; height: 1em; flex-shrink: 0; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(62,56,51,0.35);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-invert { background: var(--paper); color: var(--ink); }
.btn-invert:hover { background: var(--sand); color: var(--ink); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(62,56,51,0.08);
}
.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-link img { height: 46px; width: auto; display: block; }

@media (min-width: 880px) {
  .logo-link img { height: 52px; }
}

.nav-links { list-style: none; display: none; gap: 0.25rem; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: var(--ink); color: var(--white); }
.nav-cta { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; border-bottom: 1px solid rgba(62,56,51,0.08); background: var(--paper); }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; font-weight: 500; padding: 1rem 1.25rem; border-top: 1px solid rgba(62,56,51,0.07); }
.mobile-menu a.btn { margin: 1rem 1.25rem; justify-content: center; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 5rem 1.5rem 0;
  text-align: center;
  overflow: hidden;
}
.hero-inner { max-width: 760px; margin: 0 auto; }

.hero-questions {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2rem;
  min-height: 5.4em;
}
.hero-questions .q {
  font-family: var(--display);
  font-style: italic;
  font-weight: 450;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.hero-questions .q1 { animation-delay: 0.1s; }
.hero-questions .q2 { animation-delay: 0.35s; }
.hero-questions .q3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.85s forwards;
}
.hero-sub {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 1s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.1s forwards;
}

.soundwave path { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.hero-wave {
  display: block;
  width: min(680px, 90%);
  height: 48px;
  margin: 3.5rem auto 0;
  color: var(--red);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.25s forwards;
}

/* ============ OFFERS (Was Sie erwartet) ============ */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.offer {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(62,56,51,0.14);
}
.offer:last-child { border-bottom: 1px solid rgba(62,56,51,0.14); }

.offer-num { color: var(--red); }
.offer-num svg { width: 48px; height: 48px; font-family: var(--display); }

.offer-body h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.offer-body p { margin: 0 0 0.75rem; color: var(--ink-soft); }
.offer-body p.voice { margin-bottom: 1rem; }
.offer-body strong { color: var(--ink); }

.redlink {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-right: 1.5rem;
  margin-top: 0.25rem;
}
.redlink:hover { text-decoration: underline; }

@media (min-width: 760px) {
  .offer { grid-template-columns: 72px 220px 1fr; }
  .offer-body { display: contents; }
  .offer-body h3 { grid-column: 2; }
  .offer .offer-body > *:not(h3) { grid-column: 3; }
}
@media (max-width: 759px) {
  .offer { grid-template-columns: 44px 1fr; }
  .offer-num svg { width: 38px; height: 38px; }
}

/* ============ STEPS ============ */
.steps-section {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}
.steps-section h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  max-width: 560px;
  margin: 0 auto 3rem;
}
.steps-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}
.step h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.15rem;
}
.step p { color: rgba(255,255,255,0.65); margin: 0; }

.step-wave {
  width: 90px;
  height: 26px;
  color: var(--sand);
  transform: rotate(90deg);
}
.step-wave path { stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; }

@media (min-width: 700px) {
  .steps-row { flex-direction: row; justify-content: center; gap: 2rem; }
  .step-wave { transform: none; }
}

.steps-note {
  margin: 3rem auto 0;
  font-family: var(--display);
  font-style: italic;
  color: var(--sand);
  font-size: 1.15rem;
}

/* ============ DIALOG (Themen) ============ */
.dialog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .dialog-list { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

.dialog-item {
  background: var(--white);
  border: 1px solid rgba(62,56,51,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.dialog-item:hover {
  border-color: rgba(154,36,28,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(62,56,51,0.09);
}

.dialog-item .voice {
  display: block;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 1rem;
}

.shift {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}
.shift .from { color: var(--ink-soft); }
.shift .arrow { color: var(--red); font-weight: 700; }
.shift .to { color: var(--red-dark); font-weight: 700; }

.dialog-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dialog-label a { color: inherit; }

.dialog-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.dialog-item-link .voice { font-style: normal; font-weight: 550; }
.dialog-item-link:hover .dialog-more { text-decoration: underline; }

.dialog-item.marketing {
  background: var(--red);
  border-color: var(--red);
}
.dialog-item.marketing .voice { color: var(--white); }
.dialog-item.marketing .shift .to { color: var(--sand); }
.dialog-item.marketing .dialog-label { color: rgba(255,255,255,0.9); }

/* ============ BENEFIT ============ */
.benefit-section {
  background: var(--paper-deep);
  padding: 5.5rem 1.5rem;
}
.benefit-inner { max-width: 680px; }
.benefit-section h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); }

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem;
}
.benefit-list li {
  padding: 0.7rem 0 0.7rem 1.9rem;
  border-bottom: 1px solid rgba(62,56,51,0.12);
  position: relative;
  color: var(--ink-soft);
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 18px;
  height: 10px;
  background: none;
  border-bottom: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
}

.benefit-callout p { color: var(--ink-soft); font-size: 1.05rem; }
.benefit-callout .big {
  font-family: var(--display);
  font-style: italic;
  font-weight: 550;
  font-size: 1.35em;
  color: var(--red-dark);
}
.first-step { font-weight: 600; color: var(--ink) !important; }
.first-step a { color: var(--red); text-decoration: none; }
.first-step a:hover { text-decoration: underline; }

/* ============ MEDIENECHO ============ */
.press-section { background: var(--paper); }

.press-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.press-timeline::before {
  content: "";
  position: absolute;
  left: 2.1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: rgba(154,36,28,0.25);
}

.press-item {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.25rem;
  padding: 0 0 1.5rem;
}
.press-item:last-child { padding-bottom: 0; }

.press-year {
  align-self: start;
  justify-self: center;
  position: relative;
  z-index: 1;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.press-card {
  background: var(--white);
  border: 1px solid rgba(62,56,51,0.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.press-card:hover {
  border-color: rgba(154,36,28,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(62,56,51,0.09);
}

.press-source {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.press-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--ink);
}
.press-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.press-card-link { display: block; text-decoration: none; color: inherit; }
.press-listen { color: var(--red); font-weight: 600; font-size: 0.92rem; margin: 0.5rem 0 0; }
.press-card-link:hover .press-listen { text-decoration: underline; }

@media (max-width: 560px) {
  .press-timeline::before { left: 1.6rem; }
  .press-item { grid-template-columns: 3.2rem 1fr; gap: 0.9rem; }
  .press-year { font-size: 0.74rem; padding: 0.3rem 0.45rem; }
  .press-card { padding: 1.1rem 1.2rem; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .about-grid { grid-template-columns: 280px 1fr; gap: 3rem; }
}
.about-portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-name { font-size: clamp(1.5rem, 3.5vw, 2rem); }
.about-text p { color: var(--ink-soft); margin: 0 0 0.75rem; }
.about-text .tagline { color: var(--red-dark); font-size: 1.1rem; }

/* ============ CTA ============ */
.cta-strip {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 1.5rem;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin-bottom: 1.75rem;
}
.voice-light {
  font-style: italic;
  font-weight: 450;
  color: var(--sand);
  font-size: 0.75em;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--sand);
  padding: 4.5rem 1.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-brand img { height: 46px; margin-bottom: 1rem; }
.footer-brand p { color: var(--ink-soft); max-width: 34ch; margin: 0; }

.footer-contact a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.footer-contact a:hover { color: var(--red); }

.footer-location strong { display: block; margin-bottom: 0.2rem; }
.footer-location p { margin: 0 0 0.4rem; color: var(--ink-soft); }
.map-link { color: var(--red); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.map-link:hover { text-decoration: underline; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(62,56,51,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.footer-bottom a { text-decoration: none; font-weight: 500; color: var(--ink); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-legal-links { display: flex; gap: 1.25rem; }

/* Accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .hero-questions .q, .hero h1, .hero-sub, .hero-actions, .hero-wave { opacity: 1 !important; }
}

/* ============ UNTERSEITEN ============ */
.page-hero {
  text-align: center;
  padding: 4rem 1.5rem 1rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-hero .voice { font-size: 1.15rem; }

.content-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}
.content-narrow h2 {
  font-size: 1.3rem;
  margin: 2.25rem 0 0.6rem;
}
.content-narrow p, .content-narrow li { color: var(--ink-soft); }
.content-narrow a { color: var(--red); }
.content-narrow strong { color: var(--ink); }

.q-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
}
@media (min-width: 700px) { .q-grid { grid-template-columns: repeat(2, 1fr); } }
