/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --red:   #D63C1A;
  --red-d: #b32e11;

  --on-bg:        #ffffff;
  --on-bg-muted:  rgba(255,255,255,0.60);
  --on-bg-border: rgba(255,255,255,0.14);

  --page-bg: #f4f1ec;
  --page-text: #111111;
  --page-muted: #666666;
  --page-border: rgba(0,0,0,0.10);

  --font-display: Impact, 'Arial Narrow', 'Haettenschweiler', Arial, sans-serif;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max: 1400px;
  --pad: clamp(1.5rem, 4vw, 4rem);
}

body.theme-light {
  --on-bg:        #111111;
  --on-bg-muted:  rgba(0,0,0,0.55);
  --on-bg-border: rgba(0,0,0,0.14);
}
body.theme-dark {
  --on-bg:        #ffffff;
  --on-bg-muted:  rgba(255,255,255,0.60);
  --on-bg-border: rgba(255,255,255,0.14);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--page-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── BACKGROUND / OVERLAY (homepage only) ──────────────── */
body.home {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--on-bg);
}
#bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(0,0,0,0.22);
  transition: background 0.6s;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.4s;
}

/* Inner pages: solid nav */
body:not(.home) header {
  background: rgba(244,241,236,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--page-border);
}

/* Homepage: gradient veil so nav is always readable */
body.home header {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
}

nav {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: height 0.3s ease;
}
nav:hover { height: 80px; }

.nav-logo { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; }
.nav-logo img { height: 26px; width: auto; transition: height 0.3s ease; }
nav:hover .nav-logo img { height: 31px; }

/* On dark homepage: invert logo to white */
body.theme-dark .nav-logo img,
body.home:not(.theme-light) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links { display: -webkit-flex; display: flex; list-style: none; }
.nav-links > li { margin-right: 2.5rem; }
.nav-links > li:last-child { margin-right: 0; }
.nav-links a {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, font-size 0.3s ease;
}
nav:hover .nav-links a { font-size: 0.82rem; }

body:not(.home) .nav-links a { color: var(--page-muted); }
body:not(.home) .nav-links a:hover,
body:not(.home) .nav-links a.active { color: var(--red); }

body.home .nav-links a { color: rgba(255,255,255,0.75); }
body.home .nav-links a:hover,
body.home .nav-links a.active { color: #fff; }
body.theme-light.home .nav-links a { color: rgba(0,0,0,0.65); }
body.theme-light.home .nav-links a:hover { color: var(--page-text); }

/* Menü-Text-Button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body:not(.home) .hamburger { color: var(--page-text); }
body.home .hamburger { color: #fff; }

/* Nav-Overlay (unsichtbar, schließt Drawer per Tap) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 198;
}
.nav-overlay.open { display: block; }

.nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  z-index: 199;
  padding: 1.5rem var(--pad) 2rem;
  border-bottom: 1px solid var(--on-bg-border);
}
body:not(.home) .nav-drawer { background: var(--page-bg); border-color: var(--page-border); }
body.home      .nav-drawer { background: rgba(0,0,0,0.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; }
.nav-drawer ul > li { margin-bottom: 1.25rem; }
.nav-drawer ul > li:last-child { margin-bottom: 0; }
.nav-drawer a {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
body:not(.home) .nav-drawer a { color: var(--page-muted); }
body:not(.home) .nav-drawer a:hover { color: var(--red); }
body.home      .nav-drawer a { color: rgba(255,255,255,0.7); }
body.home      .nav-drawer a:hover { color: #fff; }

/* ── HOME-BALKEN ────────────────────────────────────────── */
.home-bar {
  height: 18vh;
  background-size: cover;
  background-position: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  scroll-margin-top: 64px;
}
.home-bar-logo {
  max-height: 50%;
  width: auto;
  max-width: 40%;
  display: block;
  object-fit: contain;
}

/* ── ONE-PAGE SCROLL SECTIONS ───────────────────────────── */
.sp-section {
  position: relative;
  background-size: cover;
  background-position: center;
  scroll-margin-top: 64px;
}
.sp-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0,0,0,0.18);
}
.sp-overlay--light { background: rgba(0,0,0,0.10); }

/* Sektions-Inhalt über dem Overlay halten */
.sp-section > main,
.sp-section > .gallery-page,
.sp-section > .container {
  position: relative;
  z-index: 1;
}

/* Inner-Seiten-Text auf dunklen Hintergründen lesbar */
#ueber-mich .about-text h2,
#ueber-mich .about-text p,
#ueber-mich .about-detail-row span,
#ueber-mich .about-detail-label,
#ueber-mich .about-detail { color: var(--page-text); border-color: var(--page-border); }
#kontakt .contact-layout h2,
#kontakt .contact-label,
#kontakt .contact-value { color: var(--on-bg); }
#kontakt .contact-value a { border-color: var(--on-bg-border); }
#kontakt .contact-value a:hover { color: var(--red); border-color: var(--red); }
#kontakt .page-header h1 { color: var(--red); }

/* Footer: eigener Hintergrund damit er nicht "schwebt" */
body.home footer { background: rgba(5,4,3,0.92); }

/* ── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
main { padding-top: 64px; }

/* ── HOMEPAGE: HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38fr 62fr;
  min-height: calc(100vh - 64px);
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
  gap: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0 4rem;
  min-width: 0;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-bg-muted);
}

.hero-display {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  user-select: none;
}

.hero-logo-img {
  width: 100%;
  max-width: clamp(340px, 52vw, 860px);
  height: auto;
  display: block;
}

.hero-tagline-img {
  width: 100%;
  max-width: clamp(340px, 52vw, 860px);
  height: auto;
  display: block;
}

.hero-cta {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.75; }

.hero-img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: calc(100vh - 64px);
  padding: 0 0 0 2rem;
  overflow: hidden;
  min-width: 0;
}
.hero-img-wrap img {
  width: auto;
  max-width: 100%;
  height: 95%;
  object-fit: contain;
  object-position: bottom center;
}

/* ── HOMEPAGE: STRIP ────────────────────────────────────── */
.strip-outer {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 3.5rem 0;
  border-top: 1px solid var(--on-bg-border);
  border-bottom: 1px solid var(--on-bg-border);
}
.strip-stage { display: flex; will-change: transform; }
.strip-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  height: clamp(280px, 32vw, 480px);
}
.strip-item img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }

/* ── HOMEPAGE: EDITORIAL BLOCK ──────────────────────────── */
.editorial-block {
  position: relative;
  z-index: 1;
  padding: 7rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.editorial-rule {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-bottom: 2.5rem;
}
.editorial-quote {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--on-bg);
  max-width: 88%;
}
.editorial-attr {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-bg-muted);
}

/* ── HOMEPAGE: GALLERY PREVIEW ──────────────────────────── */
.gallery-preview {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) 6rem;
  max-width: var(--max);
  margin: 0 auto;
}
.gp-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--on-bg-border);
}
.gp-label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.gp-link {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-bg-muted);
  transition: color 0.2s;
}
.gp-link:hover { color: var(--red); }

.gp-grid {
  display: grid;
  grid-template-columns: 62fr 38fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.gp-item { overflow: hidden; cursor: pointer; }
.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gp-item:hover img { transform: scale(1.04); }

.gp-item--a { grid-column: 1; grid-row: 1 / 3; aspect-ratio: 3/4; }
.gp-item--b { grid-column: 2; grid-row: 1; aspect-ratio: 1/1; }
.gp-item--c { grid-column: 2; grid-row: 2; aspect-ratio: 1/1; }

/* ── HOMEPAGE: SHOP ─────────────────────────────────────── */
.shop-section {
  position: relative;
  z-index: 1;
  padding: 5rem var(--pad) 7rem;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--on-bg-border);
}
.shop-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-bg-muted);
  margin-bottom: 0.6rem;
}
.shop-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--on-bg-border);
  transition: background 0.3s;
}
body:not(.home) .shop-card {
  background: #fff;
  border: 1px solid var(--page-border);
}
.shop-card:hover { background: rgba(255,255,255,0.12); }
body:not(.home) .shop-card:hover { background: #faf9f7; }

.shop-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(0,0,0,0.08);
}
body:not(.home) .shop-card-img { background: #edeae4; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.shop-card:hover .shop-card-img img { transform: scale(1.04); }

.shop-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-bg-muted);
}
body:not(.home) .shop-card-img--placeholder { color: var(--page-muted); }

.shop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.5rem;
}
.shop-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-bg);
  margin-bottom: 0.35rem;
}
body:not(.home) .shop-card-name { color: var(--page-text); }

.shop-card-sub {
  font-size: 0.7rem;
  color: var(--on-bg-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
body:not(.home) .shop-card-sub { color: var(--page-muted); }

.shop-card-details { list-style: none; flex: 1; margin-bottom: 1.25rem; }
.shop-card-details li {
  font-size: 0.7rem;
  color: var(--on-bg-muted);
  line-height: 1.75;
  padding-left: 1rem;
  position: relative;
}
body:not(.home) .shop-card-details li { color: var(--page-muted); }
.shop-card-details li::before { content: '–'; position: absolute; left: 0; }

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--on-bg-border);
}
body:not(.home) .shop-card-footer { border-color: var(--page-border); }

.shop-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--on-bg);
}
body:not(.home) .shop-price { color: var(--page-text); }

.shop-btn {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.shop-btn:hover { background: var(--red-d); }


/* ── GALLERY PAGE ────────────────────────────────────────────
   Wird von serie.html weiterhin verwendet (eigenständige Seite mit
   js/gallery.js). Auf index.html nicht mehr eingebunden — dort
   ersetzt durch #galerie/.kompo-section. Nicht entfernen. ──── */
.gallery-page {
  position: relative;
  z-index: 1;
  padding: 1.5rem 20px 4rem;
  max-width: var(--max);
  margin: 0 auto;
}

/* 3-Spalten-Raster (Desktop) */
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 0;
}
.ge-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}
.ge-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.ge-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.10);
}


/* ── FONT: BaileywickJFGothic ───────────────────────────── */
/* Schriftdatei in /fonts/ ablegen (z. B. BaileywickJFGothic.woff2) */
@font-face {
  font-family: 'BaileywickJFGothic';
  src: url('../fonts/BaileywickJFGothic.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── ÜBER MICH — NEW LAYOUT ─────────────────────────────── */
#ueber-mich {
  background: transparent;
  padding-bottom: 5rem;
}

.about-wrap {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 5rem var(--pad) 0;
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-weight: 400;
}

.about-head {
  margin-bottom: 2.5rem;
}
.about-name {
  margin: 0.6rem 0 0;
  padding-left: calc(2px + 1.25rem);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(145,194,211,0.55);
}

.about-rule {
  margin-top: 1rem;
  border: none;
  border-bottom: 1px solid rgba(145,194,211,0.22);
}

.about-block {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 1.75rem;
}
.about-block > * + * { margin-left: 1.25rem; }
.about-accent {
  flex-shrink: 0;
  width: 2px;
  background: rgba(145,194,211,0.28);
  border-radius: 1px;
}
.about-block p {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.85;
  color: rgba(145,194,211,0.85);
  margin: 0;
}
.about-rewild {
  color: rgba(145,194,211,0.97);
  letter-spacing: 0.06em;
}

.about-note {
  margin-top: 2rem;
  padding: 0.9rem 1.1rem;
  background: rgba(145,194,211,0.07);
  border: 0.5px solid rgba(145,194,211,0.20);
}
.about-note p {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(145,194,211,0.58);
  margin: 0;
  line-height: 1.6;
}

/* ── ÜBER MICH — Farb-Overrides (#ffffff) ───────────────── */
#ueber-mich .section-headline    { color: rgba(255,255,255,0.95); }
#ueber-mich .about-name          { color: rgba(255,255,255,0.55); }
#ueber-mich .about-rule          { border-bottom-color: rgba(255,255,255,0.20); }
#ueber-mich .about-accent        { background: rgba(255,255,255,0.28); }
#ueber-mich .about-block p       { color: rgba(255,255,255,0.92); }
#ueber-mich .about-rewild        { color: rgba(255,255,255,1); }

/* ── ÜBER MICH — Zweispaltiges Layout ──────────────────── */
#ueber-mich .about-wrap {
  max-width: var(--max);
  padding: 5rem 4% 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-divider { display: none; }

#ueber-mich .about-content {
  margin-left: 0;
  width: auto;
}

.about-ntcab {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}



.feedback-intro {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.85;
  color: rgba(145,194,211,0.85);
  margin: 0 0 0.6rem calc(2px + 1.25rem);
}

.section-headline {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  color: rgba(145,194,211,0.90);
  line-height: 1.05;
  margin: 0;
}

.feedback-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem calc(2px + 1.25rem);
}
.feedback-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.2rem;
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(145,194,211,0.75);
  line-height: 1.7;
  border-bottom: 0.5px solid rgba(145,194,211,0.12);
}
.feedback-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(145,194,211,0.40);
  font-size: 1.4em;
  line-height: 1.5;
}
.feedback-list li:last-child {
  border-bottom: none;
}

.feedback-btn {
  display: inline-block;
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(145,194,211,0.85);
  border: 2px solid rgba(145,194,211,0.45);
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.feedback-btn:hover {
  background: rgba(145,194,211,0.10);
  border-color: rgba(145,194,211,0.75);
}

/* ── ÜBER MICH — Kontaktspalte: Farb-Overrides (#ffffff) ── */
#ueber-mich .about-contact .section-headline  { color: rgba(255,255,255,0.95); }
#ueber-mich .about-contact .about-rule        { border-bottom-color: rgba(255,255,255,0.20); }
#ueber-mich .about-contact .about-accent      { background: rgba(255,255,255,0.28); }
#ueber-mich .about-contact .about-block p     { color: rgba(255,255,255,0.92); }
#ueber-mich .feedback-intro                   { color: rgba(255,255,255,0.92); }
#ueber-mich .feedback-list li                 { color: rgba(255,255,255,0.92); border-bottom-color: rgba(255,255,255,0.20); }
#ueber-mich .feedback-list li::before         { color: rgba(255,255,255,0.92); }
#ueber-mich .feedback-btn                     { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.70); }
#ueber-mich .feedback-btn:hover               { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.95); }

@media (max-width: 480px) {
  .about-wrap { padding: 3rem 1rem 0; }
  .about-block { gap: 0.75rem; }
}

/* ── INNER PAGES ────────────────────────────────────────── */
.page-header {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--page-border);
  margin-bottom: 3.5rem;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.page-header-img {
  height: clamp(2rem, 5vw, 4.5rem);
  width: auto;
  display: block;
}
.page-header p {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--page-muted);
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding-bottom: 6rem;
}
.about-layout--text-only {
  grid-template-columns: 1fr;
  max-width: 640px;
}
.about-text h2 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--page-muted);
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--page-text);
  margin-bottom: 1rem;
}
.about-detail {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--page-border);
}
.about-detail-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
}
.about-detail-label {
  color: var(--page-muted);
  min-width: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}

/* Contact */
.contact-layout { max-width: 460px; padding-bottom: 6rem; }
.contact-layout h2 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--page-muted);
  margin-bottom: 2rem;
}
.contact-item { margin-bottom: 1.5rem; }
.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--page-muted);
  margin-bottom: 0.3rem;
}
.contact-value { font-size: 1rem; }
.contact-value a {
  border-bottom: 1px solid var(--page-border);
  transition: color 0.2s, border-color 0.2s;
}
.contact-value a:hover { color: var(--red); border-color: var(--red); }

/* Legal */
.legal-content { max-width: 660px; padding-bottom: 6rem; }
.legal-content h2 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--page-muted);
  margin: 2rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.9rem; line-height: 1.75; color: #555; margin-bottom: 0.5rem; }
.legal-content a { text-decoration: underline; text-underline-offset: 2px; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 500;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  cursor: default;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
}
body.home footer { border-top: 1px solid var(--on-bg-border); }
body:not(.home) footer { background: #fff; border-top: 1px solid var(--page-border); }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--pad);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.home .footer-copy { color: var(--on-bg-muted); }
body:not(.home) .footer-copy { color: var(--page-muted); }

.footer-links { display: -webkit-flex; display: flex; list-style: none; }
.footer-links > li { margin-right: 2rem; }
.footer-links > li:last-child { margin-right: 0; }
.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
body.home .footer-links a { color: var(--on-bg-muted); }
body.home .footer-links a:hover { color: var(--red); }
body:not(.home) .footer-links a { color: var(--page-muted); }
body:not(.home) .footer-links a:hover { color: var(--red); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Hero bleibt zweispaltig — nur sanfte Proportionsverschiebung */
  .hero { grid-template-columns: 35fr 65fr; }

  .gp-grid { grid-template-columns: 1fr; }
  .gp-item--a, .gp-item--b, .gp-item--c { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }

  .shop-grid { grid-template-columns: 1fr 1fr; }

  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── KOMPOSITOR ──────────────────────────────────────────── */
.kompo-section {
  background: #fff;
  color: #000;
  padding: 4rem 20px;
}

.kompo-galerie-title {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: 2.5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: #000;
  letter-spacing: 0.15em;
  text-align: center;
  max-width: var(--max);
  margin: 0 auto 0.5rem;
}

.kompo-headline-br { display: none; }

.kompo-headline {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: 2.5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: #000;
  line-height: 1.05;
  text-align: center;
  max-width: var(--max);
  margin: 0 auto 2rem;
}

/* Pfad-Konfiguration */
.kompo-config {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid #eee;
}
.kompo-path-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: text;
}
.kompo-path-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #bbb;
  font-family: var(--font-body);
  white-space: nowrap;
  user-select: none;
}
.kompo-path-input {
  font-size: 0.68rem;
  font-family: monospace;
  color: #999;
  background: none;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.1rem 0.15rem;
  width: 11rem;
  outline: none;
  transition: all 0.35s ease;
}
.kompo-path-input:focus {
  color: #333;
  border-bottom-color: #aaa;
}

/* Haupt-Grid: linke Spalte (Strips) + rechte Spalte (Canvas) */
.kompo-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}

/* Linke Spalte: Motiv + Hintergrund übereinander */
.kompo-left {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.kompo-left > * + * { margin-top: 2.5rem; }

/* Einzelner Strip-Bereich */
.kompo-area {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.kompo-area > * + * { margin-top: 0.75rem; }

.kompo-heading {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  font-family: var(--font-body);
  text-align: center;
  width: 100%;
}

/* Pfeile: absolut positioniert links/rechts im Strip-Wrapper */
.kompo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.kompo-arrow svg { display: block; width: 30px; height: 30px; }
.kompo-arrow svg polyline { stroke-width: 2.5; }
.kompo-arrow:disabled { color: #ccc; cursor: default; }
.kompo-arrow:not([disabled]):hover { opacity: 0.5; }
#kompo-motif-prev, #kompo-bg-prev { left: 0; }
#kompo-motif-next, #kompo-bg-next { right: 0; }

/* Horizontaler Strip-Wrapper: relativer Anker für absolute Pfeile */
.kompo-hstrip-wrap {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 52px;
  overflow: hidden;
}

/* Horizontaler Strip */
.kompo-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 12px;
  overflow: hidden;
  min-width: 0;
  transition: opacity 0.175s ease;
}

/* Slots */
.kompo-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.kompo-slot[data-offset="0"]  { opacity: 1; }
.kompo-slot[data-offset="-1"],
.kompo-slot[data-offset="1"]  { opacity: 0.4; cursor: pointer; }

/* Motiv-Strip: Slot-Größen (Breite × Höhe) */
.kompo-strip--motif .kompo-slot[data-offset="0"]               { width: 300px; height: 330px; }
.kompo-strip--motif .kompo-slot[data-offset="-1"],
.kompo-strip--motif .kompo-slot[data-offset="1"]               { width: 180px; height: 198px; }
.kompo-strip--motif .kompo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Hintergrund-Strip: Bildgrößen (Desktop: cover-quadratisch) */
.kompo-strip--bg .kompo-slot img {
  display: block;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.kompo-strip--bg .kompo-slot[data-offset="0"] img            { width: 280px; height: 280px; }
.kompo-strip--bg .kompo-slot[data-offset="-1"] img,
.kompo-strip--bg .kompo-slot[data-offset="1"] img            { width: 168px; height: 168px; }

/* Rechte Spalte: Kompositions-Canvas */
.kompo-right {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}
.kompo-right > * + * { margin-top: 0.75rem; }

.kompo-canvas {
  width: 100%;
  /* aspect-ratio fallback for Safari < 15 */
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
  transition: opacity 0.175s ease;
}
@supports (aspect-ratio: 1) {
  .kompo-canvas {
    padding-top: 0;
    aspect-ratio: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}

.kompo-placeholder {
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--font-body);
  line-height: 1.5;
}

.kompo-motif-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 98%;
  max-height: 98%;
  object-fit: contain;
  display: none;
  user-select: none;
  pointer-events: none;
}

.kompo-combo {
  font-size: 0.72rem;
  color: #555;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  min-height: 1.1em;
}

/* ── Kompositor-Preisliste ──────────────────────────────────── */
.kompo-pricelist {
  max-width: var(--max);
  margin: 2rem auto 0;
}

.kompo-pricelist-headline {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: 2.5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: #000;
  line-height: 1.05;
  margin: 0 0 0.3rem;
}

.kompo-pricelist-subheadline {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: 1.8rem;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #000;
  line-height: 1.1;
  margin: 0 0 1.75rem;
}

.kompo-pricelist-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: baseline;
  align-items: baseline;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
  padding: 0.75rem 0 0.25rem;
  font-family: 'BaileywickJFGothic', var(--font-body);
}

.kompo-pricelist-row span:first-child {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}

.kompo-pricelist-row span:last-child {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-left: 1.5rem;
  white-space: nowrap;
  text-align: right;
}

.kompo-pricelist-row:hover { text-decoration: underline; }

.kompo-pricelist-desc {
  font-size: 0.78rem;
  color: #777;
  font-family: 'BaileywickJFGothic', var(--font-body);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.kompo-pricelist-rule {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0;
}

/* Erstbesuch-Hinweistext */
.kompo-hint {
  font-size: 0.65rem;
  color: #aaa;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: var(--font-body);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  user-select: none;
}
.kompo-hint--visible { opacity: 1; }

/* Tablet-Hochformat / schmales Fenster */
@media (max-width: 700px) {
  .hero { grid-template-columns: 42fr 58fr; }
  .hero-text { padding: 2.5rem 0 2rem; gap: 1rem; }
  .hero-img-wrap { padding-left: 0.5rem; }
}

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

  .shop-grid { grid-template-columns: 1fr; }

  .gallery-editorial { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── MOBILE / HOCHFORMAT: vertikale Abstände verkleinern ──
   Gilt nur für schmale bzw. Portrait-Viewports. Desktop-Layout
   (min-width: 769px, Querformat) bleibt unverändert. ────── */
@media (max-width: 768px), (orientation: portrait) {

  /* Navbar: exakt viewport-breit halten, Logo links / Burger rechts
     bleiben innerhalb des sichtbaren Bereichs */
  header, nav, .nav-drawer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Hero: nicht mehr die volle Bildschirmhöhe erzwingen,
     damit Headline + Bild ohne Scrollen sichtbar sind */
  .hero { min-height: auto; padding-top: 1rem; padding-bottom: 1rem; max-width: 100%; }
  .hero-text { padding: 0.5rem 0 1rem; gap: 0.75rem; }
  .hero-img-wrap {
    height: auto;
    max-height: 65vh;
    padding-top: 0.5rem;
    padding-bottom: 0;
  }
  .hero-img-wrap img { height: auto; max-height: 65vh; }

  /* Über mich / Feedback: Kopf-, Block- und Sektionsabstände kürzen */
  .about-wrap { padding-top: 2rem; }
  .about-head { margin-bottom: 1.25rem; }
  .about-block { margin-bottom: 1rem; }
  .about-note { margin-top: 1rem; }
  .feedback-list { margin-bottom: 1.25rem; }
  #ueber-mich, #feedback { padding-bottom: 2.5rem; }

  /* Über mich: einspaltig stapeln */
  #ueber-mich .about-wrap { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 4% 3rem; }
  .about-divider { display: block; height: 2px; background: #fff; margin: 24px -4%; }
  #ueber-mich .about-block p { font-size: 0.95rem; line-height: 1.7; }


  /* Galerie: 2 Spalten im Hochformat (serie.html) */
  .gallery-editorial { grid-template-columns: repeat(2, 1fr); gap: 10px; }


  /* Kompositor: einspaltig stapeln, minimale Abstände */
  .kompo-section { padding: 1rem 20px; }
  .kompo-galerie-title {
    font-size: clamp(2rem, 13vw, 5rem);
    letter-spacing: clamp(0.4rem, 5.5vw, 2rem);
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .kompo-headline-br { display: block; }
  .kompo-headline { font-size: clamp(2rem, 7.5vw, 4rem); }
  .kompo-wrap { grid-template-columns: 1fr; gap: 6px; align-items: start; }
  .kompo-left { gap: 6px; }
  .kompo-area { gap: 4px; padding: 0; }
  .kompo-heading { margin: 0; padding: 2px 0; }

  /* Strip-Wrapper: Höhe durch Inhalt bestimmt — kein aspect-ratio, kein fester height */
  .kompo-hstrip-wrap { aspect-ratio: unset; height: auto; align-items: center; }
  .kompo-strip { align-items: center; height: auto; min-height: 0; }
  .kompo-slot { height: auto; }

  /* Nur aktives Element sichtbar, füllt die verfügbare Breite */
  .kompo-slot[data-offset="-1"],
  .kompo-slot[data-offset="1"]                                   { display: none; }
  .kompo-strip--motif .kompo-slot[data-offset="0"]               { width: 100%; height: auto; }
  .kompo-strip--bg    .kompo-slot[data-offset="0"]               { width: 100%; height: auto; }

  /* Motiv-Bild: volle Breite, Höhe proportional, max 38vh */
  .kompo-strip--motif .kompo-slot img {
    width: 100%; height: auto; max-height: 38vh;
    object-fit: contain;
  }

  /* BG-Bild: volle Breite, Originalproportionen, max 32vh */
  .kompo-strip--bg .kompo-slot img {
    width: 100%; height: auto; max-height: 32vh;
    object-fit: contain;
  }

  /* Innenseiten (Impressum, Datenschutz, ...) */
  .page-header { padding: 2rem 0 1.25rem; margin-bottom: 1.5rem; }

  /* Schriftgrößen leicht reduzieren, damit mehr Inhalt ohne
     Scrollen in den sichtbaren Bereich passt */
  .section-headline { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .about-block p, .feedback-intro { font-size: clamp(0.95rem, 4vw, 1.1rem); line-height: 1.6; }
  .feedback-list li { font-size: clamp(0.9rem, 3.5vw, 1rem); }
}


@media (prefers-reduced-motion: reduce) {
  .strip-stage { animation: none !important; }
  .ge-item img, .gp-item img { transition: none; }
}


/* ══ SHOP / WERKE ═══════════════════════════════════════════════════════════ */

.shop-section {
  background: #fff;
  padding-top: 4rem;
}

.shop-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.shop-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #000;
}

.shop-row:last-child {
  border-bottom: 1px solid #000;
}

.shop-img-col {
  background-color: #ebebeb;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 10%;
  box-sizing: border-box;
  border-right: 1px solid #000;
}

.shop-img-col img {
  max-width: 100%;
  max-height: 45vh;
  object-fit: contain;
  display: block;
}

.shop-img-col--featured {
  min-height: 80vh;
}

.shop-img-col--featured img {
  max-height: 70vh;
}

.shop-text-col {
  background: #fff;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8%;
  box-sizing: border-box;
}

.shop-text-col p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.8;
  color: #000;
  font-weight: 400;
}

.shop-text-title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shop-price-row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.8;
  color: #000;
  font-weight: 400;
}
.shop-price-row--has-price {
  justify-content: space-between;
}

.shop-contact-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}
.shop-contact-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px), (orientation: portrait) {
  .shop-row {
    grid-template-columns: 1fr;
  }
  .shop-img-col {
    min-height: 50vw;
    border-right: none;
    border-bottom: 1px solid #000;
  }
  .shop-text-col {
    min-height: auto;
    justify-content: flex-start;
  }
}
