/* site.css — geteilte Basis- & Komponenten-Styles für alle Seiten
   (extrahiert aus index.html; Werte 1:1). Tailwind-Utilities kommen aus styles.css. */

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #F6F2EC;
  color: #161512;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.font-serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.display { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.025em; line-height: 0.96; }
/* Hero-Titel — eigene Größe (Tailwind text-8xl ist nicht im Build) */
.hero-title { font-size: clamp(2.75rem, 8vw, 6.5rem); line-height: 0.94; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6E6A60;
}
.hairline { border-color: #E5DFD5; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Numbered section markers */
.sec-num { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

/* Form */
.field {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,241,232,0.25);
  padding: 14px 0 12px;
  font-family: inherit;
  font-size: 15px;
  color: #F5F1E8;
  width: 100%;
  outline: none;
  transition: border-color .2s ease;
}
.field:focus { border-bottom-color: #F5F1E8; }
.field::placeholder { color: rgba(245,241,232,0.45); }
.field-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
  font-weight: 500;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: #161512;
  color: #F6F2EC;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: background .2s ease, transform .2s ease;
}
.btn-primary:hover { background: #C2643A; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  color: #161512;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #161512;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: #161512; color: #F6F2EC; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: #161512;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s, gap .2s;
}
.arrow-link:hover { color: #C2643A; gap: 12px; }

/* Pricing */
.price-card {
  background: #FBF8F3;
  border: 1px solid #E5DFD5;
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: #161512;
  color: #F6F2EC;
  border-color: #161512;
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -18px rgba(20,18,15,0.35);
}
.price-card.featured .feature-row { border-color: #2A2823; }
.price-card.featured .check { color: #C2643A; }
.price-card.featured .muted-text { color: #B0AB9F; }
.price-custom {
  background: #F6F2EC;
  border: 1px solid #E5DFD5;
  border-radius: 18px;
  padding: 40px 36px;
}
@media (min-width: 1024px) { .price-custom { padding: 48px 56px; } }
.feature-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #E5DFD5;
  font-size: 14px;
}
.check { color: #C2643A; flex-shrink: 0; }
.cross { color: #B0AB9F; flex-shrink: 0; }

/* Process steps */
.step-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: #C2643A;
}

/* Mobile menu — geschlossen unklickbar & unsichtbar */
.mobile-nav {
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s .35s;
}
.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
}

/* Section anchor offset */
section { scroll-margin-top: 80px; }
