/* ═══════════════════════════════════════════════════════════
   BACK IN TIME TATTOO — Shared Styles
   Art Direction: "Flash trifft Editorial" — warmes Tinten-
   Schwarz, Gold-Foliage, Fraunces-Serifen, Big-Shoulders-
   Plakat-Typo, Yellowtail-Script als Sailor-Akzent, Filmkorn.
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Warme Tinten-Palette — bewusst KEIN blaustichiges Grau */
  --black:   #0c0a07;
  --dark:    #121009;
  --surface: #1a160e;
  --border:  #2d2718;
  --gold:    #e5aa4a;
  --gold-lt: #f0c47a;
  --gold-dim: rgba(229,170,74,.14);
  --neon:    #f0c47a;              /* Legacy-Alias (highlight-box) */
  --neon-dim: rgba(229,170,74,.12);
  --sage:    #b5bea7;              /* Logo-Verlauf: obere Schriftkante */
  --umber:   #85604b;              /* Logo-Verlauf: Schattenpartie */
  --red:     #9e2b25;
  --white:   #f0e9d8;
  --muted:   #94896f;
  --radius:  2px;
  --nav-h:   72px;

  --font-display: 'Big Shoulders', 'Arial Narrow', sans-serif;
  --font-brand:   'Rye', 'Big Shoulders', 'Arial Narrow', sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-script:  'Yellowtail', cursive;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding: 30px;
}

/* Goldener Ketten-Rahmen um die ganze Seite — bleibt beim Scrollen fix am
   Viewport, damit das Kettenmuster nie gestreckt/verzerrt wird. */
.site-frame {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  border-style: solid;
  border-width: 30px;
  border-image-source: url("../Rahmen01.webp");
  border-image-slice: 175;
  border-image-width: 30px;
  border-image-repeat: round;
}

@media (max-width: 768px) {
  body { padding: 14px; }
  .site-frame {
    border-width: 14px;
    border-image-width: 14px;
  }
}

/* Filmkorn über allem — die halbe Miete für den "teuren" Look */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 900;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.79 0 0 0 0 0.66 0 0 0 0 0.3 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.section-label::before {
  content: '✦';
  font-size: .75rem;
  letter-spacing: 0;
}
.text-center.section-label,
.section-label.text-center { justify-content: center; }

.section-title {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--gold);
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
}

.divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--sage), var(--umber) 45%, var(--gold) 75%, transparent);
  margin: 1.25rem 0 2rem;
  position: relative;
}
.divider::before {
  content: '';
  position: absolute;
  left: 0; top: -2.5px;
  width: 6px; height: 6px;
  background: var(--sage);
  transform: rotate(45deg);
}

.script-accent {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.35em;
  line-height: 1;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .95rem 2.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .95rem 2.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240,233,216,.3);
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ig {
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-ig:hover { opacity: .88; transform: translateY(-2px); }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0 5vw;
  background: rgba(12,10,7,.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

nav > *:first-child { justify-self: start; }
nav > *:last-child { justify-self: end; }

.nav-logo { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.nav-logo img {
  height: 46px; width: 46px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .25s;
}
.nav-logo:hover img { transform: scale(1.07) rotate(-4deg); }
.nav-wordmark {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--white);
  white-space: nowrap;
  line-height: 1;
  transform: translateY(-2px);
}
@media (max-width: 1080px) { .nav-wordmark { display: none; } }

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: .6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(12,10,7,.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 99;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Filmkorn-Overlay auf Mobile deaktivieren — das riesige position:fixed-Element
   (200% x 200%) zwingt iOS Safari, es bei jedem Scroll-Frame neu zu compositen,
   was zusammen mit dem fixed+blurred Header zu sichtbarem Ruckeln/"Hängenbleiben"
   beim Scrollen führt. */
@media (max-width: 860px) {
  body::after { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: max(620px, 100vh);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 5vw 12vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(12,10,7,.35) 0%, rgba(12,10,7,.92) 100%),
    var(--hero-bg-image, url('../images/marc9.webp'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: sepia(.22) contrast(1.04);
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }

#hero::after {
  content: '';
  position: absolute;
  top: 0; right: 15vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .35;
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.55);
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-tag img { height: 20px; width: 20px; border-radius: 50%; object-fit: cover; }

.hero-title {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: .92;
  letter-spacing: .015em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--sage) 0%, var(--umber) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-title em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: .82em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  display: block;
  margin-top: .05em;
}

.hero-sub {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(240,233,216,.78);
  max-width: 440px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240,233,216,.14);
  opacity: 0;
  animation: fadeUp .8s 1.1s forwards;
}
.hero-meta div { display: flex; flex-direction: column; gap: .15rem; }
.hero-meta small {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── MARQUEE TICKER ───────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  padding: 1rem 0;
  display: flex;
  user-select: none;
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
  align-items: center;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}
/* Nur bei echter Maus pausieren — auf Touch-Geräten bleibt :hover nach dem
   ersten Antippen/Scrollen sonst "hängen" und das Band friert dauerhaft ein. */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  font-size: .8rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ── GALLERY ──────────────────────────────────────────────── */
#gallery { padding: 7rem 5vw; background: var(--dark); }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filter-tabs { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.filter-tab {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem 0;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.filter-tab.active,
.filter-tab:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
}
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 580px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
}
.gallery-item img {
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.92);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-overlay-text strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  margin-bottom: .2rem;
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about {
  padding: 7rem 5vw;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}
@media (max-width: 768px) { #about { grid-template-columns: 1fr; } }

.about-img-wrap { position: relative; }
.about-img-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.about-img-main img { filter: sepia(.15); }
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--black);
  outline: 1px solid var(--border);
  background: var(--surface);
}
@media (max-width: 768px) { .about-img-accent { display: none; } }

/* Stempel-Badge — leicht gedreht wie ein Flash-Stamp */
.about-years {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.1rem;
  text-align: center;
  border-radius: var(--radius);
  transform: rotate(-4deg);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
}
.about-years big {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
}
.about-years small {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.timeline {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: .1rem;
}
.timeline-body h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: .35rem;
}
.timeline-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── STATS BAND ───────────────────────────────────────────── */
#stats {
  background: var(--gold);
  color: var(--black);
  padding: 3rem 5vw;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.stat { text-align: center; }
.stat big {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
}
.stat small {
  display: block;
  margin-top: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .75;
}

/* ── STYLES ───────────────────────────────────────────────── */
#styles {
  padding: 7rem 5vw;
  background: var(--dark);
  text-align: center;
}
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .styles-grid { grid-template-columns: 1fr; } }

.style-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.style-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.style-icon {
  margin: 0 auto 1.25rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.style-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s;
}
.style-card:hover .style-icon svg { transform: rotate(-6deg) scale(1.08); }
.style-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.style-card p { font-size: .83rem; color: var(--muted); line-height: 1.7; }

/* ── REVIEWS ──────────────────────────────────────────────── */
#reviews {
  padding: 7rem 5vw;
  background: var(--black);
  display: none;             /* wird per JS eingeblendet sobald Daten da sind */
}
#reviews.has-reviews { display: block; }

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: .8rem 1.3rem;
}
.google-badge .g-stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.google-badge .g-text { font-size: .75rem; color: var(--muted); }
.google-badge .g-text strong { color: var(--white); font-size: .9rem; display: block; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.review-card::before {
  content: '“';
  position: absolute;
  top: .4rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-dim);
}
.review-stars { color: var(--gold); letter-spacing: .14em; font-size: .9rem; }
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--white);
  flex: 1;
}
.review-meta { font-size: .78rem; color: var(--muted); }
.review-meta strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── GUEST ARTISTS ────────────────────────────────────────── */
#guests { padding: 7rem 5vw; background: var(--dark); }
.guests-intro { max-width: 600px; margin-bottom: 4rem; }

.guest-banner {
  background: linear-gradient(135deg, var(--surface) 0%, #201a0e 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.guest-banner-icon { flex-shrink: 0; width: 44px; height: 44px; }
.guest-banner-icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guest-banner h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}
.guest-banner p { font-size: .88rem; color: var(--muted); }

.guests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.guest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 420px;
  transition: border-color .3s, transform .3s;
}
.guest-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.guest-card-img { background: var(--dark); overflow: hidden; }
.guest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.guest-card:hover .guest-card-img img { transform: scale(1.06); }
.guest-card-body { padding: 1.5rem; }
.guest-dates {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.guest-card-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: .3rem;
}
.guest-card-body .style-tag {
  display: inline-block;
  font-size: .7rem;
  padding: .25rem .75rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  margin-bottom: .75rem;
}
.guest-card-body p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }

.no-guest {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
}
.no-guest svg {
  width: 40px; height: 40px;
  margin: 0 auto 1rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.no-guest p { margin-top: .5rem; font-size: .9rem; }

/* ── BOOKING ──────────────────────────────────────────────── */
#booking { padding: 7rem 5vw; background: var(--black); }
.booking-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4vw;
  align-items: start;
}
@media (max-width: 900px) { .booking-wrap { grid-template-columns: 1fr; } }

.cal-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 600px;
  position: relative;
}
/* Gold-Ecken wie ein Flash-Sheet-Rahmen */
.cal-wrap::before,
.cal-wrap::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 2;
}
.cal-wrap::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.cal-wrap::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
#cal-booking { width: 100%; min-height: 600px; }
#cal-booking iframe { border: none; border-radius: var(--radius); }

.booking-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(133,96,75,.18);
  border: 1px solid var(--umber);
  color: var(--gold-lt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 { font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.step-body p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* Booking Form */
.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.booking-form h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
input, select, textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  transition: border-color .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select option { background: var(--dark); }
textarea { resize: vertical; min-height: 110px; }
.char-count {
  font-size: .72rem;
  color: var(--muted);
  text-align: right;
  margin-top: .25rem;
}
.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.form-note a { color: var(--gold); text-decoration: underline; }
.form-success {
  display: none;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  color: var(--gold);
  margin-top: 1rem;
}

/* ── INSTAGRAM ────────────────────────────────────────────── */
#instagram {
  padding: 6rem 5vw;
  background: var(--dark);
  text-align: center;
}
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  color: var(--gold);
  margin: 1.5rem 0 3rem;
  transition: color .2s;
}
.ig-handle:hover { color: var(--gold-lt); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

.ig-cell {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ig-cell img { transition: transform .4s, filter .4s; filter: brightness(.85) saturate(.85); }
.ig-cell:hover img { transform: scale(1.08); filter: brightness(1) saturate(1); }
.ig-cell::after {
  content: '↗';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-lt);
  background: rgba(12,10,7,.45);
  opacity: 0;
  transition: opacity .3s;
}
.ig-cell:hover::after { opacity: 1; }

/* ── SHOP TEASER ──────────────────────────────────────────── */
#shop-teaser { padding: 7rem 5vw; background: var(--black); }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,5,3,.96);
  z-index: 950;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img { max-height: 85vh; width: auto; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
  padding: .25rem .5rem;
}
.lightbox-close:hover { color: var(--gold); }

/* ── SHOP PAGE ────────────────────────────────────────────── */
.shop-hero {
  padding: calc(var(--nav-h) + 4rem) 5vw 4rem;
  background: linear-gradient(to bottom, var(--dark) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}
.shop-hero-inner { position: relative; z-index: 1; }

.shop-section { padding: 5rem 5vw; }
.shop-section:nth-child(even) { background: var(--dark); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.product-img {
  aspect-ratio: 1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img img { position: absolute; inset: 0; }
.product-img .placeholder-icon {
  width: 38%;
  height: 38%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .85;
}
.product-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 2px;
  z-index: 1;
}
.product-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.product-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: .3rem;
}
.product-desc { font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .05em;
}
.product-price small {
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--muted);
  display: block;
  letter-spacing: 0;
  font-weight: 400;
}
.order-btn {
  background: var(--gold);
  color: var(--black);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  display: inline-block;
}
.order-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }

.info-banner {
  background: linear-gradient(135deg, var(--surface), #201a0e);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.info-banner-icon { flex-shrink: 0; width: 40px; height: 40px; }
.info-banner-icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-banner h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.1rem; margin-bottom: .25rem; }
.info-banner p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* Cart */
.cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  padding: .45rem .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-badge {
  background: var(--gold);
  color: var(--black);
  font-size: .62rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  display: none;
}
.cart-badge.visible { display: flex; }

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,5,3,.7);
  z-index: 950;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--dark);
  border-left: 1px solid var(--border);
  z-index: 951;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { right: 0; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-head h2 { font-family: var(--font-serif); font-weight: 500; font-size: 1.25rem; }
.cart-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
}
.cart-close:hover { color: var(--white); }

.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--muted); }
.cart-empty svg {
  width: 44px; height: 44px;
  margin: 0 auto;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-empty p { font-size: .9rem; margin-top: .75rem; }

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem .75rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-name { font-size: .9rem; font-weight: 500; color: var(--white); }
.cart-item-meta { font-size: .75rem; color: var(--muted); margin-top: .15rem; }
.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  text-align: right;
  grid-row: 1;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}
.qty-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.qty-btn:hover { border-color: var(--gold); }
.qty-val { font-size: .85rem; min-width: 20px; text-align: center; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0;
  transition: color .2s;
  margin-left: .25rem;
}
.cart-item-remove:hover { color: #f87171; }

.cart-foot {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.75rem;
  flex-shrink: 0;
  background: var(--dark);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cart-total span { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.cart-total strong { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--white); }
.cart-actions { display: flex; flex-direction: column; gap: .75rem; }
.cart-actions .btn-ig { justify-content: center; padding: .85rem; font-size: .82rem; }
.cart-actions .btn-email {
  background: var(--surface);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.cart-actions .btn-email:hover { border-color: var(--gold); color: var(--gold); }
.cart-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .75rem; line-height: 1.6; }

.size-select {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .4rem .6rem;
  font-size: .8rem;
  margin-bottom: .6rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394896f' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .6rem center;
  padding-right: 2rem;
}
.size-select:focus { outline: none; border-color: var(--gold); }

@keyframes cartFlash { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }
.cart-btn.flash { animation: cartFlash .3s ease; }

/* ── INFO PAGE ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 5vw 5rem;
  background:
    linear-gradient(to bottom, rgba(12,10,7,.5) 0%, rgba(12,10,7,.95) 100%),
    url('../images/marc8.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 15vw;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .25;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: .95;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold-lt);
}
.page-hero h1 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: .82em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  display: block;
}
.page-hero p { color: rgba(240,233,216,.7); font-size: 1rem; max-width: 460px; line-height: 1.8; }

.info-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 5vw;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .info-wrap { grid-template-columns: 1fr; }
  .info-sidebar { display: none; }
}

.info-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.sidebar-nav a {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .6rem .9rem;
  border-left: 2px solid var(--border);
  transition: color .2s, border-color .2s;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--gold);
  border-left-color: var(--gold);
}

.info-content { display: flex; flex-direction: column; gap: 4rem; }
.info-section { scroll-margin-top: calc(var(--nav-h) + 2rem); }

.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (max-width: 580px) { .dos-donts { grid-template-columns: 1fr; } }

.do-card {
  background: rgba(181,190,167,.1);
  border: 1px solid rgba(181,190,167,.3);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.dont-card {
  background: rgba(158,43,37,.08);
  border: 1px solid rgba(158,43,37,.35);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.do-card h4   { color: var(--sage); font-family: var(--font-serif); font-weight: 500; font-size: 1rem; margin-bottom: 1rem; }
.dont-card h4 { color: #c0504d; font-family: var(--font-serif); font-weight: 500; font-size: 1rem; margin-bottom: 1rem; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.check-list li {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.check-list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}
.do-card .check-list li::before { color: var(--sage); }
.dont-card .check-list li::before { content: '\2717'; color: #c0504d; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1.75rem;
}
.info-card p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: .75rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card strong { color: var(--white); }

.steps { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.step-body h4 { font-family: var(--font-serif); font-weight: 500; font-size: 1rem; margin-bottom: .3rem; }
.step-body p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

.aftercare-timeline { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0; }
.at-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.at-item:last-child { border-bottom: none; }
.at-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .04em;
  color: var(--gold);
  padding-top: .1rem;
  line-height: 1.2;
}
.at-time small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}
.at-body h4 { font-family: var(--font-serif); font-weight: 500; font-size: .95rem; margin-bottom: .3rem; }
.at-body p  { font-size: .84rem; color: var(--muted); line-height: 1.65; }

.price-note {
  background: linear-gradient(135deg, var(--surface), #201a0e);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 1.75rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
}
.price-note strong { color: var(--white); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.price-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.price-card .price-icon {
  width: 36px; height: 36px;
  margin: 0 auto .75rem;
}
.price-card .price-icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.price-card h4 { font-family: var(--font-serif); font-weight: 500; font-size: .95rem; margin-bottom: .35rem; }
.price-card .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: .25rem;
}
.price-card p { font-size: .75rem; color: var(--muted); line-height: 1.5; }

.faq-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-a  { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open { border-color: rgba(201,168,76,.4); }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 5vw;
}
.legal-wrap h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 2.5rem 0 .75rem;
  color: var(--white);
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 1.5rem 0 .5rem;
}
.legal-wrap p, .legal-wrap li {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: .5rem;
}
.legal-wrap ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-wrap a { color: var(--gold); }
.legal-wrap a:hover { text-decoration: underline; }
.legal-divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--sage), var(--umber) 45%, var(--gold) 75%, transparent);
  margin: .75rem 0 1.5rem;
}

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}
.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}
.highlight-box strong { color: var(--white); }
.warn-box {
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.3);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}
.warn-box strong { color: var(--gold); }

/* ── 404 PAGE ─────────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5vw;
}
.error-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: .9;
  color: var(--gold);
}
.error-page h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 1rem 0 .5rem;
}
.error-page p { color: var(--muted); margin-bottom: 2rem; }

/* ── SCROLL TO TOP ────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, border-color .2s;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { border-color: var(--gold); }

/* ── FLOATING BUTTERFLY BADGE ────────────────────────────── */
.butterfly-badge {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 84px;
  height: 84px;
  z-index: 85;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}
.butterfly-badge.visible {
  opacity: 1;
  transform: translateY(0);
  animation: butterfly-float 6s ease-in-out infinite;
}
.butterfly-badge__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(229,170,74,.45)) drop-shadow(0 6px 14px rgba(0,0,0,.6));
  transform-origin: 50% 42%;
  animation: butterfly-flutter 2.6s ease-in-out infinite;
}
@keyframes butterfly-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes butterfly-flutter {
  0%, 100% { transform: scaleX(1)    rotate(0deg); }
  25%      { transform: scaleX(.88)  rotate(-2deg); }
  50%      { transform: scaleX(1.04) rotate(0deg); }
  75%      { transform: scaleX(.88)  rotate(2deg); }
}
@media (max-width: 600px) {
  .butterfly-badge { width: 64px; height: 64px; left: .9rem; bottom: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  .butterfly-badge,
  .butterfly-badge__art { animation: none; }
}

/* ── IMAGE LOADING ────────────────────────────────────────── */
.img-loading {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.img-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-logo { display: flex; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.8; max-width: 280px; }

.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col li a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.footer-col li a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: .85rem; color: var(--muted); line-height: 1.9; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: var(--muted);
}

.site-credit {
  text-align: center;
  font-size: .65rem;
  color: var(--muted);
  opacity: .5;
  margin-top: .75rem;
}
.site-credit a { color: inherit; text-decoration: none; }
.site-credit a:hover { color: var(--gold); opacity: 1; }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: border-color .2s, color .2s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Marquee bewusst ausgenommen — reines Deko-Laufband, soll auch bei
     aktivierter "Bewegung reduzieren"-Einstellung weiterlaufen. */
  .hero-tag, .hero-title, .hero-sub, .hero-actions, .hero-meta, .scroll-hint {
    animation: none;
    opacity: 1;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── UTILS ────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }

/* ── MAP ──────────────────────────────────────────────────── */
.map-wrap {
  margin-top: 2rem;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.map-container iframe {
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(.9);
}

/* ── CONSENT-GATED EMBEDS (Google Maps, Cal.com) ─────────────
   DSGVO/ePrivacy: Drittanbieter-Inhalte laden erst nach Zustimmung
   (Cookie-Banner) oder gezieltem Klick auf den Platzhalter. */
.consent-embed { position: relative; }
.consent-embed iframe[data-src] { display: none; }
.consent-embed #cal-booking { display: none; }
.consent-embed.consent-loaded .consent-placeholder { display: none; }
.consent-embed.consent-loaded iframe[data-src] { display: block; }
.consent-embed.consent-loaded #cal-booking { display: block; }

.consent-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem;
}
.cal-wrap .consent-placeholder { min-height: 600px; }
.consent-placeholder p {
  font-size: .85rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.7;
}
.consent-placeholder p strong { color: var(--white); }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 1.5rem 5vw;
  transform: translateY(110%);
  transition: transform .35s ease;
}
.cookie-banner.open { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}
.cookie-banner p strong { color: var(--white); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner-actions .btn-outline,
.cookie-banner-actions .btn-primary { padding: .7rem 1.5rem; font-size: .78rem; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions button { flex: 1; }
}

/* ── IG SECTION ───────────────────────────────────────────── */
.ig-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 3rem;
}

/* ── SHOP TEASER GRID ─────────────────────────────────────── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.teaser-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.teaser-card-img {
  aspect-ratio: 16/10;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.teaser-card-img svg {
  width: 30%;
  height: 55%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .85;
  transition: transform .3s;
}
.teaser-card:hover .teaser-card-img svg { transform: scale(1.1) rotate(-4deg); }
.teaser-card-body {
  padding: 1.25rem;
}
.teaser-card-body p:first-child {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.teaser-card-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: .3rem;
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: 5rem 5vw;
  background: var(--black);
  text-align: center;
}
.cta-section p.cta-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
