/* =========================================================
   Trau(m)worte – Nachbau der Jimdo-Seite
   Schriften: Playfair Display (Titel) + Mukta (Text)
   Farben:  Anthrazit #323335 · Dunkelgrün #364242 · Weiss
   ========================================================= */

:root {
  --ink: #323335;
  --dark: #364242;
  --dark-hover: #2b3535;
  --bg: #ffffff;
  --sand: #e7e1d7;
  --muted: #6f6f72;
  --line: #e5e2dc;
  --maxw: 1200px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Mukta", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.1em; }

.italic { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 74px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-header--solid {
  position: sticky;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-side { flex: 1 1 0; display: flex; align-items: center; gap: 14px; min-width: 0; }
.header-side--right { justify-content: flex-end; }

.nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .18s, opacity .18s;
}
.nav a:hover { opacity: .7; }
.nav a[aria-current="page"] { border-bottom-color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, opacity .18s;
}
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--dark-hover); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { opacity: .88; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.icon-link {
  display: inline-flex;
  width: 26px; height: 26px;
  color: var(--ink);
}
.icon-link svg { width: 100%; height: 100%; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 0 90px;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,32,30,.28), rgba(30,32,30,.42));
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p { color: #fff; font-size: 1.15rem; margin-bottom: 1.8em; }
.hero .scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: #fff; opacity: .85; font-size: 1.4rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: 118px; }
.page-hero h1 { margin-bottom: .3em; }

/* Über mich – zweispaltiger Hero */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.split__media img {
  width: 100%; height: 100%; max-height: 620px; object-fit: cover; border-radius: 4px;
}
.prose { max-width: 720px; }
.prose p { color: var(--ink); }
.center { text-align: center; }
.measure { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- Ablauf (5 Spalten) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.step__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; margin-bottom: 18px; border-radius: 3px; }
.step h3 { min-height: 2.6em; }
.step p { font-size: .98rem; color: var(--ink); }

/* Nummer-Badge je Schritt */
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
  margin: 0 0 14px;
}

/* ---------- Scroll-Reveal (nur bei aktivem JS) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Lightbox ---------- */
.gallery img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 22, 21, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  width: auto; height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 50px rgba(0,0,0,.5);
}
.lightbox__btn {
  position: absolute;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
  .lightbox__btn { width: 44px; height: 44px; }
}

/* ---------- Kontaktformular ---------- */
.contact-form {
  max-width: 620px;
  margin: 8px auto 0;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: block;
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(54,66,66,.12);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.form-hint { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- Preise ---------- */
.price-block h3 { margin-top: 1.6em; }
.price-key { color: var(--dark); font-weight: 600; }
.price-list { padding-left: 1.1em; margin: 0 0 1.2em; }
.price-list li { margin-bottom: .35em; }
.note {
  background: var(--sand);
  border-radius: 6px;
  padding: 22px 26px;
  margin-top: 1.6em;
}
.note p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.contact-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 12px;
}
.contact-cols h3 { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; margin-bottom: .5em; }
.contact-cols a:hover { color: var(--dark); text-decoration: underline; }

.wa-banner {
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.wa-banner strong { font-size: 1.2rem; display: inline-flex; align-items: center; gap: 12px; }
.wa-banner svg { width: 26px; height: 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 40px 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { opacity: .8; }
.footer-brand { opacity: .85; font-family: var(--serif); letter-spacing: 2px; }

/* ---------- Sticky WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  z-index: 60;
  color: #25D366;
}
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Cookie-Banner (schlank, ohne Tracking) ---------- */
.cookie {
  position: fixed;
  bottom: 16px; left: 16px;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  border-radius: 10px;
  padding: 20px 22px;
  z-index: 70;
  font-size: .93rem;
}
.cookie h4 { font-family: var(--serif); margin: 0 0 .4em; font-size: 1.15rem; }
.cookie p { margin: 0 0 1em; color: var(--muted); }
.cookie__row { display: flex; gap: 10px; }
.cookie .btn { padding: 10px 16px; font-size: .92rem; }
.is-hidden { display: none !important; }

/* ---------- Legal pages ---------- */
.legal { padding-top: 118px; }
.legal h2 { font-size: 1.35rem; margin-top: 1.6em; }
.legal p, .legal li { color: var(--ink); }
.legal .measure { max-width: 820px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-cols { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); background: #faf8f4; }
  .site-header { background: #fff; position: sticky; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .header-side--right .btn--dark { display: none; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
