/* ═══════════════════════════════════════════════════
   MEMORINK — Warm Editorial Theme
   Heilbronn · Tattoo & Piercing
   Family-Vibe · Hygiene · Ehrliche Beratung
   Mobile-first · Premium · Cinematic
   ═══════════════════════════════════════════════════ */

/* ─── SELF-HOSTED FONTS (no Google Fonts CDN, no cookies) ─── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/css/fonts/playfair-display.woff2') format('woff2-variations'),
       url('/css/fonts/playfair-display.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('/css/fonts/playfair-display-italic.woff2') format('woff2-variations'),
       url('/css/fonts/playfair-display-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('/css/fonts/dm-sans.woff2') format('woff2-variations'),
       url('/css/fonts/dm-sans.woff2') format('woff2');
}

:root {
  /* Brand Colors — Warm Editorial */
  --bg: #fbf9f4;
  --bg-2: #f3eee5;
  --bg-3: #e9e1d1;
  --bg-dark: #1f1b16;
  --bg-dark-2: #2a251e;
  --bg-dark-3: #3a3328;

  --text: #1f1b16;
  --text-dim: #5a5147;
  --text-muted: #8a7f70;
  --text-on-dark: #fbf9f4;
  --text-on-dark-dim: #bdb09a;
  --text-on-dark-muted: #8a7f70;

  --accent: #a47a3f;
  --accent-2: #c9a876;
  --accent-3: #8b6e2e;
  --accent-soft: rgba(164, 122, 63, 0.1);

  --border: rgba(31, 27, 22, 0.08);
  --border-strong: rgba(31, 27, 22, 0.18);
  --border-dark: rgba(251, 249, 244, 0.12);
  --border-dark-strong: rgba(251, 249, 244, 0.24);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  --font-italic: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: clamp(72px, 9vw, 140px);
  --section-pad-lg: clamp(96px, 12vw, 200px);
  --container: 1280px;
  --container-narrow: 1080px;
  --gap: clamp(20px, 3vw, 40px);

  /* Shadows */
  --shadow-soft: 0 12px 40px -8px rgba(31, 27, 22, 0.12);
  --shadow-card: 0 28px 72px -16px rgba(31, 27, 22, 0.22);
  --shadow-card-hover: 0 40px 120px -20px rgba(31, 27, 22, 0.32);
  --shadow-glow: 0 0 80px rgba(201, 168, 118, 0.4);

  /* Easing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--text);
}

p { color: var(--text-dim); }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 600;
}

.h1 { font-size: clamp(2.6rem, 8.5vw, 7.5rem); }
.h2 { font-size: clamp(2.2rem, 5.6vw, 5.2rem); }
.h3 { font-size: clamp(1.6rem, 3.2vw, 2.8rem); font-weight: 600; }
.h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.gold-line {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 640px;
}

/* ─── LAYOUT PRIMITIVES ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 56px; } }
@media (min-width: 1280px) { .container { padding: 0 72px; } }

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container-narrow { padding: 0 56px; } }

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}

.section-lg {
  padding-top: var(--section-pad-lg);
  padding-bottom: var(--section-pad-lg);
  position: relative;
}

.section-alt { background: var(--bg-2); }
.section-warm { background: var(--bg-3); }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-on-dark); }
.section-dark p { color: var(--text-on-dark-dim); }
.section-dark .eyebrow { color: var(--accent-2); }

.text-center { text-align: center; }
.center-flex { display: flex; flex-direction: column; align-items: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(251, 249, 244, 0.95), rgba(251, 249, 244, 0));
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 56px; } }
@media (min-width: 1280px) { .nav-inner { padding: 0 72px; } }

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.nav-logo .accent { color: var(--accent); font-style: italic; font-weight: 600; }

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--bg-dark);
    color: var(--bg);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    border-radius: 999px;
  }
  .nav-cta:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: var(--shadow-glow);
  }
}

/* Hide full CTA button in mobile nav — mobile menu has its own CTA */
@media (max-width: 1023px) {
  .nav-inner > .btn-primary { display: none; }
}

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 101;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--accent); font-style: italic; }
.mobile-menu .mobile-cta {
  margin-top: 40px;
  padding: 20px;
  background: var(--bg-dark);
  color: var(--bg);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: 999px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 65%);
  opacity: 0.18;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 130px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .hero-inner { padding: 160px 56px 100px; } }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero h1 {
  max-width: 1200px;
}

.hero-subline {
  margin: 40px auto 0;
  max-width: 640px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.7;
}

.reviews-pill {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.reviews-pill .stars { display: flex; gap: 3px; color: var(--accent); }
.reviews-pill .stars svg { fill: var(--accent); }
.reviews-pill .text {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.hero-ctas {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 540px) { .hero-ctas { flex-direction: row; justify-content: center; } }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  border-radius: 999px;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--bg-dark);
  color: var(--bg);
  border-color: var(--bg-dark);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--accent-3); }

.section-dark .btn-outline {
  color: var(--text-on-dark);
  border-color: var(--border-dark-strong);
}
.section-dark .btn-outline:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  z-index: 1;
}
@media (min-width: 768px) { .scroll-hint { display: flex; } }
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ─── SECTION HEADER ─── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}
.section-header .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-header h2 { max-width: 1080px; margin-bottom: 24px; }
.section-header p { max-width: 640px; }

.section-header.left {
  align-items: flex-start;
  text-align: left;
}

/* ─── TRUST STATS ─── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
}
.trust-item .value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}
.trust-item .value .italic-accent { color: var(--accent); }
.trust-item .label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 500;
}
.trust-item .sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── ARTISTS GRID ─── */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1024px) { .artists-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.artist-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease);
}
.artist-card:hover { transform: translateY(-6px); }

.artist-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
}
.artist-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.6s var(--ease-out);
  filter: saturate(1.05);
}
.artist-card:hover .artist-img img { transform: scale(1.04); }

.artist-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(31, 27, 22, 0.65));
}

.artist-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}
.artist-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}
.artist-name .italic-accent { color: var(--accent); font-style: italic; }
.artist-role {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.artist-tags span {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  border-radius: 999px;
}

/* ─── PORTFOLIO GRID ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.portfolio-grid.cols-4 { grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 640px) { .portfolio-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (min-width: 1024px) { .portfolio-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 12px; } }

.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
  cursor: zoom-in;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.portfolio-item:hover img { transform: scale(1.05); }

.art-grid .portfolio-item img {
  object-fit: contain;
  background: var(--bg-2);
}

.portfolio-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(to top, rgba(31, 27, 22, 0.85), transparent);
  color: var(--text-on-dark);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.portfolio-item:hover .caption { opacity: 1; }

/* ─── EDITORIAL SPLIT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
@media (min-width: 1024px) {
  .split.reverse .split-img { order: 2; }
  .split.reverse .split-text { order: 1; }
}

.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.split-text { display: flex; flex-direction: column; gap: 20px; }
.split-text h2 { line-height: 1.06; }
.split-text .quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin-top: 12px;
}
.split-text .quote-author {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 14px;
  font-weight: 500;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.section-dark .review-card {
  background: var(--bg-dark-2);
  border-color: var(--border-dark);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}
.review-text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
  flex-grow: 1;
}
.section-dark .review-text { color: var(--text-on-dark); }
.review-author {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.section-dark .review-author { border-color: var(--border-dark); color: var(--accent-2); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 0 28px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--section-pad) 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: 0.2;
  filter: blur(120px);
  pointer-events: none;
}
.cta-banner h2 { color: var(--text-on-dark); position: relative; }
.cta-banner h2 .italic-accent { color: var(--accent-2); }
.cta-banner p { color: var(--text-on-dark-dim); max-width: 600px; margin: 28px auto 0; position: relative; }
.cta-banner .hero-ctas { margin-top: 40px; position: relative; z-index: 1; }
.cta-banner .btn-primary { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }
.cta-banner .btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer h4 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.footer-brand-name .accent { color: var(--accent-2); font-style: italic; }
.footer p { color: var(--text-on-dark-dim); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--text-on-dark-dim);
}
.footer ul a:hover { color: var(--accent-2); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(31, 27, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid var(--border-dark-strong);
  background: rgba(0,0,0,0.4);
  color: var(--text-on-dark);
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid var(--border-dark-strong);
  background: rgba(0,0,0,0.4);
  color: var(--text-on-dark);
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 22px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ─── ARTIST DETAIL HERO (subpages) ─── */
.artist-hero {
  position: relative;
  background: var(--bg);
  padding-top: 130px;
  padding-bottom: 100px;
  overflow: hidden;
}
.artist-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .artist-hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.artist-hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
}
.artist-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.artist-hero-text { display: flex; flex-direction: column; gap: 24px; }
.artist-hero-text .role-line {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.artist-hero-text h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
}
.artist-hero-text h1 .italic-accent { color: var(--accent); font-style: italic; }
.artist-hero-text .bio { font-size: 1.1rem; line-height: 1.75; color: var(--text-dim); max-width: 540px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-muted); }

/* ─── PULL QUOTE ─── */
.pullquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--text);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.pullquote::before { content: "„ "; color: var(--accent); }
.pullquote::after { content: " "; color: var(--accent); }
.pullquote-author {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ─── UTILITY ─── */
.mt-0 { margin-top: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-16 { gap: 16px; }

/* ─── CHAT FAB & MODAL ─── */
.chat-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  box-shadow: 0 14px 32px rgba(31, 27, 22, 0.32), var(--shadow-glow);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  font-family: var(--font-body);
}
.chat-fab:hover {
  transform: scale(1.06);
  background: var(--accent);
}
.chat-fab svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.chat-fab .label {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--bg-dark);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.chat-fab:hover .label {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}
.chat-fab .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  animation: chatPulse 2.4s var(--ease) infinite;
  z-index: -1;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
body.chat-open .chat-fab { display: none; }

.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(31, 27, 22, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
body.chat-open .chat-modal { opacity: 1; visibility: visible; }

.chat-modal-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 80vh;
  max-height: 720px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-card-hover);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s var(--ease);
}
.chat-close:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.chat-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── BOOKING FORM (für Ungeduldige) ─── */
.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form .full { grid-column: 1 / -1; }
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 14px 18px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  border-radius: 10px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.booking-form textarea { resize: vertical; min-height: 110px; line-height: 1.55; }

.booking-form .submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  margin-top: 8px;
}
.booking-form button[type="submit"] {
  align-self: center;
}
.booking-form .privacy-note {
  font-size: 12.5px;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  max-width: 480px;
  line-height: 1.55;
}
.booking-form .privacy-note a { color: var(--accent); text-decoration: underline; }

.booking-form .honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.booking-success {
  display: none;
  text-align: center;
  padding: 64px 24px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.booking-success.show { display: block; }
.booking-success h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.booking-success p { font-size: 1.05rem; }

/* ─── MOBILE-MENU CTA BUTTON FIX (13.05.2026) ───
   .mobile-menu a sets color:var(--text) + display font, which broke
   .btn-primary text inside mobile-menu (black on black). These overrides
   restore the correct button styling. */
.mobile-menu a.btn,
.mobile-menu a.btn-primary,
.mobile-menu a.btn-outline,
.mobile-menu a.btn-ghost {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 40px;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-self: stretch;
}
.mobile-menu a.btn-primary { color: var(--bg); }
.mobile-menu a.btn-outline { color: var(--accent); }
.mobile-menu a.btn-ghost { color: var(--accent); }
.mobile-menu a.btn-primary:hover,
.mobile-menu a.btn-outline:hover {
  font-style: normal; /* override .mobile-menu a:hover italic */
}

/* ─── PRINT ─── */
@media print {
  .nav, .footer, .cta-banner, .chat-fab, .chat-modal { display: none; }
}
