/* ============================================================
   Bloom Beauty — Luxury Editorial Stylesheet
   ============================================================ */

:root {
  --rose-gold: #B76E79;
  --rose-gold-light: #D4A0A7;
  --rose-gold-dark: #8B4F57;
  --blush: #F5E6E0;
  --cream: #FFF8F0;
  --warm-white: #FFFDF9;
  --charcoal: #2D2D2D;
  --gold-shimmer: #D4AF37;
  --deep-plum: #4A2C3D;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--deep-plum);
  margin: 0;
  letter-spacing: 0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ---------- Grain overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Floating gradient orbs ---------- */
.orb-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}
.orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--rose-gold-light), transparent 70%);
  top: -120px; left: -80px;
  animation: floatA 12s ease-in-out infinite;
}
.orb-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--gold-shimmer), transparent 70%);
  top: 30%; right: -100px;
  animation: floatB 9s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--rose-gold), transparent 70%);
  bottom: -100px; left: 30%;
  animation: floatC 14s ease-in-out infinite;
}
.orb-4 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--deep-plum), transparent 70%);
  top: 50%; left: 10%;
  opacity: 0.25;
  animation: floatB 11s ease-in-out infinite reverse;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.08); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(0.95); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--warm-white);
  box-shadow: 0 12px 28px -8px rgba(139, 79, 87, 0.55);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -150%; }
  55%, 100% { left: 150%; }
}

.btn-outline {
  background: transparent;
  color: var(--deep-plum);
  border-color: var(--rose-gold);
}
.btn-outline:hover { background: var(--blush); }

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
}

/* ---------- Badge shimmer ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-plum);
}
.logo span { color: var(--rose-gold); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 20px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  background: none;
  border: none;
  z-index: 600;
}
.hamburger span {
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: var(--deep-plum);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-primary { display: none; }
  .hamburger { display: block; }
}

/* Mobile overlay menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 550;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-overlay a:not(.btn) {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--deep-plum);
}
body.menu-open { overflow: hidden; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(45,26,35,0.92) 0%, rgba(74,44,61,0.75) 45%, rgba(183,110,121,0.35) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}
.hero-content { max-width: 720px; }
.hero-content .badge {
  background: rgba(245, 230, 224, 0.14);
  color: var(--blush);
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--warm-white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 26px;
}
.hero h1 em { color: var(--rose-gold-light); font-style: italic; }
.hero p.lead {
  color: rgba(255,253,249,0.85);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 56px; }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,253,249,0.1);
  border: 1px solid rgba(255,253,249,0.2);
  backdrop-filter: blur(6px);
  padding: 14px 22px;
  border-radius: 18px;
  color: var(--warm-white);
}
.hero-rating .stars { color: var(--gold-shimmer); letter-spacing: 2px; }
.hero-rating strong { font-family: var(--font-display); font-size: 1.3rem; }
.hero-rating small { display: block; color: rgba(255,253,249,0.7); font-size: 0.75rem; letter-spacing: 0.06em; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee-strip {
  background: var(--deep-plum);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--blush);
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-track span.sep { color: var(--gold-shimmer); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section basics
   ============================================================ */
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section-cream { background: var(--cream); }
.section-blush { background: var(--blush); }
.section-dark { background: var(--charcoal); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.section-title em { color: var(--rose-gold); font-style: italic; }
.section-lead {
  max-width: 620px;
  color: #5b5b5b;
  font-size: 1.05rem;
  font-weight: 300;
}
.section-head { margin-bottom: 60px; }

/* Reveal: soft entrance, never leave content invisible if IO misses */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.visible,
html.js.revealed .reveal {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.about-figure {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--rose-gold);
  z-index: -1;
}
.about-text p { color: #4d4d4d; margin-bottom: 20px; font-weight: 300; font-size: 1.02rem; }
.about-text .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rose-gold-dark);
  margin-top: 28px;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Leistungen — asymmetric grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--warm-white);
  box-shadow: 0 20px 50px -30px rgba(74,44,61,0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-card.span-5 { grid-column: span 5; }
.service-card.span-7 { grid-column: span 7; }
.service-card.span-full { grid-column: span 12; grid-template-columns: 1fr 1fr 1fr; }

.service-card .s-media { position: relative; overflow: hidden; min-height: 260px; }
.service-card .s-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .s-media img { transform: scale(1.06); }
.service-card.reverse { direction: rtl; }
.service-card.reverse .s-body { direction: ltr; }

.s-body {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-body .eyebrow { margin-bottom: 10px; }
.s-body h3 { font-size: 1.7rem; margin-bottom: 14px; }
.s-body p { color: #5b5b5b; font-weight: 300; margin-bottom: 18px; font-size: 0.98rem; }
.s-price {
  font-family: var(--font-display);
  color: var(--rose-gold-dark);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.s-price strong { font-size: 1.3rem; }
.s-body .btn { align-self: flex-start; padding: 12px 24px; font-size: 0.85rem; }

.service-card.span-full { grid-template-columns: 0.9fr 0.9fr 1.2fr; }
.service-card.span-full .s-media:nth-child(2) { min-height: unset; }

@media (max-width: 980px) {
  .service-card.span-5,
  .service-card.span-7,
  .service-card.span-full {
    grid-column: span 12;
    grid-template-columns: 1fr;
  }
  .service-card.reverse { direction: ltr; }
  .service-card .s-media { min-height: 220px; }
  .service-card.span-full { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .service-card.span-full { grid-template-columns: 1fr; }
}

/* ============================================================
   Preise — tabs & tables
   ============================================================ */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.price-tab {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(183,110,121,0.35);
  background: transparent;
  color: var(--deep-plum);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.price-tab.active,
.price-tab:hover {
  background: var(--rose-gold);
  color: var(--warm-white);
  border-color: var(--rose-gold);
}

.price-panel { display: none; }
.price-panel.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.price-panel.single-col { grid-template-columns: 1fr; max-width: 640px; }

.price-group h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-gold-dark);
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 700;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dotted rgba(45,45,45,0.25);
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.price-row:hover { padding-left: 10px; color: var(--rose-gold-dark); }
.price-row .label { font-size: 1rem; font-weight: 400; }
.price-row .price { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; white-space: nowrap; }

.price-note {
  margin-top: 28px;
  font-size: 0.88rem;
  color: #6b6b6b;
  font-style: italic;
}

@media (max-width: 760px) {
  .price-panel.active { grid-template-columns: 1fr; }
}

/* ============================================================
   Testimonials (dark)
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.testimonial-card {
  background: rgba(255,253,249,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  padding: 36px 30px;
  color: var(--blush);
}
.testimonial-grid .testimonial-card:nth-child(2) {
  transform: translateY(-26px);
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.06);
}
.testimonial-card .stars { color: var(--gold-shimmer); letter-spacing: 3px; margin-bottom: 18px; display: block; }
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--warm-white);
}
.testimonial-card .author { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-gold-light); }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-card:nth-child(2) { transform: none; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: stretch;
}
.contact-card {
  background: var(--warm-white);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 50px);
  box-shadow: 0 20px 50px -30px rgba(74,44,61,0.35);
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(183,110,121,0.15);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; color: var(--charcoal); }
.contact-item p { margin: 0; color: #5b5b5b; font-size: 0.95rem; }
.contact-card .btn { margin-top: 26px; width: 100%; justify-content: center; }

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 20px 50px -30px rgba(74,44,61,0.35);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: saturate(0.85) contrast(1.02); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--deep-plum);
  color: var(--blush);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer-logo { font-family: var(--font-display); font-size: 1.7rem; color: var(--warm-white); margin-bottom: 14px; }
.footer-logo em { color: var(--rose-gold-light); font-style: italic; }
.footer-top p { color: rgba(245,230,224,0.7); font-size: 0.92rem; font-weight: 300; max-width: 320px; }
.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-shimmer);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(245,230,224,0.82); font-size: 0.94rem; }
.footer-col ul li a:hover { color: var(--rose-gold-light); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(245,230,224,0.55);
}
.footer-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,230,224,0.4);
  border: 1px solid rgba(245,230,224,0.2);
  padding: 4px 12px;
  border-radius: 999px;
}
@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal-hero {
  background: var(--blush);
  padding: 100px 0 60px;
  text-align: left;
}
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; font-size: 0.9rem; color: var(--rose-gold-dark); font-weight: 500; }
.legal-body { max-width: 760px; padding: 70px 0; }
.legal-body h2 { font-size: 1.7rem; margin-top: 44px; margin-bottom: 16px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: #4d4d4d; font-size: 1rem; font-weight: 300; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body address { font-style: normal; }
.legal-body .stand { margin-top: 50px; font-size: 0.85rem; color: #8a8a8a; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
