/* ── 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; }
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;
}
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: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}
nav:hover { height: 80px; }

.nav-logo { display: flex; 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: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  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); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.25s;
}
body:not(.home) .hamburger { color: var(--page-text); }
body.home .hamburger { color: #fff; }

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

.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: flex; flex-direction: column; gap: 1.25rem; }
.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; }

/* ── 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: 2.5rem 0 4rem;
}

.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;
}
.hero-img-wrap img {
  width: auto;
  max-width: 100%;
  height: 92%;
  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 (serie.html) ──────────────────────────── */
.gallery-page {
  position: relative;
  z-index: 1;
  padding: 0 20px 4rem;
  max-width: var(--max);
  margin: 0 auto;
}

/* Galerie-Label über dem Grid */
.gallery-label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-bg-muted);
  padding: 1.5rem 0 1.25rem;
}

/* 2-Spalten-Mosaik — quadratische Bilder, Vollbreite */
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.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-head .page-header-img {
  height: clamp(4.5rem, 12vw, 8rem);
  filter: brightness(0) invert(73%) sepia(63%) saturate(371%) hue-rotate(186deg) brightness(105%) contrast(95%);
  opacity: 0.88;
}
.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(150,195,255,0.55);
}

.about-rule {
  margin-top: 1rem;
  border: none;
  border-bottom: 1px solid rgba(150,195,255,0.22);
}

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

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

/* ── ÜBER MICH — Anthrazit-Overrides ───────────────────── */
#ueber-mich .about-name         { color: rgba(31,31,31,0.55); }
#ueber-mich .about-rule         { border-bottom-color: rgba(31,31,31,0.20); }
#ueber-mich .about-accent       { background: rgba(31,31,31,0.28); }
#ueber-mich .about-block p      { color: rgba(31,31,31,0.90); }
#ueber-mich .about-rewild       { color: rgba(31,31,31,1); }
#ueber-mich .about-note         { background: rgba(31,31,31,0.06); border-color: rgba(31,31,31,0.18); }
#ueber-mich .about-note p       { color: rgba(31,31,31,0.62); }
#ueber-mich .about-head .page-header-img {
  filter: brightness(0) invert(12%);
  opacity: 0.85;
}

/* ── FEEDBACK & ANFRAGEN ────────────────────────────────── */
#feedback {
  padding-bottom: 5rem;
}

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

.feedback-headline {
  font-family: 'BaileywickJFGothic', var(--font-body);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  color: rgba(150,195,255,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(150,195,255,0.75);
  line-height: 1.7;
  border-bottom: 0.5px solid rgba(150,195,255,0.12);
}
.feedback-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(150,195,255,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(150,195,255,0.85);
  border: 2px solid rgba(150,195,255,0.45);
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.feedback-btn:hover {
  background: rgba(150,195,255,0.10);
  border-color: rgba(150,195,255,0.75);
}

@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: flex;
  align-items: center;
  justify-content: space-between;
  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: flex; gap: 2rem; list-style: none; }
.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; }
}

/* 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; }
  /* Gepard bleibt auf voller Höhe – Spalte clippt, statt Bild zu schrumpfen */
  .hero-img-wrap img { max-width: none; }
}

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

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

  .gallery-editorial { grid-template-columns: 1fr; }

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


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