/* ============================================================
   Kospolo – cinematic, mobile-first
   ============================================================ */
:root {
  --bg: #0b0c0e;
  --bg-alt: #101216;
  --surface: #15181d;
  --surface-2: #1b1f25;
  --text: #f0f1f3;
  --muted: #9498a1;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c9a96a;
  --maxw: 1320px;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: 'Georgia', 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ============ LIGHT MODE ============ */
:root[data-theme="light"] {
  --bg: #faf9f7;
  --bg-alt: #f0ede8;
  --surface: #ffffff;
  --surface-2: #f4f1ec;
  --text: #1d1d1f;
  --muted: #65686e;
  --line: rgba(0, 0, 0, 0.12);
}
/* Header bleibt dunkles Glas – über dem Hero UND als Leiste über hellen Seiten gut lesbar */
:root[data-theme="light"] .site-header { color: #fff; background: rgba(15, 16, 19, 0.5); backdrop-filter: blur(8px); }
:root[data-theme="light"] .site-header.solid { background: rgba(15, 16, 19, 0.88); border-bottom-color: rgba(255, 255, 255, 0.1); }
:root[data-theme="light"] .site-header .lang-switch { color: rgba(255, 255, 255, 0.55); }
/* btn-ghost: auf hellen Sektionen dunkel, über dunklen Bild-Heroes weiß lassen */
:root[data-theme="light"] .btn-ghost { color: var(--text); border-color: rgba(0, 0, 0, 0.28); background: rgba(0, 0, 0, 0.02); }
:root[data-theme="light"] .page-hero-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.04); }
/* Subtile weiße Rahmen → dunkle Entsprechung */
:root[data-theme="light"] .tst-card, :root[data-theme="light"] .blog-card, :root[data-theme="light"] .shop-card,
:root[data-theme="light"] .prints-panel, :root[data-theme="light"] .footer-newsletter { border-color: rgba(0, 0, 0, 0.1); }
/* Formularfelder mit weißer Füllung → leichte dunkle Füllung */
:root[data-theme="light"] .contact-form select, :root[data-theme="light"] .fn-form input[type=email],
:root[data-theme="light"] .coupon-form input, :root[data-theme="light"] .cart-qty input, :root[data-theme="light"] .pay-opt,
:root[data-theme="light"] .print-row, :root[data-theme="light"] .print-row select, :root[data-theme="light"] .print-row input,
:root[data-theme="light"] .donate-custom input { background: rgba(0, 0, 0, 0.03); }
/* Dunkle Bild-Platzhalter aufhellen */
:root[data-theme="light"] .blog-card-media, :root[data-theme="light"] .shop-card-media, :root[data-theme="light"] .cart-thumb,
:root[data-theme="light"] .print-thumb, :root[data-theme="light"] .ba-slider { background: #e6e2db; }
:root[data-theme="light"] .blog-prose code, :root[data-theme="light"] .blog-prose pre { background: rgba(0, 0, 0, 0.05); }
:root[data-theme="light"] .filter:hover { color: var(--text); border-color: rgba(0, 0, 0, 0.3); }
:root[data-theme="light"] .blog-prose strong { color: var(--text); }
/* Hero-Titel liegt über dem dunklen Hero-Bild → immer hell */
:root[data-theme="light"] .hero-title { color: #fff; }
.theme-toggle { background: none; border: none; color: inherit; font-size: 1.02rem; line-height: 1; padding: 4px; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* Bildschutz */
body.protect img { -webkit-user-drag: none; user-select: none; pointer-events: auto; }
body.protect .masonry-item img,
body.protect .foto-frame img { pointer-events: none; }

/* ---------- Reveal-Animationen ----------
   Inhalt ist ohne JS regulär sichtbar; nur mit aktivem JS (html.js) wird er
   zunächst versteckt und beim Scrollen eingeblendet. Verhindert leere Seiten,
   falls JS verzögert lädt oder fehlschlägt. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
/* Hero-Inhalt ist IMMER sichtbar (opacity 1); animiert wird nur die Bewegung,
   damit ein pausierter Tab nie zu unsichtbarem Text führt. */
html.js .hero-content .reveal { opacity: 1; transform: none; transition: none; animation: heroRise 0.9s var(--ease) backwards; }
html.js .hero-content .reveal:nth-child(2) { animation-delay: 0.06s; }
html.js .hero-content .reveal:nth-child(3) { animation-delay: 0.16s; }
html.js .hero-content .reveal:nth-child(4) { animation-delay: 0.28s; }
@keyframes heroRise { from { transform: translateY(22px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .hero-content .reveal { opacity: 1 !important; transform: none !important; transition: none; animation: none; }
  .hero-slide.active { animation: none !important; }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand-name {
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  padding-left: 0.28em;
}
.main-nav { display: none; align-items: center; gap: 30px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.main-nav a { color: rgba(255,255,255,0.78); transition: color 0.25s; position: relative; }
.main-nav a:hover { color: #fff; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width 0.3s var(--ease); }
.main-nav a:hover::after { width: 100%; }
.lang-switch { display: flex; gap: 7px; align-items: center; color: var(--muted); }
.lang-switch a.on { color: var(--accent); }
.lang-switch .sep { opacity: 0.4; }

/* Burger */
.burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; padding: 10px; }
.burger span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 11, 13, 0.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-menu nav a { font-size: 1.6rem; font-weight: 600; letter-spacing: 0.06em; }
.mobile-lang { display: flex; gap: 20px; margin-top: 10px; color: var(--muted); }
.mobile-lang a.on { color: var(--accent); }

/* ============ HERO ============ */
.hero { position: relative; height: 100svh; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-stage { position: absolute; top: 0; left: 0; right: 0; height: 130%; will-change: transform; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--img);
  opacity: 0; transition: opacity 1.6s var(--ease);
}
/* Größeres Hero-Bild erst ab großen Screens laden (spart Daten auf dem Handy) */
@media (min-width: 1000px) {
  .hero-slide { background-image: var(--img-lg, var(--img)); }
}
.hero-slide.active { opacity: 1; }
body.hero-kenburns .hero-slide.active { animation: kenburns 12s ease-out forwards; }
body.hero-zoomout .hero-slide.active { animation: kenburnsout 12s ease-out forwards; }
body.hero-panright .hero-slide.active { animation: heropan 14s ease-out forwards; }
body.hero-static .hero-slide.active { transform: scale(1.03); }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.16); } }
@keyframes kenburnsout { from { transform: scale(1.16); } to { transform: scale(1.04); } }
@keyframes heropan { from { transform: scale(1.12) translateX(-2.2%); } to { transform: scale(1.12) translateX(2.2%); } }
.hero-fallback { background: radial-gradient(120% 100% at 50% 0%, #1c2128 0%, #0b0c0e 70%); opacity: 1; }
.hero-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,14,calc(var(--hero-shade, 0.6) * 0.6)) 0%, rgba(11,12,14,calc(var(--hero-shade, 0.6) * 0.35)) 40%, rgba(11,12,14,calc(var(--hero-shade, 0.6) * 1.25)) 88%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-kicker { font-size: 0.95rem; color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 18px; letter-spacing: 0.02em; }
.hero-title { font-family: var(--serif); font-weight: 400; font-size: clamp(3.4rem, 18vw, 9rem); line-height: 0.98; letter-spacing: 0.04em; text-transform: uppercase; text-shadow: 0 4px 40px rgba(0,0,0,0.4); }
.hero-tag { margin-top: 14px; font-size: clamp(0.9rem, 4vw, 1.2rem); color: rgba(255,255,255,0.78); letter-spacing: 0.16em; text-transform: uppercase; }
.hero-content .btn-primary { margin-top: 32px; }
.reveal.in:nth-child(2) { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.2s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.3s; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,0.45); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: #fff; border-radius: 2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* ============ BUTTONS ============ */
.btn-primary, .btn-ghost {
  display: inline-block; padding: 13px 30px; border-radius: 100px;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: all 0.3s var(--ease); border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #14110a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,169,106,0.28); }
.btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============ SECTIONS ============ */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { margin-bottom: 38px; }
.section.about .section-head, .center .section-head { margin-bottom: 26px; }
.eyebrow { display: inline-block; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 6vw, 3rem); line-height: 1.1; letter-spacing: 0.01em; }
.center .section-head { display: flex; flex-direction: column; align-items: center; }

/* ============ FILTER ============ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter { background: transparent; border: 1px solid var(--line); color: var(--muted); padding: 9px 18px; border-radius: 100px; font-size: 0.8rem; letter-spacing: 0.04em; transition: all 0.25s; }
.filter:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.filter.on { background: var(--accent); color: #14110a; border-color: var(--accent); }

/* ============ SLIDER (horizontal) ============ */
.slider { position: relative; }
.slider-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: 4px 0 14px; scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { scroll-snap-align: start; flex: 0 0 auto; }

.slider-nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(13,14,16,0.72); border: 1px solid var(--line); color: #fff;
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  cursor: pointer; transition: background 0.25s, opacity 0.25s, border-color 0.25s, color 0.25s;
  backdrop-filter: blur(4px);
}
.slider-nav:hover { background: var(--accent); color: #14110a; border-color: var(--accent); }
.slider-nav.prev { left: 8px; }
.slider-nav.next { right: 8px; }
.slider-nav.off { opacity: 0; pointer-events: none; }
.slider.no-scroll .slider-nav { display: none; }

/* Portfolio-Slides (Ausgewählte Aufnahmen) */
.media-slider .slider-track > .masonry-item {
  width: 78vw; max-width: 300px; aspect-ratio: 3 / 4; margin-bottom: 0;
}
.media-slider.size-s .slider-track > .masonry-item { max-width: 220px; }
.media-slider.size-l .slider-track > .masonry-item { max-width: 380px; }
.media-slider .masonry-item img { width: 100%; height: 100%; object-fit: cover; }

/* Galerien-Slides */
.album-slider .slider-track > .album-card { width: 80vw; max-width: 330px; }

@media (min-width: 640px) {
  .media-slider .slider-track > .masonry-item { width: 300px; }
  .media-slider.size-s .slider-track > .masonry-item { width: 220px; }
  .media-slider.size-l .slider-track > .masonry-item { width: 380px; }
  .album-slider .slider-track > .album-card { width: 320px; }
}

/* ============ MASONRY ============ */
.masonry { column-count: 1; column-gap: 14px; }
.masonry-item {
  position: relative; display: block; break-inside: avoid; margin-bottom: 14px;
  border-radius: 8px; overflow: hidden; background: var(--surface); cursor: zoom-in;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.masonry-item.hide { display: none; }
.masonry-item img { width: 100%; transition: transform 0.7s var(--ease); }
body.fx-hz .masonry-item:hover img { transform: scale(1.05); }
.mi-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; gap: 6px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 55%);
  opacity: 0; transition: opacity 0.35s;
}
.masonry-item:hover .mi-overlay { opacity: 1; }
.mi-title { font-size: 0.95rem; font-weight: 600; }
.mi-tag { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }

/* Video-Items im Grid */
.video-item { cursor: pointer; }
.play-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 62px; height: 62px; border-radius: 50%; background: rgba(0,0,0,0.45); border: 2px solid rgba(255,255,255,0.92); display: grid; place-items: center; pointer-events: none; transition: all 0.3s var(--ease); backdrop-filter: blur(2px); z-index: 2; }
.play-badge::after { content: ''; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; transition: border-color 0.3s; }
.video-item:hover .play-badge { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.08); }
.video-item:hover .play-badge::after { border-left-color: #14110a; }
.dur-badge { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.72); color: #fff; font-size: 0.72rem; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.04em; pointer-events: none; z-index: 2; }

/* Video-Detail-Player */
.foto-video { max-height: 82vh; width: auto; max-width: 100%; margin: 0 auto; border-radius: 4px; background: #000; display: block; }

/* Video-Overlay (Klick im Grid) */
.video-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.96); display: none; align-items: center; justify-content: center; padding: 20px; }
.video-overlay.on { display: flex; }
.video-overlay video { max-width: 100%; max-height: 90vh; border-radius: 6px; outline: none; background: #000; }
.vo-close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--line); color: #fff; font-size: 1.3rem; z-index: 2; }

/* Mehr-ansehen CTA */
.more-cta { text-align: center; margin-top: 38px; }

/* Cookie-Hinweis */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120; max-width: 720px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; background: rgba(18,20,24,0.96); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; box-shadow: 0 12px 40px rgba(0,0,0,0.4); backdrop-filter: blur(8px); }
.cookie-text { margin: 0; font-size: 0.85rem; color: var(--muted); flex: 1; min-width: 220px; }
.cookie-text a { color: var(--accent); }
.cookie-ok { flex: none; padding: 9px 22px; border: none; cursor: pointer; }

/* Referenzen / Kundenstimmen */
.tst-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 34px; }
.tst-card { background: var(--bg-alt); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.tst-stars { color: var(--accent); letter-spacing: 2px; font-size: 0.9rem; }
.tst-text { margin: 0; font-family: var(--serif); font-size: 1.12rem; line-height: 1.6; color: #e3e4e8; font-style: italic; }
.tst-author { font-size: 0.92rem; color: var(--muted); }
.tst-author strong { color: var(--text); }
@media (min-width: 720px) { .tst-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tst-grid { grid-template-columns: repeat(3, 1fr); } }

/* Foto-Landkarte */
.photo-map { height: 70vh; min-height: 420px; border-radius: 12px; margin-top: 30px; z-index: 0; }
.leaflet-popup-content a { color: var(--accent); }

/* Vorher-Nachher-Slider */
.ba-item { margin: 0 0 44px; }
.ba-slider { position: relative; overflow: hidden; border-radius: 10px; background: #15171b; user-select: none; touch-action: none; cursor: ew-resize; }
.ba-before { display: block; width: 100%; height: auto; }
.ba-after { position: absolute; top: 0; left: 0; height: 100%; width: 50%; overflow: hidden; }
.ba-after img { display: block; height: 100%; width: auto; max-width: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,0.9); transform: translateX(-1px); pointer-events: none; }
.ba-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; border-radius: 50%; background: rgba(13,14,16,0.65); border: 2px solid #fff; backdrop-filter: blur(2px); }
.ba-handle span::before, .ba-handle span::after { content: ''; position: absolute; top: 50%; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.ba-handle span::before { left: 8px; transform: translateY(-50%); border-right: 7px solid #fff; }
.ba-handle span::after { right: 8px; transform: translateY(-50%); border-left: 7px solid #fff; }
.ba-label { position: absolute; bottom: 12px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(13,14,16,0.6); padding: 4px 10px; border-radius: 100px; pointer-events: none; }
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }
.ba-caption { text-align: center; margin-top: 12px; color: var(--muted); }

/* Sammlungs-Gruppen auf /galerien */
.col-group { margin-bottom: 48px; }
.col-group-title { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin: 0 0 20px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.col-group-title a { color: var(--text); }
.col-group-title a:hover { color: var(--accent); }

/* Spenden-/Trinkgeld-Karte (Galerie) */
.donate-card { margin: 48px auto 0; max-width: 560px; text-align: center; background: var(--bg-alt); border: 1px solid rgba(201,169,106,0.28); border-radius: 14px; padding: 30px 26px; }
.donate-title { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin: 0 0 8px; }
.donate-text { color: var(--muted); margin: 0 0 18px; }
.donate-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.donate-amount { border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px; color: var(--text); font-size: 0.9rem; transition: border-color 0.25s, color 0.25s; }
.donate-amount:hover { border-color: var(--accent); color: var(--accent); }
.donate-custom { display: inline-flex; align-items: center; gap: 6px; }
.donate-custom input { width: 96px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text); border-radius: 100px; padding: 9px 14px; font: inherit; font-size: 0.9rem; }
.donate-custom input:focus { outline: none; border-color: var(--accent); }
.donate-custom button { cursor: pointer; }
.donate-go { white-space: nowrap; display: inline-block; margin-top: 16px; }
.footer-donate { color: var(--accent) !important; }

/* Newsletter (Footer) */
.footer-newsletter { padding: 48px 0; background: var(--bg-alt); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.fn-title { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin: 0 0 6px; }
.fn-intro { max-width: 460px; margin: 0 auto 18px; }
.fn-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.fn-form input[type=email] { flex: 1; min-width: 220px; max-width: 320px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--text); border-radius: 8px; padding: 12px 14px; font: inherit; }
.fn-form input[type=email]:focus { outline: none; border-color: var(--accent); }
/* Top-Flash (Hinweise oben) */
.top-flash { text-align: center; padding: 12px 18px; font-size: 0.92rem; margin: 0; }
.top-flash.ok { background: rgba(201,169,106,0.14); color: var(--accent); }
.top-flash.err { background: rgba(217,100,90,0.14); color: #e98a80; }

/* ============================================================
   KAMERA-EFFEKTE
   ============================================================ */

/* Vignette + Filmkorn (global, über dem Content, unter UI-Overlays) */
.fx-vignette { position: fixed; inset: 0; z-index: 44; pointer-events: none; background: radial-gradient(ellipse 90% 80% at 50% 45%, transparent 55%, rgba(0,0,0,var(--vignette, 0.32)) 100%); }
.fx-grain { position: fixed; inset: 0; z-index: 45; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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)'/%3E%3C/svg%3E");
  background-size: 160px 160px; }

/* Focus-Pull: Galerie-Bilder kommen unscharf rein und ziehen scharf (nur mit JS) */
html.js body.fx-fp .masonry-item.reveal img { filter: blur(14px); transition: filter 1s var(--ease), transform 0.7s var(--ease); }
html.js body.fx-fp .masonry-item.reveal.in img { filter: blur(0); }

/* Sucher-Hover: Fokus-Klammern + Aufnahmedaten (nur Bilder) */
.viewfinder { position: absolute; inset: 14px; z-index: 2; opacity: 0; transition: opacity 0.3s, inset 0.4s var(--ease); pointer-events: none; }
body.fx-vf .masonry-item:hover .viewfinder { opacity: 1; inset: 18px; }
.viewfinder i { position: absolute; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.92); }
.viewfinder i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.viewfinder i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.viewfinder i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.viewfinder i:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.mi-exif { display: block; font-size: 0.7rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.85); margin-top: 4px; font-variant-numeric: tabular-nums; opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s; }
body.fx-vf .masonry-item:hover .mi-exif { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fx-grain { display: none; }
  .masonry-item.reveal img { filter: none; transform: none; }
  .hero-stage { transform: none !important; }
}

/* ============ ALBUM GRID ============ */
.album-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.album-card { position: relative; display: block; border-radius: 10px; overflow: hidden; background: var(--surface); }
.album-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.album-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.album-card:hover .album-thumb img { transform: scale(1.06); }
.album-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 60%); }
.album-empty { width: 100%; height: 100%; background: linear-gradient(135deg, #1b1f25, #0e1014); }
.album-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; z-index: 2; }
.album-meta h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; }
.album-count { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about-photo img, .about-photo-ph { width: 100%; border-radius: 12px; aspect-ratio: 3/4; object-fit: cover; }
.about-photo-ph { display: grid; place-items: center; font-size: 3rem; background: linear-gradient(135deg, #1b1f25, #0e1014); }
.about-role { color: var(--accent); letter-spacing: 0.06em; margin-bottom: 14px; }
.about-text p { color: #cfd1d6; font-size: 1.05rem; }
.about-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ============ CONTACT ============ */
.contact-intro { max-width: 560px; margin: 0 auto 30px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 600px; margin: 0 auto; text-align: left; }
.cf-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line); color: var(--text);
  padding: 14px 16px; border-radius: 8px; font: inherit; font-size: 1rem; transition: border-color 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { resize: vertical; }
.contact-form select { background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text); border-radius: 8px; padding: 13px 14px; font: inherit; width: 100%; }
.contact-form select:focus { outline: none; border-color: var(--accent); }
.booking-date { color-scheme: dark; }
.booking-intro { max-width: 540px; margin: 10px auto 0; }
.booking-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 10px; }
/* „Buchen"-Button in der Navigation */
.nav-cta { color: var(--accent) !important; border: 1px solid rgba(201,169,106,0.5); border-radius: 100px; padding: 6px 16px; transition: background 0.25s, color 0.25s; }
.nav-cta:hover { background: var(--accent); color: #14110a !important; }
.nav-cta::after { display: none !important; }
/* Honeypot – für echte Besucher komplett unsichtbar, Bots füllen es aus */
.cf-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form .btn-primary { align-self: center; margin-top: 6px; border: none; }
.contact-mail { margin-top: 24px; }
.contact-mail a { color: var(--accent); letter-spacing: 0.04em; }
.form-flash { padding: 14px 18px; border-radius: 8px; margin-bottom: 22px; }
.form-flash.ok { background: rgba(107,191,115,0.12); color: #7fcf86; }
.form-flash.err { background: rgba(217,100,90,0.12); color: #e08178; }

/* ============ PAGE HERO (album/foto) ============ */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; padding-bottom: 40px; padding-top: calc(var(--header-h) + 30px); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); background-image: var(--img); }
@media (min-width: 1000px) { .page-hero-bg { background-image: var(--img-lg, var(--img)); } }
.page-hero-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,14,0.6) 0%, rgba(11,12,14,0.2) 40%, rgba(11,12,14,0.92) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 8vw, 4rem); margin: 10px 0; }
.page-hero-desc { color: #d6d8dc; max-width: 600px; font-size: 1.05rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 20px; }
.back-link { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); transition: color 0.25s; }
.back-link:hover { color: var(--accent); }
.draft-badge { padding: 4px 12px; border: 1px solid var(--accent); color: var(--accent); border-radius: 4px; font-size: 0.72rem; }

/* ============ FOTO DETAIL ============ */
.foto-page { padding-top: var(--header-h); }
.foto-stage { background: #000; display: flex; align-items: center; justify-content: center; min-height: 50vh; padding: 24px 0; }
.foto-frame { max-width: 100%; }
.foto-frame img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: 4px; }
.foto-info { padding: 40px 0; }
.foto-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.foto-nav-arrows { display: flex; gap: 10px; }
.arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1.1rem; transition: all 0.25s; }
.arrow:hover { border-color: var(--accent); color: var(--accent); }
.foto-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 6vw, 2.6rem); margin-bottom: 16px; }
.foto-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(201,169,106,0.4); border-radius: 100px; padding: 5px 14px; }
.foto-story { font-size: 1.12rem; color: #d6d8dc; line-height: 1.8; margin-bottom: 30px; }
.foto-exif { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.exif-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.exif-k { color: var(--muted); letter-spacing: 0.04em; }
.exif-v { color: var(--text); }
.sibling-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sibling { aspect-ratio: 1; overflow: hidden; border-radius: 6px; }
.sibling img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.sibling:hover img { transform: scale(1.08); }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0; background: var(--bg-alt); }
.footer-inner { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.footer-links a:hover { color: var(--accent); }
.footer-meta { font-size: 0.8rem; color: var(--muted); }
.footer-meta a:hover { color: var(--accent); }

/* ============ ERROR ============ */
.error-page { min-height: 64vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding-top: var(--header-h); }
.error-code { font-family: var(--serif); font-size: clamp(4rem, 20vw, 8rem); }

/* ============ SLIDESHOW OVERLAY ============ */
.slideshow { position: fixed; inset: 0; z-index: 200; background: #000; display: none; align-items: center; justify-content: center; }
.slideshow.on { display: flex; }
.slideshow img { max-width: 100%; max-height: 100%; object-fit: contain; opacity: 0; transition: opacity 1s var(--ease); }
.slideshow img.show { opacity: 1; animation: ssKenBurns 7s ease-out both; }
@keyframes ssKenBurns { from { transform: scale(1.02); } to { transform: scale(1.07); } }
.ss-close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--line); color: #fff; font-size: 1.3rem; z-index: 2; transition: opacity .4s; }
.ss-controls { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 14px; z-index: 2; transition: opacity .4s; }
.ss-controls button { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--line); color: #fff; font-size: 1.1rem; }
/* Präsentationsmodus: Bedienelemente + Cursor nach Inaktivität ausblenden */
.slideshow.idle { cursor: none; }
.slideshow.idle .ss-close, .slideshow.idle .ss-controls { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .slideshow img.show { animation: none; } }

/* ============ PHOTOSWIPE caption ============ */
.pswp__custom-caption { position: absolute; left: 0; right: 0; bottom: 18px; text-align: center; color: #eaeaea; font-size: 0.86rem; letter-spacing: 0.03em; text-shadow: 0 1px 8px rgba(0,0,0,0.85); padding: 0 16px; }
.pswp__custom-caption a { color: var(--accent); border-bottom: 1px solid rgba(201,169,106,0.5); pointer-events: auto; }

/* ============================================================
   KUNDEN-BEREICH / GESCHÜTZTE GALERIEN
   ============================================================ */
.gate-wrap { min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.gate-card { width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 38px 32px; display: flex; flex-direction: column; gap: 14px; text-align: center; }
.gate-brand { font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.2em; text-transform: uppercase; }
.gate-card h1 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; }
.gate-card label { text-align: left; display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--muted); }
.gate-card input { background: var(--bg); border: 1px solid var(--line); color: var(--text); padding: 12px 14px; border-radius: 8px; font: inherit; }
.gate-card input:focus { outline: none; border-color: var(--accent); }
.gate-card .btn-primary { border: none; margin-top: 4px; }
.gate-card .small { margin-top: 6px; }
.gate-card-wide { max-width: 440px; }
.gate-link { color: var(--accent); border-bottom: 1px solid rgba(201,169,106,0.4); }
.gate-check { flex-direction: row !important; align-items: flex-start; gap: 10px; text-align: left; font-size: 0.82rem; line-height: 1.5; }
.gate-check input { width: auto !important; flex: none; margin-top: 3px; }
.gate-check span { color: var(--muted); }

/* Rechtstexte (Impressum / Datenschutz) */
.legal-page { padding-top: calc(var(--header-h) + 50px); }
.legal-title { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 6vw, 3rem); margin: 14px 0 28px; }
.legal-text { white-space: pre-wrap; color: #cfd1d6; line-height: 1.85; font-size: 1.02rem; }

.client-header, .share-header { background: rgba(11,12,14,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.client-user { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; }
.share-nav { display: flex; align-items: center; gap: 18px; font-size: 0.85rem; letter-spacing: 0.04em; }
.share-nav a:hover { color: var(--accent); }
.link-btn-light { background: none; border: none; color: var(--muted); cursor: pointer; font: inherit; padding: 0; }
.link-btn-light:hover { color: #fff; }

/* Profil-Formular (Kundenbereich) */
.profile-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.profile-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--muted); }
.profile-form input { background: var(--surface); border: 1px solid var(--line); color: var(--text); padding: 12px 14px; border-radius: 8px; font: inherit; font-size: 1rem; }
.profile-form input:focus { outline: none; border-color: var(--accent); }
.profile-form .btn-primary { align-self: flex-start; border: none; margin-top: 4px; }
.profile-sep { border: none; border-top: 1px solid var(--line); margin: 8px 0 2px; }

/* Profilbild (Avatar) */
.avatar-edit { display: flex; align-items: center; gap: 18px; margin-bottom: 6px; }
.avatar-preview { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; flex: none; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; }
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.avatar-ph { font-family: var(--serif); font-size: 2.2rem; color: var(--accent); }
.avatar-controls { display: flex; flex-direction: column; gap: 8px; }
.avatar-upload { display: inline-block; padding: 9px 18px; border: 1px solid var(--accent); color: var(--accent); border-radius: 100px; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; align-self: flex-start; }
.avatar-upload:hover { background: var(--accent); color: #14110a; }
.avatar-controls .check { color: var(--muted); }

/* Avatar-Chip im Kunden-Header */
.client-chip { display: inline-flex; align-items: center; gap: 8px; }
.client-chip img, .client-chip .avatar-ph-sm { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: none; }
.avatar-ph-sm { display: grid; place-items: center; background: var(--surface-2); color: var(--accent); font-size: 0.85rem; font-weight: 600; border: 1px solid var(--line); }
.client-chip:hover { color: var(--accent); }

/* Wasserzeichen über Vorschaubildern */
.wm-overlay, .pswp__wm { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; overflow: hidden; }
.wm-overlay { z-index: 2; } .pswp__wm { z-index: 5; }
.wm-overlay span, .pswp__wm span { transform: rotate(-28deg); color: rgba(255,255,255,var(--wm-op, 0.42)); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; text-shadow: 0 1px 5px rgba(0,0,0,0.45); white-space: nowrap; }
/* Größe – Raster */
.wm-overlay.size-s span { font-size: clamp(0.65rem, 2.5vw, 0.95rem); }
.wm-overlay.size-m span { font-size: clamp(0.85rem, 3.5vw, 1.4rem); }
.wm-overlay.size-l span { font-size: clamp(1.1rem, 5vw, 2rem); }
/* Größe – Lightbox */
.pswp__wm.size-s span { font-size: clamp(1rem, 4vw, 2rem); }
.pswp__wm.size-m span { font-size: clamp(1.4rem, 6vw, 3rem); }
.pswp__wm.size-l span { font-size: clamp(2rem, 9vw, 5rem); }
/* Position: Ecke unten rechts (ohne Drehung) */
.wm-overlay.pos-corner, .pswp__wm.pos-corner { place-items: end; }
.wm-overlay.pos-corner span, .pswp__wm.pos-corner span { transform: none; }
.wm-overlay.pos-corner span { margin: 0 8px 8px 0; }
.pswp__wm.pos-corner span { margin: 0 24px 24px 0; }

/* Favoriten-Button (♥) – in Kundengalerien */
.fav-btn { position: absolute; top: 10px; right: 10px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(13,14,16,0.55); color: rgba(255,255,255,0.9); font-size: 1.15rem; line-height: 1; cursor: pointer; opacity: 0.85; transition: opacity 0.25s, transform 0.18s var(--ease), color 0.2s, background 0.2s; backdrop-filter: blur(2px); }
.masonry-item:hover .fav-btn { opacity: 1; }
.fav-btn:hover { transform: scale(1.12); color: #fff; }
.fav-btn.on { color: #e9536b; background: rgba(13,14,16,0.78); opacity: 1; }
.fav-btn.pulse { transform: scale(1.35); }
.fav-hint { background: rgba(201,169,106,0.1); border: 1px solid rgba(201,169,106,0.3); color: var(--accent); padding: 13px 18px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 26px; }

/* Download-Button im Grid */
.dl-btn { position: absolute; top: 10px; left: 10px; z-index: 3; width: 38px; height: 38px; border-radius: 8px; border: none; background: rgba(13,14,16,0.7); color: #fff; font-size: 1.1rem; cursor: pointer; opacity: 0; transition: opacity 0.25s, background 0.25s; backdrop-filter: blur(2px); }
.masonry-item:hover .dl-btn { opacity: 1; }
.dl-btn:hover { background: var(--accent); color: #14110a; }

/* Notiz-Button (Proofing) – neben dem ♥ */
.note-btn { position: absolute; top: 10px; right: 56px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(13,14,16,0.55); color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1; cursor: pointer; opacity: 0.85; transition: opacity 0.25s, transform 0.18s var(--ease), color 0.2s, background 0.2s; backdrop-filter: blur(2px); }
.masonry-item:hover .note-btn { opacity: 1; }
.note-btn:hover { transform: scale(1.12); color: #fff; }
.note-btn.on { color: #c9a96a; background: rgba(13,14,16,0.82); opacity: 1; }
/* Proofing-Leiste */
.proof-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; margin-bottom: 26px; }
.proof-bar .fav-hint { margin-bottom: 0; flex: 1; min-width: 240px; }
.ic-hint { color: #e9536b; }
.ic-hint:last-of-type { color: var(--accent); }
.proof-done { white-space: nowrap; border: none; cursor: pointer; }
.proof-done:disabled { opacity: 0.75; cursor: default; }
.proof-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.proof-bar.approved .fav-hint { background: rgba(107,191,115,0.12); border-color: rgba(107,191,115,0.35); color: #84c98c; }
.fav-btn:disabled, .note-btn:disabled { opacity: 0.55; cursor: default; }
.masonry-item:hover .fav-btn:disabled, .masonry-item:hover .note-btn:disabled { opacity: 0.55; }

/* Abzüge aus Favoriten bestellen */
.prints-panel { margin: 44px auto 0; max-width: 640px; background: var(--bg-alt); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 26px 24px; }
.prints-title { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin: 0 0 6px; }
.prints-form { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.print-row { display: grid; grid-template-columns: 48px 1fr; gap: 10px 12px; align-items: center; padding: 10px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 10px; }
.print-thumb { width: 48px; height: 48px; border-radius: 6px; overflow: hidden; background: #15171b; }
.print-thumb img { width: 100%; height: 100%; object-fit: cover; }
.print-name { font-size: 0.92rem; }
.print-row select, .print-row input { background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text); border-radius: 8px; padding: 9px 11px; font: inherit; }
.print-row input { width: 72px; }
.prints-form .btn-primary { align-self: flex-start; margin-top: 6px; }
@media (min-width: 560px) {
  .print-row { grid-template-columns: 48px 1fr 200px 76px; }
}

/* ============================================================
   RESPONSIVE – mobile-first, größere Breakpoints additiv
   ============================================================ */
@media (min-width: 560px) {
  .masonry { column-count: 2; }
  .cf-row { grid-template-columns: 1fr 1fr; }
  .sibling-row { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 760px) {
  :root { --header-h: 76px; }
  .wrap { padding: 0 32px; }
  .section { padding: 100px 0; }
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 900px) {
  .burger { display: none; }
  .main-nav { display: flex; }
  .masonry { column-count: 3; }
  .about-grid { grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .foto-exif { grid-template-columns: 1fr 1fr; column-gap: 40px; }
  .sibling-row { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 1200px) {
  .masonry { column-count: 4; }
  .album-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Blog / Stories ===== */
.blog-page { padding-top: 90px; }
.blog-head { margin-bottom: 40px; }
.blog-intro { font-size: 1.05rem; max-width: 560px; margin-top: 10px; }
.empty-hint { padding: 40px 0; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.blog-card { background: var(--bg-alt); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(201,169,106,0.4); }
.blog-card-media { display: block; aspect-ratio: 16/9; overflow: hidden; background: #15171b; position: relative; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-family: var(--serif); letter-spacing: 0.1em; }
.blog-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.blog-date { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.blog-date.light { color: rgba(255,255,255,0.85); }
.blog-card-title { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1.2; margin: 0; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.blog-more { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.04em; margin-top: 4px; }

/* Einzelne Story */
.blog-post-page { padding-top: 0; }
.blog-hero { position: relative; min-height: 58vh; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.blog-hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,14,0.25) 0%, rgba(11,12,14,0.35) 50%, rgba(11,12,14,0.92) 100%); }
.blog-hero-inner { position: relative; padding: 0 0 48px; display: flex; flex-direction: column; gap: 14px; }
.blog-article-title { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.08; margin: 0; color: #fff; }
.blog-article-title.dark { color: var(--text); }
.blog-article-head { padding: 110px 0 0; display: flex; flex-direction: column; gap: 14px; }
.back-link { color: var(--muted); font-size: 0.85rem; display: inline-block; }
.back-link:hover { color: var(--accent); }
.back-link.light { color: rgba(255,255,255,0.8); }
.back-link.light:hover { color: #fff; }
.blog-body { padding: 48px 0 24px; display: flex; flex-direction: column; gap: 18px; }
.blog-foot { padding: 8px 0 80px; }
.blog-prose { font-size: 1.08rem; line-height: 1.85; color: #d9dbe0; }
.blog-prose > *:first-child { margin-top: 0; }
.blog-prose p { margin: 0 0 1.1em; }
.blog-prose h2 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; line-height: 1.2; margin: 1.6em 0 0.5em; color: var(--text); }
.blog-prose h3 { font-weight: 600; font-size: 1.2rem; margin: 1.4em 0 0.4em; color: var(--text); }
.blog-prose h4 { font-weight: 600; font-size: 1.02rem; margin: 1.2em 0 0.3em; color: var(--text); }
.blog-prose ul, .blog-prose ol { margin: 0 0 1.1em; padding-left: 1.4em; }
.blog-prose li { margin: 0.3em 0; }
.blog-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.blog-prose blockquote { margin: 1.4em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--accent); color: #c4c6cc; font-style: italic; font-size: 1.15rem; }
.blog-prose strong { color: #fff; font-weight: 700; }
.blog-prose code { background: rgba(255,255,255,0.07); padding: 2px 6px; border-radius: 4px; font-size: 0.92em; }
.blog-prose pre { background: rgba(255,255,255,0.05); padding: 14px 16px; border-radius: 8px; overflow-x: auto; }
.blog-prose hr { border: none; border-top: 1px solid var(--line); margin: 2em 0; }
.blog-prose img { width: 100%; height: auto; border-radius: 10px; margin: 1.6em 0; display: block; }
.draft-note { color: var(--accent); font-size: 0.85rem; border: 1px dashed rgba(201,169,106,0.4); border-radius: 8px; padding: 8px 14px; align-self: flex-start; }

/* Story-Kategorien (Pills) */
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-tag { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(201,169,106,0.35); border-radius: 100px; padding: 4px 12px; }
a.blog-tag:hover { background: var(--accent); color: #14110a; }

/* Verknüpfte Galerie unter der Story */
.blog-linked { padding: 16px 0 32px; }
.blog-linked-head { margin-bottom: 16px; }
.blog-linked-title { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin: 4px 0 0; }
.blog-linked-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; border-radius: 10px; overflow: hidden; }
.blog-linked-thumb { aspect-ratio: 1; overflow: hidden; background: var(--surface); }
.blog-linked-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-linked-grid:hover .blog-linked-thumb img { transform: scale(1.05); }
.blog-linked-btn { align-self: flex-start; }

@media (min-width: 720px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .blog-linked-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Shop ===== */
.nav-cart { position: relative; }
.cart-badge { position: absolute; top: -8px; right: -10px; background: var(--accent); color: #14110a; font-size: 0.62rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 100px; display: inline-grid; place-items: center; padding: 0 4px; }
.shop-page { padding-top: 80px; }
.shop-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 30px; }
.shop-card { background: var(--bg-alt); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.shop-card:hover { transform: translateY(-4px); border-color: rgba(201,169,106,0.4); }
.shop-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #15171b; }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-kind { position: absolute; top: 10px; left: 10px; background: rgba(13,14,16,0.78); color: var(--accent); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.shop-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.shop-card-title { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin: 0; }
.shop-card-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.6; flex: 1; }
.shop-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }
.shop-price { font-size: 1.15rem; color: var(--accent); }
.shop-variant { flex: 1; min-width: 0; padding: 8px 10px; font-size: 0.85rem; background: var(--bg-alt); color: var(--text); border: 1px solid var(--line); border-radius: 8px; }
.btn-primary.small { padding: 9px 16px; font-size: 0.85rem; white-space: nowrap; }

/* Suche */
.nav-search { font-size: 1.05rem; }
.search-form { display: flex; gap: 10px; max-width: 640px; margin: 8px 0 30px; }
.search-form input { flex: 1; padding: 13px 16px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-size: 1rem; }
.search-form input:focus { outline: none; border-color: var(--accent); }
.search-form .btn-primary { padding: 0 18px; }
.search-summary { margin: 0 0 24px; }
.search-group-title { font-size: 1.25rem; margin: 38px 0 16px; }
.search-stories { display: flex; flex-direction: column; gap: 10px; }
.search-story { display: flex; align-items: center; gap: 14px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; transition: border-color .2s; }
.search-story:hover { border-color: var(--accent); }
.search-story-thumb { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex: none; }
.search-story span { display: flex; flex-direction: column; gap: 3px; }

/* Instagram-Feed (Startseite) */
.insta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 26px; }
.insta-cell { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border-radius: 10px; background: var(--bg-alt); }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.insta-cell:hover img { transform: scale(1.06); }
.insta-cap { position: absolute; inset: auto 0 0 0; padding: 18px 10px 8px; font-size: .76rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.7)); opacity: 0; transition: opacity .25s; }
.insta-cell:hover .insta-cap { opacity: 1; }
.insta-ig { position: absolute; top: 8px; right: 9px; color: #fff; font-size: .9rem; opacity: 0; transition: opacity .25s; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.insta-cell:hover .insta-ig { opacity: .9; }

/* Angebot (öffentliche Ansicht) */
.offer-doc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 34px; margin: 24px 0 40px; }
.offer-head { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 18px; border-bottom: 2px solid var(--accent); }
.offer-brand { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.offer-sender { white-space: pre-line; }
.offer-meta { text-align: right; }
.offer-title { font-size: 1.4rem; margin: 0 0 4px; }
.offer-to { margin: 22px 0 16px; display: flex; flex-direction: column; gap: 2px; }
.offer-intro { line-height: 1.6; margin: 0 0 22px; }
.offer-table { width: 100%; border-collapse: collapse; margin: 0 0 18px; }
.offer-table th { text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--line); }
.offer-table td { padding: 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.offer-table .r { text-align: right; white-space: nowrap; }
.offer-sums { margin-left: auto; max-width: 320px; }
.osum { display: flex; justify-content: space-between; padding: 5px 0; color: var(--muted); }
.osum.total { border-top: 2px solid var(--accent); margin-top: 6px; padding-top: 10px; color: var(--text); font-size: 1.2rem; font-weight: 700; }
.offer-tax-note { margin: 14px 0 0; }
.offer-notes { margin: 18px 0 0; line-height: 1.6; white-space: pre-line; }
.offer-actions { margin-top: 26px; text-align: center; }

/* Termin-Kalender (Buchungsseite) */
.booking-cal { margin: 28px 0 32px; }
.booking-cal-title { font-size: 1.05rem; margin: 0 0 12px; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 16px; margin: 0 0 16px; font-size: 0.82rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-dot { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.cal-dot.free { background: var(--bg-alt); border: 1px solid var(--line); }
.cal-dot.booked { background: #6b5a2e; }
.cal-dot.blocked { background: #3a3d44; }
.cal-months { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.cal-month-label { font-weight: 600; margin: 0 0 10px; text-align: center; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-wd { text-align: center; font-size: 0.72rem; color: var(--muted); padding-bottom: 4px; }
.cal-day { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; border-radius: 7px; font-size: 0.85rem; border: 1px solid transparent; }
.cal-day.empty { background: none; }
.cal-day.past { color: #4a4d54; }
.cal-day.blocked { background: #2a2c31; color: #5c5f66; text-decoration: line-through; }
.cal-day.pick { cursor: pointer; background: var(--bg-alt); border-color: var(--line); color: var(--text); font: inherit; font-size: 0.85rem; transition: background .15s, border-color .15s; }
.cal-day.pick.booked { background: #4a3f22; color: #d8c48a; }
.cal-day.pick:hover { border-color: var(--accent); }
.cal-day.selected { background: var(--accent); border-color: var(--accent); color: #14150f; font-weight: 700; }
.cal-chosen { margin: 14px 0 0; }

.cart-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.cart-row { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 14px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.cart-thumb { width: 64px; height: 48px; border-radius: 6px; overflow: hidden; background: #15171b; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-main { display: flex; flex-direction: column; gap: 2px; }
.cart-qty { display: flex; align-items: center; gap: 8px; grid-column: 1 / -1; }
.cart-qty input { width: 64px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text); border-radius: 6px; padding: 7px 9px; }
.cart-line { font-weight: 600; white-space: nowrap; }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 4px; border-top: 1px solid var(--line); font-size: 1.2rem; }
.cart-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.link-danger { background: none; border: none; color: #d9645a; cursor: pointer; font: inherit; }

.checkout-summary { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin: 20px 0 26px; }
.co-row { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; color: var(--muted); }
.co-total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; color: var(--text); font-size: 1.1rem; }
.co-discount { color: var(--accent); }
.coupon-form { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; }
.coupon-form input { flex: 1; max-width: 240px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text); border-radius: 8px; padding: 10px 12px; font: inherit; text-transform: uppercase; }
.btn-ghost.small { padding: 9px 16px; font-size: 0.85rem; }
.co-pay-title { margin: 8px 0 0; }
.pay-options { display: flex; flex-wrap: wrap; gap: 14px; }
.pay-opt { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 8px; padding: 10px 16px; cursor: pointer; }

@media (min-width: 680px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-row { grid-template-columns: 64px 1fr 140px auto; }
  .cart-qty { grid-column: auto; }
}
@media (min-width: 1040px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
