/* ==========================================================================
   VIDA Kosmetikstudio — Demo-Gestaltungsvorschlag
   Charakter: leicht, luftig, persönlich — ruhiger Luxus, viel Weißraum
   Farbwelt: Warmweiß #FDFAF8 · Rosé #EEB4B4 (Flächen hell: #FBEFEF) ·
             Koralle #D98C8C (Akzente/Hover) · Braunrot #774A4A ·
             Text Anthrazit #3A3434
   Schriften: Playfair Display (Headlines) + Nunito Sans (Text) +
              Great Vibes (nur Wortmarke „Vida" & Zierwörter) — lokal gehostet
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-italic.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans-italic.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Great Vibes";
  src: url("../fonts/great-vibes.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --cream: #fdfaf8;          /* Warmweiß — Grundton */
  --blush: #fbefef;          /* zarte Rosé-Fläche */
  --blush-deep: #f6e0e0;     /* etwas kräftigere Fläche */
  --rose: #eeb4b4;           /* Hauptakzent */
  --coral: #d98c8c;          /* gedämpfte Koralle — Akzente/Hover */
  --coral-dark: #c47676;     /* Hover-Vertiefung */
  --wine: #774a4a;           /* tiefes Braunrot — Sub-Headlines/Details */
  --ink: #3a3434;            /* Text Anthrazit */
  --ink-soft: #6b6060;       /* abgesetzter Fließtext */
  --line: #ecd9d9;           /* feine Linien */

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --font-script: "Great Vibes", cursive;

  --container: 1080px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0425rem;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--coral-dark); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--wine); }

::selection { background: var(--rose); color: #fff; }

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
  text-wrap: balance;
  hyphens: manual; /* nur an gesetzten &shy;-Stellen trennen */
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 36rem;
}

/* Zierwort in Schreibschrift (sparsam) */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--coral);
  font-size: 1.45em;
  line-height: 1;
}

/* ---------- Zierschwung (Wiedererkennungs-Element) ---------- */
.flourish {
  width: clamp(120px, 18vw, 190px);
  height: auto;
  color: var(--rose);
  margin-top: 0.9rem;
}
.flourish--center { margin-inline: auto; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--wine);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  padding: 0.5rem var(--pad);
  letter-spacing: 0.02em;
}
.demo-bar strong { font-weight: 800; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
}

.brand { display: flex; align-items: baseline; gap: 0.65rem; }
.brand__script {
  font-family: var(--font-script);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ink);
}
.brand__sub {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.6vw, 2rem);
}
.nav a {
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav a:hover { color: var(--coral-dark); }
.nav a[aria-current="page"] {
  color: var(--wine);
  border-bottom-color: var(--coral);
}
.nav__cta {
  background: var(--rose);
  color: var(--ink) !important;
  border: none !important;
  border-radius: 999px;
  padding: 0.5rem 1.2rem !important;
  transition: background 0.25s var(--ease) !important;
}
.nav__cta:hover { background: var(--coral); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(ellipse 60% 70% at 85% 20%, var(--blush) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 8% 90%, var(--blush) 0%, transparent 75%),
    var(--cream);
}
.hero__inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(4.2rem, 11vw, 7rem);
  line-height: 0.95;
  color: var(--coral);
  display: block;
}
.hero h1 { margin-top: 0.4rem; }
.hero .lead { margin: 1.4rem auto 0; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero__promise {
  margin-top: 2.6rem;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--wine);
}

/* Zarte Kreis-Ornamente im Hero */
.hero__ring {
  position: absolute;
  border: 1px solid var(--blush-deep);
  border-radius: 50%;
  pointer-events: none;
}
.hero__ring--1 { width: 420px; height: 420px; top: -160px; right: -120px; }
.hero__ring--2 { width: 260px; height: 260px; bottom: -100px; left: -70px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.78rem 1.7rem;
  border-radius: 999px;
  border: 1px solid var(--coral);
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.btn:hover { background: var(--blush); color: var(--wine); }
.btn--solid {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--ink);
}
.btn--solid:hover { background: var(--coral); border-color: var(--coral); color: #fff; }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.section--blush { background: var(--blush); }

.section__head {
  max-width: 40rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p:not(.eyebrow) { color: var(--ink-soft); margin-top: 0.8rem; }

/* Ornament zwischen Sektionen */
.ornament {
  display: flex;
  justify-content: center;
  padding-block: 0.5rem;
}

/* ---------- Teaser-Karten (Startseite) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -28px rgba(119, 74, 74, 0.35);
}
.card__word {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1;
  color: var(--rose);
  margin-bottom: 0.9rem;
}
.card h3 { color: var(--ink); }
.card p { color: var(--ink-soft); font-size: 0.97rem; margin-top: 0.7rem; flex: 1; }
.card__more {
  margin-top: 1.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--wine);
}
.card:hover .card__more { color: var(--coral-dark); }

/* ---------- Persönlich-Block ---------- */
.person {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.person__mark {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 360px;
  margin-inline: auto;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}
.person__mark::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed var(--blush-deep);
  border-radius: 50%;
}
.person__mark .script { font-size: 3.2rem; display: block; }
.person__mark span:not(.script) {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 0.6rem;
  display: block;
}
.person__body h2 { margin-bottom: 1rem; }
.person__body p { color: var(--ink-soft); margin-top: 0.9rem; }

.person__points {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.85rem;
}
.person__points li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink);
  font-size: 0.99rem;
}
.person__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.cta-band h2 { max-width: 30rem; margin-inline: auto; }
.cta-band p {
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 1rem auto 0;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}
.cta-band__note {
  margin-top: 1.6rem;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--wine);
}

/* ---------- Preisliste (Behandlungen) ---------- */
.pricegroup { margin-top: clamp(2.2rem, 5vw, 3rem); }
.pricegroup__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
  margin-bottom: 0.4rem;
}
.pricegroup__head .script { font-size: 1.9rem; }
.pricegroup__head h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); }
.pricegroup__sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 0.6rem;
}

.pricelist { list-style: none; }
.pricelist > li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.4rem 2rem;
  align-items: baseline;
  padding-block: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.pricelist > li:last-child { border-bottom: none; }
.price__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink);
}
.price__desc {
  grid-column: 1;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 36rem;
}
.price__amount {
  grid-row: 1;
  grid-column: 2;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--wine);
  white-space: nowrap;
}
.price__extra {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--coral-dark);
  font-style: italic;
}

.pricenote {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  background: var(--blush);
  border: 1px solid var(--blush-deep);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  font-size: 0.92rem;
  color: var(--wine);
}

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2rem);
}
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card p { color: var(--ink-soft); font-size: 0.96rem; }
.contact-card .contact-card__link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--wine);
}
.contact-card .contact-card__link:hover { color: var(--coral-dark); }
.contact-card--accent {
  background: var(--blush);
  border-color: var(--blush-deep);
}

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 46rem; }
.legal h1 { margin-bottom: 1.6rem; }
.legal h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  color: var(--wine);
}
.legal p, .legal address { color: var(--ink-soft); font-style: normal; margin-top: 0.6rem; }
.legal ul { margin: 0.6rem 0 0 1.2rem; color: var(--ink-soft); }

.demo-note {
  background: var(--blush);
  border: 1px solid var(--blush-deep);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.placeholder {
  background: var(--blush-deep);
  border-radius: 6px;
  padding: 0.1rem 0.5rem;
  font-size: 0.9em;
  color: var(--wine);
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  background: #fff;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}
.foot-mark { text-align: center; margin-bottom: 2rem; }
.foot-mark .script { font-size: 2.6rem; color: var(--coral); }
.foot-mark p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 0.4rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.foot-grid h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.8rem;
}
.foot-grid ul { list-style: none; }
.foot-grid li { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 0.45rem; }
.foot-grid a { color: var(--ink-soft); }
.foot-grid a:hover { color: var(--coral-dark); }
.foot-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsiv ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .person { grid-template-columns: 1fr; }
  .person__mark { max-width: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--pad) 1.2rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav__cta {
    margin-top: 0.9rem;
    text-align: center;
    border-radius: 999px;
    border-bottom: none !important;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 480px) {
  body { font-size: 0.99rem; }
  .pricelist > li { grid-template-columns: 1fr; }
  .price__amount { grid-row: auto; grid-column: 1; }
  .hero__ring--1 { width: 260px; height: 260px; top: -110px; right: -90px; }
  .hero__ring--2 { display: none; }
  .brand__script { font-size: 1.8rem; }
  .brand__sub { letter-spacing: 0.2em; }
}
