/* =============================================================
   Relax ASMR Tingle Massage – style.css
   Sections:
     1.  CSS Variables (design tokens)
     2.  Reset & Base
     3.  Custom Cursor (desktop only)
     4.  Navigation
     5.  Hero
     6.  Section Helpers
     7.  Benefits
     8.  About
     9.  Services
    10.  Experience
    11.  Gallery
    12.  Testimonials
    13.  Contact
    14.  Footer
    15.  Floating WhatsApp Button
    16.  Animations & Scroll Reveal
    17.  Mobile Menu
    18.  Modals (Impressum / Datenschutz)
    19.  Cookie Banner
    20.  Responsive – 900px
    21.  Responsive – 600px (mobile)
   ============================================================= */


/* ── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  --cream:        #faf7f2;
  --warm-white:   #fdf9f4;
  --beige:        #f0e8dc;
  --beige-mid:    #e8ddd0;
  --nude:         #d4bfa8;
  --nude-dark:    #b89a82;
  --gold:         #c9a96e;
  --gold-light:   #e0c898;
  --gold-pale:    #f5ead8;
  --brown-soft:   #8b6e58;
  --text-dark:    #2c2018;
  --text-mid:     #5c4535;
  --text-light:   #9e8070;
  --text-ghost:   #c4b0a0;
  --glass-bg:     rgba(253, 249, 244, 0.6);
  --glass-border: rgba(201, 169, 110, 0.2);
}


/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: default;
}


/* ── 3. CUSTOM CURSOR (desktop / pointer devices only) ─────── */
.cursor,
.cursor-ring {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: multiply;
  }

  .cursor-ring {
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.6;
  }
}


/* ── 4. NAVIGATION ─────────────────────────────────────────── */
/* header[role=banner] wraps nav – needs same stacking context */
header[role="banner"] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

nav {
  position: relative;
  z-index: 200;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(253, 249, 244, 0.93);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  box-shadow: 0 1px 0 var(--glass-border);
}
/* Also apply scroll styles to the header wrapper */
header[role="banner"].scrolled {
  background: rgba(253, 249, 244, 0.93);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}

/*
  Logo placeholder.
  To add your logo, replace the <span class="nav-logo-text"> in index.html with:
  <img src="assets/logo/logo.png" alt="Relax ASMR Tingle Massage" height="38">
*/
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.12em;
  transition: color 0.4s;
}
nav.scrolled .nav-logo-text { color: var(--text-dark); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 300;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
nav.scrolled .nav-links a { color: var(--text-mid); }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  border: 1px solid rgba(201, 169, 110, 0.5);
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: #fff !important;
  border-color: var(--gold);
}
nav.scrolled .nav-cta { color: var(--gold) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  display: block;
  transition: background 0.3s;
  border-radius: 1px;
}
nav.scrolled .hamburger span { background: var(--text-dark); }



/* ── 5. HERO ───────────────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(180, 140, 100, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(120, 80, 50, 0.25) 0%, transparent 60%),
    linear-gradient(160deg, #1a1008 0%, #2e1c0e 35%, #3d2510 55%, #251508 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 8s ease-in-out infinite;
  opacity: 0;
}
.hero-blob:nth-child(1) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.hero-blob:nth-child(2) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 120, 80, 0.15) 0%, transparent 70%);
  bottom: 50px;
  left: 100px;
  animation-delay: -4s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%       { transform: translate(20px, -20px) scale(1.05); opacity: 1; }
}

.hero-grain {
  position: absolute;
  inset: 0;
  /* Subtle SVG noise texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,  transparent, transparent 119px, rgba(201, 169, 110, 0.04) 120px),
    repeating-linear-gradient(0deg,   transparent, transparent 119px, rgba(201, 169, 110, 0.04) 120px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 300;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-badge::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--warm-white);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240, 220, 190, 0.75);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-mantra {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-mantra .sep {
  margin: 0 10px;
  opacity: 0.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--nude-dark) 100%);
  color: white;
  border: none;
  padding: 18px 44px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 169, 110, 0.5);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 18px 44px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.7);
  font-weight: 300;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.7) 0%, transparent 100%);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}


/* ── 6. SECTION HELPERS ────────────────────────────────────── */
section {
  position: relative;
  overflow: hidden;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}


/* ── 7. BENEFITS ───────────────────────────────────────────── */
#benefits {
  background: var(--cream);
  padding: 100px 48px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}
.benefits-header .section-label { justify-content: center; }
.benefits-header .section-label::before { display: none; }
.benefits-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(139, 110, 88, 0.12);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--beige) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}
.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}


/* ── 8. ABOUT ──────────────────────────────────────────────── */
#about {
  padding: 100px 48px;
  background: var(--warm-white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--beige) 0%, var(--nude) 60%, var(--nude-dark) 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  position: relative;
  overflow: hidden;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  33%       { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
  66%       { border-radius: 50% 50% 60% 40% / 55% 45% 55% 45%; }
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 240, 220, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(180, 130, 90, 0.4) 0%, transparent 50%);
}

.about-img-inner {
  position: absolute;
  inset: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.about-symbol {
  font-size: 5rem;
  filter: drop-shadow(0 4px 20px rgba(201, 169, 110, 0.4));
  animation: floatSymbol 4s ease-in-out infinite;
}

@keyframes floatSymbol {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.about-img-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: white;
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 16px 50px rgba(139, 110, 88, 0.15);
  border: 1px solid var(--glass-border);
}
.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-badge .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 300;
}

.about-text .section-label { margin-bottom: 20px; }
.about-text .section-title { margin-bottom: 32px; }
.about-text p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.about-pillars {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 300;
}
.pillar::before {
  content: '◇';
  color: var(--gold);
  font-size: 0.55rem;
}


/* ── 9. SERVICES ───────────────────────────────────────────── */
#services {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid var(--beige-mid);
  border-radius: 28px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--nude-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(139, 110, 88, 0.14);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--beige) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
}
.service-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  padding: 6px 14px;
  border: 1px solid var(--gold-pale);
  border-radius: 20px;
}


/* ── 10. EXPERIENCE ────────────────────────────────────────── */
#experience,
#what-is {
  padding: 120px 48px;
  background: linear-gradient(160deg, #1a1008 0%, #2e1c0e 40%, #1e1208 100%);
  position: relative;
  overflow: hidden;
}

.exp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.exp-glow:nth-child(1) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.exp-glow:nth-child(2) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 100, 60, 0.1) 0%, transparent 70%);
  bottom: -150px;
  left: 0;
}

.exp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.exp-text .section-label        { color: var(--gold-light); }
.exp-text .section-label::before { background: var(--gold-light); }
.exp-text .section-title         { color: var(--warm-white); margin-bottom: 36px; }
.exp-text .section-title em      { color: var(--gold-light); }
.exp-text p {
  font-size: 1rem;
  line-height: 2.1;
  color: rgba(240, 220, 190, 0.7);
  font-weight: 300;
  margin-bottom: 20px;
}

.exp-feelings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feeling-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s;
}
.feeling-item:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.feeling-emoji { font-size: 2rem; margin-bottom: 10px; }
.feeling-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 6px;
}
.feeling-item p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(201, 169, 110, 0.65);
  font-weight: 300;
  margin: 0;
}


/* ── 11. GALLERY ───────────────────────────────────────────── */
#gallery {
  padding: 100px 48px;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.masonry {
  columns: 3;
  column-gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 15, 5, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.masonry-item:hover::after { opacity: 1; }

.masonry-item .gallery-placeholder {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.masonry-item:hover .gallery-placeholder { transform: scale(1.06); }

/* Gallery SVG placeholder helper */
.gp { display: block; width: 100%; }


/* ── 12. TESTIMONIALS ──────────────────────────────────────── */
#testimonials {
  padding: 100px 48px;
  background: var(--warm-white);
}

.testi-header {
  text-align: center;
  margin-bottom: 60px;
}
.testi-header .section-label { justify-content: center; }
.testi-header .section-label::before { display: none; }
.testi-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-card {
  background: rgba(253, 249, 244, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(139, 110, 88, 0.1);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.testi-quote::before {
  content: '\201C';
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.testi-author { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nude) 0%, var(--nude-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.testi-loc {
  font-size: 0.72rem;
  color: var(--text-ghost);
  letter-spacing: 0.1em;
  font-weight: 300;
}


/* ── 13. CONTACT ───────────────────────────────────────────── */
#contact {
  padding: 100px 48px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige) 100%);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 24px; }
.contact-info p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  color: white;
}
.channel-btn svg { flex-shrink: 0; }

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.35);
  color: white;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 24px rgba(188, 24, 136, 0.25);
}
.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(188, 24, 136, 0.35);
  color: white;
}

.service-area {
  margin-top: 36px;
  padding: 22px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.area-icon { font-size: 1.5rem; }
.area-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}
.area-text strong {
  color: var(--text-dark);
  font-weight: 500;
  display: block;
}

.contact-form-wrap {
  background: white;
  border-radius: 32px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(139, 110, 88, 0.08);
  border: 1px solid var(--glass-border);
}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--beige-mid);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: all 0.3s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}
.form-group textarea { height: 120px; }

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--nude-dark) 100%);
  color: white;
  border: none;
  padding: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 169, 110, 0.45);
  color: white;
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-ghost);
  font-weight: 300;
}


/* ── 14. FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--text-dark);
  padding: 56px 48px 36px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.1em;
}
.footer-logo span {
  color: var(--gold-light);
  font-style: italic;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  margin-top: 4px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.6);
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
  cursor: pointer;
}
.footer-links a:hover { color: var(--gold-light); }


/* ── 15. FLOATING WHATSAPP BUTTON ──────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fabPulse 3s ease-in-out infinite;
}
.fab-whatsapp:hover {
  background: #1aab52;
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}
.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}


/* ── 16. ANIMATIONS & SCROLL REVEAL ───────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ── 17. MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(28, 16, 6, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* opacity + pointer-events toggle = smooth fade with no display:none flicker */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 18px 0;
  width: 200px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-light); }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}
.mobile-close:hover { color: var(--gold); }


/* ── 18. MODALS (Impressum / Datenschutz) ──────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(28, 16, 6, 0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--warm-white);
  border-radius: 28px;
  max-width: 680px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 52px 48px;
  position: relative;
  box-shadow: 0 40px 100px rgba(28, 16, 6, 0.35);
  border: 1px solid var(--glass-border);
  animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-box::-webkit-scrollbar       { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: var(--beige); border-radius: 2px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--nude-dark); border-radius: 2px; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--beige);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-mid);
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--beige-mid);
  color: var(--text-dark);
}

.modal-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.2;
}

.modal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin: 28px 0 10px;
}
.modal-body p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 10px;
}
.modal-body a { color: var(--gold); text-decoration: none; }
.modal-body a:hover { text-decoration: underline; }

.modal-divider {
  height: 1px;
  background: var(--beige-mid);
  margin: 24px 0;
}


/* ── 19. COOKIE BANNER ─────────────────────────────────────── */
.cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(28, 16, 6, 0.45);
  backdrop-filter: blur(6px);
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}
.cookie-overlay.open { display: flex; }

.cookie-box {
  background: var(--warm-white);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  padding: 36px 40px;
  box-shadow: 0 30px 80px rgba(28, 16, 6, 0.3);
  animation: slideUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  gap: 28px;
  align-items: center;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-icon { font-size: 2.2rem; flex-shrink: 0; }

.cookie-text { flex: 1; }
.cookie-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cookie-text p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}
.cookie-text p a {
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
}
.cookie-text p a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--nude-dark) 100%);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 40px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}
.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.45);
  color: white;
}

.cookie-decline {
  background: transparent;
  color: var(--text-ghost);
  border: 1px solid var(--beige-mid);
  padding: 11px 28px;
  border-radius: 40px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  transition: all 0.3s;
  white-space: nowrap;
}
.cookie-decline:hover {
  border-color: var(--nude-dark);
  color: var(--text-mid);
}


/* ── 20. RESPONSIVE – 900px ────────────────────────────────── */
@media (max-width: 900px) {
  header[role="banner"],
  nav {
    padding: 14px 20px;
  }
  nav.scrolled {
    padding: 12px 20px;
  }
  .nav-links,
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }

  #benefits, #services, #gallery,
  #testimonials, #contact, #pricing { padding: 60px 20px; }
  #about      { padding: 60px 20px; }
  #experience, #what-is { padding: 72px 20px; }

  .about-inner         { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame     { max-width: 300px; margin: 0 auto; }
  .about-badge         { right: 10px; }

  .exp-inner           { grid-template-columns: 1fr; gap: 40px; }
  .exp-feelings        { grid-template-columns: 1fr 1fr; }

  .contact-inner       { grid-template-columns: 1fr; gap: 40px; }

  .masonry             { columns: 2; }

  .footer-top          { flex-direction: column; gap: 20px; text-align: center; }
  .footer-bottom       { flex-direction: column; text-align: center; }

  .modal-box           { padding: 36px 28px; }

  .cookie-box          { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .cookie-actions      { flex-direction: row; width: 100%; }
  .cookie-accept,
  .cookie-decline      { flex: 1; text-align: center; }
}


/* ── 21. RESPONSIVE – 600px (mobile) ──────────────────────── */
@media (max-width: 600px) {
  /* Hero – add top padding so content doesn't hide behind fixed nav */
  #hero             { min-height: 100svh; }
  .hero-content     { padding: 80px 20px 0; }
  .hero-badge       { font-size: 0.52rem; letter-spacing: 0.18em; gap: 6px; margin-bottom: 18px; }
  .hero-badge::before,
  .hero-badge::after { width: 16px; }
  .hero-title       { font-size: clamp(2.4rem, 11vw, 3.2rem); margin-bottom: 12px; }
  .hero-sub-title   { font-size: clamp(1rem, 4.5vw, 1.3rem); margin-bottom: 20px; }
  /* Stack mantra vertically and hide bullet separators */
  .hero-mantra      { flex-direction: column; gap: 2px; letter-spacing: 0.22em; font-size: 0.62rem; margin-bottom: 36px; }
  .hero-mantra .sep { display: none; }
  .hero-buttons     { gap: 12px; }
  .btn-primary,
  .btn-ghost        { padding: 14px 28px; font-size: 0.68rem; }
  .hero-scroll      { display: none; }

  /* Compact section padding */
  #benefits         { padding: 44px 16px; }
  #about            { padding: 44px 16px; }
  #services         { padding: 44px 16px; }
  #experience       { padding: 52px 16px; }
  #gallery          { padding: 44px 16px; }
  #testimonials     { padding: 44px 16px; }
  #contact          { padding: 44px 16px; }

  .benefits-header  { margin-bottom: 32px; }
  .services-header  { margin-bottom: 36px; }
  .testi-header     { margin-bottom: 32px; }
  .gallery-header   { margin-bottom: 32px; }

  /* Single-column grids */
  .masonry          { columns: 1; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .testi-grid       { grid-template-columns: 1fr; }
  .exp-feelings     { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feeling-item     { padding: 18px 12px; }

  /* Reduced card padding */
  .benefit-card      { padding: 26px 18px; }
  .service-card      { padding: 28px 20px; }
  .testi-card        { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }

  /* FAB */
  .fab-whatsapp     { bottom: 18px; right: 14px; width: 52px; height: 52px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }

  /* Cookie & modals */
  .cookie-box       { padding: 22px 16px; }
  .cookie-actions   { flex-direction: column; }
  .modal-box        { padding: 28px 18px; max-height: 90vh; }
  .modal-title      { font-size: 1.9rem; }

  footer { padding: 36px 18px 24px; }
}


/* ── ACCESSIBILITY: Skip-to-content link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Services intro paragraph */
.services-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 480px;
  margin: 18px auto 0;
  line-height: 1.9;
}

/* Feeling-item h3 inside dark experience section */
#experience .feeling-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 6px;
}


/* ═══════════════════════════════════════════════════════════
   WHAT IS ASMR – whatis-list (inside #experience-style section)
   ═══════════════════════════════════════════════════════════ */
.whatis-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.whatis-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(240, 220, 190, 0.85);
  line-height: 1.5;
}
.whatis-dot {
  color: var(--gold-light);
  font-size: 0.6rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════ */
#pricing {
  padding: 100px 48px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }
.pricing-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 52px;
}

/* ── Pricing Card ── */
.pricing-card {
  background: white;
  border: 1px solid var(--beige-mid);
  border-radius: 28px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: all 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(139, 110, 88, 0.13);
  border-color: transparent;
}

/* Featured / highlighted card */
.pricing-card--featured {
  background: linear-gradient(160deg, #2e1c0e 0%, #3d2510 100%);
  border-color: rgba(201, 169, 110, 0.3);
  color: var(--warm-white);
}
.pricing-card--featured .pricing-name { color: var(--warm-white); }
.pricing-card--featured .pricing-subtitle { color: rgba(224, 200, 152, 0.7); }
.pricing-card--featured .pricing-tag { color: var(--gold-light); border-color: rgba(201, 169, 110, 0.3); }
.pricing-card--featured .pricing-desc { color: rgba(240, 220, 190, 0.75); }
.pricing-card--featured .pricing-duration { color: rgba(240, 220, 190, 0.6); }
.pricing-card--featured .pricing-price { color: var(--gold-light); }
.pricing-card--featured .pricing-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--nude-dark) 100%);
  color: white;
  border-color: transparent;
}
.pricing-card--featured .pricing-btn:hover {
  background: var(--gold-light);
  color: var(--text-dark);
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--nude-dark) 100%);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
}

.pricing-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.pricing-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-top: 4px;
}

.pricing-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  padding: 5px 12px;
  border: 1px solid var(--gold-pale);
  border-radius: 20px;
  margin-bottom: 18px;
}

.pricing-desc {
  font-size: 0.87rem;
  line-height: 1.85;
  color: var(--text-light);
  font-weight: 300;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--beige-mid);
}
.pricing-row--secondary {
  border-top-style: dashed;
  opacity: 0.8;
}
.pricing-card--featured .pricing-row {
  border-top-color: rgba(201, 169, 110, 0.2);
}

.pricing-duration {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 300;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  /* The € symbol is already part of the HTML text – no ::after needed */
}

.pricing-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pricing-btn:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

/* ── WICHTIG / Disclaimer notice ── */
.pricing-notice {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(44, 32, 24, 0.05);
  border: 1px solid var(--beige-mid);
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 8px;
}
.notice-text p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin: 0;
}

/* ── Responsive – Pricing ── */
@media (max-width: 900px) {
  #pricing { padding: 60px 20px; }
  .pricing-header { margin-bottom: 44px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-notice { flex-direction: column; gap: 10px; }
}

@media (max-width: 600px) {
  #pricing { padding: 44px 16px; }
  .pricing-card { padding: 32px 20px 24px; }
  .pricing-name { font-size: 1.15rem; }
  .pricing-price { font-size: 1.6rem; }
  .pricing-notice { padding: 18px 16px; }
}
