/* ==========================================================================
   Golden Cut — Stylesheet
   Design system → Reset → Layout → Components → Sections → Responsive
   ========================================================================== */

/* -------- 0. Fonts (lokal eingebunden, kein externer CDN) ----------------- */
/* Inter */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/inter-300.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/inter-700.woff2") format("woff2");
}
/* Fraunces */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fraunces-400.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/fraunces-500.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/fraunces-700.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fraunces-italic-400.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/fraunces-italic-500.woff2") format("woff2");
}

/* -------- 1. Tokens -------------------------------------------------------- */
:root {
  /* Color */
  --bg:         #FAF8F5;
  --bg-warm:    #F4EFE7;
  --surface:    #FFFFFF;
  --ink:        #1A1815;
  --ink-soft:   #5A5550;
  --ink-muted:  #8A847C;
  --gold:       #B8924A;
  --gold-deep:  #957439;
  --gold-soft:  #ECDFC4;
  --beige:      #EFE9DF;
  --line:       rgba(26,24,21,0.08);
  --line-strong:rgba(26,24,21,0.16);

  /* Effect */
  --shadow-sm:  0 2px 8px rgba(26,24,21,0.04);
  --shadow-md:  0 8px 28px rgba(26,24,21,0.06);
  --shadow-lg:  0 24px 60px rgba(26,24,21,0.10);
  --shadow-text:0 1px 2px rgba(0,0,0,0.25);

  /* Radii */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-pill:999px;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease:    cubic-bezier(.2,.7,.2,1);
  --t-fast:  180ms var(--ease);
  --t-med:   320ms var(--ease);
  --t-slow:  600ms var(--ease);

  /* Layout */
  --container: 1180px;
  --pad-x: clamp(20px, 5vw, 64px);
}

/* -------- 2. Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; color: var(--ink-soft); }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* -------- 3. Layout primitives -------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
}
.section-sub {
  margin-top: 14px;
  color: var(--ink-soft);
}

/* -------- 4. Buttons & badges --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 4px 14px rgba(26,24,21,0.18);
}
.btn--primary:hover {
  background: #2A2622;
  box-shadow: 0 8px 22px rgba(26,24,21,0.24);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: rgba(184,146,74,0.04);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.28);
}
.btn--whatsapp:hover { background: #1FB956; box-shadow: 0 8px 22px rgba(37,211,102,0.34); }

.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
.badge--gold {
  color: var(--gold-deep);
  background: var(--gold-soft);
}
.badge--gold-solid {
  color: #fff;
  background: var(--gold);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.link--gold { color: var(--gold-deep); }
.link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  transition: opacity var(--t-fast);
}
.link:hover::after { opacity: 1; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------- 5. Reveal animations -------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* Stagger children inside a revealed parent */
.is-visible > [data-reveal-child]:nth-child(1) { transition-delay: 0ms; }
.is-visible > [data-reveal-child]:nth-child(2) { transition-delay: 80ms; }
.is-visible > [data-reveal-child]:nth-child(3) { transition-delay: 160ms; }

/* -------- 6. Nav ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  transition: background var(--t-med), padding var(--t-med), border-color var(--t-med), backdrop-filter var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.is-open { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; }
.nav.is-stuck {
  background: rgba(250,248,245,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
/* Permanent solid nav für Seiten ohne dunkles Hero (z. B. stuhl.html) */
.nav--solid {
  background: rgba(250,248,245,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav--solid .nav__links a { color: var(--ink); text-shadow: none; }
.nav--solid .nav__links a:hover { color: var(--gold-deep); }
.nav--solid .nav__burger span { background: var(--ink); box-shadow: none; }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity var(--t-fast);
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo-img {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: none;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--bg);
  text-shadow: var(--shadow-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: left var(--t-med), right var(--t-med);
}
.nav__links a:hover::after { left: 0; right: 0; }
.nav.is-stuck .nav__links a {
  color: var(--ink);
  text-shadow: none;
}
.nav.is-stuck .nav__links a:hover { color: var(--gold-deep); }

.nav__cta { display: none; }

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin: -10px;
  z-index: 60;
}
.nav__burger span {
  width: 22px; height: 1.5px;
  background: var(--bg);
  box-shadow: var(--shadow-text);
  transition: transform var(--t-med), opacity var(--t-fast), background var(--t-med);
}
.nav.is-stuck .nav__burger span,
.nav.is-open .nav__burger span {
  background: var(--ink);
  box-shadow: none;
}
.nav.is-open .nav__burger { visibility: hidden; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  cursor: pointer; /* Hinweis: Klick auf freien Bereich schließt */
}
.mobile-menu > * { cursor: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a:not(.btn) {
  position: relative;
  padding: 4px 12px;
}
.mobile-menu .btn { font-family: var(--font-sans); font-size: 16px; margin-top: 12px; }

/* Standalone Close-Button: immer sichtbar wenn Menü offen, unabhängig von Scroll-Position */
.menu-close-btn {
  position: fixed;
  top: 16px;
  right: max(16px, var(--pad-x));
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform var(--t-fast), background var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.menu-close-btn[hidden] { display: none; }
.menu-close-btn:hover { background: var(--gold-deep); transform: rotate(90deg); }
.menu-close-btn:active { transform: rotate(90deg) scale(0.95); }
.menu-close-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.menu-close-btn svg { display: block; }

/* -------- 7. Hero --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.82) contrast(1.02) saturate(0.95);
  transform: scale(1.06);
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.18) 0%, rgba(10,8,6,0.48) 100%);
}
/* Sanfter Spotlight links, damit der Titel lesbar bleibt, ohne das Foto zu erschlagen */
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(10,8,6,0.55) 0%,
      rgba(10,8,6,0.30) 40%,
      rgba(10,8,6,0.08) 70%,
      rgba(10,8,6,0) 100%);
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 78% 28%, rgba(184,146,74,0.28), transparent 45%);
  animation: glowPulse 14s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.5; transform: translate(0,0); }
  50%     { opacity: 1;   transform: translate(-3%, 2%); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  color: var(--bg);
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero__pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(44px, 7.4vw, 96px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.6);
  max-width: 14ch;
  color: #FFFFFF;
}
.hero__title-accent {
  display: block;
  margin-top: 4px;
}
.hero__title-accent em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-feature-settings: "ss01" 1;
}
.hero__sub {
  margin-top: 24px;
  max-width: 540px;
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__cta .btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.30);
  color: var(--bg);
  backdrop-filter: blur(8px);
}
.hero__cta .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.hero__meta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
}
.hero__meta span:first-child { color: var(--gold); letter-spacing: 0.3em; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
  background-size: 100% 200%;
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

/* -------- 8. Highlight (15 €) -------------------------------------------- */
.highlight {
  background:
    linear-gradient(180deg, var(--gold-soft) 0%, #F2E6CC 100%);
  border-top: 1px solid rgba(184,146,74,0.30);
  border-bottom: 1px solid rgba(184,146,74,0.30);
  padding: clamp(56px, 9vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.highlight::before, .highlight::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.highlight::before { top: -160px; left: -80px; }
.highlight::after  { bottom: -200px; right: -100px; background: radial-gradient(circle, rgba(184,146,74,0.18) 0%, transparent 60%); }

.highlight__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.highlight__price {
  font-family: var(--font-display);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--gold-deep);
  line-height: 0.9;
}
.highlight__num {
  font-size: clamp(96px, 18vw, 200px);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-feature-settings: "lnum","tnum";
}
.highlight__cur {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  margin-top: 16px;
  color: var(--gold);
}
.highlight__body h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 12px 0 14px;
  max-width: 18ch;
  color: var(--ink);
}
.highlight__body p {
  max-width: 44ch;
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--ink-soft);
}

/* -------- 9. Story -------------------------------------------------------- */
.story {
  padding: clamp(80px, 12vw, 140px) 0;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.story__figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.story__figure figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.story__copy h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 24px;
  max-width: 14ch;
}
.story__copy p {
  margin-bottom: 18px;
  max-width: 56ch;
}
.story__copy strong {
  color: var(--ink);
  font-weight: 600;
}
.story__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  margin-top: 24px !important;
}

/* -------- 9b. Findet uns -------------------------------------------------- */
.findus {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-warm);
}
.findus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.findus__copy h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 24px;
  max-width: 16ch;
}
.findus__copy p {
  margin-bottom: 24px;
  max-width: 56ch;
}
.findus__copy strong {
  color: var(--gold-deep);
  font-weight: 600;
}
.findus__address {
  font-style: normal;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: inline-block;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}
.findus__address strong {
  color: var(--ink);
  font-weight: 600;
}
.findus__figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.findus__figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.findus__figure figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

/* -------- 10. Services ---------------------------------------------------- */
.services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.service {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  overflow: hidden;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,146,74,0.30);
}
.service__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.service h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1;
}
.service__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-deep);
  font-feature-settings: "lnum","tnum";
  white-space: nowrap;
}
.service p {
  font-size: 15px;
  color: var(--ink-muted);
  margin: 0;
}
.service__line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width var(--t-med);
}
.service:hover .service__line { width: 100%; }

/* Komplettpaket featured card */
.package {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  padding: 36px;
  border-radius: var(--r-lg);
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--gold);
  box-shadow: 0 24px 60px rgba(26,24,21,0.18);
  overflow: hidden;
}
.package::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(184,146,74,0.18), transparent 50%);
  pointer-events: none;
}
.package > * { position: relative; z-index: 1; }
.package .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}
.package h3 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--bg);
  margin-top: 8px;
  margin-bottom: 8px;
}
.package p {
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
}
.package .eyebrow {
  color: var(--gold);
  margin-bottom: 4px;
}
.package__price {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.package__price > span {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  color: var(--gold);
  font-feature-settings: "lnum","tnum";
  line-height: 1;
}
.package .btn--primary {
  background: var(--bg);
  color: var(--ink);
}
.package .btn--primary:hover { background: var(--gold-soft); color: var(--ink); }

/* Zusatzleistungen */
.extras {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.extras__title {
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.extras__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.extras__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.extras__list li:last-child { border-bottom: 0; }
.extras__price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-deep);
  font-feature-settings: "lnum","tnum";
}

/* Newcomer 5€ */
.newcomer {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px dashed var(--gold);
  border-radius: var(--r-md);
  position: relative;
}
.newcomer__badge {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 18px;
  white-space: nowrap;
}
.newcomer__text { flex: 1; min-width: 200px; display: flex; flex-direction: column; }
.newcomer__text strong { font-size: 17px; color: var(--ink); font-weight: 600; }
.newcomer__text span { font-size: 14px; color: var(--ink-muted); }

/* -------- 11. Before / After --------------------------------------------- */
.ba {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-warm);
}
.ba__slider {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ba__wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  user-select: none;
  cursor: ew-resize;
  background: #000;
  overflow: hidden;
  touch-action: none;
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__top {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}
.ba__top .ba__img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--ba-w, 980px);
  max-width: none;
  height: 100%;
}
.ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--bg);
  transform: translateX(-50%);
  z-index: 3;
  outline: none;
}
.ba__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 0 1px var(--gold);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.ba__divider:hover .ba__handle,
.ba__divider:focus-visible .ba__handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 26px rgba(0,0,0,0.36), 0 0 0 2px var(--gold);
}
.ba__label {
  position: absolute;
  top: 16px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(26,24,21,0.55);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.ba__label--before { left: 16px; }
.ba__label--after  { right: 16px; }

/* -------- 12. Chair Rental ------------------------------------------------ */
.rental {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.rental::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(184,146,74,0.10), transparent 50%);
  pointer-events: none;
}
.rental__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.rental__copy h2 {
  color: var(--bg);
  font-size: clamp(30px, 4.2vw, 48px);
  margin-bottom: 20px;
  max-width: 18ch;
}
.rental__copy h2::after {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin-top: 16px;
}
.rental__copy p {
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
  margin-bottom: 28px;
}
.rental__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.rental__benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
}
.rental__benefits svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.rental__benefits strong { color: var(--bg); font-weight: 600; font-size: 15px; }
.rental__benefits span { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; }

.rental .btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(184,146,74,0.32);
}
.rental .btn--primary:hover {
  background: #C9A35A;
  box-shadow: 0 8px 26px rgba(184,146,74,0.42);
}

.rental__visual {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.rental__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(0.92);
}
.rental__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* -------- 13. Gallery ----------------------------------------------------- */
.gallery {
  padding: clamp(80px, 12vw, 140px) 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--beige);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform var(--t-slow);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,21,0.55), transparent 50%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* -------- 14. Contact ----------------------------------------------------- */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-warm);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 4px 0 20px;
}
.contact__lead {
  margin-bottom: 28px;
  max-width: 50ch;
}
.contact__address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.contact__address strong { font-family: var(--font-display); font-size: 22px; font-weight: 500; display: block; margin-bottom: 6px; }

.hours { margin: 0 0 32px; padding: 0; }
.hours div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--line);
}
.hours div:last-child { border-bottom: 0; }
.hours dt { color: var(--ink); margin: 0; }
.hours dd { margin: 0; color: var(--ink-soft); }
.hours div.is-today {
  position: relative;
  padding-left: 14px;
  color: var(--ink);
}
.hours div.is-today dt { color: var(--gold-deep); font-weight: 600; }
.hours div.is-today dd { color: var(--ink); font-weight: 500; }
.hours div.is-today::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(0.95);
}

/* 2-Klick-Lösung: Google Maps lädt erst nach aktiver Zustimmung */
.map-consent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 10px;
  background:
    radial-gradient(circle at 30% 20%, rgba(184,146,74,0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.map-consent__icon {
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.map-consent__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.map-consent__text {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 8px;
  line-height: 1.55;
}
.map-consent__text a {
  color: var(--gold-deep);
  text-decoration: underline;
}
.map-consent__btn {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.map-consent__btn:hover { background: var(--gold-deep); }
.map-consent__btn:active { transform: scale(0.97); }
.map-consent__btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* -------- 14c. Cookie Banner --------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  max-width: 720px;
  margin: 0 auto;
  animation: cookieIn 0.4s ease-out;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__content {
  display: grid;
  gap: 16px;
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.cookie-banner__text {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__text a { color: var(--gold-deep); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  flex: 1 1 auto;
  min-width: 130px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.cookie-banner__btn--primary { background: var(--ink); color: var(--bg); }
.cookie-banner__btn--primary:hover { background: var(--gold-deep); }
.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-soft);
}
.cookie-banner__btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-banner__btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (min-width: 720px) {
  .cookie-banner__content {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
  }
  .cookie-banner__btn { flex: 0 0 auto; }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* -------- 14b. Recruit Teaser -------------------------------------------- */
.recruit {
  padding: 56px 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.recruit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}
.recruit__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.recruit__text { max-width: 560px; }
.recruit__text .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-deep);
}
.recruit__text h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
}
.recruit__text em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

@media (min-width: 720px) {
  .recruit { padding: 64px 0; }
  .recruit__inner {
    grid-template-columns: 1fr auto;
    gap: 40px;
  }
}

/* -------- 15. Footer ------------------------------------------------------ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--bg);
  display: block;
  margin-bottom: 4px;
}
.footer__logo span { color: var(--gold); }
.footer__tag { font-size: 13px; }
.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 14px;
}
.footer__links a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer__bottom a:hover { color: var(--gold); }

/* -------- 16. Lightbox ---------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.94);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--t-med);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__caption {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--bg);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
  border: 1px solid rgba(255,255,255,0.15);
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(184,146,74,0.2);
  border-color: var(--gold);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

/* -------- 17. Responsive (≥640px) ---------------------------------------- */
@media (min-width: 640px) {
  body { font-size: 17px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .extras__list { grid-template-columns: repeat(3, 1fr); gap: 0 24px; }
  .extras__list li {
    padding: 18px 18px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .extras__list li:last-child { border-right: 0; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .footer__inner { grid-template-columns: 1fr auto auto; gap: 32px; text-align: left; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
  .highlight__inner { grid-template-columns: auto 1fr; gap: 56px; }
  .package { grid-template-columns: 1fr auto; padding: 44px; }
}

/* -------- 18. Responsive (≥960px) ---------------------------------------- */
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .mobile-menu { display: none !important; }

  .story__grid { grid-template-columns: 5fr 7fr; gap: 80px; }
  .story__copy h2 { max-width: 16ch; }

  .findus__grid { grid-template-columns: 5fr 7fr; gap: 80px; }

  .rental__inner { grid-template-columns: 7fr 5fr; gap: 80px; }

  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }

  .contact__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* -------- 19. Reduced motion --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__bg img { transform: none; }
}
