/* ═══════════════════════════════════════════════════════════
   Rebe Lashes

   Richtung: modernes Beauty-Editorial. Warm, weich, feminin –
   nicht klinisch. Die Kundin soll sich umsorgt fühlen,
   nicht vermessen.

   Bodoni Moda   Display, Preise, Annotationen (auch kursiv)
   Figtree       Fließtext, warm-humanistisch
   Kein Mono.    Labels laufen in Bodoni-Kursive, gesperrt.
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink:     #3a2a2e;   /* warmes Pflaumenbraun statt Schwarz */
  --mute:    #7c666b;
  --powder:  #fbf6f4;   /* Seitengrund, warmes Blush-Weiß */
  --shell:   #f4e9e6;   /* getönte Flächen */
  --card:    #fffcfb;   /* erhabene Karten */
  --rose:    #b0798a;   /* Akzent */
  --blush:   #e7cfcd;

  --rule:      rgba(58, 42, 46, .12);
  --rule-rose: rgba(176, 121, 138, .3);

  --display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --body:    "Figtree", "Helvetica Neue", Arial, sans-serif;

  --r-card: 14px;
  --r-pill: 999px;

  --wrap: 1180px;
  --pad:  clamp(1.25rem, 5vw, 3.5rem);
  --sec:  clamp(4.5rem, 9vw, 7.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--powder);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 350;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0 0 .55em;
}

h1 { font-size: clamp(3rem, 7.4vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h3 { font-size: 1.4rem; font-variation-settings: "opsz" 36; }

p { margin: 0 0 1.05em; }

/* Die Label-Rolle: Bodoni kursiv, gesperrt. Ersetzt das alte Mono. */
.meta {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 11;
  font-size: .88rem;
  letter-spacing: .07em;
  font-weight: 400;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap.narrow { max-width: 780px; }
.center { text-align: center; margin-top: 3rem; }

.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 11;
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--rose);
  margin-bottom: 1.3rem;
}

.lead { font-size: 1.06rem; color: var(--mute); max-width: 56ch; }
.muted { color: var(--mute); }
.small { font-size: .85rem; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--powder); padding: .75rem 1.25rem;
}
.skip:focus { left: 0; }

/* ─────────────── Header ─────────────── */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--powder) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.site-header.scrolled { border-bottom-color: var(--rule); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 82px;
}

.brand { text-decoration: none; display: flex; align-items: center; gap: .75rem; color: var(--ink); }
.mark { width: 36px; height: 36px; flex: none; display: block; }
.wordmark { display: flex; flex-direction: column; line-height: 1.08; }
.wm-name {
  font-family: var(--display);
  font-variation-settings: "opsz" 40;
  font-size: 1.42rem; letter-spacing: .005em;
}
.wm-sub {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 11;
  font-size: .8rem; letter-spacing: .16em;
  color: var(--rose); margin-top: 1px;
}

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  text-decoration: none;
  font-size: .92rem; font-weight: 400; letter-spacing: .01em;
  color: var(--mute);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--rose); }

.nav .nav-cta {
  border: 1px solid var(--ink); border-radius: var(--r-pill);
  padding: .5rem 1.25rem; color: var(--ink);
}
.nav .nav-cta:hover { background: var(--ink); color: var(--powder); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 38px; height: 30px; padding: 8px 2px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* ─────────────── Buttons ─────────────── */

.btn {
  display: inline-block; text-decoration: none;
  font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  padding: .92rem 2rem; border-radius: var(--r-pill);
  border: 1px solid var(--ink);
  transition: background .22s, color .22s, transform .22s, box-shadow .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--powder); }
.btn-primary:hover { background: var(--rose); border-color: var(--rose); box-shadow: 0 12px 26px -14px var(--rose); }
.btn-quiet { background: transparent; color: var(--ink); }
.btn-quiet:hover { background: var(--ink); color: var(--powder); }
.btn-invert { border-color: var(--blush); color: var(--blush); }
.btn-invert:hover { background: var(--blush); color: var(--ink); }

/* ─────────────── Hero ─────────────── */

.hero { padding-top: clamp(3rem, 7vw, 5.5rem); }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.hero h1 { margin: 0 0 1.5rem; }
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 96;
  color: var(--rose);
}

.slogan { font-size: 1.14rem; color: var(--mute); max-width: 40ch; }
.slogan strong { color: var(--ink); font-weight: 600; }

.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 2.2rem; }

/* — Signature: das Mapping, als annotierte Skizze — */

.hero-map { margin: 0; color: var(--ink); }
.hero-map svg { width: 100%; height: auto; display: block; overflow: visible; }

.lm-lid, .lm-lashes path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.lm-drawn .lm-lid, .lm-drawn .lm-lashes path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s cubic-bezier(.22, .8, .3, 1);
}
.lm-lashes path { stroke: var(--ink); stroke-opacity: .66; }
.lm-lashes path.is-peak { stroke: var(--rose); stroke-opacity: 1; stroke-width: 3; }
.lm-lid { stroke: var(--ink); }

.lm-labels text {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  fill: var(--rose);
  opacity: 0;
  transition: opacity .5s ease;
}
.lm-drawn .lm-labels text { opacity: 1; }

.hero-map figcaption {
  margin-top: 1.4rem;
  font-size: .95rem;
  color: var(--mute);
  max-width: 42ch;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.hero-map figcaption .meta {
  display: block; color: var(--rose);
  letter-spacing: .1em; margin-bottom: .2rem; font-size: 1rem;
}

/* — Kurzinfo-Leiste — */

.specbar { border-block: 1px solid var(--rule); }
.specbar-inner {
  display: flex; flex-wrap: wrap; gap: 1rem 3rem;
  padding-block: 1.2rem;
  font-size: .95rem;
}
.specbar i {
  font-family: var(--display); font-style: italic;
  font-size: .95rem; letter-spacing: .07em;
  color: var(--rose); margin-right: .55rem;
}

/* ─────────────── Sections ─────────────── */

.section { padding-block: var(--sec); }
.section-tint { background: var(--shell); }
.section-dark { background: var(--ink); color: var(--blush); }
.section-dark h2, .section-dark h3 { color: var(--powder); }
.section-dark .lead, .section-dark .muted { color: rgba(231, 207, 205, .78); }
.section-dark .eyebrow { color: var(--blush); }

.section-head { max-width: 58ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ─────────────── Sets ─────────────── */

.sets { display: grid; gap: 1.1rem; grid-template-columns: repeat(4, 1fr); }
.sets-3 { grid-template-columns: repeat(3, 1fr); }

.set {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 2.1rem 1.7rem 2.3rem;
  transition: transform .28s, box-shadow .28s;
}
.set:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -30px rgba(58, 42, 46, .55); }
.set p:last-child { margin-bottom: 0; }

.set-head { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; margin-bottom: .45rem; }
.set-head h3 { margin: 0; }
.set-price {
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-size: 1.32rem; font-style: normal; letter-spacing: 0;
  color: var(--rose); white-space: nowrap;
}

.set-spec {
  color: var(--mute);
  padding-bottom: 1.1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule);
  font-size: .92rem;
}

.set-signature { background: var(--ink); color: rgba(231, 207, 205, .84); border-color: var(--ink); }
.set-signature h3 { color: var(--powder); }
.set-signature .set-price { color: var(--blush); }
.set-signature .set-spec { color: rgba(231, 207, 205, .62); border-bottom-color: rgba(231, 207, 205, .2); }

.flag {
  display: inline-block;
  font-size: .85rem; letter-spacing: .1em;
  color: var(--blush);
  border: 1px solid rgba(231, 207, 205, .45);
  padding: .2rem .8rem; border-radius: var(--r-pill);
  margin-bottom: 1rem;
}

/* ─────────────── Über mich ─────────────── */

.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { margin: 0; }

.facts { margin: 2.2rem 0 0; }
.facts > div {
  display: flex; gap: 1.5rem;
  padding: .78rem 0;
  border-top: 1px solid rgba(231, 207, 205, .18);
  font-size: .97rem;
}
.facts dt {
  flex: 0 0 8.5rem;
  font-family: var(--display); font-style: italic;
  font-size: .95rem; letter-spacing: .07em;
  color: var(--blush);
}
.facts dd { margin: 0; }

/* ─────────────── Ablauf ─────────────── */

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.steps li { border-top: 1px solid var(--rule-rose); padding-top: 1.2rem; }
.step-n {
  display: block; color: var(--rose);
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 1.6rem; letter-spacing: .02em;
  margin-bottom: 1.1rem;
}
.steps h3 { font-size: 1.25rem; }
.steps p { font-size: .96rem; color: var(--mute); margin: 0; }

/* ─────────────── Preise ─────────────── */

.price-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.price-title {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 20;
  font-size: 1.25rem; letter-spacing: .05em;
  color: var(--rose); margin-bottom: 1.2rem;
}

.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: baseline; gap: 1.2rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--rule);
}
.price-list li:first-child { border-top: 1px solid var(--rule-rose); }
.pl-name { font-size: 1.04rem; }
.pl-name em {
  font-family: var(--display); font-style: italic;
  color: var(--rose); font-size: .95rem; letter-spacing: .06em;
  margin-left: .45rem;
}
.pl-dur { color: var(--mute); font-size: .92rem; }
.pl-price {
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-size: 1.28rem; letter-spacing: 0; font-style: normal;
  min-width: 4rem; text-align: right;
}

.note {
  margin-top: 1.4rem; font-size: .93rem; color: var(--mute);
  border-left: 2px solid var(--rule-rose); padding-left: 1.1rem;
}

.offer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--rule-rose); }
.offer p { font-size: .97rem; color: var(--mute); }
.offer-current {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 1.3rem 1.4rem;
  color: var(--ink) !important;
  font-size: .96rem !important;
}
.offer-current .flag { color: var(--rose); border-color: var(--rule-rose); display: block; width: fit-content; margin-bottom: .6rem; }
.offer .btn { margin-top: .6rem; }

/* ─────────────── Platzhalter, bis echte Fotos da sind ─────────────── */

.ph {
  position: relative;
  background: linear-gradient(160deg, var(--shell) 0%, var(--blush) 100%);
  border-radius: var(--r-card);
  display: grid; place-items: center;
  color: var(--mute);
  letter-spacing: .1em;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23b0798a' stroke-opacity='.3' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M14 84 C40 92 80 88 106 66'/%3E%3Cpath d='M28 86 C28 72 30 62 34 54'/%3E%3Cpath d='M48 88 C50 72 54 60 60 50'/%3E%3Cpath d='M68 85 C72 70 78 60 86 50'/%3E%3Cpath d='M88 78 C93 66 99 58 107 50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 62% auto; background-position: center 58%; background-repeat: no-repeat;
}
.ph span { position: relative; z-index: 1; font-size: .9rem; }
.ph-portrait { aspect-ratio: 4 / 5; }
.ph-g { aspect-ratio: 1 / 1; }

/* ─────────────── Galerie ─────────────── */

.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }

/* ─────────────── FAQ ─────────────── */

.faq { border-bottom: 1px solid var(--rule); }
.faq:first-of-type { border-top: 1px solid var(--rule-rose); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.4rem 3rem 1.4rem 0; position: relative;
  font-size: 1.08rem; font-weight: 500;
  transition: color .2s;
}
.faq summary:hover { color: var(--rose); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .7rem; top: 50%;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--rose);
  border-bottom: 1.5px solid var(--rose);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}
.faq[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq div { padding-bottom: 1.4rem; }
.faq p { margin: 0; color: var(--mute); max-width: 62ch; }

/* ─────────────── Kontakt ─────────────── */

.contact-grid { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.contact-card {
  display: flex; flex-direction: column; gap: .3rem;
  text-decoration: none; background: var(--card);
  border: 1px solid var(--rule); border-radius: var(--r-card);
  padding: 1.8rem 1.5rem;
  transition: background .22s, color .22s, transform .22s, box-shadow .22s;
}
.contact-card:hover {
  background: var(--ink); color: var(--powder);
  transform: translateY(-4px); box-shadow: 0 22px 44px -30px rgba(58, 42, 46, .6);
}
.cc-label { letter-spacing: .1em; color: var(--rose); }
.cc-value {
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-size: 1.34rem; line-height: 1.2;
}
.cc-hint { font-size: .88rem; color: var(--mute); }
.contact-card:hover .cc-label { color: var(--blush); }
.contact-card:hover .cc-hint { color: rgba(231, 207, 205, .68); }

.contact-meta {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 2.5rem; padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  font-size: .97rem;
}
.contact-meta span { display: block; letter-spacing: .08em; color: var(--rose); }

/* ─────────────── Footer ─────────────── */

.site-footer { background: var(--ink); color: rgba(231, 207, 205, .74); padding-block: 3.2rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.site-footer .wm-name { color: var(--powder); margin: 0; font-size: 1.4rem; }
.site-footer p { margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { text-decoration: none; font-size: .92rem; }
.footer-nav a:hover { color: var(--blush); }

/* ─────────────── Mobiler CTA ─────────────── */

.fab {
  display: none;
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 1rem; z-index: 60;
  background: var(--ink); color: var(--powder);
  text-decoration: none; padding: .88rem 2rem; border-radius: var(--r-pill);
  font-size: .95rem; font-weight: 500;
  box-shadow: 0 14px 34px -14px rgba(58, 42, 46, .75);
}

/* ─────────────── Reveal ─────────────── */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .lm-lid, .lm-lashes path { stroke-dashoffset: 0 !important; transition: none !important; }
  .lm-labels text { opacity: 1 !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ─────────────── 404 ─────────────── */

.notfound { min-height: 62vh; display: flex; align-items: center; padding-block: clamp(4rem, 10vw, 8rem); }
.notfound h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); margin-bottom: 1.4rem; }
.nf-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }
.nf-hint {
  margin-top: 2.8rem; padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-size: .95rem; color: var(--mute);
}
.nf-hint a { color: var(--rose); }

/* ─────────────── Rechtstexte ─────────────── */

.legal { padding-block: clamp(3rem, 8vw, 5.5rem); }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: 2rem; }
.legal h2 { font-size: 1.45rem; margin-top: 2.5rem; }

.legal .todo {
  background: var(--card);
  border-left: 2px solid var(--rose);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 1.1rem 1.3rem; font-size: .94rem; color: var(--mute);
  margin-bottom: 2.5rem;
}
.legal .todo strong { color: var(--ink); }

.legal ul { padding-left: 1.2rem; margin: 0 0 1.05em; }
.legal li { margin-bottom: .35em; }
.legal code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .86em;
  background: var(--shell); padding: .1em .38em; border-radius: 4px;
}
.legal .note { margin-block: 1.2rem; }

/* Lücken, die Rebecca noch füllen muss – im Browser nicht zu übersehen. */
.field {
  background: rgba(176, 121, 138, .17);
  border-bottom: 1px dashed var(--rose);
  padding: .05em .32em;
  color: var(--rose);
  font-style: normal;
}
.field-block {
  border: 1px dashed var(--rule-rose);
  background: var(--card);
  border-radius: var(--r-card);
  padding: 1.3rem 1.4rem .5rem;
  margin-bottom: 1.4rem;
}
.field-block em { color: var(--rose); font-size: .94rem; }

.legal-updated {
  margin-top: 3rem; padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  color: var(--mute);
}

/* ─────────────── Responsive ─────────────── */

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-map { order: -1; max-width: 560px; }
  .sets, .sets-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .price-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 400px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 4.3rem; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 82px 0 auto 0;
    background: var(--powder);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: .5rem var(--pad) 1.75rem;
    border-bottom: 1px solid var(--rule);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .95rem 0; font-size: 1rem; border-bottom: 1px solid var(--rule); }
  .nav .nav-cta { margin-top: 1.1rem; text-align: center; padding: .85rem 1.1rem; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .price-list li { grid-template-columns: 1fr auto; row-gap: .15rem; }
  .pl-dur { grid-column: 1; }
  .specbar-inner { gap: .5rem 2rem; font-size: .92rem; }
  .contact-meta { gap: 1.4rem; flex-direction: column; }
  .facts dt { flex-basis: 7rem; }

  .fab { display: block; }
}

@media (max-width: 540px) {
  .sets, .sets-3, .contact-grid, .steps { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .hero-actions, .nf-actions { flex-direction: column; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
