@font-face { font-family: 'Instrument Sans'; src: url('fonts/instrument-sans-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('fonts/instrument-sans-600.woff2') format('woff2'); font-weight: 500 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Mono'; src: url('fonts/space-mono-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Mono'; src: url('fonts/space-mono-700.woff2') format('woff2'); font-weight: 500 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('fonts/archivo-700.woff2') format('woff2'); font-weight: 500 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('fonts/archivo-800.woff2') format('woff2'); font-weight: 800 900; font-style: normal; font-display: swap; }

:root {
  --bg: #080706;
  --surface: #12100e;
  --surface-hover: #1c1917;
  --ink: #f3f2ee;
  --paper: #f3f2ee;
  --graphite: #7d7a75;
  --rule: rgba(243, 242, 238, 0.08);
  --rule-strong: rgba(243, 242, 238, 0.16);
  --accent: #c84b31;
}

/* Global Typography, Mobile Responsiveness & Basisregeln */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  hyphens: none !important;
  word-break: normal;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  background-color: var(--bg);
  color: var(--paper);
}

img, video {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

p, li, blockquote, .label, a, span {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* Touch targets & Mobile Defaults */
button, .btn, .nav a, .filter-btn, input, select, textarea, .cfg-tile {
  touch-action: manipulation;
}

@media (max-width: 768px) {
  :root {
    --pad: clamp(16px, 5vw, 24px);
  }
  
  .btn, .btn-submit {
    min-height: 48px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Duo-CTA Action Group & Buttons */
.cta-action-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cta-action-group.align-center {
  justify-content: center;
}

.btn-primary {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  font-weight: 600;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-weight: 500;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .cta-action-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-action-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Contact form input highlight on focus/hash-target */
@keyframes formFieldPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); border-color: #ffffff; }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3); border-color: #ffffff; }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); border-color: rgba(255, 255, 255, 0.15); }
}
.field-highlight {
  animation: formFieldPulse 1.5s ease-out 2;
  border-color: #ffffff !important;
}

/* Kapitelüberschriften für mehrteilige Case Studies */
.chapter-head { margin: clamp(64px, 8vw, 96px) 0 32px; max-width: 60ch; }
.chapter-head .label { display: block; margin-bottom: 12px; }
.chapter-head h2 { font-family: var(--display); font-size: clamp(24px, 3.5vw, 40px); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.chapter-head p { margin-top: 16px; color: var(--graphite); font-size: 16px; line-height: 1.65; }

/* Video-Grid 9:16 */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
@media (max-width: 700px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.video-item { position: relative; aspect-ratio: 9/16; overflow: hidden; border-radius: 12px; cursor: pointer; background: var(--surface); }
.video-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.video-item:hover img { transform: scale(1.04); }
.play-badge { position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.92); color: #000; display: flex; align-items: center; justify-content: center; font-size: 20px; pointer-events: none; }

/* ---------- SCHWEIZER RASTER & EDITORIAL HERO SYSTEM ---------- */
:root {
  --grid-max: 1460px;
  --grid-margin: clamp(24px, 4.5vw, 68px);
}

.site-frame {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding-left: var(--grid-margin);
  padding-right: var(--grid-margin);
  width: 100%;
}

.editorial-hero-stage {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-image-underlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.72;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 18%, black 60%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 18%, black 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-typo-box {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: clamp(60px, 8vw, 100px) 0;
}
.hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #c83d1c;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}
.monument-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.93;
  margin: 0 0 24px 0;
}
.monument-title .solid-line {
  display: block;
  color: #ffffff;
  white-space: nowrap;
}
.monument-title .outline-line {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.title-scale-bold .solid-line { font-size: clamp(44px, 5.8vw, 82px); letter-spacing: -0.035em; }
.title-scale-bold .outline-line { font-size: clamp(42px, 5.4vw, 76px); letter-spacing: -0.035em; }

.title-scale-medium .solid-line { font-size: clamp(34px, 4.4vw, 64px); letter-spacing: -0.03em; }
.title-scale-medium .outline-line { font-size: clamp(30px, 3.8vw, 56px); letter-spacing: -0.03em; }

.title-scale-compact .solid-line { font-size: clamp(26px, 3.5vw, 50px); letter-spacing: -0.035em; }
.title-scale-compact .outline-line { font-size: clamp(26px, 3.5vw, 50px); letter-spacing: -0.03em; }

.hero-lead-paragraph {
  font-family: var(--body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: #d1d1d6;
  max-width: 520px;
  margin: 0;
}

.editorial-statement-strip {
  width: 100%;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(44px, 6vw, 76px);
}
.statement-grid {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: baseline;
}
.statement-lead {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c83d1c;
}
.statement-body {
  font-family: var(--body);
  font-size: clamp(16px, 1.35vw, 18.5px);
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.005em;
  max-width: 960px;
}

@media (max-width: 960px) {
  .hero-image-underlay {
    width: 100%;
    opacity: 0.35;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  }
  .hero-typo-box { max-width: 100%; padding: 60px 0 40px; }
  .monument-title .solid-line, .monument-title .outline-line { white-space: normal; }
  .statement-grid { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
}

/* ---------- PRO EDITORIAL INDEX (VOLLSTÄNDIGER FIX) ---------- */
.editorial-index-strip {
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 5;
}

.index-grid {
  display: grid;
  /* Asymmetrisch: Ort schmaler, Konzept & Fokus breiter */
  grid-template-columns: 1.22fr 1.25fr 0.72fr 1.4fr 1.4fr;
  align-items: stretch;
}

.index-col {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.index-col:not(:first-child) {
  padding-left: 20px;
}

.index-col:last-child {
  border-right: none;
  padding-right: 0;
}

.index-num {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #727278;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.index-val {
  font-family: var(--body);
  font-size: 12.8px;
  font-weight: 500;
  color: #f0f0f2;
  line-height: 1.42;
  letter-spacing: -0.005em;
}

@media (max-width: 1140px) {
  .index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .index-col:nth-child(3) {
    border-right: none;
    padding-right: 0;
  }
  .index-col:nth-child(4) {
    padding-left: 0;
    border-top: 1px solid var(--rule);
  }
  .index-col:nth-child(5) {
    border-top: 1px solid var(--rule);
    border-right: none;
  }
}

@media (max-width: 760px) {
  .index-grid {
    grid-template-columns: 1fr 1fr;
  }
  .index-col {
    padding: 16px 14px 16px 0;
  }
  .index-col:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
  .index-col:nth-child(2n+1) {
    padding-left: 0;
  }
  .index-col:nth-child(3),
  .index-col:nth-child(4),
  .index-col:nth-child(5) {
    border-top: 1px solid var(--rule);
  }
}

/* ---- Galerie: Einheitliche Vorschaugrößen (Ruhe & Symmetrie) ---- */
.editorial-gallery,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5; /* Einheitliches Basisformat pro Kachel */
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 0 !important;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  border-radius: 0 !important;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.025);
}

/* Querformat / Full-Width Kacheln: Unbeschnitten, volle Zeilenbreite */
.gallery-hero-item,
.gallery-item.full-width,
.gallery-item.full-landscape,
.gallery-item.gallery-hero-item {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
  width: 100%;
  max-height: 80vh;
}

.gallery-hero-item.ratio-wide,
.gallery-item.ratio-wide {
  aspect-ratio: 16 / 9;
  grid-column: 1 / -1;
}

.gallery-hero-item img,
.gallery-item.full-width img,
.gallery-item.full-landscape img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
}

/* Helper-Klassen für gezielte Formate */
.gallery-item.ratio-square    { aspect-ratio: 1 / 1; }
.gallery-item.ratio-landscape { aspect-ratio: 3 / 2; }
.gallery-item.ratio-portrait  { aspect-ratio: 4 / 5; }

/* 3er-Reihe für ungerade Porträt-Sets */
.gallery-trio {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}

@media (max-width: 860px) {
  .editorial-gallery,
  .gallery-grid,
  .gallery-trio {
    grid-template-columns: 1fr;
  }
}






/* ---------- PROPORTIONALE FEED- & MOCKUP-DARSTELLUNG (KEINE VERZERRUNG) ---------- */
.feed-showcase,
.social-showcase,
.mockup-wrap,
.curation-stage,
[class*="feed"]:not(.insta-feed-grid):not(.insta-feed-item):not(.social-feed-grid):not(.social-feed-thumb),
[class*="mockup"] {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.feed-showcase img,
.social-showcase img,
.mockup-wrap img,
.curation-stage img,
img[src*="instagram-feed"],
img[src*="feed-curation"],
img[src*="mockup"] {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}




/* ==========================================================================
   HALTUNGS-SEKTION / PRINZIPIEN (EDITORIAL 3-SPALTEN-RASTER)
   ========================================================================== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(40px, 5vw, 64px);
}

.principle-card {
  padding: clamp(32px, 3.5vw, 48px) clamp(24px, 2.5vw, 36px);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: background-color 0.3s ease;
}

.principle-card:first-child {
  padding-left: 0;
}

.principle-card:last-child {
  border-right: none;
  padding-right: 0;
}

.principle-card:hover {
  background: rgba(255, 255, 255, 0.015);
}

.principle-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--graphite);
  margin-bottom: clamp(20px, 2vw, 28px);
  display: block;
}

.principle-title {
  font-family: var(--display);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
  text-wrap: balance;
}

.principle-text {
  font-family: var(--body);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.62;
  color: rgba(243, 242, 238, 0.68);
  margin-bottom: 14px;
  text-wrap: pretty;
}

.principle-punchline {
  font-family: var(--body);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  margin-top: auto;
  text-wrap: pretty;
}

@media (max-width: 960px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .principle-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 36px 0;
  }
  .principle-card:last-child {
    border-bottom: none;
  }
}



/* ==========================================================================
   STARTSEITEN-HERO MIT HINTERGRUNDBILD
   ========================================================================== */
.hero-home {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 12vw, 150px) 0 clamp(60px, 8vw, 100px);
  background-color: var(--bg, #080706);
}

.home-hero-bg {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  object-position: left top;
  transform: translate(-4vw, 55px);
  opacity: 0.78;
  filter: brightness(1.18);
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 7, 6, 0.42) 0%, rgba(8, 7, 6, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--pad, 24px);
}

.hero-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--graphite, #7d7a75);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 7.5vw, 104px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text, #f3f2ee);
  max-width: 1200px;
  margin: 0 auto 32px;
  text-wrap: balance;
}

.hero-text-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.hero-text-wrap p {
  font-family: var(--body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: rgba(243, 242, 238, 0.78);
  margin-bottom: 14px;
  text-wrap: pretty;
}

.hero-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--graphite, #7d7a75);
  text-transform: uppercase;
  margin-top: 28px;
}


/* ==========================================================================
   HALTUNG / PRINZIPIEN (SARTORIAL OBSIDIAN SYSTEM)
   ========================================================================== */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: var(--pad, clamp(20px, 4vw, 48px));
  padding-right: var(--pad, clamp(20px, 4vw, 48px));
  width: 100%;
}

.section-haltung {
  padding: clamp(72px, 9vw, 130px) 0;
  border-top: 1px solid var(--rule);
  background-color: var(--bg);
}

.haltung-header {
  margin-bottom: clamp(36px, 4.5vw, 56px);
  text-align: left;
}

.haltung-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--graphite);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.haltung-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}

/* ============================================
   PRINZIPIEN / HALTUNG — SCHRITT 2 (GRID & KARTEN)
   ============================================ */

.haltung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  border: 1px solid var(--rule);
  background-color: var(--surface);
}

.haltung-card {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 3.5vw, 56px);
  border-left: 1px solid var(--rule);
  border-right: none;
  border-top: none;
  border-bottom: none;
  background: transparent;
  box-sizing: border-box;
  transition: background-color 0.25s var(--ease);
}

.haltung-card:first-child {
  border-left: none;
}

.haltung-card:hover {
  background: rgba(255, 255, 255, 0.015);
}

/* 2a: Rahmen auf Textelementen entfernen */
.haltung-card-num,
.haltung-card-title,
.haltung-card-text,
.haltung-card-punchline {
  border: none !important;
}

.haltung-card-num {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--graphite);
  margin-bottom: clamp(18px, 2vw, 26px);
  display: block;
}

.haltung-card-title {
  font-family: var(--display);
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
  text-wrap: balance;
}

.haltung-card-text {
  font-family: var(--body);
  font-size: clamp(13.5px, 1vw, 15.5px);
  line-height: 1.62;
  color: rgba(243, 242, 238, 0.68);
  margin-bottom: 24px;
  text-wrap: pretty;
}

/* 2b: Schlusszeile unten bündig verankern */
.haltung-card-punchline {
  font-family: var(--body);
  font-size: clamp(13.5px, 1vw, 15.5px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  margin-top: auto;
  padding-top: 32px;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .haltung-grid {
    grid-template-columns: 1fr;
  }
  .haltung-card {
    border-left: none;
    border-top: 1px solid var(--rule);
  }
  .haltung-card:first-child {
    border-top: none;
  }
}

/* ==========================================================================
   LOOKBOOK LIGHTBOX ENGINE (SARTORIAL OBSIDIAN // FAIL-SAFE)
   ========================================================================== */
.gallery-item img,
.gallery-hero-item img,
.gallery-trio img,
.gallery-pair img,
.case-gallery img,
main section img:not(.home-hero-bg) {
  cursor: pointer !important;
}

.lightbox-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: rgba(8, 7, 6, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: clamp(20px, 4vw, 60px) !important;
  box-sizing: border-box !important;
}

.lightbox-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.lightbox-counter {
  position: absolute !important;
  top: 24px !important;
  left: clamp(20px, 4vw, 60px) !important;
  font-family: var(--mono, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  color: #7d7a75 !important;
  text-transform: uppercase !important;
  user-select: none !important;
  z-index: 1000001 !important;
}

.lightbox-close {
  position: absolute !important;
  top: 24px !important;
  right: clamp(20px, 4vw, 60px) !important;
  background: transparent !important;
  border: 1px solid rgba(243, 242, 238, 0.12) !important;
  font-family: var(--mono, monospace) !important;
  font-size: 10.5px !important;
  letter-spacing: 0.18em !important;
  color: #f3f2ee !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  padding: 8px 14px !important;
  transition: all 0.2s ease !important;
  z-index: 1000001 !important;
}

.lightbox-close:hover {
  background: rgba(243, 242, 238, 0.08) !important;
  border-color: rgba(243, 242, 238, 0.3) !important;
}

.lightbox-stage {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 90vw !important;
  max-height: 84vh !important;
  z-index: 1000000 !important;
}

.lightbox-img {
  max-width: 88vw !important;
  max-height: 82vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  border: 1px solid rgba(243, 242, 238, 0.1) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95) !important;
  user-select: none !important;
  transition: opacity 0.15s ease !important;
}

.lightbox-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(18, 16, 14, 0.7) !important;
  border: 1px solid rgba(243, 242, 238, 0.12) !important;
  color: #f3f2ee !important;
  font-family: var(--mono, monospace) !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  padding: 16px 20px !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  transition: all 0.2s ease !important;
  user-select: none !important;
  z-index: 1000001 !important;
}

.lightbox-prev {
  left: clamp(16px, 3vw, 40px) !important;
}

.lightbox-next {
  right: clamp(16px, 3vw, 40px) !important;
}

.lightbox-nav-btn:hover {
  background: #12100e !important;
  border-color: rgba(243, 242, 238, 0.35) !important;
}

@media (max-width: 768px) {
  .lightbox-nav-btn {
    display: none !important;
  }
}

/* ==========================================================================
   EDITORIAL SPLIT HERO (SARTORIAL OBSIDIAN // 1:1 LOOKBOOK HERO)
   ========================================================================== */
.case-hero-editorial {
  position: relative;
  min-height: clamp(540px, 78vh, 820px);
  display: flex;
  align-items: center;
  background-color: var(--bg, #080706);
  overflow: hidden;
  border-bottom: 1px solid var(--rule, rgba(243, 242, 238, 0.08));
}

.case-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.case-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Weicher, filmischer Verlauf von links (tiefes Obsidian) ins Foto */
.case-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #080706 0%,
    #080706 28%,
    rgba(8, 7, 6, 0.92) 42%,
    rgba(8, 7, 6, 0.6) 58%,
    rgba(8, 7, 6, 0.15) 82%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.case-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.case-hero-content {
  max-width: 640px;
}

.case-hero-kicker {
  display: inline-block;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent, #c84b31);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.case-hero-title {
  margin-bottom: 26px;
}

.case-hero-title .title-solid {
  display: block;
  font-family: var(--display, 'Archivo', sans-serif);
  font-size: clamp(38px, 6.2vw, 88px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink, #f3f2ee);
}

.case-hero-title .title-outline {
  display: block;
  font-family: var(--display, 'Archivo', sans-serif);
  font-size: clamp(38px, 6.2vw, 88px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink, #f3f2ee);
}

.case-hero-lead {
  font-family: var(--body, 'Instrument Sans', sans-serif);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.62;
  color: rgba(243, 242, 238, 0.76);
  max-width: 520px;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .case-hero-editorial {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .case-hero-media {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: 32px;
  }
  .case-hero-fade {
    background: linear-gradient(to top, #080706 0%, transparent 60%);
  }
  .case-hero-content {
    max-width: 100%;
  }
}

/* ==========================================================================
   SITE NAVIGATION (SARTORIAL OBSIDIAN // ROBUSTES 2- & 3-ITEM FLEX-LAYOUT)
   ========================================================================== */
.site-nav {
  width: 100%;
  border-bottom: 1px solid var(--rule, rgba(243, 242, 238, 0.08));
  padding: 24px 0;
  background: var(--bg, #080706);
  position: relative;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink, #f3f2ee);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: auto !important;
  padding-right: 36px;
}

/* margin-left: auto schiebt Nav-Links und Back-Button verbindlich ganz nach rechts */
.nav-links,
.nav-back {
  margin-left: auto !important;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  white-space: nowrap;
}

.nav-links a,
.nav-back {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite, #7d7a75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-back:hover {
  color: var(--ink, #f3f2ee);
}

/* Zeitanzeige: Rechts neben den Links, getrennt durch 1px Haarlinie */
.studio-time {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--graphite, #7d7a75);
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  user-select: none;
  margin-left: clamp(16px, 2vw, 24px) !important;
  padding-left: clamp(16px, 2vw, 24px) !important;
  border-left: 1px solid var(--rule, rgba(243, 242, 238, 0.08)) !important;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .studio-time {
    display: none !important;
  }
}

/* ============================================
   TYPOGRAFIE-GRUNDREGELN — global
   ============================================ */

h1, h2, h3, h4 { text-wrap: balance; hyphens: none; }
p, li, blockquote { text-wrap: pretty; hyphens: none; }

h1 { line-height: 1.02; }
h2 { line-height: 1.12; }
h3 { line-height: 1.22; }
p  { line-height: 1.6; }

:root {
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
}

.label + h2, .label + h3 { margin-top: var(--space-sm); }
h2 + p, h3 + p { margin-top: var(--space-md); }
p + p { margin-top: var(--space-md); }

/* ==========================================================================
   GLOBAL RESPONSIVE ENGINE — CASE STUDIES & NAVIGATION (MOBILE & TABLET)
   ========================================================================== */

/* 1. Galerieraster-Architektur (Desktop-Basis) */
.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vw, 44px);
  margin-top: clamp(40px, 5vw, 72px);
  margin-bottom: clamp(60px, 7vw, 96px);
  width: 100%;
}

.gallery-hero-item {
  width: 100%;
}

.gallery-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
  width: 100%;
}

.gallery-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
  width: 100%;
}

.gallery-item img,
.gallery-hero-item img,
.gallery-pair img,
.gallery-trio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2. Tablet & Smartphone Umbruch (<= 900px) */
@media (max-width: 900px) {
  .gallery-pair,
  .gallery-trio {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .gallery-stack {
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 56px;
  }
}

/* 3. Navigation auf Smartphones (< 680px & < 420px) */
@media (max-width: 680px) {
  .site-nav {
    padding: 18px 0;
  }

  .nav-inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .nav-brand {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-right: auto !important;
    padding-right: 12px;
  }

  .nav-links,
  .nav-back {
    gap: 14px !important;
  }

  .nav-links a,
  .nav-back {
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 420px) {
  .nav-brand {
    font-size: 9.5px;
  }

  .nav-links {
    gap: 10px !important;
  }

  .nav-links a {
    font-size: 8.5px;
    letter-spacing: 0.1em;
  }
}

/* ==========================================================================
   CASE STUDY FOOTER (LOOKBOOK // SAUBERE TRENNUNG LINKS & RECHTS)
   ========================================================================== */
.case-footer {
  width: 100%;
  border-top: 1px solid var(--rule, rgba(243, 242, 238, 0.08));
  padding: clamp(32px, 4vw, 52px) 0;
  background-color: var(--bg, #080706);
  margin-top: clamp(60px, 8vw, 100px);
}

.case-footer-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

/* Wichtig: Übersteuert margin-left: auto für den Footer-Back-Link */
.case-footer .nav-back {
  margin-left: 0 !important;
  margin-right: auto !important;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite, #7d7a75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.case-footer .nav-back:hover {
  color: var(--ink, #f3f2ee);
}

.case-footer .index-num {
  margin-left: auto !important;
  margin-right: 0 !important;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite, #7d7a75);
  white-space: nowrap;
}

/* ==========================================================================
   HAUPT-FOOTER (INDEX & PROFILE // 4-SPALTEN + BÜNDIGE 1-ZEILEN-BOTTOM-BAR)
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--rule, rgba(243, 242, 238, 0.08));
  background-color: var(--bg, #080706);
  padding: clamp(64px, 8vw, 100px) 0 clamp(36px, 4vw, 48px);
  margin-top: clamp(80px, 10vw, 140px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: flex-start;
}

.footer-col h4,
.footer-col-title {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite, #7d7a75);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-family: var(--body, 'Instrument Sans', sans-serif);
  font-size: 14px;
  color: rgba(243, 242, 238, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-col a:hover {
  color: var(--ink, #f3f2ee);
}

.footer-brand-title {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink, #f3f2ee);
  margin-bottom: 8px;
}

.footer-brand-sub {
  font-family: var(--body, 'Instrument Sans', sans-serif);
  font-size: 13.5px;
  color: var(--graphite, #7d7a75);
  line-height: 1.5;
}

/* Bottom Bar: 3 Elemente exakt auf einer gemeinsamen Grundlinie */
.footer-bottom {
  border-top: 1px solid var(--rule, rgba(243, 242, 238, 0.08));
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box;
}

.footer-meta-lang,
.footer-meta-copy,
.footer-meta-rights,
.footer-bottom span,
.footer-bottom p {
  font-family: var(--mono, 'Space Mono', monospace) !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--graphite, #7d7a75) !important;
  margin: 0 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.footer-meta-copy {
  text-align: center;
}

.footer-meta-rights {
  text-align: right;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .footer-meta-copy,
  .footer-meta-rights {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   CLIENT MARQUEE — SCHLANK, KOMPAKT & FLÜSSIG LAUFEND
   ========================================================================== */
@keyframes marqueeLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes marqueeLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}

/* 1. Ultra-schlankes, flaches Band (minimaler Kasten oben & unten) */
.client-marquee-section {
  position: relative !important;
  width: 100% !important;
  background-color: var(--bg, #080706) !important;
  border-top: 1px solid var(--rule, rgba(243, 242, 238, 0.08)) !important;
  border-bottom: 1px solid var(--rule, rgba(243, 242, 238, 0.08)) !important;
  padding: 4px 0 !important; /* Nahezu kein toter Raum oben/unten */
  margin: 0 !important;
  overflow: hidden !important;
  z-index: 10 !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* 2. Endlos-Laufanimation */
.client-marquee-track {
  display: flex !important;
  width: max-content !important;
  align-items: center !important;
  gap: clamp(28px, 3vw, 44px) !important;
  animation: marqueeLoop 28s linear infinite !important;
  -webkit-animation: marqueeLoop 28s linear infinite !important;
  will-change: transform;
}

.client-marquee-section:hover .client-marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex !important;
  align-items: center !important;
  gap: clamp(28px, 3vw, 44px) !important;
  flex-shrink: 0 !important;
}

/* 3. Größere Logos, bündig im flachen Band */
.marquee-logo-wrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important; /* Exakt an die Logohöhen angepasst */
}

.marquee-logo {
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  transition: opacity 0.2s ease;
}

/* Kategorienspezifische optische Kalibrierung (spürbar vergrößert) */
.marquee-logo.logo-badge {
  height: clamp(32px, 3.2vw, 36px) !important;
  max-width: 90px;
}

.marquee-logo.logo-medium {
  height: clamp(26px, 2.6vw, 32px) !important;
  max-width: 135px;
}

.marquee-logo.logo-wide {
  height: clamp(22px, 2.2vw, 26px) !important;
  max-width: 155px;
}

.marquee-sep {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10px;
  color: var(--accent, #c84b31);
  opacity: 0.5;
  user-select: none;
}

/* 4. Abstände oberhalb im Hero & unterhalb des Bands straffen */
.hero-home,
.home-hero {
  min-height: clamp(520px, 78vh, 760px) !important;
  padding-bottom: 12px !important; /* Direkt an das Band heranführen */
}

.hero-meta {
  margin-top: 18px !important; /* Puffer über dem Band reduzieren */
}

/* Abstand der nachfolgenden Sektion bändigen */
.client-marquee-section + section,
.client-marquee-section + div,
.client-marquee-section + main {
  margin-top: clamp(24px, 3.5vw, 44px) !important;
  padding-top: 0 !important;
}

/* ==========================================================================
   HIGH-END EDITORIAL REDESIGN (FUNNEL CONTENT IN LUXURY AESTHETICS)
   ========================================================================== */

/* 1. HEADER: Schwebend, transparent & nahtlos im Bild */
.site-nav {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: linear-gradient(to bottom, rgba(8, 7, 6, 0.85) 0%, rgba(8, 7, 6, 0.4) 60%, transparent 100%) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  border-bottom: 1px solid rgba(243, 242, 238, 0.05) !important;
  z-index: 100 !important;
  padding: 24px 0 !important;
}

/* 2. HALTUNG: Vom grauen Kasten-Look zum offenen Magazin-Grid */
.haltung-section,
.section-haltung,
section:has(.haltung-grid) {
  padding: clamp(60px, 8vw, 120px) 0 !important;
  background: var(--bg, #080706) !important;
}

.haltung-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  border-top: 1px solid rgba(243, 242, 238, 0.14) !important;
  border-bottom: 1px solid rgba(243, 242, 238, 0.14) !important;
  border-left: none !important;
  border-right: none !important;
  background-color: transparent !important;
  margin-top: clamp(36px, 4.5vw, 64px) !important;
}

.haltung-card,
.haltung-col,
.haltung-item {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px) !important;
  border-right: 1px solid rgba(243, 242, 238, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 280px !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease;
}

.haltung-card:last-child,
.haltung-col:last-child,
.haltung-item:last-child {
  border-right: none !important;
}

.haltung-card:hover {
  background-color: rgba(243, 242, 238, 0.015) !important;
}

.haltung-num,
.haltung-kicker,
.haltung-card-num {
  font-family: var(--mono, 'Space Mono', monospace) !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--graphite, #7d7a75) !important;
  margin-bottom: 24px !important;
  display: block !important;
}

.haltung-card h3,
.haltung-title,
.haltung-card-title {
  font-family: var(--display, 'Archivo', sans-serif) !important;
  font-size: clamp(17px, 1.35vw, 21px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: var(--ink, #f3f2ee) !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.01em !important;
}

.haltung-card p,
.haltung-desc,
.haltung-card-text {
  font-family: var(--body, 'Instrument Sans', sans-serif) !important;
  font-size: clamp(13px, 0.95vw, 14.5px) !important;
  line-height: 1.55 !important;
  color: rgba(243, 242, 238, 0.6) !important;
  margin: 0 !important;
}

.haltung-card-punchline {
  font-family: var(--body, 'Instrument Sans', sans-serif) !important;
  font-size: clamp(13px, 0.95vw, 14.5px) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  color: var(--ink, #f3f2ee) !important;
  margin-top: 14px !important;
}

/* 3. AUDIT / PUBLIKATION: Kein SaaS-Banner, sondern Editorial Release-Strip */
.audit-card,
.publication-card,
.lead-magnet-card,
.audit-box {
  background: rgba(243, 242, 238, 0.02) !important;
  border: 1px solid rgba(243, 242, 238, 0.12) !important;
  border-radius: 0 !important; /* Schluss mit runden Pillen-Boxen */
  padding: clamp(28px, 3.2vw, 44px) clamp(24px, 3.5vw, 48px) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin-top: clamp(40px, 5vw, 70px) !important;
  margin-bottom: clamp(60px, 7vw, 100px) !important;
}

.publication-meta {
  font-family: var(--mono, 'Space Mono', monospace) !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--accent, #c84b31) !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.publication-title {
  font-family: var(--display, 'Archivo', sans-serif) !important;
  font-size: clamp(18px, 1.6vw, 24px) !important;
  font-weight: 600 !important;
  color: var(--ink, #f3f2ee) !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em !important;
}

.publication-desc {
  font-family: var(--body, 'Instrument Sans', sans-serif) !important;
  font-size: 13.5px !important;
  color: rgba(243, 242, 238, 0.6) !important;
  margin: 0 !important;
  max-width: 680px !important;
}

/* Der Button wird zum architektonischen Pfeil-Link */
.audit-btn,
.publication-link,
.publication-card a,
.audit-box a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: transparent !important;
  border: 1px solid rgba(243, 242, 238, 0.25) !important;
  border-radius: 0 !important;
  padding: 12px 20px !important;
  color: var(--ink, #f3f2ee) !important;
  font-family: var(--mono, 'Space Mono', monospace) !important;
  font-size: 10.5px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.25s ease !important;
}

.audit-btn:hover,
.publication-link:hover,
.publication-card a:hover {
  background: var(--ink, #f3f2ee) !important;
  color: var(--bg, #080706) !important;
  border-color: var(--ink, #f3f2ee) !important;
}

/* 4. RESPONSIVE ANPASSUNGEN FÜR TABLET & SMARTPHONE */
@media (max-width: 860px) {
  .haltung-grid {
    grid-template-columns: 1fr !important;
  }

  .haltung-card,
  .haltung-col,
  .haltung-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(243, 242, 238, 0.08) !important;
    padding: 28px 16px !important;
    min-height: auto !important;
  }

  .haltung-card:last-child {
    border-bottom: none !important;
  }

  .audit-card,
  .publication-card,
  .audit-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 24px 20px !important;
  }

  .audit-btn,
  .publication-link {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   KOMPLETTES LUXURY EDITORIAL SYSTEM (STARTSEITE & ARCHITEKTUR)
   ========================================================================== */

/* --- 1. EDITORIAL FLOATING NAV --- */
.editorial-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: clamp(20px, 2.5vw, 32px) clamp(24px, 4vw, 56px);
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.25) 75%, transparent 100%);
  border-bottom: 1px solid rgba(243, 242, 238, 0.06);
}

.editorial-nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-editorial {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
}

.brand-name {
  font-family: var(--display, 'Archivo', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink, #f3f2ee);
  text-transform: uppercase;
}

.brand-sub {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--graphite, #7d7a75);
}

.nav-menu-editorial {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.nav-link-editorial {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 242, 238, 0.65);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link-editorial:hover {
  color: var(--ink, #f3f2ee);
}

.nav-link-highlight {
  color: var(--ink, #f3f2ee) !important;
  border-bottom: 1px solid var(--accent, #c84b31);
  padding-bottom: 2px;
}

.nav-meta-editorial {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--graphite, #7d7a75);
  display: flex;
  align-items: center;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  display: inline-block;
}

/* --- 2. MANIFESTO GRID (OFFENES SCHWEIZER DESIGN // NULL KACHELN) --- */
.manifesto-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 56px);
  background-color: var(--bg, #080706);
  box-sizing: border-box;
}

.manifesto-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.manifesto-kicker {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  color: var(--accent, #c84b31);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.manifesto-headline {
  font-family: var(--display, 'Archivo', sans-serif);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink, #f3f2ee);
  margin: 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(243, 242, 238, 0.16);
  border-bottom: 1px solid rgba(243, 242, 238, 0.16);
}

.manifesto-col {
  border-right: 1px solid rgba(243, 242, 238, 0.1);
  padding: clamp(36px, 4.2vw, 56px) clamp(24px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.manifesto-col:last-child {
  border-right: none;
}

.manifesto-col:hover {
  background-color: rgba(243, 242, 238, 0.015);
}

.manifesto-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.manifesto-num {
  font-family: var(--display, 'Archivo', sans-serif);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 300;
  color: rgba(243, 242, 238, 0.25);
  line-height: 1;
}

.manifesto-tag {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--graphite, #7d7a75);
}

.manifesto-title {
  font-family: var(--display, 'Archivo', sans-serif);
  font-size: clamp(20px, 1.6vw, 25px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink, #f3f2ee);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.manifesto-text {
  font-family: var(--body, 'Instrument Sans', sans-serif);
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.6;
  color: rgba(243, 242, 238, 0.62);
  margin: 0;
}

.manifesto-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 242, 238, 0.06);
}

.manifesto-note {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--graphite, #7d7a75);
}

/* --- 3. MONOGRAPH RELEASE BOX (KANTIGER ARCHITEKTUR-LOOK) --- */
.monograph-release-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px) clamp(80px, 10vw, 130px);
  background-color: var(--bg, #080706);
  box-sizing: border-box;
}

.monograph-box {
  background-color: #0d0c0a;
  border: 1px solid rgba(243, 242, 238, 0.12);
  border-radius: 0;
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
}

.monograph-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent, #c84b31);
}

.monograph-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--graphite, #7d7a75);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.monograph-badge {
  color: var(--ink, #f3f2ee);
  background: rgba(243, 242, 238, 0.08);
  padding: 3px 8px;
}

.monograph-sep {
  opacity: 0.4;
}

.monograph-title {
  font-family: var(--display, 'Archivo', sans-serif);
  font-size: clamp(20px, 1.9vw, 30px);
  font-weight: 600;
  color: var(--ink, #f3f2ee);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.monograph-desc {
  font-family: var(--body, 'Instrument Sans', sans-serif);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243, 242, 238, 0.6);
  margin: 0;
  max-width: 640px;
}

.monograph-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 1px solid rgba(243, 242, 238, 0.3);
  padding: 16px 28px;
  color: var(--ink, #f3f2ee);
  text-decoration: none;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.monograph-action:hover {
  background-color: var(--ink, #f3f2ee);
  color: var(--bg, #080706);
  border-color: var(--ink, #f3f2ee);
}

.action-arrow {
  transition: transform 0.25s ease;
}

.monograph-action:hover .action-arrow {
  transform: translateX(5px);
}

/* --- 4. RESPONSIVE BREAKPOINTS (SMARTPHONE & TABLET) --- */
@media (max-width: 900px) {
  .editorial-nav {
    padding: 18px 20px;
  }
  .nav-meta-editorial {
    display: none;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-col {
    border-right: none;
    border-bottom: 1px solid rgba(243, 242, 238, 0.1);
    min-height: auto;
    padding: 32px 16px;
  }
  .manifesto-col:last-child {
    border-bottom: none;
  }
  .monograph-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
  .monograph-action {
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   ARCHIVE / PORTFOLIO FILTER REDESIGN (MAGAZINE INDEX)
   ========================================================================== */

/* 1. Massive, enge Editorial-Headline */
#projekte h2,
.portfolio-section h2,
.page-head h1,
section:has(.portfolio-filters) h2,
section:has(.filter-group) h2 {
  font-family: var(--display, 'Archivo', sans-serif) !important;
  font-size: clamp(44px, 7.5vw, 88px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.02 !important;
  margin-bottom: 24px !important;
  text-transform: none !important;
  color: var(--ink, #f3f2ee) !important;
}

/* 2. Die SaaS-Pillen zerstören -> Magazin-Index Leiste */
.portfolio-filters,
.filter-group,
.filter-nav,
#projekte .filters {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px 40px !important;
  justify-content: flex-start !important;
  padding: 24px 0 !important;
  margin: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 64px) 0 !important;
  border-top: 1px solid rgba(243, 242, 238, 0.15) !important;
  border-bottom: 1px solid rgba(243, 242, 238, 0.15) !important;
}

/* 3. Raw Typography für die Buttons */
.portfolio-filters button,
.filter-group button,
.filter-nav button,
.filter-btn,
button[data-filter] {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(243, 242, 238, 0.4) !important;
  font-family: var(--mono, 'Space Mono', monospace) !important;
  font-size: 10.5px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 0 0 8px 0 !important;
  margin: 0 !important;
  cursor: pointer;
  border-bottom: 1px solid transparent !important;
  transition: color 0.3s ease, border-color 0.3s ease !important;
}

/* Hover-Effekt */
.portfolio-filters button:hover,
.filter-group button:hover,
.filter-nav button:hover,
button[data-filter]:hover {
  color: var(--ink, #f3f2ee) !important;
}

/* Aktiver Status: Nur weiße Schrift + harter roter Strich drunter */
.portfolio-filters button.active,
.filter-group button.active,
.filter-nav button.active,
button[data-filter].active,
.filter-btn.active {
  color: var(--ink, #f3f2ee) !important;
  border-bottom: 1px solid var(--accent, #c84b31) !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   EDITORIAL LIGHTBOX FIX (VOLLBILDANSICHT REPARIEREN)
   ========================================================================== */
#lightbox,
.lightbox,
#sideby-lightbox,
.lightbox-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background-color: rgba(8, 7, 6, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* Unsichtbar und inaktiv bis zum Klick */
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

#lightbox.active,
.lightbox.active,
#sideby-lightbox.active,
.lightbox-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

#lightbox img,
.lightbox img,
.lightbox-img {
  max-width: 90vw !important;
  max-height: 82vh !important;
  object-fit: contain !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
  margin: auto !important;
}

#lightbox-controls,
.lightbox-controls {
  position: absolute !important;
  bottom: clamp(24px, 4vw, 40px) !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(16px, 3vw, 32px) !important;
}

#lightbox button,
#lightbox span,
.lightbox button,
.lightbox span,
.lightbox-counter,
.lightbox-close,
.lightbox-nav-btn {
  font-family: var(--mono, 'Space Mono', monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  color: var(--ink, #f3f2ee) !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  opacity: 0.65 !important;
  transition: opacity 0.25s ease !important;
}

#lightbox button:hover,
.lightbox button:hover,
.lightbox-close:hover,
.lightbox-nav-btn:hover {
  opacity: 1 !important;
}

/* ==========================================================================
   ULTIMATE MOBILE EDITORIAL DESIGN (SWIPE NAV & HERO PURITY)
   ========================================================================== */
@media (max-width: 860px) {
  /* 1. Header: Kompakt & Swipebar */
  .editorial-nav {
    padding: 16px 20px !important;
    background: linear-gradient(to bottom, rgba(8, 7, 6, 0.95) 0%, rgba(8, 7, 6, 0.7) 50%, transparent 100%) !important;
  }
  
  .editorial-nav-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  
  .nav-brand-editorial {
    margin-bottom: 2px !important;
  }

  /* Hier entsteht die Magie: Das Swipe-Menü */
  .nav-menu-editorial {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    margin-left: -20px !important; /* Zieht das Menü an den linken Rand */
    padding: 0 20px 8px 20px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important; /* Butterweiches Scrollen auf iOS */
    flex-wrap: nowrap !important;
    gap: 28px !important;
    box-sizing: border-box !important;
  }
  
  /* Scrollbar verstecken für puren Magazin-Look */
  .nav-menu-editorial::-webkit-scrollbar {
    display: none !important;
  }
  .nav-menu-editorial {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
  
  .nav-link-editorial {
    font-size: 11px !important;
    flex-shrink: 0 !important; /* Verhindert das Stauchen der Worte */
  }

  /* 2. Hero: Befreiung von Text-Müll */
  .hero-home, .home-hero {
    min-height: 80dvh !important;
    padding-top: 130px !important; /* Platz für das neue Header-Layout */
    padding-bottom: 24px !important;
    justify-content: flex-end !important;
  }
  
  .home-hero-title, .hero-title {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 14px !important;
  }
  
  /* Brutales Ausblenden von Zweit- und Dritt-Absätzen im Hero */
  .hero-text-wrap p:nth-of-type(n+2),
  .home-hero-desc p:nth-of-type(n+2),
  .hero-lead ~ p,
  .home-hero-desc br {
    display: none !important;
  }
  
  .hero-text-wrap p,
  .home-hero-desc p,
  .hero-lead {
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    max-width: 95% !important;
    margin-bottom: 0 !important;
  }
  
  .hero-meta,
  .hero-location,
  .home-hero-location {
    margin-top: 20px !important;
  }
}

/* 3. Globaler Killer für Sticky-Buttons (Coaching-Funnel-Reste) */
.sticky-cta, .floating-cta, .bottom-cta-bar, .mobile-sticky-btn,
a[style*="position: fixed"], a[style*="position:fixed"], 
div[style*="position: fixed"], div[style*="position:fixed"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -9999 !important;
}

@media (max-width: 900px) {
  html, body { overflow-x: clip; }
}


/* ==========================================================================
   FINAL EMERGENCY FIXES (HERO, HAMBURGER, STICKY-KILLER)
   ========================================================================== */
@media (max-width: 900px) {
    /* 1. THE HERO FIX: Bild als echter Hintergrund, Text drüber */
    .hero-home, .home-hero {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        min-height: 85dvh !important;
        padding: 0 !important;
        overflow: hidden !important;
        background-color: #080706 !important;
    }
    
    .hero-home > img, .home-hero > img,
    .hero-home picture, .home-hero picture,
    .home-hero-bg {
        position: absolute !important;
        top: 0 !important; left: 0 !important;
        width: 100% !important; height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
        opacity: 0.75 !important; /* Leicht abgedunkelt für Lesbarkeit */
    }
    
    .home-hero-content, .hero-content, .hero-container {
        position: relative !important;
        z-index: 10 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Eleganter schwarzer Verlauf von unten nach oben */
        background: linear-gradient(to top, rgba(8,7,6,1) 0%, rgba(8,7,6,0.9) 35%, rgba(8,7,6,0) 100%) !important;
        padding: 100px 24px 32px 24px !important;
    }

    /* 2. HAMBURGER MENÜ: Desktop-Links zwingend verstecken */
    .desktop-only, .nav-menu-editorial {
        display: none !important; 
    }
    
    .editorial-nav {
        position: absolute !important;
        top: 0 !important; left: 0 !important;
        width: 100% !important;
        background: linear-gradient(to bottom, rgba(8,7,6,0.7) 0%, transparent 100%) !important;
        padding: 20px 24px !important;
        z-index: 100 !important;
        border: none !important;
    }
    
    .editorial-nav-inner {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .mobile-menu-trigger {
        display: block !important;
        font-size: 30px !important;
        line-height: 1 !important;
        color: #f3f2ee !important;
        background: transparent !important;
        border: none !important;
        padding: 4px 8px !important;
        margin-top: -2px !important;
        cursor: pointer !important;
    }
}

/* 4. MOBILE NAV DRAWER STYLING */
.mobile-menu-trigger {
    display: none;
}
.mobile-nav-drawer {
    position: fixed;
    inset: 0;
    background: rgba(8, 7, 6, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px 48px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}
.mobile-nav-drawer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(243, 242, 238, 0.08);
    padding-bottom: 20px;
}
.mobile-nav-close {
    background: transparent;
    border: none;
    color: #f3f2ee;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
}
.mobile-nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: auto 0;
}
.mobile-nav-drawer-links a {
    font-family: var(--display, 'Archivo', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #f3f2ee;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, transform 0.2s ease;
}
.mobile-nav-drawer-links a:hover,
.mobile-nav-drawer-links a:active {
    color: #eb5e28;
    transform: translateX(6px);
}
.mobile-nav-drawer-meta {
    border-top: 1px solid rgba(243, 242, 238, 0.08);
    padding-top: 20px;
}










/* ==========================================================
   MOBILE NORMALISIERUNG — ein System statt 17 Breakpoints
   Steht bewusst am Ende und gewinnt per Reihenfolge.
   ========================================================== */
@media (max-width: 900px) {
  .index-grid { grid-template-columns: 1fr 1fr !important; }
  .haltung-grid,
  .principles-grid,
  .manifesto-grid,
  .statement-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 620px) {
  .index-grid,
  .gallery-grid,
  .gallery-pair,
  .gallery-trio,
  .video-grid,
  .footer-grid { grid-template-columns: 1fr !important; }
  
  .index-col {
    border-right: none !important;
    border-bottom: 1px solid var(--rule, rgba(243, 242, 238, 0.08)) !important;
    padding: 18px 0 !important;
  }
  .index-col:last-child { border-bottom: none !important; }
  
  .wrap { padding-left: 20px !important; padding-right: 20px !important; }
  section { padding-block: 56px !important; }
  
  h1 { font-size: clamp(32px, 9vw, 46px) !important; line-height: 1.04 !important; }
  h2 { font-size: clamp(24px, 6.5vw, 32px) !important; line-height: 1.12 !important; }
  h3 { font-size: clamp(18px, 5vw, 22px) !important; line-height: 1.22 !important; }
  p  { font-size: 16px !important; line-height: 1.6 !important; }
  
  .label, .mono, .index-num, [class*="kicker"] {
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
  }
  
  a, button, .btn, .filter-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  .gallery-item img,
  .frame img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
}

@media (max-width: 420px) {
  .wrap { padding-left: 16px !important; padding-right: 16px !important; }
  section { padding-block: 44px !important; }
}

/* ==========================================================
   FLOATING SCROLL CONTROLLER (TOP / BOTTOM // EDITORIAL)
   ========================================================== */
.scroll-nav {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(14, 13, 11, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(243, 242, 238, 0.12);
  border-radius: 999px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s,
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.2s ease,
              background 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.scroll-nav.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-nav:hover {
  border-color: rgba(243, 242, 238, 0.28);
  background: rgba(20, 18, 16, 0.92);
}

.scroll-nav-btn {
  width: 40px;
  height: 40px;
  min-height: 40px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #f3f2ee;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.scroll-nav-btn svg {
  display: block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-nav-btn:hover {
  background: rgba(243, 242, 238, 0.12);
  color: #ffffff;
}

.scroll-nav-up:hover svg {
  transform: translateY(-2px);
}

.scroll-nav-down:hover svg {
  transform: translateY(2px);
}

.scroll-nav-btn.dimmed {
  opacity: 0.3;
}

.scroll-nav-btn.dimmed:hover {
  opacity: 0.8;
}

.scroll-nav-divider {
  width: 18px;
  height: 1px;
  background: rgba(243, 242, 238, 0.1);
  margin: 2px 0;
}

@media (max-width: 620px) {
  .scroll-nav {
    bottom: 20px;
    right: 16px;
    padding: 3px;
  }
  .scroll-nav-btn {
    width: 38px;
    height: 38px;
    min-height: 38px !important;
  }
}

