/* ── tharamon.com — V1 ─────────────────────────────────── */
/* Palette: Creme-Grund, sattes Grün, schwarze Wortmarke    */

:root {
  --cream:      #F6F1E6;
  --cream-deep: #EDE5D3;
  --ink:        #131311;
  --green:      #2E7D46;
  --green-deep: #1F5C33;
  --green-tint: #DFECDF;
  --muted:      #6E6A5E;
  --line:       #E3DAC7;
  --maxw:       640px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--green-tint); }

a { color: var(--green-deep); text-underline-offset: 3px; }
a:hover { color: var(--green); }
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Organische Hintergrund-Formen ── */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.blob-a {
  width: 46vw; height: 46vw;
  background: var(--green-tint);
  top: -12vw; right: -14vw;
  animation: drift 18s ease-in-out infinite alternate;
}
.blob-b {
  width: 38vw; height: 38vw;
  background: var(--cream-deep);
  bottom: -10vw; left: -12vw;
  animation: drift 24s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  to { transform: translate(4vw, 2vw) scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-blob { animation: none; }
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}
.hero .mark {
  width: min(760px, 88vw);
  height: auto;
}
.tagline {
  margin-top: 34px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 2.1;
  color: var(--green-deep);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: min(680px, 92vw);
}
.tagline .dot { color: var(--green); margin: 0 0.4em; }
.tagline .ph { white-space: nowrap; }
.scroll-cue {
  position: absolute;
  bottom: 26px;
  color: var(--muted);
  font-size: 20px;
  text-decoration: none;
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

/* ── Wellen-Divider ── */
.wave {
  display: block;
  width: 100%;
  height: 64px;
}

/* ── Sektionen ── */
section { padding: 88px 24px; }
.inner { max-width: var(--maxw); margin: 0 auto; }

.label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--green-deep);
  margin-bottom: 26px;
}
.label::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.about p { font-size: 1.05rem; max-width: 58ch; margin-bottom: 1.1em; }
.about p:last-child { margin-bottom: 0; }
.origin {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── Story-Vers ── */
.story { text-align: center; padding-top: 12px; }
.story .verse {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 2.1;
  max-width: none;
}
.story .verse-end {
  margin-top: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
}

/* ── Booking ── */
.booking { background: var(--green-tint); }
.booking p { max-width: 52ch; }
.btn {
  display: inline-block;
  margin-top: 22px;
  background: var(--ink);
  color: var(--cream);
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  background: var(--green-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.socials p { color: var(--muted); font-size: 0.98rem; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--line);
  padding: 42px 24px 48px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}
footer a { color: var(--muted); }
footer a:hover { color: var(--green-deep); }
footer .foot-mark {
  width: 132px;
  opacity: 0.85;
  margin-bottom: 18px;
}

/* ── Dokument-Seiten (Impressum/Datenschutz/404) ── */
.docpage main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px 80px;
}
.docpage h1 { font-size: 1.7rem; line-height: 1.3; margin-bottom: 28px; }
.docpage h2 { font-size: 1.12rem; margin: 34px 0 10px; }
.docpage p, .docpage li { margin-bottom: 0.9em; max-width: 65ch; }
.docpage ul { padding-left: 1.2em; }
.backlink {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--muted);
}
.backlink:hover { color: var(--green-deep); }

/* ── Mobil ── */
@media (max-width: 560px) {
  section { padding: 64px 20px; }
  .tagline { font-size: 12px; letter-spacing: 0.15em; padding: 0 16px; }
  .hero .mark { width: 94vw; }
}
