/* ==========================================================================
   Atelier de Beauté — Daniela Raff Kosmetik, Owingen — Demo-Gestaltungsvorschlag
   Charakter: edel-feminin mit dezent französischem Atelier-Charme — ruhig,
   hochwertig, gepflegt, einladend. Kein klinischer Look, kein Kitsch.
   Farbwelt: Warmweiß #FAF6F1 · Roségold/Nude #C8A38B · Taupe/Greige #8C7E72 ·
             Aubergine/Bordeaux #5E2A38 · Text Dunkelbraun #2E2826
   Schriften: Marcellus (Display) + Manrope (Text) + Parisienne (Logo-Akzent),
              lokal gehostet, DSGVO-konform
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Marcellus";
  src: url("../fonts/marcellus.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Parisienne";
  src: url("../fonts/parisienne.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --bg: #faf6f1;          /* Warmweiß / Off-White — Grundton */
  --bg-2: #f3ebe2;        /* warme, leicht abgesetzte Fläche */
  --white: #fffdfb;       /* Karten/Kontrast */
  --nude: #c8a38b;        /* Roségold/Nude — warmer Hauptakzent */
  --nude-dark: #b1876d;   /* Hover */
  --nude-soft: #eaddd1;   /* zarte Nude-Fläche */
  --taupe: #8c7e72;       /* Taupe/Greige — neutraler Sekundärton */
  --taupe-soft: #e4ddd4;  /* zarte Taupe-Fläche / Linien */
  --plum: #5e2a38;        /* Aubergine/Bordeaux — tiefer Akzent */
  --plum-dark: #4a2030;   /* Hover */
  --plum-soft: #eaddd9;   /* zarte Aubergine-Fläche */
  --ink: #2e2826;         /* warmes Dunkelbraun — Text */
  --ink-soft: #5f564f;    /* abgesetzter Fließtext */
  --line: #e4dace;        /* Trennlinien */

  --font-display: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-script: "Parisienne", "Marcellus", cursive;

  --container: 1140px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;

  --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.04rem;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--plum); text-decoration: none; }

::selection { background: var(--nude); color: var(--white); }

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

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

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-wrap: balance;
  hyphens: manual;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

.mark { color: var(--nude-dark); font-style: italic; }
.mark--plum { color: var(--plum); font-style: italic; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nude-dark);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  color: var(--ink-soft);
  max-width: 38rem;
}

/* ---------- Zier-Trennlinie (Wiedererkennung: feiner Bogen + Punkt) ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0;
  padding-block: 1.4rem;
  color: var(--nude);
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: clamp(2.5rem, 12vw, 7rem);
  background: linear-gradient(90deg, transparent, var(--nude));
}
.divider::after { background: linear-gradient(90deg, var(--nude), transparent); }
.divider svg { width: 30px; height: 30px; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--plum);
  color: var(--bg);
  font-size: 0.79rem;
  text-align: center;
  padding: 0.5rem var(--pad);
  line-height: 1.45;
}
.demo-bar strong { color: var(--nude); font-weight: 600; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 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.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
}
.brand__mark { width: 50px; height: 50px; flex-shrink: 0; }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name .brand__script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--plum);
  line-height: 0.9;
}
.brand__name small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.32rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.9rem);
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--nude-dark); }
.nav a[aria-current="page"] {
  color: var(--plum);
  border-bottom-color: var(--nude);
}
.nav__cta {
  background: var(--plum);
  color: var(--bg) !important;
  padding: 0.52rem 1.2rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--plum-dark); color: var(--white) !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: 10px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(55rem 30rem at 88% -8%, var(--nude-soft) 0%, transparent 60%),
    radial-gradient(48rem 26rem at -8% 112%, var(--plum-soft) 0%, transparent 55%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 { margin-block: 0.5rem 1.3rem; }
.hero .script-hero {
  font-family: var(--font-script);
  display: block;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--nude-dark);
  line-height: 0.95;
  margin-bottom: 0.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.hero__art { display: grid; place-items: center; }

/* ---------- Monogramm-Emblem (Wiedererkennung) ---------- */
.emblem {
  width: min(330px, 70vw);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(94, 42, 56, 0.18));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid var(--plum);
  color: var(--plum);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease), border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--plum); color: var(--bg); }
.btn--solid:hover { background: var(--plum-dark); border-color: var(--plum-dark); color: var(--white); }
.btn--nude { border-color: var(--nude-dark); color: var(--nude-dark); }
.btn--nude:hover { background: var(--nude); border-color: var(--nude); color: var(--white); }
.btn--light { border-color: var(--bg); color: var(--bg); }
.btn--light:hover { background: var(--bg); color: var(--plum); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--bg2 { background: var(--bg-2); }
.section--plum { background: var(--plum); color: var(--bg); }
.section--plum h2, .section--plum h3 { color: var(--bg); }
.section--plum p { color: rgba(250, 246, 241, 0.88); }
.section--plum .eyebrow { color: var(--nude); }
.section--plum .mark { color: var(--nude); }

.section__head { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section__head h2 { margin-bottom: 0.85rem; }
.section__head p { color: var(--ink-soft); }
.section--plum .section__head p { color: rgba(250, 246, 241, 0.88); }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---------- Highlight-/Karten-Raster ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(94, 42, 56, 0.09); }
.card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.4rem; margin-bottom: 0.45rem; }
.card p { font-size: 0.96rem; color: var(--ink-soft); }
.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nude-dark);
  background: var(--nude-soft);
  border-radius: 999px;
  padding: 0.22rem 0.8rem;
  margin-bottom: 0.9rem;
}
.card__tag--plum { color: var(--plum); background: var(--plum-soft); }

/* ---------- Leistungs-/Preis-Listen (behandlungen) ---------- */
.menu-block { margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.menu-block__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1.5px solid var(--nude);
  padding-bottom: 0.7rem;
  margin-bottom: 1.3rem;
}
.menu-block__head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.menu-block__head .menu-num {
  font-family: var(--font-display);
  color: var(--nude);
  font-size: 1.3rem;
}
.menu-list { list-style: none; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.3rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink);
}
.menu-item__price {
  font-weight: 600;
  color: var(--plum);
  white-space: nowrap;
  font-size: 1.02rem;
}
.menu-item__price small { font-weight: 500; color: var(--taupe); }
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: 0.93rem;
  color: var(--ink-soft);
  max-width: 44rem;
}

/* ---------- Hinweis-/Notiz-Karte ---------- */
.note-card {
  margin-top: 1.9rem;
  background: var(--bg-2);
  border-left: 4px solid var(--nude);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.note-card strong { color: var(--ink); font-weight: 600; }
.section--bg2 .note-card { background: var(--white); }

/* ---------- Foto-Platzhalter ---------- */
.photo-ph {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, var(--bg-2) 0 16px, var(--nude-soft) 16px 32px);
  border: 1.5px dashed var(--nude);
  border-radius: var(--radius);
  color: var(--nude-dark);
  min-height: 300px;
  padding: 1.5rem;
}
.photo-ph span {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--bg);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(46, 40, 38, 0.08);
}
.photo-ph small { display: block; margin-top: 0.5rem; color: var(--ink-soft); font-weight: 400; }

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}

/* ---------- Über-mich / Werte ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.value {
  border-top: 2px solid var(--nude);
  padding-top: 1.1rem;
}
.value h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.value p { font-size: 0.96rem; color: var(--ink-soft); }
.section--plum .value { border-top-color: rgba(200, 163, 139, 0.6); }
.section--plum .value p { color: rgba(250, 246, 241, 0.85); }

.qual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--nude-soft);
  color: var(--plum);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1.2rem;
}
.qual-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Termin-Hinweis-Band ---------- */
.appt {
  background: var(--nude-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.appt h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.appt p { color: var(--ink-soft); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--plum);
  color: var(--bg);
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-band h2 { color: var(--bg); margin-bottom: 0.6rem; }
.cta-band p {
  color: rgba(250, 246, 241, 0.88);
  max-width: 34rem;
  margin-inline: auto;
}
.cta-band .tel {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  color: var(--bg);
  margin-block: 1.4rem 1.2rem;
  border-bottom: 2px solid var(--nude);
  transition: border-color 0.2s, color 0.2s;
}
.cta-band .tel:hover { border-color: var(--bg); }
.cta-band .btn { display: inline-block; }

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.3rem);
}
.contact-card h2 { font-size: 1.55rem; margin-bottom: 1rem; }
.contact-card .tel-big {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  color: var(--plum);
  line-height: 1.1;
  margin-block: 0.3rem 0.4rem;
}
.contact-card .tel-note { font-size: 0.85rem; color: var(--ink-soft); }
.contact-card address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.7;
}
.contact-card ul { list-style: none; color: var(--ink-soft); }
.contact-card li { padding-block: 0.25rem; }

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

.demo-note {
  background: var(--plum-soft);
  border-left: 4px solid var(--plum);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.demo-note strong { color: var(--plum-dark); font-weight: 600; }

.placeholder {
  display: inline-block;
  background: var(--bg-2);
  border: 1px dashed var(--nude);
  border-radius: 6px;
  padding: 0.05rem 0.55rem;
  font-size: 0.88rem;
  color: var(--nude-dark);
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: var(--bg-2);
  padding-block: clamp(2.2rem, 5vw, 3.5rem) 1.4rem;
}
.site-foot a { color: var(--nude); }
.site-foot a:hover { text-decoration: underline; }
.site-foot h3 {
  color: var(--bg);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.site-foot .foot-script {
  font-family: var(--font-script);
  color: var(--nude);
  font-size: 1.7rem;
  line-height: 1;
}
.site-foot ul { list-style: none; font-size: 0.95rem; }
.site-foot li { padding-block: 0.18rem; }

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.foot-meta {
  border-top: 1px solid rgba(250, 246, 241, 0.18);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
}

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

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

/* ---------- Responsiv ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .emblem { width: min(240px, 56vw); }
  .media-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 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.05rem;
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav__cta {
    margin-top: 0.9rem;
    text-align: center;
    border-radius: 12px;
  }
  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); }

  .menu-item { grid-template-columns: 1fr; }
  .menu-item__price { margin-top: 0.1rem; }
}
