/* ============================================================
 * MAISON FLORELLE — Soft & Pastell Editorial Beauty Atelier
 * ============================================================
 * Brand: Maison Florelle · Musterort · seit 2019
 * Style: warm cream, rose powder, deep moss; editorial serif + clean sans
 */

/* -------------------- Tokens -------------------- */
:root {
  /* Palette */
  --cream: #f7eee5;
  --cream-deep: #f0e3d3;
  --rose: #e9c5b4;
  --rose-deep: #d8a691;
  --rose-soft: #f5dfd2;
  --moss: #2c3a2c;
  --moss-soft: #3e5040;
  --sand: #d9c9b3;
  --brass: #b08454;
  --ink: #1f1a16;
  --muted: #6b605a;
  --line: #e3d6c4;

  /* Typo */
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Helvetica Neue', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Layout */
  --nav-h: 80px;
  --container: 1200px;
  --radius-soft: 28px;
  --radius-pill: 999px;

    --demo-banner-bg: #2c3a2c;
    --demo-banner-fg: #f7eee5;
    --demo-banner-accent: #e9c5b4;
}

/* -------------------- Reset / Base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--rose-deep); color: var(--cream); }

/* -------------------- Typography -------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--moss);
  letter-spacing: -0.005em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.1rem; }
em {
  font-style: italic;
  color: var(--rose-deep);
  font-feature-settings: "swsh" 1;
}
p { margin: 0 0 1em; }
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.kicker--moss { color: var(--moss); }
.kicker--cream { color: var(--cream); }

/* -------------------- Layout primitives -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--cream-deep); }
.section--moss { background: var(--moss); color: var(--cream); }
.section--moss h1, .section--moss h2, .section--moss h3 { color: var(--cream); }
.section--moss em { color: var(--rose); }
.section--moss .kicker { color: var(--rose); }

.section__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 16px auto 0; }
.section--moss .section__head p { color: rgba(247, 238, 229, 0.78); }

/* -------------------- Demo Banner (will be sticky) -------------------- */
/* Real CSS in inline <style id="demo-banner-css"> in <head>. */

/* -------------------- Navigation -------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(247, 238, 229, 0.92);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  transition: background 0.3s ease;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--moss);
}
.nav__brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__brand-sub {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--moss);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a[aria-current="page"] {
  color: var(--rose-deep);
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--rose-deep);
}
.nav__cta {
  background: var(--moss);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__cta:hover { background: var(--rose-deep); transform: translateY(-1px); }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 60;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--moss);
  transition: transform 0.25s ease, opacity 0.2s ease;
  display: block;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--moss);
  color: var(--cream);
  border: 1px solid var(--moss);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--moss);
  border: 1px solid var(--moss);
}
.btn--ghost:hover { background: var(--moss); color: var(--cream); transform: translateY(-2px); }
.btn--rose {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--cream);
}
.btn--rose:hover { background: var(--moss); border-color: var(--moss); }
.btn--cream {
  background: var(--cream);
  color: var(--moss);
  border-color: var(--cream);
}
.btn--cream:hover { background: var(--rose); border-color: var(--rose); color: var(--moss); }
.btn--cream-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn--cream-ghost:hover { background: var(--cream); color: var(--moss); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(233, 197, 180, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(176, 132, 84, 0.18) 0%, transparent 55%),
    var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: var(--rose-soft);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.hero__copy { padding: 20px 0; }
.hero__copy h1 {
  margin-bottom: 28px;
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 38px;
  line-height: 1.55;
}
.hero__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-soft);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(247, 238, 229, 0.94);
  color: var(--moss);
  padding: 14px 20px 14px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 26px rgba(28, 36, 28, 0.10);
}
.hero__badge-stars {
  color: var(--brass);
  letter-spacing: 1px;
}

/* Trust strip */
.trust-strip {
  background: var(--cream-deep);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-strip__list li {
  font-family: var(--serif);
  font-size: clamp(0.96rem, 1.3vw, 1.15rem);
  color: var(--moss-soft);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-strip__list li::before {
  content: "✦";
  color: var(--rose-deep);
  font-style: normal;
  font-size: 0.7em;
}

/* -------------------- Treatments / Service grid -------------------- */
.treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.treatment {
  background: var(--cream);
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.treatment:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(28, 36, 28, 0.08);
  border-color: var(--rose);
}
.treatment__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.treatment__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
}
.treatment:hover .treatment__media img { transform: scale(1.06); }
.treatment__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.treatment__num {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.treatment__title {
  font-size: 1.55rem;
  margin: 0 0 12px;
  color: var(--moss);
}
.treatment__desc {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 0.96rem;
  line-height: 1.55;
  flex-grow: 1;
}
.treatment__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--moss);
  font-weight: 600;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.treatment__price { color: var(--rose-deep); }

/* -------------------- Philosophy / Pull-quote -------------------- */
.pull-quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.pull-quote__mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 12px;
}
.pull-quote__text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
  line-height: 1.3;
  margin: 0 0 28px;
}
.pull-quote__cite {
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

/* -------------------- About-Split -------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.about-split__media {
  border-radius: var(--radius-soft);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body p { color: var(--muted); margin: 0 0 16px; line-height: 1.7; }
.about-split__body h2 { margin-bottom: 24px; }
.about-split__body .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--moss);
  margin-top: 32px;
  display: block;
}
.about-split__body .signature-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

/* -------------------- Process -------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-deep), transparent);
  z-index: 0;
}
.process__step {
  position: relative;
  background: var(--cream);
  padding: 32px 24px 28px;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
  text-align: center;
  z-index: 1;
}
.process__num {
  width: 56px; height: 56px;
  margin: -56px auto 18px;
  background: var(--rose-deep);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  border: 4px solid var(--cream);
}
.process__step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.process__step p { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.55; }

/* -------------------- Team -------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.team-card {
  text-align: center;
}
.team-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-soft);
  overflow: hidden;
  margin: 0 0 22px;
}
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(44, 58, 44, 0.18) 100%);
}
.team-card h3 {
  font-size: 1.55rem;
  margin: 0 0 4px;
  font-weight: 500;
}
.team-card__role {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin: 0 0 12px;
}
.team-card__bio {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* -------------------- Pricing/Treatment list (Behandlungen) -------------------- */
.menu {
  max-width: 920px;
  margin: 0 auto;
}
.menu__group { margin-bottom: 56px; }
.menu__group-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.menu__group-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brass);
}
.menu__group-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--moss);
  margin: 0;
}
.menu__list { display: grid; gap: 22px; }
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.menu__item:last-child { border-bottom: 0; }
.menu__item-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--moss);
  margin: 0 0 4px;
}
.menu__item-desc {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.menu__item-meta {
  text-align: right;
  font-family: var(--sans);
  white-space: nowrap;
}
.menu__item-duration {
  display: block;
  font-size: 0.78rem;
  color: var(--brass);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.menu__item-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--moss);
  font-style: italic;
}

/* -------------------- Gallery -------------------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: var(--cream-deep);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* -------------------- Booking widget (CTA) -------------------- */
.booking-card {
  background: var(--moss);
  color: var(--cream);
  border-radius: var(--radius-soft);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--rose-deep);
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}
.booking-card h2 { color: var(--cream); margin-bottom: 18px; }
.booking-card em { color: var(--rose); }
.booking-card__sub {
  color: rgba(247, 238, 229, 0.78);
  margin: 0 0 28px;
  font-size: 1.05rem;
  max-width: 420px;
}
.booking-card__steps {
  position: relative;
  z-index: 1;
  background: rgba(247, 238, 229, 0.08);
  border-radius: var(--radius-soft);
  padding: 28px;
  border: 1px solid rgba(247, 238, 229, 0.18);
}
.booking-card__steps ol {
  margin: 0; padding: 0; list-style: none;
  counter-reset: bookstep;
}
.booking-card__steps li {
  counter-increment: bookstep;
  padding: 14px 0 14px 44px;
  position: relative;
  font-size: 0.96rem;
  border-bottom: 1px solid rgba(247, 238, 229, 0.1);
}
.booking-card__steps li:last-child { border-bottom: 0; padding-bottom: 4px; }
.booking-card__steps li::before {
  content: counter(bookstep);
  position: absolute;
  left: 0; top: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rose);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
}

/* -------------------- Form -------------------- */
.form {
  background: var(--cream);
  border-radius: var(--radius-soft);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
}
.form__row { display: grid; gap: 20px; margin-bottom: 20px; }
.form__row--two { grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  background: var(--cream);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 12px 0 24px;
}
.form__consent input { margin-top: 4px; }
.form__submit { width: 100%; justify-content: center; }

/* -------------------- FAQ -------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--moss);
  position: relative;
  font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--rose-deep);
  font-weight: 300;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
  color: var(--muted);
  padding: 0 0 24px;
  font-size: 1rem;
  line-height: 1.65;
}

/* -------------------- Big CTA / Banner -------------------- */
.big-cta {
  background: var(--rose);
  border-radius: var(--radius-soft);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin: 0 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.big-cta h2 { max-width: 540px; }
.big-cta p { color: var(--moss-soft); max-width: 540px; }

/* -------------------- Map placeholder (privacy by design) -------------------- */
.map {
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}
.map__static {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 35% 50%, var(--rose-soft) 0%, transparent 35%),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(176, 132, 84, 0.08) 22px 23px),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(44, 58, 44, 0.06) 22px 23px),
    var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__pin {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--rose-deep);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--rose-deep), 0 8px 22px rgba(0,0,0,0.18);
  position: relative;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--rose-deep);
  border-radius: 50%;
  opacity: 0.4;
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* -------------------- Contact info -------------------- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.contact-info__card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: 32px 28px;
  text-align: center;
}
.contact-info__icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  background: var(--rose-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
}
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin: 0 0 6px;
}
.contact-info__value {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--moss);
  margin: 0;
}
.contact-info__value a { text-decoration: none; }
.contact-info__value a:hover { color: var(--rose-deep); }
.contact-info__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* -------------------- Hours table -------------------- */
.hours {
  display: grid;
  gap: 8px;
  font-family: var(--sans);
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
}
.hours__row:last-child { border-bottom: 0; }
.hours__row--closed { color: var(--muted); font-style: italic; }
.hours__day { color: var(--moss); font-weight: 500; }
.hours__time { color: var(--moss); }

/* -------------------- Footer -------------------- */
.footer {
  background: var(--moss);
  color: rgba(247, 238, 229, 0.82);
  padding: 80px 0 32px;
  margin-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--cream);
  text-decoration: none;
}
.footer__brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
}
.footer__about { font-size: 0.94rem; line-height: 1.65; max-width: 320px; margin-bottom: 18px; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.footer__col a, .footer__col p {
  display: block;
  text-decoration: none;
  color: rgba(247, 238, 229, 0.82);
  font-size: 0.94rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--rose); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(247, 238, 229, 0.12);
  padding-top: 24px;
  font-size: 0.84rem;
  color: rgba(247, 238, 229, 0.6);
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(247, 238, 229, 0.7);
  text-decoration: none;
  margin-left: 18px;
}
.footer__legal a:hover { color: var(--rose); }

/* -------------------- Reveal animation -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* -------------------- Page hero (subpages) -------------------- */
.page-hero {
  padding: clamp(72px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233, 197, 180, 0.4) 0%, transparent 60%),
    var(--cream);
  position: relative;
}
.page-hero__crumbs {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  font-weight: 600;
}
.page-hero__crumbs a { color: var(--brass); text-decoration: none; }
.page-hero__crumbs a:hover { color: var(--rose-deep); }
.page-hero h1 { font-weight: 400; max-width: 920px; margin: 0 auto; }
.page-hero p { color: var(--muted); max-width: 680px; margin: 24px auto 0; font-size: 1.08rem; }

/* -------------------- Cookie banner (DSGVO) -------------------- */
.cookie {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 460px;
  background: var(--moss);
  color: var(--cream);
  padding: 24px 26px;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(28, 36, 28, 0.35);
  z-index: 200;
  display: none;
}
.cookie.is-visible { display: block; }
.cookie h4 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-weight: 500;
}
.cookie p {
  font-size: 0.92rem;
  margin: 0 0 18px;
  color: rgba(247, 238, 229, 0.78);
}
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 10px 18px; font-size: 0.84rem; }

/* -------------------- Responsive -------------------- */
@media (max-width: 960px) {
  :root { --nav-h: 70px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav__links a { font-size: 1.4rem; font-family: var(--serif); }
  body.menu-open .nav__links { transform: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 4 / 3; max-height: 480px; }
  .treatments { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 56px; }
  .process::before { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .about-split { grid-template-columns: 1fr; }
  .booking-card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding-top: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .menu__item { grid-template-columns: 1fr; }
  .menu__item-meta { text-align: left; }
}
