/* ============================
   LINIEN · Massage Aesthetic
   Premium SPA CSS — 2024
   ============================ */

/* ---- CSS VARIABLES ---- */
:root {
  --cream:        #f5f0e8;
  --cream-deep:   #ede5d8;
  --stone-light:  #d4c9b8;
  --stone:        #b8a99a;
  --stone-dark:   #8e7b6e;
  --brown:        #6b5548;
  --brown-dark:   #4a3a30;
  --gold:         #c9a96e;
  --gold-light:   #e0c89a;
  --gold-dark:    #a07840;
  --white:        #ffffff;
  --black:        #1a1410;
  --text-dark:    #2e2118;
  --text-mid:     #5a4a3c;
  --text-light:   #8e7b6e;
  --overlay:      rgba(30, 20, 12, 0.48);
  --radius:       2px;
  --radius-lg:    6px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 32px rgba(110, 80, 50, 0.12);
  --shadow-lg:    0 12px 56px rgba(110, 80, 50, 0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }

em { font-style: italic; color: var(--gold-dark); }

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-desc {
  color: var(--text-mid);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn--primary {
  background: var(--brown);
  color: var(--cream);
  border: 1px solid var(--brown);
}
.btn--primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 58, 48, 0.25);
}

.btn--light {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn--light:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--stone);
}
.btn--outline:hover {
  border-color: var(--brown);
  background: var(--cream-deep);
  transform: translateY(-2px);
}

.btn--full { width: 100%; text-align: center; }

/* ---- DIVIDER ---- */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 28px 0 22px;
}

.divider-line {
  display: block;
  height: 1px;
  width: 60px;
  background: rgba(255,255,255,0.4);
}

.divider-lotus {
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(110, 80, 50, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: padding var(--transition);
}

.site-header.scrolled .navbar { padding: 14px 40px; }

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  transition: color var(--transition);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: rgba(245,240,232,0.7);
  margin-top: 2px;
  transition: color var(--transition);
}

.site-header.scrolled .logo-main { color: var(--brown-dark); }
.site-header.scrolled .logo-sub  { color: var(--stone-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.88);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after { width: 100%; }

.nav-links a:hover { color: var(--gold-light); }

.site-header.scrolled .nav-links a { color: var(--text-mid); }
.site-header.scrolled .nav-links a:hover { color: var(--brown); }

.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid rgba(245,240,232,0.5) !important;
  border-radius: var(--radius) !important;
}

.site-header.scrolled .nav-cta {
  border-color: var(--stone) !important;
  color: var(--brown) !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.15);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
  transform-origin: center;
}

.site-header.scrolled .nav-toggle span { background: var(--brown-dark); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #3d2b20 0%, #5c3d2e 30%, #8e6a50 60%, #b89a7e 100%);
  z-index: 0;
}

/* marble / stone texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,240,232,0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  z-index: 1;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 2;
}

/* decorative drapes */
.hero-drape {
  position: absolute;
  bottom: 0;
  width: 220px;
  height: 65%;
  z-index: 3;
  opacity: 0.18;
  background: linear-gradient(180deg, transparent 0%, var(--cream) 100%);
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
}

.hero-drape--left  { left: -40px; transform: rotate(-8deg); }
.hero-drape--right { right: -40px; transform: rotate(8deg); }

.hero-content {
  position: relative;
  z-index: 4;
  padding: 80px 24px 60px;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-title-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: 0.28em;
  color: var(--cream);
  line-height: 1;
}

.hero-title-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(0.65rem, 1.5vw, 0.88rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  margin-bottom: 6px;
}

.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--gold-light);
  margin-bottom: 44px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

/* stone / candle visual */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-stone-decor {
  position: relative;
  width: 280px;
  height: 320px;
}

.stone {
  position: absolute;
  background: linear-gradient(135deg, var(--stone) 0%, var(--stone-dark) 100%);
  border-radius: 50%;
  box-shadow: inset -4px -6px 12px rgba(0,0,0,0.15), 4px 6px 14px rgba(110,80,50,0.18);
}

.stone--lg { width: 120px; height: 80px; bottom: 60px; left: 40px; transform: rotate(-15deg); }
.stone--md { width: 80px;  height: 55px; bottom: 80px; left: 110px; transform: rotate(10deg); background: linear-gradient(135deg, var(--stone-dark) 0%, var(--brown) 100%); }
.stone--sm { width: 55px;  height: 38px; bottom: 110px; left: 80px; transform: rotate(-5deg); background: linear-gradient(135deg, var(--stone-light) 0%, var(--stone) 100%); }

.candle-icon {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) scale(0.92);
}

.candle-body {
  width: 22px;
  height: 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--stone-light) 100%);
  border-radius: 2px 2px 0 0;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.candle-flame {
  width: 12px;
  height: 24px;
  background: radial-gradient(ellipse at 50% 80%, #f9c74f 0%, #f77f00 55%, transparent 100%);
  border-radius: 50% 50% 35% 35%;
  margin: -3px auto 0;
  animation: flicker 1.6s ease-in-out infinite alternate;
  filter: blur(0.4px);
}

@keyframes flicker {
  0%   { transform: scaleX(1)   scaleY(1)    rotate(-2deg); opacity: 1; }
  50%  { transform: scaleX(0.9) scaleY(1.08) rotate(2deg);  opacity: 0.92; }
  100% { transform: scaleX(1.05) scaleY(0.95) rotate(-1deg); opacity: 1; }
}

.about-text .section-label { color: var(--gold); }

.about-desc {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-deep);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 300;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--cream-deep);
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--cream);
  overflow: hidden;
}

.services-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ---- Service Card ---- */
.service-card {
  background: var(--white);
  border: 1px solid rgba(212,201,184,0.6);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.service-card--featured {
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown) 100%);
  border-color: var(--gold);
  color: var(--cream);
}

.service-card--featured h3,
.service-card--featured .service-card__subtitle,
.service-card--featured .price-duration,
.service-card--featured .price-amount {
  color: var(--cream) !important;
}

.service-card--featured .service-card__divider {
  background: rgba(245,240,232,0.25) !important;
}

.service-card--featured .price-dots {
  border-bottom-color: rgba(245,240,232,0.2) !important;
}

.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.1) !important;
  color: var(--gold-light) !important;
}

.service-card--featured .service-card__btn {
  background: var(--gold) !important;
  color: var(--brown-dark) !important;
  border-color: var(--gold) !important;
}

.service-card--featured .service-card__btn:hover {
  background: var(--gold-light) !important;
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--brown-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card__title span {
  display: block;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.service-card--featured .service-card__title span { color: var(--gold-light); }

.service-card__subtitle {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-style: italic;
}

.service-card__divider {
  height: 1px;
  background: var(--cream-deep);
  margin-bottom: 24px;
}

.service-card__prices {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-duration {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
  white-space: nowrap;
}

.price-duration em {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: normal;
}

.price-dots {
  flex: 1;
  border-bottom: 1px dashed var(--stone-light);
  margin-bottom: 3px;
  min-width: 20px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-dark);
  white-space: nowrap;
}

.service-card__btn {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--brown);
  transition: var(--transition);
}

.service-card__btn:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

/* ===========================
   ADVANTAGES
   =========================== */
.advantages {
  background: var(--cream-deep);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.advantage-item {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,201,184,0.5);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.4rem;
  color: var(--gold-dark);
  border: 1px solid var(--stone-light);
  transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.advantage-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.advantage-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===========================
   ATMOSPHERE
   =========================== */
.atmosphere {
  background: linear-gradient(145deg, #3d2b20 0%, #5c3d2e 40%, #8e6a50 100%);
  overflow: hidden;
}

.atmosphere-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(201,169,110,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(245,240,232,0.06) 0%, transparent 50%);
  z-index: 0;
}

.atmosphere .container { position: relative; z-index: 1; }

.atmosphere-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.atmosphere-title { color: var(--cream); margin-bottom: 28px; }
.atmosphere-title em { color: var(--gold-light); }

.atmosphere-text {
  color: rgba(245,240,232,0.75);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 56px;
}

.atmosphere-elements {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.atm-el {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(245,240,232,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.atm-stones {
  position: relative;
  width: 56px;
  height: 44px;
}

.atm-stone {
  position: absolute;
  background: linear-gradient(135deg, var(--stone) 0%, var(--stone-dark) 100%);
  border-radius: 50%;
  box-shadow: inset -2px -3px 6px rgba(0,0,0,0.2);
}

.atm-stone--1 { width: 36px; height: 24px; bottom: 0; left: 0; transform: rotate(-10deg); }
.atm-stone--2 { width: 28px; height: 19px; bottom: 5px; left: 22px; transform: rotate(8deg); background: linear-gradient(135deg, var(--stone-dark), var(--brown)); }
.atm-stone--3 { width: 20px; height: 13px; bottom: 18px; left: 10px; background: linear-gradient(135deg, var(--stone-light), var(--stone)); }

.atm-flame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.atm-candle {
  position: relative;
  width: 18px;
  height: 58px;
  background: linear-gradient(180deg, #f8f4ee 0%, #ddd1c3 100%);
  border-radius: 6px 6px 3px 3px;
}

.atm-candle::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 16px;
  background: radial-gradient(ellipse at 50% 75%, #ffd36b 0%, #ff9a1f 60%, transparent 100%);
  border-radius: 50% 50% 35% 35%;
  animation: flicker 1.8s ease-in-out infinite alternate;
}

.atm-candle::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: #6b4b2a;
  border-radius: 2px;
}

.atm-lotus {
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(201,169,110,0.5));
}

.atmosphere-motto {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.atmosphere-motto .divider-line { background: rgba(245,240,232,0.25); width: 80px; }

.atmosphere-motto p {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

/* ===========================
   BOOKING CTA
   =========================== */
.booking-cta {
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  border: 1px solid rgba(212,201,184,0.8);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: 'LINIEN';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 300;
  color: rgba(184,169,154,0.07);
  letter-spacing: 0.2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-decor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cta-stone {
  display: block;
  background: linear-gradient(135deg, var(--stone) 0%, var(--stone-dark) 100%);
  border-radius: 50%;
  box-shadow: inset -2px -3px 6px rgba(0,0,0,0.12);
}

.cta-decor--left .cta-stone:nth-child(1)  { width: 52px; height: 34px; }
.cta-decor--left .cta-stone:nth-child(2)  { width: 34px; height: 22px; }
.cta-decor--right .cta-stone:nth-child(1) { width: 52px; height: 34px; }
.cta-decor--right .cta-stone:nth-child(2) { width: 34px; height: 22px; }

.cta-content {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-content .section-label { display: block; text-align: center; margin-bottom: 14px; }

.cta-title {
  margin-bottom: 20px;
}

.cta-desc {
  font-weight: 300;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--cream-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--stone-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-dark);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(74,58,48,0.22);
}

/* ---- Contact Form ---- */
.contact-form-wrap {
  position: relative;
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(212,201,184,0.6);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid rgba(212,201,184,0.7);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 90px; }

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

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-success.visible { display: block; }

.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.form-success h3 { margin-bottom: 14px; }

.form-success p {
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--brown-dark);
  padding: 52px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-logo .logo-main { color: var(--stone-light); font-size: 1.7rem; }
.footer-logo .logo-sub  { color: rgba(212,201,184,0.5); font-size: 0.58rem; }

.footer-motto {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(212,201,184,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 200;
}

.footer-motto span { font-size: 0.6rem; }

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(212,201,184,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(212,201,184,0.3);
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 900;
  width: 46px;
  height: 46px;
  background: var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(74,58,48,0.3);
  opacity: 0;
  transform: translateY(14px);
  transition: var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--brown-dark);
  transform: translateY(-3px);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid    { gap: 50px; }
  .contact-grid  { gap: 40px; }
  .cta-box       { padding: 50px 40px; }
}

@media (max-width: 860px) {
  .navbar { padding: 18px 24px; }
  .site-header.scrolled .navbar { padding: 12px 24px; }

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 80vw);
    background: rgba(245,240,232,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 40px rgba(74,58,48,0.18);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a { color: var(--text-mid) !important; font-size: 1rem; }
  .nav-links a:hover { color: var(--brown) !important; }
  .nav-cta { border-color: var(--stone) !important; }

  .nav-toggle { display: flex; z-index: 1001; }
  .site-header.scrolled .nav-toggle span { background: var(--brown-dark); }

  .nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-visual  { display: none; }
  .contact-grid  { grid-template-columns: 1fr; }

  .cta-box { flex-direction: column; padding: 50px 28px; text-align: center; }
  .cta-decor { flex-direction: row; }

  .section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .advantage-item { padding: 26px 18px; }

  .about-stats { gap: 18px; }
  .stat-num { font-size: 2rem; }

  .contact-form { padding: 32px 24px; }
  .hero-content {
  padding: 85px 20px 55px;
}
  .atmosphere-elements { gap: 32px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .btn { padding: 13px 28px; }

  .back-to-top { bottom: 22px; right: 22px; width: 40px; height: 40px; }
}

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

/* ===========================
   2026 UX / MOBILE / BOOKING IMPROVEMENTS
   =========================== */

body {
  padding-top: 92px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(74, 58, 48, 0.08);
  border-bottom: 1px solid rgba(212,201,184,0.4);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(74, 58, 48, 0.12);
}

.logo-main,
.logo-sub,
.nav-links a {
  color: var(--text-dark);
}

.logo-sub {
  color: var(--text-light);
}

.nav-links a:hover,
.site-header.scrolled .nav-links a:hover {
  color: var(--brown);
}

.nav-links a::after {
  background: var(--gold);
}

.nav-cta {
  background: var(--brown);
  color: var(--cream) !important;
  border-color: var(--brown) !important;
  box-shadow: 0 10px 24px rgba(74,58,48,0.14);
}

.nav-cta:hover {
  background: var(--brown-dark);
}

.nav-toggle span,
.site-header.scrolled .nav-toggle span {
  background: var(--brown-dark);
}

.hero {
  min-height: calc(100vh - 92px);
  padding-top: 32px;
}

.hero-content {
  padding-top: 110px;
}
.candle-icon,
.atm-flame {
  filter: drop-shadow(0 8px 18px rgba(201, 169, 110, 0.2));
}

.candle-body,
.atm-candle {
  position: relative;
  overflow: visible;
}

.candle-body {
  width: 28px;
  height: 92px;
  border-radius: 8px 8px 5px 5px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,240,232,0.98) 28%, rgba(212,201,184,0.95) 100%);
  box-shadow:
    inset -4px -10px 14px rgba(184,169,154,0.4),
    0 10px 20px rgba(74,58,48,0.12);
}

.candle-body::before,
.atm-candle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(74,58,48,0.9);
}

.candle-body::before {
  top: -8px;
  height: 12px;
}

.candle-body::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 42px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74,58,48,0.22) 0%, rgba(74,58,48,0.02) 75%);
}

.candle-flame {
  position: relative;
  width: 18px;
  height: 34px;
  margin: -5px auto 0;
  border-radius: 60% 60% 50% 50%;
  background: radial-gradient(circle at 50% 70%, #ffe8a3 0%, #ffc44d 30%, #ff8a00 62%, rgba(255,138,0,0.15) 80%, transparent 100%);
  box-shadow: 0 0 18px rgba(255, 183, 76, 0.65);
}


.specialist {
  background: linear-gradient(180deg, #fffdfa 0%, #f7f1e9 100%);
}

.specialist-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 52px;
  align-items: center;
}

.specialist-photo-card {
  background: var(--white);
  border: 1px solid rgba(212,201,184,0.7);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

.specialist-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(160deg, #f7efe5 0%, #e8dbc9 100%);
}

.specialist-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.specialist-photo-note {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--text-mid);
}

.specialist-content {
  max-width: 620px;
}

.specialist-desc {
  margin: 0 0 28px;
  max-width: unset;
  text-align: left;
}

.specialist-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.specialist-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(212,201,184,0.72);
  border-radius: 999px;
  color: var(--brown-dark);
  box-shadow: 0 10px 22px rgba(110,80,50,0.08);
}

.specialist-card-inline {
  padding: 28px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(212,201,184,0.72);
  border-radius: 22px;
}

.specialist-card-inline h3 {
  margin-bottom: 14px;
}

.specialist-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.specialist-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-mid);
}

.specialist-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
}

.contact-item p a {
  border-bottom: 1px solid rgba(107,85,72,0.15);
}

.booking-card-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,240,232,0.95) 100%);
  border: 1px solid rgba(212,201,184,0.7);
  border-radius: 18px;
}

.booking-card-top h3 {
  font-size: 1.5rem;
}

.booking-card-top p {
  max-width: 360px;
  color: var(--text-mid);
}

.booking-mini-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}

.form-group--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.slot-picker {
  background: linear-gradient(180deg, rgba(245,240,232,0.8) 0%, rgba(255,255,255,0.96) 100%);
  border: 1px solid rgba(212,201,184,0.7);
  border-radius: 16px;
  padding: 18px;
}

.slot-picker__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.7rem;
  color: var(--text-light);
}

.slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.slot-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.slot-legend__dot--free {
  background: #99b88d;
}

.slot-legend__dot--busy {
  background: #c5c0b8;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.slot-button {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(212,201,184,0.85);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 400;
  transition: var(--transition);
}

.slot-button:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.slot-button.is-selected {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(74,58,48,0.18);
}

.slot-button.is-busy {
  background: #ece7df;
  border-color: #ddd5c8;
  color: #9b9082;
  cursor: not-allowed;
  opacity: 0.9;
}

.slot-button.is-disabled {
  opacity: 0.55;
}

.slot-helper {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.back-to-top {
  background: var(--white);
  color: var(--brown-dark);
  border: 1px solid rgba(212,201,184,0.9);
}

.back-to-top:hover {
  background: var(--brown-dark);
  color: var(--cream);
}

@media (max-width: 1024px) {
  .specialist-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .specialist-photo-card {
    max-width: 460px;
    margin: 0 auto;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 82px;
  }

  .booking-card-top,
  .form-group--split {
    grid-template-columns: 1fr;
  }

  .booking-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    top: 82px;
    bottom: auto;
    right: 16px;
    left: 16px;
    width: auto;
    border-radius: 22px;
    padding: 28px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
  }

  .nav-links a {
    font-size: 0.9rem !important;
  }

  .hero-content {
    padding-top: 84px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 16px 18px;
  }

  .site-header.scrolled .navbar {
    padding: 14px 18px;
  }

  .logo-main {
    font-size: 1.25rem;
    letter-spacing: 0.14em;
  }

  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.16em;
  }

  .hero-content {
    padding: 74px 16px 48px;
  }

  .hero-tagline {
    letter-spacing: 0.18em;
    line-height: 1.8;
  }

  .specialist-pill {
    width: 100%;
    justify-content: center;
  }

  .specialist-card-inline,
  .specialist-photo-card,
  .contact-form,
  .booking-card-top {
    padding-left: 18px;
    padding-right: 18px;
  }

  .slot-picker__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    gap: 24px;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 420px) {
  .slot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .slot-button {
    font-size: 0.8rem;
    padding: 11px 8px;
  }
}
.atm-candle::before {
  top: -14px !important;
}