@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/playfair-display-latin-400-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/inter-latin-400-600.woff2") format("woff2");
}

:root {
  --color-bg: #faf7f1;
  --color-bg-alt: #f1ece2;
  --color-ink: #2a2622;
  --color-ink-soft: #57514a;
  --color-accent: #2f4a43;
  --color-accent-soft: #e4e0d4;
  --color-gold: #a9895a;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-ink);
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0 0 12px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(42, 38, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-ink);
  letter-spacing: 0.015em;
}

.brand-suffix {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.nav-cta {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 18px;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-ink);
  color: var(--color-bg);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 56px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: hero-breathe ease-in-out infinite;
}

.glow-1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -100px;
  background: var(--color-accent);
  animation-duration: 19s;
}

.glow-2 {
  width: 380px;
  height: 380px;
  top: -80px;
  right: -120px;
  background: var(--color-gold);
  animation-duration: 23s;
  animation-delay: -7s;
}

.glow-3 {
  width: 320px;
  height: 320px;
  bottom: -180px;
  left: 28%;
  background: var(--color-accent);
  animation-duration: 27s;
  animation-delay: -13s;
}

@keyframes hero-breathe {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.16; }
  50% { transform: scale(1.18) translate(16px, 10px); opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .glow {
    animation: none;
    opacity: 0.2;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}

.hero-text {
  max-width: 560px;
}

.hero-photo {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 3 / 4;
  align-self: flex-start;
  margin-top: -16px;
  transform: translateX(24px);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  margin-bottom: 28px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

/* Buttons */

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(47, 74, 67, 0.25);
}

/* Sections */

.section {
  padding: 96px 0;
}

.section-alt {
  background: rgba(241, 236, 226, 0.95);
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 680px;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--color-ink-soft);
  max-width: 680px;
  margin-bottom: 56px;
}

/* Card grid */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.card {
  background: #fff;
  border: 1px solid rgba(42, 38, 34, 0.08);
  border-radius: 16px;
  padding: 32px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--color-ink-soft);
  font-size: 0.98rem;
}

/* Process */

.process-title {
  font-size: 1.3rem;
  margin-bottom: 36px;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-steps li {
  display: flex;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.process-steps h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-steps p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

/* Fit list */

.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  max-width: 900px;
}

.fit-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Über mich */

.about-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

.about-photo {
  width: 240px;
  height: 240px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-bottom: 6px;
}

.about-role {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.about-bio {
  color: var(--color-ink-soft);
  font-size: 1.02rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.mission {
  margin: 0;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--color-accent);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-ink);
  max-width: 620px;
}

.story-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
}

.story-link:hover {
  text-decoration: underline;
}

/* Kontakt */

.kontakt-inner {
  max-width: 720px;
}

.kontakt-details {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.kontakt-info p {
  margin: 0 0 6px;
  color: var(--color-ink-soft);
}

.kontakt-info p:first-child {
  color: var(--color-ink);
  font-weight: 600;
}

/* Über mich (Story-Seite) */

.section.story-hero-wrap {
  padding-bottom: 0;
}

.story-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 72px 0 24px;
}

.story-photo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.story-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 8px;
}

.section.story-content {
  padding-top: 0;
  padding-bottom: 40px;
}

.story-content p {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 22px;
}

.story-content .mission {
  margin: 40px 0;
}

.story-cta {
  margin-top: 12px;
}

/* Kontaktformular */

.contact-form {
  max-width: 560px;
  margin-top: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  max-width: 560px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-feedback.success {
  background: #e6efe9;
  color: var(--color-accent);
  border: 1px solid rgba(47, 74, 67, 0.25);
}

.form-feedback.error {
  background: #f7e9e6;
  color: #8a3b2e;
  border: 1px solid rgba(138, 59, 46, 0.25);
}

.contact-direct {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(42, 38, 34, 0.1);
}

.contact-direct p {
  margin-bottom: 6px;
}

/* Legal pages (Impressum, Datenschutz) */

.legal-main {
  padding: 64px 0 96px;
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 44px 0 14px;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
}

.legal-content h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-ink);
  margin: 20px 0 8px;
}

.legal-content .caps-notice {
  font-size: 0.85rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-ink-soft);
  font-size: 1rem;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--color-accent);
}

.legal-content a.btn-primary {
  color: #fff;
}

.legal-content strong {
  color: var(--color-ink);
}

.draft-banner {
  background: var(--color-accent-soft);
  border: 1px solid rgba(169, 137, 90, 0.4);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.draft-banner strong {
  color: var(--color-ink);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(42, 38, 34, 0.08);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--color-ink-soft);
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.disclaimer {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .fit-list {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-bio,
  .mission {
    max-width: 100%;
  }

  .mission {
    text-align: left;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-photo {
    width: 220px;
    align-self: center;
    margin-top: 0;
    transform: none;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* Fallende Geldscheine im Hintergrund – dezent, langsam, hinter allen Inhalten */

.bg-money {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.bg-money .note {
  position: absolute;
  top: -12%;
  width: 50px;
  height: 29px;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  opacity: 0.4;
  animation: bg-money-fall linear infinite;
}

.bg-money .note::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
}

.bg-money .note::after {
  content: "€";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--color-gold);
}

.bg-money .note:nth-child(1) { left: 6%;  width: 46px; height: 27px; animation-duration: 42s; animation-delay: -6s; }
.bg-money .note:nth-child(2) { left: 18%; width: 60px; height: 34px; animation-duration: 50s; animation-delay: -24s; }
.bg-money .note:nth-child(2)::after { font-size: 17px; }
.bg-money .note:nth-child(3) { left: 32%; width: 42px; height: 24px; animation-duration: 37s; animation-delay: -14s; }
.bg-money .note:nth-child(3)::after { font-size: 13px; }
.bg-money .note:nth-child(4) { left: 48%; width: 52px; height: 30px; animation-duration: 46s; animation-delay: -34s; }
.bg-money .note:nth-child(5) { left: 63%; width: 48px; height: 28px; animation-duration: 40s; animation-delay: -10s; }
.bg-money .note:nth-child(6) { left: 78%; width: 62px; height: 35px; animation-duration: 53s; animation-delay: -28s; }
.bg-money .note:nth-child(6)::after { font-size: 18px; }
.bg-money .note:nth-child(7) { left: 90%; width: 44px; height: 25px; animation-duration: 39s; animation-delay: -18s; }
.bg-money .note:nth-child(7)::after { font-size: 13px; }

@keyframes bg-money-fall {
  0%   { transform: translateY(0) translateX(0) rotate(-4deg); }
  50%  { transform: translateY(55vh) translateX(16px) rotate(5deg); }
  100% { transform: translateY(118vh) translateX(-12px) rotate(-6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .bg-money {
    display: none;
  }
}

/* Cursor-Leuchtspur – dezent, nur bei echter Maus (kein Touch) */

.cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cursor-trail.is-active {
  opacity: 1;
}

.cursor-trail .dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
  transition: transform linear;
  filter: blur(0.5px);
}

.cursor-trail .dot:nth-child(1) { width: 13px; height: 13px; transition-duration: .05s; background: radial-gradient(circle, rgba(169, 137, 90, 0.65) 0%, rgba(169, 137, 90, 0) 70%); }
.cursor-trail .dot:nth-child(2) { width: 11px; height: 11px; transition-duration: .10s; background: radial-gradient(circle, rgba(169, 137, 90, 0.50) 0%, rgba(169, 137, 90, 0) 70%); }
.cursor-trail .dot:nth-child(3) { width: 10px; height: 10px; transition-duration: .16s; background: radial-gradient(circle, rgba(169, 137, 90, 0.38) 0%, rgba(169, 137, 90, 0) 70%); }
.cursor-trail .dot:nth-child(4) { width: 9px;  height: 9px;  transition-duration: .23s; background: radial-gradient(circle, rgba(169, 137, 90, 0.26) 0%, rgba(169, 137, 90, 0) 70%); }
.cursor-trail .dot:nth-child(5) { width: 8px;  height: 8px;  transition-duration: .32s; background: radial-gradient(circle, rgba(169, 137, 90, 0.16) 0%, rgba(169, 137, 90, 0) 70%); }

@media (hover: none), (pointer: coarse) {
  .cursor-trail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-trail {
    display: none;
  }
}
