/* =========================================================
   we5service – Stylesheet
   Farben aus dem Logo: Schwarz, Gold, Rosé
   ========================================================= */

/* ---------- Schriften (lokal eingebunden, DSGVO-freundlich) ---------- */
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-600-italic.woff2") format("woff2"); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: "Lato"; src: url("../fonts/lato-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Lato"; src: url("../fonts/lato-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Great Vibes"; src: url("../fonts/great-vibes-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

/* ---------- Variablen ---------- */
:root {
  --black: #000000;
  --bg: #0a0a0a;
  --surface: #141212;
  --surface-2: #1c1819;
  --border: rgba(232, 188, 92, 0.22);
  --gold: #e8bc5c;
  --gold-light: #f3d68e;
  --pink: #f0799f;
  --pink-dark: #d85a83;
  --text: #f4efe9;
  --text-muted: #b9aea6;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", "Cormorant Garamond", cursive;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --container: 1120px;
  --header-h: 72px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-light); }
h1, h2, h3, .timeline__year, .about-claim { font-variant-numeric: lining-nums; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--gold); }
h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
strong { color: #fff; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 3rem + 5vw, 7rem) 0; }
.section--alt { background: var(--surface); border-block: 1px solid var(--border); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.eyebrow { display: block; font-family: var(--font-script); font-size: 2rem; color: var(--pink); line-height: 1; margin-bottom: .25rem; }
.lead { font-size: 1.2rem; color: var(--text-muted); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: #000; padding: .5rem 1rem; z-index: 200; }
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease;
}
.btn--primary { background: var(--pink); color: #fff; }
.btn--primary:hover { background: var(--pink-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--ghost:hover { background: var(--gold); color: #000; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand img { height: 60px; width: auto; }
.nav ul { list-style: none; display: flex; gap: 1.75rem; margin: 0; padding: 0; }
.nav a { color: var(--text); font-size: .95rem; letter-spacing: .04em; }
.nav a:hover, .nav a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; color: var(--gold); cursor: pointer; padding: .5rem; }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #000; border-bottom: 1px solid var(--border); display: none; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: .5rem 1.25rem 1.25rem; }
  .nav li a { display: block; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; text-align: center;
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0 clamp(4rem, 3rem + 5vw, 6.5rem);
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(240,121,159,.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(232,188,92,.10), transparent 70%),
    var(--black);
}
.hero__logo { width: min(420px, 78vw); margin: 0 auto 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); color: #fff; margin-bottom: .75rem; }
.hero h1 span { color: var(--gold); }
.hero p { max-width: 620px; margin: 0 auto 2rem; color: var(--text-muted); font-size: 1.15rem; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Intro ---------- */
.intro { max-width: 760px; margin: 0 auto; text-align: center; }
.intro p { font-size: 1.15rem; }
.intro .punch { font-family: var(--font-display); font-size: 1.9rem; color: var(--pink); font-style: italic; margin: 1.5rem 0; }

/* ---------- Karten / Grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(232,188,92,.5); }
.card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: rgba(240,121,159,.12); color: var(--pink);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--text-muted); margin: 0; }

/* Leistungen – mit Galerie-Pfeil (später für Bildergalerie nutzbar) */
.service {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem 1.5rem; color: var(--text);
  transition: border-color .25s ease, background .25s ease;
}
.service:hover { border-color: var(--gold); background: #221d1e; color: var(--text); }
.service__icon { flex: none; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(232,188,92,.12); color: var(--gold); }
.service__icon svg { width: 24px; height: 24px; }
.service__text { flex: 1; font-size: 1.08rem; }
.service__arrow { flex: none; color: var(--pink); transition: transform .25s ease; }
.service__arrow svg { width: 22px; height: 22px; }
.service:hover .service__arrow { transform: translateX(4px); }

/* ---------- Preise / Transparenz ---------- */
.pricing {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.pricing__box {
  border: 1px solid var(--gold); border-radius: var(--radius); padding: 2.25rem;
  background: linear-gradient(160deg, rgba(232,188,92,.08), rgba(240,121,159,.06));
}
.pricing__box ul { list-style: none; padding: 0; margin: 0; }
.pricing__box li { display: flex; gap: .75rem; padding: .55rem 0; border-bottom: 1px dashed rgba(232,188,92,.2); }
.pricing__box li:last-child { border-bottom: 0; }
.pricing__box li svg { flex: none; width: 22px; height: 22px; color: var(--pink); margin-top: .2rem; }
@media (max-width: 820px) { .pricing { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Über uns / Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2.5rem; }
.timeline::before { content: ""; position: absolute; left: .7rem; top: .5rem; bottom: .5rem; width: 2px; background: linear-gradient(var(--gold), var(--pink)); }
.timeline__item { position: relative; margin-bottom: 2.75rem; }
.timeline__item:last-child { margin-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -2.3rem; top: .55rem;
  width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 3px solid var(--pink);
}
.timeline__year { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: .5rem; }
.timeline__item p { color: var(--text-muted); margin-bottom: .4em; }
.timeline__item .highlight { font-family: var(--font-display); font-style: italic; font-size: 1.45rem; color: var(--pink); }
.about-claim { text-align: center; margin-top: 3.5rem; font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); color: #fff; }
.about-claim span { color: var(--gold); }

.values { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.values span { border: 1px solid var(--border); border-radius: 999px; padding: .4rem 1.1rem; color: var(--gold); font-size: .95rem; letter-spacing: .05em; }

/* ---------- Bewertungen ---------- */
.review { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; }
.review__stars { color: var(--gold); letter-spacing: .15em; font-size: 1.1rem; margin-bottom: .75rem; }
.review blockquote { margin: 0 0 1.25rem; font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--text); flex: 1; }
.review cite { font-style: normal; color: var(--text-muted); font-size: .95rem; }
.review cite strong { color: var(--pink); display: block; }
.review--placeholder { opacity: .6; border-style: dashed; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
.contact__info ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact__info li { display: flex; gap: .75rem; align-items: center; padding: .4rem 0; }
.contact__info li svg { width: 22px; height: 22px; color: var(--pink); flex: none; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.checklist li { padding-left: 1.6rem; position: relative; margin-bottom: .35rem; }
.checklist li::before { content: "♥"; position: absolute; left: 0; color: var(--pink); }

.form { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form label { display: block; font-size: .9rem; color: var(--text-muted); margin-bottom: .35rem; }
.form .field { margin-bottom: 1.1rem; }
.form input, .form textarea, .form select {
  width: 100%; padding: .8rem 1rem; border-radius: 10px;
  background: #0d0b0b; color: var(--text); border: 1px solid rgba(255,255,255,.14);
  font: inherit; font-size: 1rem; transition: border-color .2s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form textarea { min-height: 130px; resize: vertical; }
.form .consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--text-muted); }
.form .consent input { width: auto; margin-top: .3rem; accent-color: var(--pink); }
.form .hp { position: absolute; left: -9999px; }
.form-status { margin-top: 1rem; font-size: .95rem; }
.form-status.ok { color: var(--gold); }
.form-status.err { color: var(--pink); }

/* ---------- Footer ---------- */
.site-footer { background: #000; border-top: 1px solid var(--border); padding: 3rem 0 2rem; color: var(--text-muted); font-size: .95rem; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.site-footer img { height: 60px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.copyright { width: 100%; text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06); font-size: .85rem; }

/* ---------- Rechtliche Seiten (AGB, Impressum, Datenschutz) ---------- */
.legal { padding: clamp(3rem, 2rem + 3vw, 5rem) 0; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.6rem; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal p, .legal li { color: #ddd5ce; }
.legal ol, .legal ul { padding-left: 1.4rem; }
.legal li { margin-bottom: .4rem; }
.legal .toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.legal .toc ol { columns: 2; column-gap: 2rem; margin: 0; padding: 0; list-style: none; font-size: .95rem; }
@media (max-width: 600px) { .legal .toc ol { columns: 1; } }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .98rem; }
.legal th, .legal td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid rgba(255,255,255,.1); vertical-align: top; }
.legal th { color: var(--gold); font-weight: 700; }
.legal .note { background: rgba(240,121,159,.1); border-left: 3px solid var(--pink); padding: 1rem 1.25rem; border-radius: 6px; margin: 1.5rem 0; }
.back-link { display: inline-block; margin-bottom: 1.5rem; font-size: .95rem; }

/* ---------- Einblende-Animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
