/* =========================================================
   Melanie Zingg · Klassische Massage
   Farb- & Formwelt abgeleitet aus dem Instagram-Auftritt:
   Creme, Altrosa, Salbeigrün, warmes Braun, rosé-goldene Akzente.
   ========================================================= */

:root {
  --cream:      #F6EFE5;
  --cream-2:    #FCF8F2;
  --sand:       #EADDCB;
  --rose:       #D5A199;
  --rose-soft:  #EBCCC6;
  --sage:       #A2AE90;
  --sage-deep:  #7E8C6A;
  --mocha:      #A67B57;
  --gold:       #C2A46A;
  --ink:        #4B443C;
  --ink-soft:   #756B5E;
  --white:      #ffffff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Mulish", "Segoe UI", system-ui, sans-serif;
  --script: "Parisienne", "Segoe Script", cursive;

  --shadow-sm: 0 6px 18px rgba(75, 68, 60, 0.08);
  --shadow-md: 0 18px 46px rgba(75, 68, 60, 0.12);
  --radius: 18px;
  --maxw: 1120px;
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.wrap--narrow { max-width: 760px; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--mocha);
  margin: 0 0 .8rem;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* Platzhalter sichtbar markieren (nur im Vorschlag) */
[data-placeholder] { color: var(--rose); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--primary { background: var(--mocha); color: var(--cream-2); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #93694a; }
.btn--ghost { border-color: var(--mocha); color: var(--mocha); background: transparent; }
.btn--ghost:hover { background: var(--mocha); color: var(--cream-2); transform: translateY(-2px); }
.btn--block { width: 100%; text-align: center; }

/* ============================ NAV ============================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: .5rem 0;
}
.nav.is-scrolled {
  background: rgba(252, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .5rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__mono {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--mocha);
  flex: none;
}
.brand__mono--light { color: var(--cream-2); border-color: rgba(255,255,255,.5); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); letter-spacing: .04em; }
.brand__sub {
  font-size: .64rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--ink-soft); font-weight: 600;
}

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .2s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--mocha); transition: width .28s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--mocha); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--mocha); color: var(--cream-2);
  padding: .6rem 1.35rem; border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}
.nav__cta:hover { background: #93694a; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--cream-2) 0%, var(--cream) 55%, var(--sand) 130%);
  padding: 7rem 1.25rem 5rem;
}
.hero__bloom {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5; pointer-events: none;
}
.hero__bloom--1 { width: 420px; height: 420px; background: var(--rose-soft); top: -80px; left: -60px; }
.hero__bloom--2 { width: 360px; height: 360px; background: var(--sage); bottom: -100px; right: -40px; opacity: .35; }
.hero__bloom--3 { width: 300px; height: 300px; background: var(--gold); bottom: 10%; left: 8%; opacity: .18; }

.sprig { position: absolute; width: clamp(80px, 11vw, 140px); pointer-events: none; opacity: .8; }
.sprig--tr { top: 4%; right: 4%; transform: rotate(150deg); }

/* florale Ecken (Blütenkranz-Motiv) */
.floral { position: absolute; width: clamp(150px, 24vw, 300px); pointer-events: none; z-index: 1; }
.floral--tl { top: -4%; left: -3%; transform: rotate(-6deg); }
.floral--br { bottom: -4%; right: -3%; transform: rotate(174deg); }

/* zarter Blüten-Trenner unter Überschriften */
.fdiv { display: block; width: 132px; height: 22px; margin: .5rem auto 0; }
.fdiv svg { width: 100%; height: 100%; overflow: visible; }
.fdiv--left { margin-left: 0; }

.hero__inner { position: relative; z-index: 2; max-width: 720px; }

.monogram { width: clamp(120px, 20vw, 168px); margin: 0 auto 1.6rem; }
.monogram svg { width: 100%; height: auto; overflow: visible; }
.monogram__ring { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: .8; }
.monogram__ring--2 { opacity: .4; }
.monogram__flowers { opacity: .92; }
.monogram__letter {
  font-family: var(--serif); font-size: 118px; font-weight: 500;
  fill: var(--ink); text-anchor: middle; letter-spacing: 0;
}

.hero__eyebrow {
  text-transform: uppercase; letter-spacing: .32em; font-size: .78rem;
  font-weight: 600; color: var(--mocha); margin: 0 0 .4rem;
}
.hero__name {
  font-size: clamp(2.8rem, 8vw, 5rem);
  letter-spacing: .06em; margin: 0 0 .2rem; font-weight: 500;
}
.hero__script {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  color: var(--rose);
  margin: 0 0 1.2rem;
}
.hero__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 30em; margin: 0 auto 2rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--ink-soft); border-radius: 14px;
  z-index: 2; opacity: .6;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--ink-soft); border-radius: 3px;
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0%,100% { transform: translate(-50%, 0); opacity: 1; } 60% { transform: translate(-50%, 14px); opacity: 0; } }

/* ============================ SECTIONS ============================ */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--soft { background: var(--cream-2); }
.section--intro { padding-bottom: clamp(3rem, 6vw, 4.5rem); text-align: center; }

.section__head { text-align: center; max-width: 620px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.section__sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Angebote / Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: var(--cream); color: var(--sage-deep);
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { color: var(--mocha); }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card__price {
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px dashed var(--sand);
  font-weight: 600; color: var(--ink); font-size: .95rem;
}

/* ---------- Zitat-Band ---------- */
.quote {
  position: relative;
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: var(--cream-2);
  text-align: center;
  padding: clamp(4rem, 9vw, 6.5rem) 1.25rem;
  overflow: hidden;
}
.quote__bloom {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.08); filter: blur(30px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.quote__floral { position: absolute; width: clamp(130px, 20vw, 230px); z-index: 1; opacity: .9; pointer-events: none; }
.quote__floral--l { top: -6%; left: -2%; transform: rotate(-10deg); }
.quote__floral--r { bottom: -6%; right: -2%; transform: rotate(170deg); }
.quote blockquote { margin: 0; position: relative; z-index: 2; }
.quote__script {
  font-family: var(--script);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.25; margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}

/* ---------- Über mich ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, var(--sand) 0 14px, #e3d4bf 14px 28px);
  display: grid; place-items: center;
  color: var(--ink-soft); text-align: center; font-style: italic;
  box-shadow: var(--shadow-md);
}
.about__badge {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--cream-2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 148px; height: 148px;
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}
.about__badge-top { font-family: var(--serif); font-style: italic; color: var(--mocha); font-size: 1rem; }
.about__badge-main { font-family: var(--serif); font-size: 1.02rem; line-height: 1.1; color: var(--ink); }
.about__badge-sub { font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-top: .35rem; }
.about__text p { color: var(--ink-soft); }
.about__note { font-size: .9rem; }

/* ---------- Preise ---------- */
.pricelist { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.pricelist li {
  display: flex; align-items: baseline; gap: .5rem;
  padding: .85rem 0; border-bottom: 1px solid var(--sand);
}
.pricelist__name { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.pricelist__dots { flex: 1; border-bottom: 2px dotted var(--sand); transform: translateY(-4px); }
.pricelist__price { font-weight: 600; white-space: nowrap; }
.pricelist__hint { font-size: .88rem; color: var(--ink-soft); text-align: center; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__lead { color: var(--ink-soft); }
.contact__list { list-style: none; margin: 1.8rem 0; padding: 0; }
.contact__list li { padding: .7rem 0; border-bottom: 1px solid var(--sand); }
.contact__label {
  display: block; text-transform: uppercase; letter-spacing: .16em;
  font-size: .68rem; font-weight: 600; color: var(--mocha); margin-bottom: .15rem;
}
.contact__list a { text-decoration: none; font-size: 1.1rem; }
.contact__list a:hover { color: var(--mocha); }
.contact__socials a {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; color: var(--ink); font-weight: 500;
}
.contact__socials svg { width: 22px; height: 22px; }
.contact__socials a:hover { color: var(--mocha); }

.contact__form {
  background: var(--cream-2);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: .35rem; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .98rem; color: var(--ink);
  padding: .75rem .9rem;
  border: 1px solid var(--sand); border-radius: 12px;
  background: var(--white); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(162,174,144,.25);
}
.field textarea { resize: vertical; }
.contact__formnote { font-size: .82rem; margin-top: .8rem; }
.contact__success {
  margin-top: 1rem; padding: .9rem 1rem; border-radius: 12px;
  background: rgba(162,174,144,.2); color: var(--sage-deep); font-weight: 600; text-align: center;
}

/* ============================ FOOTER ============================ */
.footer { background: var(--ink); color: var(--cream); padding: 3rem 0 2rem; }
.footer__inner { display: grid; gap: 1.6rem; text-align: center; justify-items: center; }
.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__name { font-family: var(--serif); font-size: 1.3rem; margin: 0; }
.footer__sub { font-size: .8rem; color: rgba(246,239,229,.65); margin: 0; }
.footer__nav { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.footer__nav a { color: rgba(246,239,229,.85); text-decoration: none; font-size: .9rem; }
.footer__nav a:hover { color: var(--rose-soft); }
.footer__copy { font-size: .8rem; color: rgba(246,239,229,.55); margin: 0; }
.footer__copy a { color: inherit; }

/* ============================ TERMIN BUCHEN ============================ */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.cal {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.cal__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal__title { font-family: var(--serif); font-size: 1.35rem; color: var(--mocha); text-transform: capitalize; }
.cal__nav {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--sand); background: var(--cream-2); color: var(--mocha);
  font-size: 1.3rem; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.cal__nav:hover { background: var(--sand); transform: translateY(-1px); }
.cal__weekdays, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal__weekdays { margin-bottom: 6px; }
.cal__weekdays span {
  text-align: center; font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft);
}
.cal__cell {
  aspect-ratio: 1 / 1; display: grid; place-items: center; position: relative;
  border: 0; background: transparent; border-radius: 10px;
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
}
.cal__cell--empty { visibility: hidden; }
.cal__cell--free { cursor: pointer; background: rgba(162,174,144,.16); font-weight: 600; transition: background .2s ease, transform .2s ease; }
.cal__cell--free:hover { background: rgba(162,174,144,.34); transform: translateY(-1px); }
.cal__cell--free::after { content: ""; position: absolute; bottom: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--sage-deep); }
.cal__cell--busy { color: var(--rose); opacity: .6; cursor: not-allowed; text-decoration: line-through; }
.cal__cell--past { color: var(--ink-soft); opacity: .35; cursor: default; }
.cal__cell--selected { background: var(--mocha); color: var(--cream-2); font-weight: 600; }
.cal__cell--selected::after { background: var(--cream-2); }
.cal__legend { display: flex; gap: 1.4rem; justify-content: center; margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); }
.cal__legend span { display: inline-flex; align-items: center; gap: .4rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--free { background: var(--sage); }
.dot--busy { background: var(--rose); }

.booking__panel {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
}
.booking__daylabel { font-family: var(--serif); font-size: 1.3rem; color: var(--mocha); margin: 0 0 1rem; }
.slots { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.2rem; }
.slot {
  border: 1px solid var(--sand); background: var(--cream-2); color: var(--ink);
  padding: .55rem 1rem; border-radius: 999px; font-family: var(--sans); font-size: .92rem;
  cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.slot:hover { border-color: var(--sage); transform: translateY(-1px); }
.slot--taken { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.slot--selected { background: var(--mocha); color: var(--cream-2); border-color: var(--mocha); }
.booking__summary {
  background: rgba(162,174,144,.16); border-radius: 12px; padding: .7rem .9rem;
  font-size: .95rem; color: var(--sage-deep); font-weight: 600; margin: 0 0 1.1rem;
}
.booking__success {
  background: rgba(162,174,144,.2); color: var(--sage-deep); font-weight: 600;
  border-radius: 12px; padding: 1rem; text-align: center; margin: 0;
}

/* ============================ REVEAL-ANIMATION ============================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 400px; margin: 0 auto; }
  .contact { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--cream-2); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.4rem;
    transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.12);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .brand__sub { display: none; }
}

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