/* ============================================================================
   ART & BEAUTY SALON — BERLIN WILMERSDORF · SHARED STYLES
   Warm cream + gold ("Claude-inspired" Wärme, Gold-Akzente bleiben).
   Used by: index.html · elena.html · georgios.html · Rechtsseiten
   ============================================================================ */

/* ====================================================================
   1. THEME CONFIG — CREAM · INK · GOLD
   ==================================================================== */
:root {
  /* ---- Brand colors ---- */
  --color-bg:          #faf6ee;  /* warm ivory page background */
  --color-surface:     #fffdf8;  /* cards / panels (near-white cream) */
  --color-text:        #201b14;  /* main text (warm ink) */
  --color-muted:       #6f6656;  /* secondary text */
  --color-primary:     #c2a14e;  /* accent / buttons (gold) */
  --color-primary-dark:#9c7d31;  /* deeper gold / hover */
  --color-gold-soft:   #e9d9a8;  /* light gold for ornaments */
  --color-accent-soft: #f3ecdd;  /* deeper cream for soft sections */
  --color-border:      #e8dfcc;  /* hairlines / dividers */
  --color-dark:        #14110c;  /* footer / dark accents */

  /* ---- Typography ---- */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Segoe UI', system-ui, sans-serif;
  --h1-size: clamp(2.6rem, 6vw, 4.6rem);
  --h2-size: clamp(2rem, 4vw, 2.9rem);

  /* ---- Shape & spacing ---- */
  --radius:        14px;
  --radius-sm:     8px;
  --section-pad:   clamp(3.5rem, 8vw, 8rem);
  --content-width: 1160px;
  --shadow:        0 18px 50px -25px rgba(20, 16, 8, 0.45);
  --nav-h:         70px;
}

/* ====================================================================
   2. BASE / RESET
   ==================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.1; }
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: 1.4rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { padding: var(--section-pad) 1.25rem; scroll-margin-top: var(--nav-h); }
[id] { scroll-margin-top: var(--nav-h); }
.wrap { max-width: var(--content-width); margin: 0 auto; }

.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--color-primary-dark); font-weight: 500; margin-bottom: 0.9rem;
}
.section-head { text-align: center; max-width: 660px; margin: 0 auto 3rem; }
.section-head p { color: var(--color-muted); margin-top: 0.8rem; }

/* ---- Floral / ornament divider (reusable) ---- */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto; }
.ornament svg { width: 46px; height: 46px; color: var(--color-primary); flex: none; }
.ornament .rule { width: clamp(40px, 12vw, 120px); height: 1px; background: linear-gradient(to var(--dir, right), transparent, var(--color-primary)); }
.ornament .rule.left { --dir: left; }
.section-head .ornament { margin-bottom: 1.1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; cursor: pointer; border: none;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.04em; padding: 0.95rem 2.1rem; border-radius: 50px;
  background: var(--color-primary); color: #fff; transition: all 0.25s ease;
  will-change: transform;
}
.btn:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover { background: var(--color-text); color: #fff; border-color: var(--color-text); }
.btn-dark { background: var(--color-dark); }
.btn-dark:hover { background: #000; }

/* ====================================================================
   3. NAVBAR
   ==================================================================== */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: var(--content-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem;
}
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; letter-spacing: 0.02em; line-height: 1.05; }
.logo svg { width: 30px; height: 30px; color: var(--color-primary); flex: none; }
.logo span { color: var(--color-primary-dark); }
.logo small { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-muted); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { font-size: 0.9rem; color: var(--color-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--color-text); }
.nav-links a.active { color: var(--color-primary-dark); }
.nav-links .btn { color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--color-text); line-height: 1; padding: 0.5rem; margin: -0.5rem; }

/* ====================================================================
   4. HERO (warm cream, ink text, storefront photo right)
   ==================================================================== */
.hero {
  position: relative; color: var(--color-text);
  background: linear-gradient(180deg, #f5eedd 0%, var(--color-bg) 100%);
  padding: clamp(2.5rem, 6vw, 5.5rem) 1.25rem; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero-content { max-width: 560px; }
.hero h1 { color: var(--color-text); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--color-primary-dark); }
.hero p { font-size: 1.12rem; font-weight: 300; margin-bottom: 2rem; max-width: 480px; color: var(--color-muted); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; border-radius: var(--radius); display: block;
  aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow);
}
.hero-photo::before {
  content: ''; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--color-primary); border-radius: var(--radius); z-index: 0;
}
.hero-photo img { position: relative; z-index: 1; }

/* ---- Compact page hero (subpages) — dark band, optional photo ---- */
.page-hero {
  position: relative; min-height: 38vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #241e14 0%, var(--color-dark) 70%);
  color: #fff; overflow: hidden; text-align: center;
  border-bottom: 2px solid var(--color-primary);
}
.page-hero .wrap { width: 100%; position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--color-gold-soft); }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d9d2c6; margin-top: 0.8rem; }
.page-hero .hero-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.page-hero .hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,17,12,0.55), rgba(20,17,12,0.82));
}

/* ====================================================================
   5. ABOUT
   ==================================================================== */
.about-centered { max-width: 720px; margin: 0 auto; text-align: center; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--color-muted); margin-bottom: 1rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.about-centered .about-stats { justify-content: center; }
.about-stats .num { font-family: var(--font-heading); font-size: 2.4rem; color: var(--color-primary-dark); font-weight: 700; }
.about-stats .label { font-size: 0.85rem; color: var(--color-muted); }
.about-centered .btn { margin-top: 0.5rem; }

/* ====================================================================
   6. SERVICE SPLIT (Massage vs. Elena — landing cards with photos)
   ==================================================================== */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.split-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.split-card .split-photo { position: relative; height: 240px; overflow: hidden; }
.split-card .split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-card .split-badge {
  position: absolute; top: 14px; left: 14px; background: rgba(20, 17, 12, 0.82); color: var(--color-gold-soft);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 0.35rem 0.9rem; border-radius: 50px; border: 1px solid rgba(194, 161, 78, 0.5);
}
.split-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.split-body h3 { font-size: 1.7rem; margin-bottom: 0.3rem; }
.split-body .by { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-primary-dark); margin-bottom: 0.8rem; }
.split-body p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1.1rem; }
.split-prices { list-style: none; margin-bottom: 1.4rem; }
.split-prices li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.35rem 0; border-bottom: 1px dashed var(--color-border); font-size: 0.92rem; }
.split-prices li:last-child { border-bottom: none; }
.split-prices .price { color: var(--color-primary-dark); font-weight: 500; white-space: nowrap; }
.split-body .actions { margin-top: auto; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ====================================================================
   7. MASSAGE FEATURE BAND (dunkel, Georgios-Werbung)
   ==================================================================== */
.massage-band { background: linear-gradient(135deg, #1c1710 0%, var(--color-dark) 65%); color: #f3eee4; }
.massage-band .eyebrow { color: var(--color-gold-soft); }
.massage-band h2 { color: #fff; }
.massage-band-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; }
.massage-band-text > p { color: #cdc6b8; margin-bottom: 1.4rem; max-width: 520px; }
.massage-perks { list-style: none; margin-bottom: 1.8rem; }
.massage-perks li { padding: 0.42rem 0 0.42rem 1.8rem; position: relative; color: #cdc6b8; }
.massage-perks li::before { content: '✦'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.massage-price-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(194, 161, 78, 0.4);
  border-radius: var(--radius); padding: 2rem 2.2rem;
}
.massage-price-card .price-row { border-bottom-color: rgba(255, 255, 255, 0.14); }
.massage-price-card .price-row .name { color: #f3eee4; }
.massage-price-card .price-row .price { color: var(--color-gold-soft); }
.massage-band .package { background: linear-gradient(120deg, rgba(194,161,78,.16), rgba(194,161,78,.06)); border: 1px solid rgba(194,161,78,.4); }
.massage-cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.6rem; }
.massage-cta .phone-big { font-family: var(--font-heading); font-size: 1.7rem; color: var(--color-gold-soft); font-weight: 700; }
.massage-cta .hint { font-size: 0.85rem; color: #a99f95; width: 100%; }

/* ====================================================================
   8. TEAM
   ==================================================================== */
.team { background: var(--color-accent-soft); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.team-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; text-align: center; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-figure {
  position: relative; height: 150px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #faf6ec 0%, #efe3c4 100%);
  border-bottom: 1px solid var(--color-border); overflow: hidden;
}
.team-figure::after {
  content: ''; position: absolute; inset: 0; opacity: 0.18; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23c2a14e' stroke-width='1.4'%3E%3Cpath d='M50 14c8 12 8 24 0 34-8-10-8-22 0-34zM50 86c-8-12-8-24 0-34 8 10 8 22 0 34zM14 50c12-8 24-8 34 0-10 8-22 8-34 0zM86 50c-12 8-24 8-34 0 10-8 22-8 34 0z'/%3E%3C/svg%3E") center/150% no-repeat;
}
.team-figure .mono {
  position: relative; z-index: 1; width: 78px; height: 78px; border-radius: 50%;
  background: #fff; border: 2px solid var(--color-primary); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; box-shadow: var(--shadow);
}
.team-body { padding: 1.5rem 1.4rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.team-body h3 { margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-primary-dark); }
.team-body p { font-size: 0.92rem; color: var(--color-muted); margin: 0.7rem 0 1.2rem; }
.team-body .btn { margin-top: auto; }

/* ====================================================================
   9. SERVICES & PRICES (Karten mit Preiszeilen)
   ==================================================================== */
.services-soft { background: var(--color-accent-soft); }
.service-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1.8rem; align-items: start; }
.service-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 2.2rem; transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .card-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.4rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--color-primary); }
.service-card .card-head svg { width: 22px; height: 22px; color: var(--color-primary); flex: none; }
.service-card h3 { line-height: 1.1; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px dashed var(--color-border); }
.price-row:last-child { border-bottom: none; }
.price-row .name { font-weight: 400; }
.price-row .desc { display: block; font-size: 0.82rem; color: var(--color-muted); }
.price-row .price { font-weight: 500; color: var(--color-primary-dark); white-space: nowrap; }
.price-note { text-align: center; font-size: 0.85rem; color: var(--color-muted); margin-top: 1.8rem; }
/* highlighted package callout */
.package {
  margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  background: linear-gradient(120deg, #15130f, #2a2419); color: #fff;
  display: flex; align-items: center; gap: 0.8rem;
}
.package svg { width: 26px; height: 26px; color: var(--color-gold-soft); flex: none; }
.package strong { color: var(--color-gold-soft); }
.package small { display: block; font-size: 0.82rem; color: #cdc6b8; }

/* ====================================================================
   10. REVIEWS
   ==================================================================== */
.reviews-summary { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; margin-bottom: 2.6rem; }
.reviews-summary .stars { color: var(--color-primary); font-size: 1.5rem; letter-spacing: 0.15em; }
.reviews-summary .meta { font-size: 0.9rem; color: var(--color-muted); }
.reviews-summary .meta strong { color: var(--color-text); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.review-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.8rem; position: relative;
}
.review-card .stars { color: var(--color-primary); letter-spacing: 0.12em; margin-bottom: 0.7rem; }
.review-card p { color: var(--color-text); font-style: italic; margin-bottom: 1.1rem; }
.review-card .author { display: flex; align-items: center; gap: 0.7rem; }
.review-card .avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--color-accent-soft); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-heading); font-size: 1.1rem;
}
.review-card .author .name { font-weight: 500; font-size: 0.92rem; }
.review-card .author .src { font-size: 0.78rem; color: var(--color-muted); }
.reviews-cta { text-align: center; margin-top: 2.4rem; }

/* ====================================================================
   11. BOOKING WIDGET (verfügbarkeitsbasiert — booking.js)
   ==================================================================== */
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.booking-info h2 { margin-bottom: 1.2rem; }
.booking-info p { color: var(--color-muted); margin-bottom: 1.6rem; }
.booking-perks { list-style: none; }
.booking-perks li { padding: 0.5rem 0 0.5rem 1.8rem; position: relative; color: var(--color-muted); }
.booking-perks li::before { content: '✦'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.booking-form {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 2.4rem; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; margin-bottom: 0.4rem; color: var(--color-muted); letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem; font-family: var(--font-body); font-size: 0.95rem;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-surface); color: var(--color-text); transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); }
.booking-form .btn { width: 100%; margin-top: 0.5rem; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.84rem; color: var(--color-muted); margin: 0.2rem 0 0.6rem; cursor: pointer; }
.consent input { margin-top: 0.25rem; flex: none; accent-color: var(--color-primary); width: 16px; height: 16px; }
.consent a { color: var(--color-primary-dark); text-decoration: underline; }
.form-note { font-size: 0.78rem; color: var(--color-muted); text-align: center; margin-top: 0.9rem; }
.form-success {
  display: none; text-align: center; padding: 1.2rem; margin-top: 1rem;
  background: var(--color-accent-soft); border-radius: var(--radius-sm);
  color: var(--color-primary-dark); font-weight: 500;
}
.form-success.show { display: block; }
.form-success.error { color: #a3402f; background: #f7e7e2; }

/* Service-Info unter dem Auswahlfeld */
.bw-service-info { font-size: 0.85rem; color: var(--color-primary-dark); margin-top: 0.45rem; }

/* Datums-Chips (horizontal scrollbar) */
.bw-days {
  display: flex; gap: 0.55rem; overflow-x: auto; padding: 0.2rem 0 0.6rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.day-chip {
  flex: none; display: flex; flex-direction: column; align-items: center; min-width: 74px;
  border: 1px solid var(--color-border); background: var(--color-surface); cursor: pointer;
  border-radius: var(--radius-sm); padding: 0.55rem 0.7rem; font-family: var(--font-body);
  color: var(--color-text); transition: border-color 0.2s, background 0.2s;
}
.day-chip .dow { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); }
.day-chip .dom { font-size: 1.05rem; font-weight: 500; }
.day-chip:hover { border-color: var(--color-primary); }
.day-chip[aria-pressed="true"] { background: var(--color-dark); border-color: var(--color-dark); color: #fff; }
.day-chip[aria-pressed="true"] .dow { color: var(--color-gold-soft); }
.day-chip:disabled { opacity: 0.45; cursor: not-allowed; }
.day-chip:disabled .full { font-size: 0.62rem; color: #a3402f; }
.bw-more {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 0.85rem; color: var(--color-primary-dark); padding: 0.2rem 0; text-decoration: underline;
}

/* Uhrzeit-Chips */
.bw-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 0.55rem; }
.slot-chip {
  border: 1px solid var(--color-border); background: var(--color-surface); cursor: pointer;
  border-radius: 50px; padding: 0.5rem 0.4rem; font-family: var(--font-body); font-size: 0.92rem;
  color: var(--color-text); font-variant-numeric: tabular-nums; transition: border-color 0.2s, background 0.2s;
}
.slot-chip:hover { border-color: var(--color-primary); }
.slot-chip[aria-pressed="true"] { background: var(--color-primary); border-color: var(--color-primary); color: #fff; font-weight: 500; }
.bw-empty-day { font-size: 0.9rem; color: var(--color-muted); padding: 0.4rem 0; }

/* Zusammenfassung über dem Kontaktblock */
.bw-summary {
  background: var(--color-accent-soft); border-radius: var(--radius-sm);
  padding: 0.8rem 1rem; font-size: 0.94rem; margin-bottom: 1.2rem;
}
.bw-summary strong { color: var(--color-primary-dark); }

/* Fallback-Karte, wenn die Online-Buchung nicht erreichbar ist */
.bw-fallback { text-align: center; padding: 1rem 0.4rem; }
.bw-fallback .ico { font-size: 2rem; margin-bottom: 0.6rem; }
.bw-fallback h3 { margin-bottom: 0.5rem; }
.bw-fallback p { color: var(--color-muted); margin-bottom: 1.4rem; }
.bw-fallback .actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ====================================================================
   12. FAQ (georgios.html)
   ==================================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 0 1.4rem; margin-bottom: 0.8rem;
}
.faq summary {
  cursor: pointer; padding: 1.05rem 0; font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 600; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; color: var(--color-primary); font-size: 1.4rem; }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding-bottom: 1.1rem; color: var(--color-muted); font-size: 0.95rem; }

/* Sticky "Anrufen"-Leiste (nur mobil, georgios.html) */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--color-dark); color: #fff;
  padding: 0.7rem 1.1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(194, 161, 78, 0.5);
}
.call-bar .txt { font-size: 0.88rem; color: #cdc6b8; }
.call-bar .btn { padding: 0.65rem 1.5rem; white-space: nowrap; }

/* ====================================================================
   13. CONTACT
   ==================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; }
.contact-item .ico { font-size: 1.3rem; }
.contact-item .label { font-size: 0.8rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item .val { font-weight: 400; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.45rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--color-muted); }
.hours-table tr.today td { color: var(--color-primary-dark); font-weight: 500; }
/* privacy-friendly static location card (no third-party request on load) */
.map-card {
  border-radius: var(--radius); border: 1px solid var(--color-border); min-height: 340px;
  background: radial-gradient(120% 120% at 30% 20%, #2a2419 0%, #15130f 60%, #0c0b0a 100%);
  color: #f3eee4; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; text-align: center; padding: 2.5rem 1.5rem; position: relative; overflow: hidden;
}
.map-card svg.pin { width: 54px; height: 54px; color: var(--color-primary); }
.map-card .addr { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; line-height: 1.25; }
.map-card .sub { font-size: 0.9rem; color: #b7afa1; margin-bottom: 0.6rem; }
.map-card::after {
  content: ''; position: absolute; right: -30px; bottom: -30px; width: 200px; height: 200px;
  opacity: 0.10; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23c2a14e' stroke-width='1.4'%3E%3Cpath d='M50 14c8 12 8 24 0 34-8-10-8-22 0-34zM50 86c-8-12-8-24 0-34 8 10 8 22 0 34zM14 50c12-8 24-8 34 0-10 8-22 8-34 0zM86 50c-12 8-24 8-34 0 10-8 22-8 34 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---- Legal / prose pages (Impressum, Datenschutz) ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 2.2rem 0 0.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--color-muted); margin-bottom: 0.8rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
.prose a { color: var(--color-primary-dark); text-decoration: underline; }
.prose .edit-note {
  background: var(--color-accent-soft); border-left: 3px solid var(--color-primary);
  padding: 0.7rem 1rem; border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--color-text); margin: 0.6rem 0 1.4rem;
}

/* ====================================================================
   14. FOOTER + LEGAL
   ==================================================================== */
footer.site-footer { background: var(--color-dark); color: #cfc6bd; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-top .logo { color: #fff; margin-bottom: 1rem; }
.footer-top .logo span { color: var(--color-gold-soft); }
.footer-top .logo small { color: #9a9183; }
.footer-top p { font-size: 0.92rem; color: #a99f95; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-col a, .footer-col li { display: block; font-size: 0.92rem; color: #a99f95; padding: 0.3rem 0; transition: color 0.2s; list-style: none; }
.footer-col a:hover { color: #fff; }
.footer-legal { text-align: center; padding: 1.2rem 1.25rem 0; }
.footer-legal a { color: #cfc6bd; font-size: 0.86rem; margin: 0 0.6rem; }
.footer-legal a:hover { color: #fff; }
.copyright { text-align: center; padding: 1.6rem 1.25rem; font-size: 0.82rem; color: #8a8178; background: #0a0806; }

/* ====================================================================
   15. LIGHT ANIMATIONS (subtle, respect reduced-motion)
   ==================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); }
  .reveal.in { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
  .hero-content { animation: fadeUp 0.7s ease both; }
  .hero-photo   { animation: fadeUp 0.7s ease 0.12s both; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
}

/* ====================================================================
   16. RESPONSIVE
   ==================================================================== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-bg); padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid var(--color-border);
  }
  .hero-grid, .about-grid, .booking-grid, .contact-grid, .split-grid, .massage-band-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2rem; }
  .hero-content { max-width: none; }
  .hero-photo { order: -1; }
  .hero-photo::before { inset: 10px -10px -10px 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .call-bar { display: flex; }
  body.has-call-bar { padding-bottom: 64px; }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; }
  .hero-actions .btn, .hero-actions .btn-outline { width: 100%; text-align: center; }
  .booking-form { padding: 1.6rem 1.2rem; }
}
