/* ---------- Tokens ---------- */
:root {
  --primary: #b8442a;
  --primary-dark: #8a2e1c;
  --secondary: #1f3a5f;
  --accent: #e8b85d;
  --accent-soft: #f4d99a;
  --bg: #faf6ef;
  --surface: #ffffff;
  --text: #1c1c1c;
  --text-soft: #4a4a4a;
  --border: #e6dfd1;
  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 14px;
  --shadow-sm: 0 2px 6px rgba(31, 58, 95, 0.06);
  --shadow-md: 0 14px 40px rgba(31, 58, 95, 0.10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container { width: min(1120px, 92%); margin: 0 auto; }
section { padding: 6rem 0; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { color: var(--text-soft); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--secondary); }

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(232, 184, 93, 0.20), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(184, 68, 42, 0.12), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--primary);
}
.brand-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 7.5vw, 5.6rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--secondary);
  margin: 0 0 1.6rem;
  line-height: 1.25;
  font-style: italic;
}
.hero-tagline em {
  font-style: normal;
  color: var(--primary);
  font-weight: 600;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 0 2rem;
}
.cta-row {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}
.btn-ghost {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-ghost:hover {
  background: var(--secondary);
  color: white;
}

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 58, 95, 0.55));
}
.hero-card .hero-tag {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  color: white;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
}
.hero-badge {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--accent);
  color: var(--secondary);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transform: rotate(4deg);
  text-align: center;
  line-height: 1.2;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0 0 1rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* ---------- Mission strip ---------- */
.mission {
  background: var(--secondary);
  color: white;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(232, 184, 93, 0.18), transparent 55%);
  pointer-events: none;
}
.mission-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.mission-eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.mission h2 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin: 0 0 1.4rem;
}
.mission h2 em {
  font-style: normal;
  color: var(--accent);
}
.mission p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Features ---------- */
.features { background: var(--surface); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 920px;
  margin: 0 auto;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card.feature-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--accent-soft), #fff7e3);
  border-color: var(--accent);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: white;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  font-size: 1.6rem;
}
.feature-card-wide .feature-icon {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--secondary);
}
.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* ---------- So geht's – Ablauf ---------- */
.flow {
  display: grid;
  grid-template-columns: 1fr 0.4fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
  counter-reset: phase;
}
.flow-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
}
.flow-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  flex: 1;
}
.flow-card.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  border-color: var(--accent);
}
.flow-card.highlight h4 { color: var(--secondary); }
.flow-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--secondary);
}
.flow-card p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }
.flow-card.highlight p { color: rgba(31, 58, 95, 0.85); }
.flow-tag {
  position: absolute;
  top: -10px; left: 1.2rem;
  background: var(--secondary);
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.audience-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.audience-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.audience-card:hover img { transform: scale(1.05); }
.audience-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31, 58, 95, 0.85));
}
.audience-card .label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  color: white;
  z-index: 2;
}
.audience-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
}
.audience-card p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.9;
}

/* ---------- Story / Quote ---------- */
.story {
  position: relative;
  overflow: hidden;
}
.story::before {
  content: """;
  position: absolute;
  top: -3rem; left: 1rem;
  font-family: var(--font-heading);
  font-size: 18rem;
  color: var(--accent);
  opacity: 0.16;
  line-height: 1;
}
.story-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.story blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--secondary);
}
.story cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

/* ---------- Über uns ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.founder-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.founder-text h2 { text-align: left; }
.founder-text p {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin: 0 0 1.1rem;
}

/* ---------- Final CTA / Contact ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--secondary), #2d4f7a);
  color: white;
  text-align: center;
  padding: 5rem 0;
}
.cta-final h2 { color: white; margin-bottom: 1rem; }
.cta-final > .container > p {
  max-width: 580px;
  margin: 0 auto 0.5rem;
  opacity: 0.92;
  font-size: 1.08rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 720px;
  margin: 2.2rem auto 0;
}
.contact-card {
  display: block;
  padding: 1.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: white;
  text-align: left;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.3rem;
  color: white;
}
.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
  word-break: break-all;
}

/* ---------- Footer ---------- */
footer {
  background: #14283e;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
footer h5 {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0 0 0.8rem;
}
footer a { color: rgba(255, 255, 255, 0.78); }
footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.85rem;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  section { padding: 4rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-grid { grid-template-columns: 1fr; max-width: 100%; }
  .audience-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
  .founder { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}