/* ==========================================================================
   Selbstbestimmt & Stark — Apex-Landing (selbstbestimmt-und-stark.de)
   Pixel-treu nach Claude-Design-Handoff 2026-07-13. Kein JavaScript.
   Palette: Creme #F6F0E7 · Wein #5A1E28 · Rot #A32438 · Terracotta #C4735E ·
            Grün #5E7A63 · Text #3A2C2A / #6E5F54
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #F6F0E7;
  color: #3A2C2A;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #5A1E28; }
::selection { background: #C4735E; color: #F6F0E7; }

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

.page {
  min-height: 100vh;
  background: #F6F0E7;
  background-image: radial-gradient(120% 90% at 50% -10%, #FBF7F0 0%, #F6F0E7 45%, #F1E9DC 100%);
  display: flex;
  flex-direction: column;
}

/* --- Floating „Zu Dana"-Pill ---------------------------------------------- */
.dana-pill {
  position: fixed;
  top: 96px;
  right: 32px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 24px;
  background: rgba(251, 247, 241, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #E4D3C4;
  border-radius: 999px;
  box-shadow: 0 20px 48px -20px rgba(90, 30, 40, 0.5);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.dana-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px -20px rgba(90, 30, 40, 0.6);
}
.dana-pill-text { display: flex; flex-direction: column; line-height: 1.2; }
.dana-pill-kicker {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B0A092;
}
.dana-pill-label { font-size: 16.5px; font-weight: 600; color: #5A1E28; }
.dana-pill-avatar {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: #F3E4DA;
  box-shadow: 0 0 0 2px #F6F0E7;
}
.dana-pill-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }

/* --- Kopfzeile -------------------------------------------------------------- */
.hairline {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 34px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9C8C7E;
}

/* --- Hero ------------------------------------------------------------------- */
.hero {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 78px 40px 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 44px -22px rgba(90, 30, 40, 0.42);
  animation: riseIn 0.9s ease both;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-kicker {
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #C4735E;
  animation: riseIn 0.9s ease 0.05s both;
}
.hero h1 {
  margin-top: 20px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #A32438;
  max-width: 14ch;
  animation: riseIn 1s ease 0.1s both;
}
.hero h1 em { font-style: italic; color: #5E7A63; }
.hero-sub {
  margin-top: 26px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.6;
  color: #6E5F54;
  max-width: 46ch;
  animation: riseIn 1s ease 0.16s both;
}
.hero-divider {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B0A092;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: riseIn 1s ease 0.22s both;
}
.hero-divider span { width: 34px; height: 1px; background: #D9CBBB; }

/* --- Kachel-Raster ------------------------------------------------------------ */
.tiles {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 40px 24px;
}
.tile-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FBF7F1;
  border: 1px solid #ECE0D2;
  border-radius: 22px;
  padding: 40px 38px 36px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
a.tile-terracotta:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(196, 115, 94, 0.55);
  border-color: #C4735E;
}
a.tile-green:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(94, 122, 99, 0.5);
  border-color: #5E7A63;
}

.tile-glow {
  position: absolute;
  inset: 0 0 auto auto;
  width: 200px;
  height: 200px;
  margin: -70px -70px 0 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 115, 94, 0.16), transparent 70%);
}
.glow-green { background: radial-gradient(circle, rgba(94, 122, 99, 0.16), transparent 70%); }
.glow-wine  { background: radial-gradient(circle, rgba(90, 30, 40, 0.12), transparent 70%); }

.tile-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 20px;
}
.num-terracotta { background: #F3E4DA; color: #C4735E; }
.num-green      { background: #E4EBE2; color: #5E7A63; }
.num-muted      { background: #EAE1D5; color: #A89684; }
.num-wine       { background: #F3E4DA; color: #5A1E28; }

.tile-kicker {
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.k-terracotta { color: #C4735E; }
.k-green      { color: #5E7A63; }
.k-muted      { color: #A89684; }
.k-wine       { color: #5A1E28; }

.tile h2 {
  margin-top: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #2C211E;
}
.tile p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.62;
  color: #6E5F54;
  max-width: 42ch;
}

.tile-cta {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: #5A1E28;
}
.tile-arrow { display: inline-block; transition: transform 0.4s ease; }
a.tile:hover .tile-arrow { transform: translateX(4px); }

/* Kachel 03 — bald verfügbar */
.tile-soon { background: #F4EFE8; border: 1px dashed #DCCFC0; }
.soon-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A89684;
  border: 1px solid #DCCFC0;
  border-radius: 999px;
  padding: 6px 12px;
}
.blur-soft { filter: blur(5px); opacity: 0.55; user-select: none; }
.soon-blur { filter: blur(8px); opacity: 0.55; user-select: none; pointer-events: none; }
.soon-blur h2 { color: #6B5F54; }
.soon-blur p { color: #8A7C6F; }
.cta-muted { color: #6B5F54; }
.soon-note {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.soon-note-line1 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: #5A1E28;
}
.soon-note-line2 { font-size: 13px; color: #8A7C6F; }

/* Kachel 04 — Über Dana */
.about-rows { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.about-row { display: flex; flex-direction: column; gap: 4px; }
.about-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.l-terracotta { color: #C4735E; }
.l-green      { color: #5E7A63; }
.l-wine       { color: #5A1E28; }
.about-text { font-size: 15px; line-height: 1.55; color: #4A3E36; }

/* --- Footer ------------------------------------------------------------------- */
.footer { margin-top: auto; border-top: 1px solid #E7DBCC; }
.footer-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 40px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: 12.5px; color: #9C8C7E; }
.footer-nav { display: flex; gap: 28px; font-size: 13px; color: #6E5F54; }
.footer-nav a { transition: color 0.3s ease; }

/* --- Mobil ---------------------------------------------------------------------- */
@media (max-width: 720px) {
  .tile-grid { grid-template-columns: 1fr; }

  .hairline { padding: 24px 24px 0; }
  .hero { padding: 56px 24px 38px; }
  .tiles { padding: 8px 24px 24px; }
  .footer-inner { padding: 26px 24px 34px; }
  .tile { padding: 32px 26px 30px; }
  .soon-note { left: 26px; right: 26px; bottom: 30px; }

  /* Pill unten mittig, kompakter — oben rechts wuerde er den Hero verdecken */
  .dana-pill {
    top: auto;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    padding: 8px 8px 8px 18px;
    gap: 12px;
    max-width: calc(100vw - 32px);
  }
  .dana-pill:hover { transform: translateX(50%); }
  .dana-pill-label { font-size: 14px; }
  .dana-pill-avatar { width: 46px; height: 46px; }
}
