/* ==========================================================================
   Beauty By Berisha — Design System
   V1 = dark (gold)  ·  V2 = light (rosé)   via [data-theme]
   ========================================================================== */

/* ---- Fonts (self-hosted, variable) ------------------------------------- */
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/cormorant.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost.woff2') format('woff2');
  font-weight: 300 600; font-style: normal; font-display: swap;
}

/* ---- Theme tokens ------------------------------------------------------- */
:root {
  --serif: 'Cormorant', 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 84px;
}

/* V1 — dark / gold (default) */
[data-theme='dark'] {
  --bg: #0c0c0e;
  --bg-2: #131318;
  --surface: #17171d;
  --elevated: #1e1e25;
  --text: #f3efe8;
  --muted: #a39d94;
  --faint: #6f6a63;
  --accent: #c8a96a;
  --accent-soft: #d8bd86;
  --accent-ink: #0c0c0e;
  --border: rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);
  --overlay: linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.35) 35%, rgba(8,8,10,.78) 100%);
  --shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  --logo: url('../img/logo-pure-white.png');
  --logo-full: url('../img/logo-full-white.png');
  color-scheme: dark;
}

/* V2 — light / rosé */
[data-theme='light'] {
  --bg: #fbf6f3;
  --bg-2: #f4ebe6;
  --surface: #ffffff;
  --elevated: #ffffff;
  --text: #2c2422;
  --muted: #7e726b;
  --faint: #a99c94;
  --accent: #c07f86;
  --accent-soft: #d39aa0;
  --accent-ink: #ffffff;
  --border: rgba(44,36,34,.10);
  --border-strong: rgba(44,36,34,.18);
  --overlay: linear-gradient(180deg, rgba(40,28,28,.30) 0%, rgba(40,28,28,.12) 35%, rgba(30,20,20,.55) 100%);
  --shadow: 0 24px 60px -24px rgba(120,90,90,.32);
  --logo: url('../img/logo-pure-black.png');
  --logo-full: url('../img/logo-full-black.png');
  color-scheme: light;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: .005em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---- Utility: eyebrow / labels ----------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: ''; width: 34px; height: 1px; background: var(--accent); opacity: .7;
}
.eyebrow.center::after {
  content: ''; width: 34px; height: 1px; background: var(--accent); opacity: .7;
}

.section { padding-block: clamp(4.5rem, 9vw, 9rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin-top: 1rem; }
.section-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }
.lead { font-size: clamp(1.05rem, 2.4vw, 1.2rem); color: var(--muted); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --bh: 56px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  height: var(--bh); padding-inline: 2rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-soft); transform: translateY(-3px); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ---- Navbar ------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), height .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 68px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: block; height: 46px; width: 150px; background: var(--logo) center left / contain no-repeat; transition: height .4s var(--ease); }
.nav.scrolled .nav-logo { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 2.3rem; }
.nav-links a {
  font-size: .82rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text); position: relative; padding-block: .4rem; opacity: .85;
  transition: opacity .3s, color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--accent);
  transition: width .35s var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); opacity: 1; }
.nav-cta { margin-left: .6rem; }

/* Über dem Hero (ganz oben, vor dem Scrollen): helle Navbar für Lesbarkeit */
.nav-hero:not(.scrolled) .nav-logo { background-image: url('../img/logo-pure-white.png'); }
.nav-hero:not(.scrolled) .nav-toggle span { background: #fff; }
@media (min-width: 761px) {
  .nav-hero:not(.scrolled) .nav-links a { color: #fff; opacity: 1; font-weight: 600; text-shadow: 0 2px 10px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.5); }
  .nav-hero:not(.scrolled) .nav-links a:hover,
  .nav-hero:not(.scrolled) .nav-links a.active { color: var(--accent-soft); }
  .nav-hero:not(.scrolled) .nav-links a.active::after { background: #fff; }
}

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--text); transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Hero / Slider ------------------------------------------------------ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s linear;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide::after { content: ''; position: absolute; inset: 0; background: var(--overlay); }
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; padding-top: var(--nav-h); }
.hero-logo {
  width: min(420px, 74vw); aspect-ratio: 1589 / 1002; margin: 0 auto 2rem;
  background: var(--logo-full) center / contain no-repeat;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.45));
}
[data-theme='light'] .hero-logo { filter: drop-shadow(0 10px 30px rgba(255,255,255,.5)); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); color: #fff; font-weight: 500; }
.hero h1 .brand { white-space: nowrap; }
/* Auf groesseren Schirmen den Begruessungstitel in einer Zeile halten */
@media (min-width: 700px) { .hero h1 { white-space: nowrap; } }
[data-theme='light'] .hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2.6vw, 1.35rem); max-width: 600px; margin: 1.4rem auto 0; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero-actions .btn-ghost:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

.hero-dots { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .7rem; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.4); transition: background .3s, transform .3s; }
.hero-dots button.active { background: var(--accent); transform: scale(1.3); }

.scroll-hint { position: absolute; bottom: 2rem; right: var(--gutter); z-index: 3; writing-mode: vertical-rl; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 1rem; }
.scroll-hint::after { content: ''; width: 1px; height: 50px; background: linear-gradient(rgba(255,255,255,.7), transparent); }

/* ---- Services ----------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4;
  display: flex; align-items: flex-end; isolation: isolate;
  background: var(--surface); border: 1px solid var(--border);
}
.service-card .sc-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1s var(--ease); }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.15) 0%, rgba(8,8,10,.45) 42%, rgba(8,8,10,.93) 100%); z-index: 1; }
.service-card:hover .sc-img { transform: scale(1.07); }
.sc-body { position: relative; z-index: 2; padding: 1.7rem; width: 100%; }
.sc-body h3 { color: #fff; font-size: 1.7rem; text-shadow: 0 2px 14px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.7); }
.sc-body p { color: rgba(255,255,255,.92); font-size: .92rem; margin-top: .4rem; text-shadow: 0 1px 10px rgba(0,0,0,.8); }
.sc-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-soft); }
.sc-link svg { transition: transform .35s var(--ease); }
.service-card:hover .sc-link svg { transform: translateX(5px); }

/* ---- Split / About ------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; }
.split-photo { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); background-size: cover; background-position: center top; }
/* Bildschutz: erschwert Speichern/Drag/Langdruck (Screenshots sind technisch nicht blockierbar) */
.protected { -webkit-user-select: none; user-select: none; -webkit-user-drag: none; -webkit-touch-callout: none; pointer-events: none; }
.split-media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--accent); border-radius: var(--radius-lg); z-index: -1; opacity: .5; }
.split-body h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.split-body .lead { margin-top: 1.4rem; }
.split-body .signature { font-family: var(--serif); font-size: 1.8rem; color: var(--accent); margin-top: 1.6rem; font-style: italic; }
.split-body .role { color: var(--faint); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; }

.stats { display: flex; gap: 2.5rem; margin-top: 2.4rem; flex-wrap: wrap; }
.stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.stat .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ---- Gallery ------------------------------------------------------------ */
.gal-filter { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.8rem; }
.gal-filter button {
  padding: .7rem 1.5rem; border: 1px solid var(--border-strong); border-radius: 100px;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  transition: all .3s var(--ease);
}
.gal-filter button:hover { color: var(--text); border-color: var(--text); }
.gal-filter button.active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.gal-grid { columns: 4; column-gap: 1rem; }
.gal-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; display: block; background: var(--surface);
}
.gal-item img { width: 100%; transition: transform .8s var(--ease), filter .5s; }
.gal-item::after { content: ''; position: absolute; inset: 0; background: rgba(8,8,10,.0); transition: background .4s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover::after { background: rgba(8,8,10,.22); }
.gal-item .tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.45); padding: .35rem .7rem; border-radius: 100px; backdrop-filter: blur(6px); opacity: 0; transition: opacity .35s; }
.gal-item:hover .tag { opacity: 1; }
.gal-item.hidden { display: none; }

/* ---- Lightbox ----------------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,6,8,.94); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .35s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close, .lb-prev, .lb-next { position: absolute; z-index: 2; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; color: #fff; border-radius: 50%; transition: background .3s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.12); }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---- Info / Hours / Contact -------------------------------------------- */
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.hours-list li { display: flex; justify-content: space-between; padding: .85rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--text); }
.hours-list .time { color: var(--muted); }
.hours-list li.closed .time { color: var(--faint); }
.hours-list li.today { color: var(--accent); }
.hours-list li.today .day, .hours-list li.today .time { color: var(--accent); }

.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1rem; border-bottom: 1px solid var(--border); }
.contact-row:last-of-type { border-bottom: 0; }
.contact-row .ic { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-row .k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.contact-row .v { font-size: 1.08rem; color: var(--text); margin-top: .15rem; }
.contact-row a.v:hover { color: var(--accent); }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; text-align: center; padding-block: clamp(4rem,9vw,7rem); overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-band .bg::after { content: ''; position: absolute; inset: 0; background: rgba(8,8,10,.74); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); }
.cta-band p { color: rgba(255,255,255,.85); margin: 1rem auto 2.2rem; max-width: 520px; }

/* ---- Footer ------------------------------------------------------------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.footer-logo { width: 200px; height: 70px; background: var(--logo-full) center left / contain no-repeat; margin-bottom: 1.4rem; }
.footer p { color: var(--muted); font-size: .95rem; }
.footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.2rem; font-weight: 500; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a { color: var(--muted); font-size: .95rem; transition: color .3s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: center; gap: .55rem; }
.footer-contact .fc-ic { color: #fff; opacity: .85; flex-shrink: 0; display: inline-flex; line-height: 0; }
.socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .3s var(--ease); }
.socials a:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--faint); font-size: .82rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ---- reCAPTCHA Badge ausblenden (Hinweistext steht im Formular) -------- */
.grecaptcha-badge { visibility: hidden; }

/* ---- WhatsApp-Button (Mobile, im Marken-Stil) -------------------------- */
.wa-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.5), 0 0 0 1px var(--border);
  transition: transform .3s var(--ease), background .3s;
}
.wa-fab:hover, .wa-fab:focus-visible { transform: translateY(-3px); background: var(--accent-soft); }
@media (max-width: 900px) { .wa-fab { display: flex; } }

/* ---- Theme toggle (Vorschau) ------------------------------------------- */
.theme-toggle { position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 150; display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.1rem; border-radius: 100px; background: var(--elevated); border: 1px solid var(--border-strong); box-shadow: var(--shadow); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text); transition: transform .3s; }
.theme-toggle:hover { transform: translateY(-2px); }
.theme-toggle .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }

/* ---- Forms -------------------------------------------------------------- */
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: .5rem; }
.field input, .field textarea {
  width: 100%; padding: .9rem 1rem; font: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--radius);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.4rem; font-size: .95rem; }
.form-note.ok { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); }
.form-note.bad { background: rgba(200,80,80,.12); color: #e08a8a; border: 1px solid rgba(200,80,80,.3); }
@media (max-width: 760px) { .field-row { grid-template-columns: 1fr; } }

/* ---- Prose (Impressum/Datenschutz) ------------------------------------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.7rem; margin: 2.4rem 0 .9rem; }
.prose h3 { font-family: var(--sans); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 1.8rem 0 .6rem; font-weight: 500; }
.prose p, .prose li { color: var(--muted); margin-bottom: .8rem; }
.prose a { color: var(--accent); }
.prose ul { list-style: disc; padding-left: 1.3rem; }

/* ---- Scroll reveal ------------------------------------------------------ */
/* Inhalt nur verbergen, wenn JS aktiv ist (sonst immer sichtbar) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d='1'] { transition-delay: .08s; }
.reveal[data-d='2'] { transition-delay: .16s; }
.reveal[data-d='3'] { transition-delay: .24s; }

/* ---- Page header (subpages) -------------------------------------------- */
.page-head { position: relative; padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem; text-align: center; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-top: 1rem; }
.page-head p { color: var(--muted); margin-top: 1rem; max-width: 580px; margin-inline: auto; }
.breadcrumb { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-top: 1.6rem; }
.breadcrumb a:hover { color: var(--accent); }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --nav-h: 70px; }
  /* Kein backdrop-filter auf Mobile: sonst wird die Navbar zum Bezugsrahmen
     fuer das position:fixed-Menue und das Panel schrumpft auf Navbar-Hoehe. */
  .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
  .nav-links { position: fixed; inset: 0 0 0 auto; z-index: 105; width: min(82vw, 360px); background: var(--bg-2); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 3rem 2.4rem; transform: translateX(100%); transition: transform .45s var(--ease); border-left: 1px solid var(--border); }
  .nav-links.open { transform: none; box-shadow: var(--shadow); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-cta { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gal-grid { columns: 2; column-gap: .7rem; }
  .gal-item { margin-bottom: .7rem; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; }
  .scroll-hint { display: none; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .slide { transition: opacity .4s; transform: none; }
}

/* ---- Oeffnungszeiten: Hinweis zweiter Standort -------------------------- */
.hours-note { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.4rem; padding: 1rem 1.1rem; background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius); color: var(--muted); font-size: .92rem; line-height: 1.6; }
.hours-note .hn-ic { flex: 0 0 auto; color: var(--accent); display: inline-flex; margin-top: .15rem; }
.hours-note strong { color: var(--text); font-weight: 600; }
.hours-holiday { margin-top: .9rem; font-size: .86rem; color: var(--muted); font-style: italic; }
