/* ============================================================
   Vanille Kosmetik — Site styles
   Built on tokens.css. Editorial, warm, airy one-pager.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--surface-page);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; }

a { color: inherit; }

/* ---- Reusable helpers ---- */
.container { max-width: var(--container); margin: 0 auto; }

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
  color: var(--text-muted);
}

.flourish {
  font-family: var(--font-hand);
  font-size: clamp(40px, 7vw, 52px);
  color: var(--text-brand);
  line-height: 0.95;
  margin: 6px 0 -2px;
}

.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: var(--weight-semibold);
  color: var(--text-heading);
  margin: 8px 0 0;
  text-wrap: balance;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
}
.btn-primary {
  background: var(--brand);
  color: var(--text-on-accent);
  border: 1px solid var(--brand);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}
.btn-ghost:hover { background: var(--brand-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface-page) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px clamp(18px, 4vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: padding var(--dur-base) var(--ease-out);
}
.site-header.scrolled .header-inner { padding-top: 8px; padding-bottom: 8px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
/* Logo sits fully inside the (slightly taller) header bar — no overhang past the border line. */
.brand-logo {
  height: 84px; width: auto; display: block;
  transform: translateY(-2px); /* nudge up to optically centre the wordmark in the bar */
  transition: height var(--dur-base) var(--ease-out);
}
.site-header.scrolled .brand-logo { height: 64px; }
.brand-mark { flex: none; color: var(--text-brand); }
.brand-word { font-family: var(--font-script); font-size: 30px; color: var(--text-brand); line-height: 1; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text-strong);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-link:hover { color: var(--text-brand); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--text-brand); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-brand);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.site-header.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px clamp(18px, 4vw, 36px) 18px;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-page);
}
.mobile-nav a {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  padding: 12px 4px;
  text-decoration: none;
  color: var(--text-strong);
}
.mobile-nav .mobile-cta {
  margin-top: 10px;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--text-on-accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header.menu-open .mobile-nav { display: flex; }

.header-spacer { height: 105px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 40px) clamp(60px, 8vw, 96px);
  overflow: hidden;
  scroll-margin-top: 115px;
}
.hero-blob { position: absolute; pointer-events: none; }
.hero-blob--1 { width: 360px; left: -120px; top: -60px; opacity: 0.5; color: var(--vk-sand-300); }
.hero-blob--2 { width: 300px; right: -100px; bottom: -70px; opacity: 0.4; color: var(--vk-sand-400); }
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: clamp(34px, 7vw, 60px);
  line-height: 1.08;
  color: var(--text-heading);
  margin: 18px 0 0;
  text-wrap: balance;
}
.hero h1 .script {
  font-family: var(--font-script);
  font-weight: var(--weight-regular);
  color: var(--text-brand);
  font-size: clamp(44px, 9vw, 78px);
}
.hero-sub {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.6;
  color: var(--text-body);
  margin: 24px auto 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   DIENSTLEISTUNG
   ============================================================ */
.services {
  background: var(--surface-page-alt);
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 40px);
  scroll-margin-top: 115px;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.service-card {
  /* Fixed, uniform card size — sized to the largest card so heights match across rows.
     Cards no longer stretch; incomplete rows stay centered via .services-grid justify-content. */
  position: relative;
  flex: 0 0 360px;
  height: 200px;
  max-width: 100%;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--text-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); background: var(--vk-sand-400); }
/* Inline icon SVG — inherits the brand colour via currentColor */
.service-icon svg { width: 26px; height: 26px; display: block; }
.service-card h3 { font-size: 20px; font-weight: var(--weight-semibold); color: var(--text-heading); margin: 0 0 8px; }
.service-card p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-muted); margin: 0; }

/* Clickable cards (have a popup) */
.service-card--clickable { cursor: pointer; }
.service-more {
  display: inline-block;
  margin-top: 14px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-brand);
}
.service-card--clickable:hover .service-more { text-decoration: underline; text-underline-offset: 3px; }
.service-card--clickable:focus-visible { outline: none; box-shadow: var(--shadow-lg), 0 0 0 3px var(--ring); }

/* Jump arrow (bottom-right): anchors down to the matching price category */
.service-jump {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 36px; height: 36px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--brand-soft);
  color: var(--text-brand);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.service-jump:hover { background: var(--vk-sand-400); transform: translateY(2px); }
.service-jump:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }

/* Fixed-size cards wrap automatically (3 cols desktop / 2 tablet / 1 narrow), always centered.
   On phones the cards go fluid full-width with natural height so long text never clips. */
@media (max-width: 600px) {
  .service-card { flex: 0 0 100%; width: 100%; height: auto; }
}
@media (max-width: 560px) {
  .brand-logo { height: 68px; }                          /* smaller logo + bar on phones */
  .header-inner { padding-top: 8px; padding-bottom: 8px; }
  .header-spacer { height: 85px; }                       /* 68 + 16 + 1px border */
}

/* ============================================================
   PREISLISTE (accordion)
   ============================================================ */
.prices {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 40px);
  scroll-margin-top: 115px;
}
.prices-blob { position: absolute; width: 280px; right: -90px; top: 40px; opacity: 0.4; color: var(--vk-sand-300); pointer-events: none; }
.prices-inner { max-width: 820px; margin: 0 auto; position: relative; }
.prices-head { text-align: center; margin-bottom: 44px; }
.prices-head p { font-size: var(--text-base); color: var(--text-muted); margin: 10px 0 0; }

.price-list { display: flex; flex-direction: column; gap: 14px; }
.price-cat {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  scroll-margin-top: 120px; /* land below the fixed header when jumped to from a card arrow */
}
.cat-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px clamp(18px, 4vw, 28px);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-sans);
}
.cat-titles { display: flex; flex-direction: column; gap: 2px; }
.cat-title { font-size: clamp(17px, 3vw, 20px); font-weight: var(--weight-semibold); color: var(--text-heading); }
.cat-sub { font-size: 13px; color: var(--text-muted); }
.cat-sign {
  flex: none;
  width: 34px; height: 34px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--text-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: var(--weight-semibold); line-height: 1;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.cat-sign::before { content: '+'; }
.price-cat.open .cat-sign { transform: rotate(180deg); }
.price-cat.open .cat-sign::before { content: '\2013'; } /* en-dash */
.cat-toggle:hover .cat-sign { background: var(--vk-sand-400); }

/* Smooth expand/collapse — max-height driven by JS (assets/js/app.js).
   Bottom padding only when open, otherwise it leaks ~24px below a
   collapsed header (max-height:0 does not clip padding here). */
.price-body {
  padding: 0 clamp(18px, 4vw, 28px);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.price-cat.open .price-body { padding-bottom: 24px; }

.price-group { margin-top: 14px; }
.group-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-brand);
  margin: 10px 0 4px;
}
/* Clickable group heading (sub-category with a popup) */
.group-label--clickable {
  cursor: pointer;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out);
}
.group-label--clickable .row-more { text-transform: none; letter-spacing: normal; margin-top: 0; }
.group-label--clickable:hover .row-more { text-decoration: underline; text-underline-offset: 2px; }
.group-label--clickable:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }
.price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.row-main { flex: none; max-width: 64%; }
.row-name { font-size: 15px; font-weight: var(--weight-medium); color: var(--text-strong); }
.row-meta { font-size: var(--text-xs); color: var(--text-muted); margin-left: 7px; }
.row-detail { display: block; font-size: 13px; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }
.row-dots { flex: 1; align-self: flex-end; margin-bottom: 5px; border-bottom: 1.5px dotted var(--border-strong); opacity: 0.6; }
.row-price { flex: none; font-size: var(--text-base); font-weight: var(--weight-semibold); color: var(--price); white-space: nowrap; }

/* Clickable price rows (have a popup) */
.price-row--clickable { cursor: pointer; border-radius: var(--radius-sm); transition: background-color var(--dur-fast) var(--ease-out); }
.price-row--clickable:hover { background: var(--brand-soft); }
.price-row--clickable:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }
.row-more {
  display: inline-block;
  margin-top: 4px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text-brand);
}
.price-row--clickable:hover .row-more { text-decoration: underline; text-underline-offset: 2px; }

.prices-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 22px; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery {
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 40px);
  scroll-margin-top: 115px;
}
.gallery-wrap { position: relative; max-width: 880px; margin: 0 auto; }
.gallery-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  background: var(--vk-sand-300);
}
.gallery-slide {
  position: absolute; inset: 0;
  background-color: var(--vk-sand-300);
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, color-mix(in srgb, var(--vk-tan-500) 22%, transparent) 16px 17px);
  display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.gallery-slide.active { opacity: 1; pointer-events: auto; animation: galKenburns 8s var(--ease-out) forwards; }

/* Real photo slides (built from assets/img/gallery/ — see app.js) */
.gallery-slide--img { background: none; padding: 0; }
.gallery-slide--img.active { animation: none; } /* photos stay still & fully visible — no zoom-crop */
/* Blurred copy of the same photo fills the frame; the photo itself is shown in full (contain) */
.gallery-slide__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: blur(24px) brightness(0.9);
}
.gallery-slide__img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.gallery-slide .tag {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--text-xs); letter-spacing: 0.2em; color: var(--text-brand);
}
.gallery-slide .caption {
  font-family: var(--font-hand);
  font-size: clamp(28px, 5vw, 42px); color: var(--text-brand); line-height: 1;
}
.gallery-slide .hint {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--text-2xs); letter-spacing: 0.08em; color: var(--text-muted);
}
@keyframes galKenburns { from { transform: scale(1.005); } to { transform: scale(1.06); } }

.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; /* keep the arrows above the slide photo (.gallery-slide__img is z-index:1) so clicks land */
  width: 46px; height: 46px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--vk-white);
  color: var(--text-brand);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.gallery-nav:hover { background: var(--brand-soft); }
.gallery-nav.prev { left: clamp(8px, 2vw, 16px); }
.gallery-nav.next { right: clamp(8px, 2vw, 16px); }

.gallery-dots { display: flex; gap: 9px; justify-content: center; margin-top: 22px; }
.gallery-dot {
  position: relative;
  width: 26px; height: 4px;
  border-radius: var(--radius-pill);
  border: none; cursor: pointer; padding: 0;
  background: var(--border-strong);
  transition: background var(--dur-fast) var(--ease-out);
}
.gallery-dot.active { background: var(--brand); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact {
  background: var(--surface-page-alt);
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 40px);
  scroll-margin-top: 115px;
}
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-lead { font-size: var(--text-base); line-height: 1.6; color: var(--text-body); margin: 0 0 28px; max-width: 380px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item.top { align-items: flex-start; }
.contact-icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--text-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-md);
}
.contact-label { font-size: var(--text-xs); color: var(--text-muted); }
.contact-value { font-size: var(--text-base); font-weight: var(--weight-semibold); color: var(--text-strong); }
.contact-value a { text-decoration: none; }
.contact-value a:hover { color: var(--text-brand); }
.contact-closed { font-size: var(--text-sm); color: var(--vk-error); margin-top: 2px; }

.photo-placeholder {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-xl);
  background: var(--surface-page-alt);
  border: 2px dashed var(--border-strong);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 36px;
  box-shadow: var(--shadow-md);
}
.photo-placeholder .ph-icon {
  width: 68px; height: 68px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
}
.photo-placeholder .ph-title { font-family: var(--font-hand); font-size: 32px; color: var(--text-brand); line-height: 1; }
.photo-placeholder p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-muted); max-width: 260px; margin: 0; }

/* Contact photo (real image) */
.contact-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: var(--surface-card);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.contact-photo picture { display: block; width: 100%; height: 100%; }
.contact-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about {
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 40px);
  scroll-margin-top: 115px;
}
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: var(--surface-card);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.about-photo picture { display: block; width: 100%; height: 100%; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.about-text h2 {
  font-family: var(--font-sans);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: var(--weight-semibold);
  color: var(--text-heading);
  margin: 6px 0 20px;
  line-height: 1.15;
}
.about-text p { font-size: var(--text-base); line-height: 1.7; color: var(--text-body); margin: 0 0 16px; max-width: 62ch; }
.about-sign { font-family: var(--font-hand); font-size: 30px !important ; color: var(--text-brand); margin-top: 10px; }

/* Contact opening-hours card (replaces the contact photo) */
.contact-hours {
  align-self: start;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: var(--surface-card);
  padding: clamp(24px, 4vw, 36px);
}
.contact-hours-title {
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--text-brand);
  line-height: 1;
  margin-bottom: 16px;
}
/* Higher specificity (double class) so these win over the dark footer .hours-table rules */
.hours-table.hours-table--light { max-width: none; margin-top: 0; }
.hours-table.hours-table--light td { color: var(--text-body); padding: 9px 0; border-bottom: 1px solid var(--border-subtle); font-size: var(--text-base); }
.hours-table.hours-table--light td.time { text-align: right; color: var(--text-strong); font-weight: var(--weight-semibold); }
.hours-table.hours-table--light td.time.closed { color: var(--vk-error); font-weight: var(--weight-medium); }
.hours-table.hours-table--light tr:last-child td { border-bottom: none; }

/* Google Maps card (contact) — embedded map + "Route starten" button */
.contact-map {
  max-width: var(--container);
  margin: clamp(32px, 5vw, 52px) auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: var(--surface-card);
}
.contact-map__frame {
  display: block;
  width: 100%;
  height: clamp(240px, 34vw, 340px);
  border: 0;
}
.contact-map__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 16px clamp(16px, 3vw, 24px);
}
.contact-map__addr { font-size: var(--text-sm); color: var(--text-muted); }
.contact-map__bar .btn { white-space: nowrap; }

/* Click-to-load placeholder (no Google content until the user opts in) */
.contact-map__placeholder {
  height: clamp(240px, 34vw, 340px);
  background:
    radial-gradient(circle at 1px 1px, var(--border-subtle) 1px, transparent 0) 0 0 / 22px 22px,
    var(--surface-page-alt);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}
.contact-map__note { max-width: 380px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.contact-map__note .map-pin { color: var(--text-brand); display: block; }
.contact-map__note p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.55; margin: 0; }
.contact-map__note .btn { margin-top: 2px; }
.contact-map__hint { font-size: var(--text-xs) !important; }
.contact-map__hint a { color: var(--text-brand); }

/* ============================================================
   FOOTER + IMPRESSUM
   ============================================================ */
.site-footer {
  background: var(--surface-inverse);
  color: var(--vk-ivory-50);
  padding: clamp(56px, 8vw, 80px) clamp(18px, 5vw, 40px) 36px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 40px;
}
.footer-brand-row { display: inline-flex; align-items: center; gap: 11px; color: var(--vk-ivory-50); }
.footer-brand-row .brand-word { color: var(--vk-ivory-50); font-size: 34px; }
/* Footer wordmark logo (same asset as the header) — inverted to white for the dark footer */
.footer-logo { height: 52px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-tagline { margin: 16px 0 0; max-width: 280px; color: var(--vk-sand-300); font-size: var(--text-sm); line-height: 1.6; }

.footer-col { font-size: var(--text-sm); line-height: 1.9; }
.footer-col-title {
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: var(--text-2xs); color: var(--vk-tan-500);
  margin-bottom: 8px; font-weight: var(--weight-semibold);
}
.footer-col .line { color: var(--vk-sand-300); }
.footer-col .line.dim { color: var(--vk-stone-400); font-size: var(--text-xs); }
.footer-col .line.dim.gap { margin-top: 8px; }
.footer-col a { color: var(--vk-sand-300); }

.hours-table { border-collapse: collapse; width: 100%; max-width: 240px; margin-top: 10px; }
.hours-table td { padding: 3px 0; color: var(--vk-sand-300); }
.hours-table td.time { text-align: right; color: var(--vk-ivory-50); font-weight: var(--weight-semibold); }
.hours-table td.time.closed { color: var(--vk-tan-500); }

.footer-links { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.footer-links a, .footer-links button {
  color: var(--vk-sand-300); font-size: 13px; text-decoration: none;
  background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-sans);
}
.footer-links a:hover, .footer-links button:hover { color: var(--vk-ivory-50); text-decoration: underline; }

/* Social media icon links (footer) */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--vk-sand-300);
  border: 1px solid color-mix(in srgb, var(--vk-ivory-50) 20%, transparent);
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.footer-social a:hover {
  color: var(--vk-ivory-50);
  border-color: var(--vk-ivory-50);
  background: color-mix(in srgb, var(--vk-ivory-50) 10%, transparent);
  transform: translateY(-2px);
}
.footer-social a:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }
.footer-social svg { width: 19px; height: 19px; display: block; }

.footer-bottom {
  max-width: var(--container);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: var(--text-xs);
  color: var(--vk-stone-400);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: clamp(12px, 3vw, 24px);
  width: min(680px, calc(100% - 24px));
  z-index: 80;
  background: var(--vk-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 20px 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  animation: vkCookieIn var(--dur-slow) var(--ease-out);
}
.cookie-banner[hidden] { display: none; }
@keyframes vkCookieIn {
  from { opacity: 0; transform: translateX(-50%) translateY(22px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner p { flex: 1; min-width: 220px; margin: 0; font-size: 13px; line-height: 1.55; color: var(--text-body); }
.cookie-banner p a { color: var(--text-brand); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-actions button {
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: var(--weight-semibold); cursor: pointer;
  font-family: var(--font-sans);
}
.cookie-actions .secondary { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.cookie-actions .primary { background: var(--brand); color: var(--text-on-accent); border: none; }

/* ============================================================
   RECHTLICHES (legal page)
   ============================================================ */
.legal-header {
  background: var(--surface-page-alt);
  border-bottom: 1px solid var(--border-subtle);
}
.legal-header .header-inner { padding-top: 14px; padding-bottom: 14px; }
.legal-logo { height: 40px; width: auto; display: block; }
.legal-back { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-brand); text-decoration: none; }
.legal-back:hover { text-decoration: underline; }

.legal-hero {
  text-align: center;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 40px) clamp(24px, 4vw, 40px);
  max-width: 720px; margin: 0 auto;
}
.legal-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: var(--weight-semibold); color: var(--text-heading); margin: 8px 0 0; }
.legal-hero p { font-size: var(--text-base); color: var(--text-muted); margin: 14px 0 0; }

.legal-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 28px 0 0; }
.legal-tabs a {
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  color: var(--text-brand); text-decoration: none;
  font-size: var(--text-sm); font-weight: var(--weight-semibold);
  transition: var(--transition-base);
}
.legal-tabs a:hover { background: var(--brand-soft); }

.legal-note {
  max-width: 820px; margin: 28px auto 0;
  background: color-mix(in srgb, var(--vk-gold) 14%, var(--surface-card));
  border: 1px solid color-mix(in srgb, var(--vk-gold) 45%, transparent);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: var(--text-sm); line-height: 1.55; color: var(--text-body);
}

.legal-body { max-width: 820px; margin: 0 auto; padding: clamp(32px, 6vw, 64px) clamp(18px, 5vw, 40px) clamp(56px, 8vw, 96px); }
.legal-section { scroll-margin-top: 90px; margin-top: clamp(40px, 6vw, 64px); }
.legal-section:first-child { margin-top: 0; }
.legal-section .flourish { text-align: left; }
.legal-section h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: var(--weight-semibold); color: var(--text-heading); margin: 4px 0 6px; }
.legal-section h3 { font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--text-heading); margin: 22px 0 6px; }
.legal-section p { font-size: var(--text-base); line-height: 1.7; color: var(--text-body); margin: 0 0 14px; }
.legal-section .muted { color: var(--text-muted); font-size: var(--text-sm); }
.legal-section a { color: var(--text-brand); text-underline-offset: 3px; }
.legal-section .lead { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 18px; }
.legal-section address { font-style: normal; line-height: 1.7; }
.legal-divider { border: none; border-top: 1px solid var(--border-subtle); margin: clamp(40px, 6vw, 64px) 0 0; }

/* ============================================================
   RESPONSIVE — swap desktop nav ↔ hamburger
   ============================================================ */
@media (max-width: 819px) {
  .nav { display: none; }
  .hamburger { display: inline-flex; }
}

/* ============================================================
   SERVICE POPUP (Modal)
   ============================================================ */
.vk-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 40px);
}
.vk-modal[hidden] { display: none; }
.vk-modal__backdrop {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--vk-black) 55%, transparent);
  backdrop-filter: blur(2px);
}
.vk-modal__dialog {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  background: var(--surface-page);
  color: var(--text-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: clamp(26px, 4vw, 40px);
}
.vk-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  color: var(--text-brand);
  font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.vk-modal__close:hover { background: var(--brand-soft); }
.vk-modal__title {
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: clamp(20px, 3.4vw, 26px);
  line-height: 1.28;
  color: var(--text-heading);
  margin: 4px 44px 18px 0;
  text-wrap: balance;
}
.vk-modal__body p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 14px;
}
.vk-modal__body p:last-child { margin-bottom: 0; }
html.vk-modal-open, html.vk-modal-open body { overflow: hidden; }

/* Soft entrance (calm) */
.js-anim .vk-modal:not([hidden]) .vk-modal__backdrop { animation: vkModalFade 0.3s var(--ease-out); }
.js-anim .vk-modal:not([hidden]) .vk-modal__dialog { animation: vkModalIn 0.42s var(--ease-out); }
@keyframes vkModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vkModalIn { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ============================================================
   ANIMATIONS — calm, organic, on-brand
   Active only when JS adds .js-anim to <html> (set synchronously
   in the page <head>, so there is no flash of hidden content).
   ============================================================ */

/* ---- Scroll-reveal: gentle fade-up ----
   Targets are pre-hidden via CSS (no FOUC); reveal.js adds .is-in
   when they enter the viewport. */
.js-anim .hero-inner > *,
.js-anim .services .section-head > *,
.js-anim .services-grid .service-card,
.js-anim .prices-head > *,
.js-anim .price-list .price-cat,
.js-anim .gallery .section-head > *,
.js-anim .gallery-wrap,
.js-anim .about-grid > div,
.js-anim .contact-grid > div,
.js-anim .footer-grid > *,
.js-anim .legal-hero > *,
.js-anim .legal-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s var(--ease-out), transform 0.62s var(--ease-out);
  will-change: opacity, transform;
}
.js-anim .is-in {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- Contact photo: softer, slower entrance — gentle un-zoom + un-blur ---- */
.js-anim .contact-grid > div.contact-photo,
.js-anim .about-grid > div.about-photo {
  transform: translateY(26px) scale(1.05);
  filter: blur(8px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out), filter 1.2s var(--ease-out);
}
.js-anim .contact-photo.is-in,
.js-anim .about-photo.is-in { filter: none !important; }

/* ---- Hero entrance: a touch more lift + the script word settles ---- */
.js-anim .hero h1 .script {
  display: inline-block;
  transform-origin: 50% 80%;
}
.js-anim .hero-inner > h1.is-in .script {
  animation: vkScriptSettle 0.9s var(--ease-out) 0.18s both;
}
@keyframes vkScriptSettle {
  from { opacity: 0; transform: scale(0.9) translateY(4px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Ambient blobs: slow organic drift (the "breathing" layer) ---- */
.hero-blob--1  { animation: vkFloatA 24s var(--ease-in-out) infinite; }
.hero-blob--2  { animation: vkFloatB 29s var(--ease-in-out) infinite; }
.prices-blob   { animation: vkFloatA 27s var(--ease-in-out) infinite; }
@keyframes vkFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(16px, -14px) scale(1.05); }
}
@keyframes vkFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-18px, 12px) scale(1.06); }
}

/* ---- Header wordmark: gentle fade-in on load ---- */
.js-anim .site-header .brand-logo { animation: vkLogoIn 0.8s var(--ease-out) both; }
@keyframes vkLogoIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---- Line-art face mark (service-card icons): draws itself in on reveal ---- */
.js-anim .service-card .service-icon svg path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}
.js-anim .service-card.is-in .service-icon svg path {
  animation: vkDraw 1.1s var(--ease-out) forwards;
}
.js-anim .service-card.is-in .service-icon svg path:nth-child(2) { animation-delay: 0.16s; }
@keyframes vkDraw { to { stroke-dashoffset: 0; } }

/* ============================================================
   REDUCED MOTION — disable everything, show all content
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }

  /* Never leave reveal targets hidden or icons half-drawn */
  .js-anim .hero-inner > *,
  .js-anim .services .section-head > *,
  .js-anim .services-grid .service-card,
  .js-anim .prices-head > *,
  .js-anim .price-list .price-cat,
  .js-anim .gallery .section-head > *,
  .js-anim .gallery-wrap,
  .js-anim .about-grid > div,
  .js-anim .contact-grid > div,
  .js-anim .footer-grid > *,
  .js-anim .legal-hero > *,
  .js-anim .legal-section { opacity: 1 !important; transform: none !important; }

  .js-anim .service-card .service-icon svg path { stroke-dashoffset: 0 !important; }
  .js-anim .contact-photo,
  .js-anim .about-photo { filter: none !important; }
}
