/* =============================================
   YIKUDO TITIZE – EDITORIAL MODERN
   Color Strategy:
   Primary: Deep Navy #1A2340 (authoritative)
   Secondary: Warm Ivory #F7F4EE (sophisticated off-white)
   Accent: Amber Gold #C8922A (distinctive, premium)
   Accent 2: Slate Teal #2E6B7A (secondary accent)
   Text: Rich Charcoal #2A2A35
   Muted: #6B6B7A
   ============================================= */

:root {
  --color-primary: #1A2340;
  --color-primary-light: #253055;
  --color-secondary: #F7F4EE;
  --color-accent: #C8922A;
  --color-accent-hover: #A97420;
  --color-accent2: #2E6B7A;
  --color-text: #2A2A35;
  --color-text-muted: #6B6B7A;
  --color-white: #FEFCF8;
  --color-border: #E4E0D8;
  --color-card-bg: #FFFFFF;

  --shadow-sm: 0 1px 3px rgba(26,35,64,0.07), 0 1px 2px rgba(26,35,64,0.05);
  --shadow-md: 0 4px 12px rgba(26,35,64,0.10), 0 2px 6px rgba(26,35,64,0.06);
  --shadow-lg: 0 10px 32px rgba(26,35,64,0.13), 0 4px 12px rgba(26,35,64,0.08);
  --shadow-xl: 0 20px 48px rgba(26,35,64,0.16), 0 8px 20px rgba(26,35,64,0.10);
  --shadow-accent: 0 4px 20px rgba(200,146,42,0.25), 0 2px 8px rgba(200,146,42,0.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --nav-height: 72px;
  --font-main: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body.canvas {
  font-family: var(--font-main);
  background-color: var(--color-secondary);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}


:focus { outline: none; }
:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


.stage-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--color-primary);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stage-nav.nav-glass {
  background: rgba(26, 35, 64, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(200,146,42,0.18), 0 4px 20px rgba(26,35,64,0.18);
  border-bottom: 1px solid rgba(200,146,42,0.15);
}

.stage-nav--solid {
  background: var(--color-primary) !important;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 32px; width: auto; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(254,252,248,0.80);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-white);
  background: rgba(200,146,42,0.18);
}
.nav-link.active { color: var(--color-accent); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}
.nav-burger:hover { background: rgba(200,146,42,0.18); }
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--color-primary);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}
.drawer.drawer--open {
  transform: translateY(0);
  pointer-events: all;
}
.drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 3rem 2rem;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.drawer-link {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: rgba(254,252,248,0.7);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: color 0.2s ease, background 0.2s ease;
  transform: translateY(-30px);
  opacity: 0;
  transition: color 0.2s ease, background 0.2s ease, transform 0.4s ease, opacity 0.4s ease;
}
.drawer--open .drawer-link {
  transform: translateY(0);
  opacity: 1;
}
.drawer--open .drawer-link:nth-child(1) { transition-delay: 0.08s; }
.drawer--open .drawer-link:nth-child(2) { transition-delay: 0.14s; }
.drawer--open .drawer-link:nth-child(3) { transition-delay: 0.20s; }
.drawer--open .drawer-link:nth-child(4) { transition-delay: 0.26s; }
.drawer--open .drawer-link:nth-child(5) { transition-delay: 0.32s; }
.drawer-link:hover { color: var(--color-accent); background: rgba(200,146,42,0.12); }
.drawer-close {
  margin-top: 2rem;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.35);
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  min-height: 44px;
}
.drawer-close:hover { background: rgba(200,146,42,0.25); transform: scale(1.04); }

.stage-curtain {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(26,35,64,0.6);
}


.stage {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 6rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--color-primary);
  overflow: hidden;
  position: relative;
}
.stage::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-secondary));
  pointer-events: none;
}
.stage-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.stage-text { position: relative; z-index: 1; }
.stage-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.stage-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.stage-sub {
  font-size: 1.05rem;
  color: rgba(254,252,248,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.stage-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-accent);
  min-height: 44px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1.5px solid rgba(254,252,248,0.35);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  min-height: 44px;
}
.btn-ghost:hover {
  background: rgba(254,252,248,0.08);
  border-color: rgba(254,252,248,0.6);
  transform: translateY(-2px);
}


.stage-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  position: relative;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 56px rgba(26,35,64,0.28);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item--large {
  grid-column: 1 / -1;
  height: 220px;
}
.gallery-item--small { height: 140px; }
.gallery-item--medium {
  height: 140px;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}


.spotlight--band {
  background: var(--color-accent);
  padding: 2.5rem 2rem;
}
.spotlight-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.spotlight-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.spotlight-attr {
  font-size: 0.85rem;
  color: rgba(254,252,248,0.75);
  font-weight: 500;
}


.shelf {
  padding: var(--space-xl) 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.shelf--alt {
  background: var(--color-white);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.shelf--alt > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.shelf-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.shelf-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent2);
  margin-bottom: 0.75rem;
}
.shelf-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.shelf-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}


.spotlight--card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.spotlight--card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.3);
}
.shelf-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,146,42,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: background 0.2s ease;
}
.spotlight--card:hover .shelf-card-icon { background: rgba(200,146,42,0.18); }
.shelf-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.shelf-card-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.shelf-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.shelf-card-link:hover { gap: 0.7rem; color: var(--color-accent-hover); }


.canvas-feature {
  padding: var(--space-xl) 2rem;
  background: var(--color-secondary);
}
.canvas-feature--alt {
  background: var(--color-white);
}
.canvas-feature-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.canvas-feature-inner--reverse {
  direction: rtl;
}
.canvas-feature-inner--reverse > * { direction: ltr; }

.canvas-feature-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.canvas-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.canvas-feature-img:hover img { transform: scale(1.04); }

.canvas-feature-text .shelf-label { display: block; margin-bottom: 0.75rem; }
.canvas-feature-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.canvas-feature-text p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.canvas-feature-list {
  list-style: none;
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.canvas-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--color-text);
}
.canvas-feature-list li i {
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}


.spotlight--pull {
  background: var(--color-primary);
  padding: 4rem 2rem;
}
.spotlight-pull-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.65;
  position: relative;
  padding: 0 2rem;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  left: -0.5rem;
  top: -1rem;
  font-size: 4rem;
  color: var(--color-accent);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  opacity: 0.6;
}


.shelf--platforms { background: var(--color-secondary); }
.shelf-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.platform-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.platform-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.platform-card-header i {
  font-size: 1.3rem;
  color: var(--color-accent2);
}
.platform-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}
.platform-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.shelf-img-feature {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 340px;
}
.shelf-img-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.shelf--blog { background: var(--color-secondary); }
.shelf-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent2);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s ease, color 0.2s ease;
  min-height: 44px;
}
.blog-card-more:hover { gap: 0.7rem; color: var(--color-accent-hover); }


.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(26,35,64,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.modal--open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--color-card-bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.modal--open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(26,35,64,0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 1rem;
}
.modal-close:hover { background: rgba(200,146,42,0.15); color: var(--color-accent); }
.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0.75rem 0 1.25rem;
}
.modal-box p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}


.page-header {
  background: var(--color-primary);
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-secondary));
}
.page-header-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-header-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-header-sub {
  font-size: 1.05rem;
  color: rgba(254,252,248,0.72);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}


.canvas-editorial {
  padding: var(--space-xl) 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.canvas-editorial-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.editorial-h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.025em;
  margin: 2rem 0 1rem;
  line-height: 1.25;
}
.editorial-h2:first-child { margin-top: 0; }
.editorial-lead {
  font-size: 1.08rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.editorial-main p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  margin-bottom: 1rem;
}
.editorial-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
}
.editorial-list li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.editorial-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.editorial-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }
.sidebar-box {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.sidebar-box--accent {
  background: var(--color-primary);
  border-color: transparent;
}
.sidebar-box-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.sidebar-box--accent .sidebar-box-title { color: var(--color-accent); }
.sidebar-box p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.sidebar-box--accent p { color: rgba(254,252,248,0.75); }
.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-list li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}
.sidebar-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}


.shelf--laender { background: var(--color-secondary); }
.laender-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.laender-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.laender-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.laender-card-head {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.laender-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.download-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.download-card-icon {
  font-size: 2rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.download-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.download-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.download-card-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.download-card-facts li {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.download-card-facts li i { color: var(--color-accent2); font-size: 0.75rem; width: 14px; }


.mikro-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mikro-table, .cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card-bg);
  font-size: 0.9rem;
}
.mikro-table th, .cookie-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.mikro-table td, .cookie-table td {
  padding: 0.85rem 1.25rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.mikro-table tr:last-child td, .cookie-table tr:last-child td { border-bottom: none; }
.mikro-table tr:hover td, .cookie-table tr:hover td { background: rgba(200,146,42,0.04); }
.table-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 1280px;
  margin: 1rem auto 0;
  padding: 0 2rem;
}


.foerder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.foerder-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.foerder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.foerder-card-icon {
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.foerder-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.foerder-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.contact-section {
  padding: var(--space-xl) 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.contact-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.45rem;
}
.required-star { color: var(--color-accent); }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-card-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
  appearance: none;
}
.form-input:hover { border-color: rgba(200,146,42,0.4); }
.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { cursor: pointer; }
.form-group--check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.form-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 0.1rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.form-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  min-height: 1.2em;
}
.btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.contact-info-box {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.contact-info-box--note { background: rgba(26,35,64,0.04); }
.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.contact-info-list li i { color: var(--color-accent); margin-top: 0.15rem; flex-shrink: 0; }
.contact-info-list li a { color: var(--color-text-muted); text-decoration: none; transition: color 0.2s ease; }
.contact-info-list li a:hover { color: var(--color-accent); }
.contact-info-list address { font-style: normal; line-height: 1.6; }
.contact-info-box p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.contact-info-box p:last-child { margin-bottom: 0; }


.contact-map-section { padding: 0 2rem 6rem; max-width: 1280px; margin: 0 auto; }
.contact-map-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}


.timeline-section {
  background: var(--color-white);
  padding: var(--space-xl) 2rem;
}
.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.timeline-inner .shelf-headline { margin-bottom: 3rem; }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent2));
  opacity: 0.3;
}
.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(200,146,42,0.3);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline-content {
  padding-top: 0.85rem;
}
.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.timeline-content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
  min-height: 100vh;
}
.thanks-content {
  text-align: center;
  max-width: 560px;
}
.thanks-icon {
  font-size: 4rem;
  color: rgba(254,252,248,0.7);
  margin-bottom: 1.5rem;
}
.thanks-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.thanks-text {
  font-size: 1.05rem;
  color: rgba(254,252,248,0.82);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.btn-thanks {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid rgba(254,252,248,0.7);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  min-height: 48px;
}
.btn-thanks:hover {
  background: rgba(254,252,248,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}


.legal-main {
  flex: 1;
  padding: calc(var(--nav-height) + 3rem) 2rem 5rem;
}
.legal-inner {
  max-width: 860px;
  margin: 0 auto;
}
.legal-inner--impressum { max-width: 980px; }
.legal-header { margin-bottom: 3rem; border-bottom: 2px solid var(--color-border); padding-bottom: 1.5rem; }
.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal-date { font-size: 0.88rem; color: var(--color-text-muted); }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
}
.legal-section p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  margin-bottom: 0.75rem;
}
.legal-section a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }

.impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.impressum-table th {
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(26,35,64,0.05);
  width: 35%;
  border: 1px solid var(--color-border);
}
.impressum-table td {
  padding: 0.6rem 1rem;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.impressum-table a { color: var(--color-accent); text-decoration: none; }


.canvas-footer {
  background: var(--color-primary);
  margin-top: auto;
}
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent2) 100%);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-col--brand {}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo { height: 28px; width: auto; }
.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(254,252,248,0.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(254,252,248,0.55);
  line-height: 1.75;
}
.footer-address a {
  color: rgba(254,252,248,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-address a:hover { color: var(--color-accent); }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(254,252,248,0.6);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-links a:hover { color: var(--color-white); padding-left: 4px; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(254,252,248,0.08);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(254,252,248,0.35);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-primary);
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 -8px 32px rgba(26,35,64,0.3);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}
.cookie-left {
  padding: 1.75rem 2rem;
  border-right: 1px solid rgba(254,252,248,0.1);
}
.cookie-left h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.cookie-left p {
  font-size: 0.83rem;
  color: rgba(254,252,248,0.65);
  line-height: 1.6;
}
.cookie-left a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-right {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-toggle-label {
  font-size: 0.82rem;
  color: rgba(254,252,248,0.75);
  font-weight: 500;
}
.cookie-toggle-label span {
  font-size: 0.72rem;
  color: rgba(254,252,248,0.4);
  font-weight: 400;
  display: block;
}
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(254,252,248,0.2);
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  min-height: 40px;
}
.cookie-btn-accept:hover { background: var(--color-accent-hover); transform: scale(1.03); }
.cookie-btn-save {
  background: transparent;
  color: rgba(254,252,248,0.75);
  border: 1px solid rgba(254,252,248,0.25);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  min-height: 40px;
}
.cookie-btn-save:hover { background: rgba(254,252,248,0.08); border-color: rgba(254,252,248,0.5); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(254,252,248,0.45);
  border: none;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
  min-height: 40px;
}
.cookie-btn-reject:hover { color: rgba(254,252,248,0.75); }


@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-col--brand { grid-column: 1 / -1; }
  .canvas-feature-inner { gap: 3rem; }
  .canvas-editorial-inner { grid-template-columns: 1fr; }
  .editorial-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

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

  .stage-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .stage { padding-top: calc(var(--nav-height) + 3rem); padding-bottom: 4rem; }
  .stage-gallery { display: grid; grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: 1 / -1; height: 180px; }
  .gallery-item--small, .gallery-item--medium { height: 120px; }

  .canvas-feature-inner, .canvas-feature-inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .canvas-feature-inner--reverse > * { direction: ltr; }

  .shelf { padding: 4rem 1.25rem; }
  .shelf-grid { grid-template-columns: 1fr; }
  .shelf-blog-grid { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .shelf-platform-grid { grid-template-columns: 1fr; }
  .laender-grid { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .download-grid { grid-template-columns: 1fr; padding: 0 1.25rem 3rem; }
  .foerder-grid { grid-template-columns: 1fr; padding: 0 1.25rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 1.5rem; }
  .footer-col--brand { grid-column: auto; }

  .cookie-banner-inner { grid-template-columns: 1fr; }
  .cookie-left { border-right: none; border-bottom: 1px solid rgba(254,252,248,0.1); }

  .timeline::before { left: 24px; }
  .timeline-marker { width: 48px; height: 48px; min-width: 48px; }

  .legal-main { padding: calc(var(--nav-height) + 2rem) 1.25rem 3rem; }
  .contact-section { padding: 3rem 1.25rem; }
  .contact-map-section { padding: 0 1.25rem 3rem; }
  .canvas-feature { padding: 4rem 1.25rem; }
  .canvas-editorial { padding: 4rem 1.25rem; }
  .mikro-table-wrap { padding: 0 1.25rem; }

  .stage-headline { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

@media (max-width: 480px) {
  .stage-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .download-card { flex-direction: column; }
  .cookie-buttons { flex-direction: column; }
  .cookie-btn-accept, .cookie-btn-save { width: 100%; text-align: center; justify-content: center; }
  .contact-map-section { padding: 0 1rem 2rem; }
}