/* Wellnessmassage by Alisa, Eschweiler — gestanzt aus templates/beauty */
/* ── FONTS: couture ── */
@font-face { font-family: "Display"; src: url("display.woff2") format("woff2"); font-weight: 400 800; font-display: swap; }
@font-face { font-family: "DisplayAcc"; src: url("display-accent.woff2") format("woff2"); font-weight: 300 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Body"; src: url("body.woff2") format("woff2"); font-weight: 300 500; font-display: swap; }
@font-face { font-family: "Body"; src: url("body-600.woff2") format("woff2"); font-weight: 600 800; font-display: swap; }
:root {
  --display: "Display", Georgia, serif;
  --display-acc: "DisplayAcc", Georgia, serif;
  --sans: "Body", "Helvetica Neue", Arial, system-ui, sans-serif;
  --display-weight: 600;
  --acc-weight: 600;
  --display-tracking: -0.01em;
}
/* ── FONTS:END ── */

/* ── PALETTE: porzellan ── */
:root {
  color-scheme: light;
  --bg: #f5f8f6;
  --bg-rgb: 245 248 246;
  --panel: #e9efeb;
  --line: #d8e1da;
  --ink: #1c2822;
  --ink-rgb: 28 40 34;
  --muted: #64786d;
  --accent: #2f6350;
  --accent-rgb: 47 99 80;
  --accent-dark: #234c3d;
  --accent2: #99bfae;
  --accent2-rgb: 153 191 174;
  --on-accent: #fff;
  --btn-bg: linear-gradient(115deg, #2f6350, #234c3d);
  --btn-ink: #fff;
  --photo-filter: none;
}
/* ── PALETTE:END ── */

/* ── Basis ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.acc { font-family: var(--display-acc); font-weight: var(--acc-weight); font-style: normal; color: var(--accent); }
.ic { width: 1.1em; height: 1.1em; vertical-align: -0.18em; }

.demo-banner { background: var(--ink); color: var(--bg); text-align: center; padding: 7px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Meta-Strip (schmal, sticky) + Masthead ── */
.meta-strip { position: sticky; top: 0; z-index: 20; display: block; background: rgb(var(--bg-rgb) / 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.meta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 9px; padding-bottom: 9px; }
.meta-strip .m-adr { color: var(--muted); }
.meta-strip .m-tel { color: var(--ink); font-weight: 600; letter-spacing: 0.1em; }
.meta-strip .m-tel:hover { color: var(--accent); }
.m-status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.m-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #1fa159; box-shadow: 0 0 8px rgb(31 161 89 / 0.7); animation: pulse 2.2s ease-in-out infinite; }
.m-status .dot.closed { background: var(--accent2); box-shadow: none; animation: none; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.masthead { padding: 36px 0 0; text-align: center; }
.brand { display: inline-block; font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(30px, 4.4vw, 44px); letter-spacing: 0.02em; color: var(--ink); line-height: 1.15; }
.brand:hover { color: var(--accent); }
.masthead .tagline { margin-top: 2px; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; justify-content: center; gap: 34px; margin-top: 22px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; }
.main-nav a { color: var(--muted); }
.main-nav a:hover { color: var(--accent); }

/* ── Buttons (rechteckig, editorial) ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 30px; border-radius: 3px; font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; border: 0; cursor: pointer; transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, color 150ms ease, background-color 150ms ease; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--btn-bg); color: var(--btn-ink); box-shadow: 0 8px 26px rgb(var(--accent-rgb) / 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgb(var(--accent-rgb) / 0.4); }
.btn-ghost { border: 1px solid rgb(var(--ink-rgb) / 0.3); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-big { padding: 18px 38px; font-size: 14px; }
.btn-wa { background: #1faa53; color: #fff; padding: 12px 20px; font-size: 12px; }
.btn-wa:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-insta { background: linear-gradient(45deg, #f58529, #dd2a7b 55%, #8134af); color: #fff; padding: 12px 20px; font-size: 12px; }
.btn-insta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.link-arrow { font-weight: 600; font-size: 14px; letter-spacing: 0.04em; border-bottom: 1px solid rgb(var(--accent-rgb) / 0.4); padding-bottom: 2px; }
.link-arrow:hover { border-color: var(--accent); }

/* ── Sektions-Gerüst: Nummern-Label + Hairline ── */
.section { padding: 92px 0; scroll-margin-top: 64px; }
.section.alt { background: var(--panel); }
.sec-label { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.sec-label .num { font-family: var(--display-acc); font-weight: var(--acc-weight); font-size: 19px; color: var(--accent); }
.sec-label .rule { flex: 0 0 56px; height: 1px; background: var(--line); }
.sec-label .lab { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.section h2 { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(30px, 4.4vw, 48px); letter-spacing: var(--display-tracking); line-height: 1.12; margin-bottom: 18px; }
.sec-intro { color: var(--muted); max-width: 58ch; margin-bottom: 44px; font-size: 16.5px; }

/* ── Hero: gemeinsame Bausteine ── */
.hero h1 { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(44px, 7vw, 88px); line-height: 1.03; letter-spacing: var(--display-tracking); }
.hero .kicker { font-size: 12.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; font-weight: 600; }
.hero .sub { margin-top: 22px; font-size: 17.5px; color: var(--muted); max-width: 50ch; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-top: 26px; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hero-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: rgb(var(--ink-rgb) / 0.3); }
.hero-meta strong { color: var(--ink); font-weight: 600; letter-spacing: 0.08em; }
.stars-inline { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.stars-inline em { font-style: normal; color: rgb(var(--accent-rgb) / 0.28); }
.star-frac { position: relative; display: inline-block; }
.star-frac::before { content: "★"; position: absolute; left: 0; top: 0; width: var(--f, 50%); overflow: hidden; color: var(--accent); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ── VARIANT:hero-editorial — Text links, Foto-Komposition rechts ── */
.hero-editorial { position: relative; padding: 64px 0 96px; overflow: visible; }
.hero-editorial .hero-grid { display: grid; grid-template-columns: 1.05fr 0.92fr; gap: 60px; align-items: center; }
.hero-figures { position: relative; margin: 0; }
.hero-figures .photo-main { width: 84%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: var(--hero-pos, 50% 40%); border-radius: 8px; outline: 1px solid var(--line); outline-offset: 12px; box-shadow: 0 30px 70px rgb(var(--ink-rgb) / 0.22); filter: var(--photo-filter); }
.hero-figures .photo-side { position: absolute; right: -6px; bottom: -48px; width: 46%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; border: 6px solid var(--bg); box-shadow: 0 18px 44px rgb(var(--ink-rgb) / 0.24); filter: var(--photo-filter); }
@media (max-width: 900px) {
  .hero-editorial { padding: 44px 0 72px; }
  .hero-editorial .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  /* Botschaft zuerst: Kicker/Headline/CTA vor der Foto-Komposition (Mobil-Fold) */
  .hero-figures { max-width: 320px; margin: 10px auto 0; }
  .hero-figures .photo-side { bottom: -26px; }
}
/* ── /VARIANT:hero-editorial ── */


/* ── SIGNATURE:sheen — Schimmer-Lauf im Akzentwort + weiche Farbinseln ── */
.hero .acc { background: linear-gradient(110deg, var(--accent), var(--accent2) 35%, var(--accent) 60%, var(--accent-dark)); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: sheen 7s ease-in-out infinite; }
@keyframes sheen { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: -1; }
.hero-blob.b1 { width: 520px; height: 520px; right: -140px; top: -80px; background: radial-gradient(circle, rgb(var(--accent2-rgb) / 0.28), transparent 65%); }
.hero-blob.b2 { width: 420px; height: 420px; left: -160px; bottom: -140px; background: radial-gradient(circle, rgb(var(--accent-rgb) / 0.16), transparent 65%); }
/* ── /SIGNATURE:sheen ── */



/* ── Leistungsmenü (Pflicht-Sektion) ── */
.menu-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 64px; }
@media (max-width: 760px) { .menu-groups { grid-template-columns: 1fr; } }
.menu-group h3 { font-family: var(--display); font-weight: var(--display-weight); font-size: 23px; letter-spacing: var(--display-tracking); margin: 14px 0 6px; }
.menu-group h3::after { content: ""; display: block; width: 44px; height: 2px; margin-top: 10px; background: var(--accent); }
.svc { padding: 18px 0 16px; border-bottom: 1px solid var(--line); }
.svc-row { display: flex; align-items: baseline; gap: 12px; }
.svc-name { font-weight: 600; font-size: 16.5px; }
.svc-desc { color: var(--muted); font-size: 14.5px; margin-top: 4px; max-width: 46ch; }
.menu-note { margin-top: 26px; color: var(--muted); font-size: 14.5px; }
.cta-inline { margin-top: 40px; text-align: center; }


/* ── VARIANT:gal-grid — ein großes + zwei kleine Bilder (asymmetrisch) ── */
.gal-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gal-grid figure { margin: 0; overflow: hidden; border-radius: 8px; outline: 1px solid var(--line); outline-offset: 8px; }
.gal-grid figure:first-child { grid-row: 1 / 3; }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; display: block; filter: var(--photo-filter); transition: transform 500ms ease; }
.gal-grid figure:hover img { transform: scale(1.035); }
.gal-grid figure:first-child img { aspect-ratio: 3 / 4; }
.gal-grid figure:not(:first-child) img { aspect-ratio: 16 / 10; }
@media (max-width: 680px) { .gal-grid { grid-template-columns: 1fr; grid-template-rows: none; } .gal-grid figure:first-child { grid-row: auto; } }
/* ── /VARIANT:gal-grid ── */
.gallery-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); text-align: center; letter-spacing: 0.06em; }

/* ── Stimmen & Bewertung ── */
.rating-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px 26px; margin-bottom: 46px; }
.rating-line .big { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(76px, 11vw, 132px); line-height: 0.9; color: var(--accent); }
.rating-line .of { font-family: var(--display-acc); font-weight: var(--acc-weight); font-size: clamp(24px, 3vw, 34px); color: var(--muted); }
.rating-line .stars-inline { font-size: clamp(18px, 2.6vw, 26px); letter-spacing: 4px; }
.rating-line .count { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.rating-line .count strong { color: var(--ink); font-size: 15px; letter-spacing: 0.1em; }
.rating-line .g-review-link { font-size: 13px; letter-spacing: 0.04em; color: var(--muted); border-bottom: 1px solid rgb(var(--accent-rgb) / 0.4); padding-bottom: 1px; }
.rating-line .g-review-link:hover { color: var(--accent); border-color: var(--accent); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 28px 26px 22px; position: relative; }
.section:not(.alt) .quote-card { background: var(--panel); }
.quote-card .qmark { font-family: var(--display-acc); font-weight: var(--acc-weight); font-size: 54px; line-height: 0.6; color: var(--accent); display: block; margin-bottom: 14px; }
.quote-card p { font-size: 15px; line-height: 1.7; }
.quote-card .q-meta { margin-top: 14px; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.rating-cta { margin-top: 40px; text-align: center; }

/* ── Über uns + Instagram ── */
.about-text p { font-size: 16.5px; }
.about-text p + p { margin-top: 16px; }
.insta-panel { margin-top: 52px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; padding: 30px 32px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; background: rgb(var(--ink-rgb) / 0.02); }
.insta-panel .ip-handle { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(21px, 3vw, 28px); letter-spacing: var(--display-tracking); color: var(--ink); }
.insta-panel .ip-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ── SECTION:team ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.team-card { border: 1px solid var(--line); border-radius: 10px; padding: 30px 24px; text-align: center; background: var(--panel); }
.team-card .t-init { width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: var(--display-weight); font-size: 26px; color: var(--on-accent); background: var(--btn-bg); }
.team-card h3 { font-family: var(--display); font-weight: var(--display-weight); font-size: 21px; }
.team-card .t-role { color: var(--muted); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
/* ── /SECTION:team ── */

/* ── Termin & Kontakt ── */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.termin-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 40px 36px; text-align: center; }
.section.alt .termin-card { background: var(--bg); }
.termin-card .tc-kicker { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.termin-card h3 { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(24px, 3.4vw, 32px); letter-spacing: var(--display-tracking); margin-bottom: 14px; }
.termin-card .tc-text { color: var(--muted); font-size: 15.5px; max-width: 40ch; margin: 0 auto 24px; }
.termin-card .tc-tel { margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.termin-card .tc-tel a { font-weight: 600; }
.social-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.contact-info .adr { font-size: 17.5px; line-height: 1.75; }
.contact-info .adr strong { font-family: var(--display); font-weight: var(--display-weight); font-size: 21px; letter-spacing: var(--display-tracking); }
.adr-note { margin-top: 12px; color: var(--muted); font-size: 14.5px; max-width: 44ch; }
.maps-link { display: inline-block; margin-top: 14px; }
/* SECTION:hours — Zeiten-Liste rechts im Kontaktblock
   HOURS_ROWS-Format: <div class="h-row"><span class="h-day">…</span><span class="h-time">…</span></div> */
.hours-list { border-top: 1px solid var(--line); }
.hours-list .h-row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.hours-list .h-day { color: var(--muted); }
.hours-list .h-time { font-weight: 600; text-align: right; }
.hours-list .h-time.closed { color: var(--muted); font-weight: 400; }
.hours-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 34px; margin-bottom: 12px; }
.hours-heading h3 { font-family: var(--display); font-weight: var(--display-weight); font-size: 21px; letter-spacing: var(--display-tracking); }
.hours-note { margin-top: 12px; font-size: 13.5px; color: var(--muted); }
/* /SECTION:hours */

/* ── Footer (zentriert, gestapelt) ── */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 40px; text-align: center; font-size: 13.5px; color: var(--muted); }
.site-footer .f-brand { font-family: var(--display); font-weight: var(--display-weight); font-size: 22px; color: var(--ink); }
.site-footer .f-links { margin-top: 12px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }
.site-footer .made-by { margin-top: 14px; font-size: 12.5px; opacity: 0.85; }

/* ── Sticky Mobile Call (Pflicht) ── */
.sticky-call { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 25; display: none; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 6px; background: var(--btn-bg); color: var(--btn-ink); font-weight: 700; font-size: 13px; letter-spacing: 0.09em; line-height: 1.4; text-align: center; text-transform: uppercase; box-shadow: 0 12px 34px rgb(var(--accent-rgb) / 0.45); }

/* ── Scroll-Reveal ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Mobil ── */
@media (max-width: 760px) {
  .sticky-call { display: flex; }
  /* Nav muss einzeilig bleiben (5 Punkte inkl. „Behandlungen“): kompakter Schriftlauf */
  .main-nav { gap: 10px 11px; font-size: 10.5px; letter-spacing: 0.07em; flex-wrap: wrap; padding-left: 6px; padding-right: 6px; }
  .meta-strip .m-adr { display: none; }
  .masthead { padding-top: 26px; }
  .cta-row .btn-primary { display: none; } /* Sticky-Call übernimmt, kein Doppel-CTA */
  .section { padding: 68px 0; }
  body { font-size: 16.5px; }
  #termin { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .m-status .dot { animation: none; }
  .btn, .band img, .gal-grid img { transition: none; }
/* ── SIGNATURE:sheen ── */
  .hero .acc { animation: none; background-position: 50% 0; }
/* ── /SIGNATURE:sheen ── */
}
