/* Global base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.page {
  background:
    radial-gradient(1300px 700px at 50% 42%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 65%),
    radial-gradient(1300px 700px at 50% 66%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 65%),
    var(--bg);
}

/* Hover helpers */
.hov-accent { transition: color 0.2s ease; }
.hov-accent:hover { color: var(--accent) !important; }
.hov-cta:hover { background: var(--accent) !important; color: var(--bg) !important; }
.search-btn { transition: color 0.2s ease; }
.search-btn:hover { color: var(--accent) !important; }
.hov-panel:hover { background: var(--bg-elevated) !important; }

/* Intro animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade1 { animation: fadeUp 1s ease 1.3s both; }
.fade2 { animation: fadeUp 1s ease 1.6s both; }
.fade3 { animation: fadeUp 1s ease 1.9s both; }

@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.09); } }
.hero-slide-img { animation: kenburns 10s ease-in-out infinite alternate; transform-origin: center; }

@keyframes curtainLeft { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@keyframes curtainRight { from { transform: translateX(0); } to { transform: translateX(100%); } }
.intro-curtain { position: absolute; top: 0; height: 100%; width: 50%; background: var(--bg-curtain); z-index: 5; pointer-events: none; }
.intro-curtain-left { left: 0; animation: curtainLeft 1.15s cubic-bezier(0.76,0,0.24,1) 0.2s both; }
.intro-curtain-right { left: 50%; animation: curtainRight 1.15s cubic-bezier(0.76,0,0.24,1) 0.2s both; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 5vw;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0));
  transition: all 0.35s ease;
  border-bottom: none;
}
.nav.is-scrolled {
  padding: 14px 5vw;
  background: var(--bg-nav-scrolled);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.nav-brand-text {
  font-family: var(--font-serif); font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em; color: var(--text); white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; min-width: 0; margin-left: 16px; }
.nav-link {
  color: var(--text-secondary); font-size: 13px; letter-spacing: 0.08em;
  font-weight: 500; flex-shrink: 0;
}
.nav-secondary { display: flex; align-items: center; gap: 18px; }
.nav-divider { width: 1px; height: 16px; background: var(--border-strong); flex-shrink: 0; }
.nav-link-muted {
  color: var(--text-muted); font-size: 13px; letter-spacing: 0.06em; white-space: nowrap;
}
.nav-link-italic { font-style: italic; }
.nav-search { position: relative; display: flex; align-items: center; }
.search-btn { background: none; border: none; cursor: pointer; color: oklch(85% 0.01 95); display: flex; padding: 4px; }
.search-form { position: absolute; right: 0; top: 36px; z-index: 80; }
.search-input {
  width: 220px; background: var(--bg-elevated); border: 1px solid var(--border-strong);
  color: var(--text); font-size: 13px; padding: 10px 14px; border-radius: 4px;
  font-family: var(--font-sans);
}
.nav-cta {
  color: var(--text); font-size: 13px; letter-spacing: 0.08em; font-weight: 600;
  padding: 8px 16px; border: 1px solid var(--accent); border-radius: 2px;
  white-space: nowrap; flex-shrink: 0; transition: background 0.2s ease, color 0.2s ease;
}

@media (max-width: 1180px) { .nav-secondary { display: none !important; } }
@media (max-width: 640px) {
  .nav { padding: 14px 4vw !important; }
  .nav-brand-text { display: none; }
  .nav-links { gap: 10px !important; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { font-size: 12px !important; }
}

/* HERO */
.hero { position: relative; width: 100%; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.25); filter: blur(60px) saturate(1.4) brightness(0.55);
  opacity: 0; transition: opacity 2.2s ease;
}
.hero-bg-img.is-active { opacity: 1; }
.hero-slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 2.2s ease;
}
.hero-slide-img.is-active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; }
.hero-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,8,6,0.75) 0%, rgba(6,8,6,0.4) 32%, rgba(6,8,6,0) 62%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 6vw 9vh; max-width: 900px;
}
.hero-kicker {
  color: var(--accent); font-size: 14px; letter-spacing: 0.3em; font-weight: 600;
  margin-bottom: 22px; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-serif); font-weight: 900; font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1.02; margin: 0 0 26px; color: var(--text-hero); text-wrap: pretty;
}
.hero-lead {
  font-size: 19px; line-height: 1.55; color: var(--text-body); max-width: 560px;
  margin: 0 0 36px; font-weight: 300;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px; color: var(--text-hero);
  font-size: 14px; letter-spacing: 0.12em; font-weight: 600; width: fit-content;
  border-bottom: 1px solid var(--accent); padding-bottom: 6px;
}
.hero-cta-arrow { font-size: 16px; }

@media (max-width: 640px) {
  .hero-slide-img { object-fit: contain !important; background: var(--bg); }
}

/* TEASER SPLIT */
.teaser-split { display: flex; flex-direction: row; width: 100%; }
.teaser-split.is-stacked { flex-direction: column; }
.teaser-card {
  position: relative; flex: 1; aspect-ratio: 1400 / 1225; display: block; overflow: hidden;
  perspective: 1400px; z-index: 1; transition: box-shadow 0.5s ease;
}
.teaser-card:hover { box-shadow: 0 40px 90px rgba(0,0,0,0.5) !important; }
.teaser-img {
  position: absolute; inset: -2%; width: 104%; height: 104%;
  filter: saturate(0.82) contrast(1.05) brightness(0.72);
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1), filter 0.9s ease, box-shadow 0.9s ease;
}
.teaser-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.teaser-card--soasien .teaser-img { filter: saturate(0.82) contrast(1.05) brightness(0.75); }
.teaser-card:hover .teaser-img {
  transform: scale(1.1) rotateX(3deg) rotateY(-3deg) !important;
  filter: saturate(1.05) contrast(1.08) brightness(0.95) !important;
  box-shadow: -40px 40px 90px rgba(0,0,0,0.55) !important;
}
.teaser-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,10,8,0) 35%, rgba(8,10,8,0.78) 100%);
}
.teaser-edge {
  position: absolute; left: 0; top: 0; width: 5px; height: 100%;
  background: var(--accent); opacity: 0.85; box-shadow: 2px 0 12px var(--accent);
}
.teaser-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 56px 48px; z-index: 2; }
.teaser-kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.25em; font-weight: 600; margin-bottom: 14px; }
.teaser-title {
  font-family: var(--font-serif); font-weight: 800; font-size: clamp(30px, 3.4vw, 48px);
  margin: 0 0 16px; color: var(--text-hero); text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.teaser-text { font-size: 16px; color: var(--text-body); max-width: 420px; margin: 0 0 20px; font-weight: 300; line-height: 1.5; }
.teaser-cta {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 0.1em;
  font-weight: 600; color: var(--text-hero); border-bottom: 1px solid var(--accent);
  padding-bottom: 4px; transition: gap 0.4s ease;
}
.teaser-card:hover .teaser-cta { gap: 14px !important; }

@media (max-width: 800px) {
  .teaser-split { flex-direction: column !important; }
  .teaser-split > .teaser-card { min-height: unset !important; flex: none !important; width: 100% !important; aspect-ratio: 1400 / 1225; }
}

/* EXPLORE BAND */
.explore-band { display: flex; flex-wrap: wrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.explore-panel { flex: 1; min-width: 280px; padding: 64px 44px; border-right: 1px solid var(--border); }
.explore-panel:last-child { border-right: none; }
.explore-panel-kicker { font-size: 13px; letter-spacing: 0.2em; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.explore-panel-title {
  font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--text);
  margin-bottom: 10px;
}
.explore-panel-title.is-italic { font-style: italic; }
.explore-panel-sub { font-size: 15px; color: var(--text-muted); font-weight: 300; }

/* FOOTER */
.site-footer {
  padding: 56px 6vw 40px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.footer-brand-text { font-family: var(--font-serif); font-weight: 700; font-size: 14px; color: var(--text-secondary); letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-link { color: var(--text-muted); font-size: 13px; }
.footer-link-social { display: inline-flex; align-items: center; gap: 6px; }
.footer-link-social svg { flex-shrink: 0; }
.footer-copy { font-size: 12px; color: var(--text-faint); max-width: 420px; text-align: right; }

@media (max-width: 900px) {
  .site-footer { justify-content: center; text-align: center; }
  .footer-copy { text-align: center; }
}

/* SCROLL PROGRESS */
.scroll-progress-track { position: fixed; top: 0; left: 0; right: 0; z-index: 70; height: 2px; background: transparent; }
.scroll-progress-bar { height: 100%; width: 0%; background: var(--accent); transition: width 0.1s linear; }

/* BREADCRUMBS */
.breadcrumb {
  padding: 88px 5vw 0; max-width: 1400px; display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-faint);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-body); }

/* SPECIES-PAGE HERO */
.sp-hero { position: relative; width: 100%; height: max(56vh, 30vw); min-height: 420px; overflow: hidden; margin-top: 0; }
.sp-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,8,6,0.78) 0%, rgba(6,8,6,0.35) 40%, rgba(6,8,6,0.15) 65%),
              linear-gradient(0deg, rgba(6,8,6,0.92) 0%, rgba(6,8,6,0.1) 55%);
}
.sp-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 5vw 48px; max-width: 760px; }
.sp-hero-kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.2em; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; }
.sp-hero-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(32px, 5.4vw, 64px); line-height: 1.03; margin: 0 0 8px; color: var(--text-hero); text-transform: uppercase; }
.sp-hero-lead { font-size: 16px; line-height: 1.6; color: var(--text-body); max-width: 600px; margin: 0; font-weight: 300; }
.sp-hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.sp-hero-latin { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--accent); }
.sp-hero-en { font-size: 14px; color: var(--text-faint); }

/* INTRO */
.sp-intro { padding: 56px 5vw 8px; max-width: 900px; }
.sp-intro p { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin: 0 0 20px; font-weight: 300; }

/* SPECIES SECTIONS */
.sp-gallery { padding: 48px 5vw 90px; }
.sp-section { margin-bottom: 60px; }
.sp-section-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.sp-section-name { font-family: var(--font-serif); font-weight: 700; font-size: 22px; margin: 0; color: var(--text); }
.sp-section-latin { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--accent); }
.sp-section-en { font-size: 13px; color: var(--text-faint); }
.sp-call-link {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 20px; padding: 4px 11px;
}
.sp-description { font-size: 15px; line-height: 1.65; color: var(--text-secondary); max-width: 760px; margin: 0 0 20px; font-weight: 300; }
.sp-funfact {
  display: flex; align-items: baseline; gap: 10px; max-width: 640px; margin: 0 0 24px;
  padding: 12px 16px; border: 1px solid var(--accent); border-radius: 6px; background: oklch(20% 0.02 155 / 0.4);
}
.sp-funfact-label { font-size: 11px; line-height: 1.55; letter-spacing: 0.08em; font-weight: 700; color: var(--accent); text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.sp-funfact-text { font-size: 13.5px; line-height: 1.55; color: var(--text-secondary); font-weight: 300; }

.shot-grid { column-count: 4; column-gap: 4px; }
@media (max-width: 900px) { .shot-grid { column-count: 2; } }
@media (max-width: 560px) { .shot-grid { column-count: 1; } }
.shot-tile { break-inside: avoid; margin-bottom: 4px; position: relative; width: 100%; cursor: zoom-in; }
.shot-tile img { width: 100%; height: auto; display: block; border-radius: 2px; }
.shot-caption {
  opacity: 0; transition: opacity 0.2s ease; position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 10px 6px; background: linear-gradient(0deg, rgba(6,8,6,0.88), transparent);
  font-size: 11.5px; letter-spacing: 0.03em; color: var(--text-hero); pointer-events: none;
}
.shot-tile:hover .shot-caption { opacity: 1; }

/* BACK TO TOP */
.back-to-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 60; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--accent); background: oklch(13% 0.018 155 / 0.9); color: var(--accent); font-size: 18px;
  cursor: pointer; display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.back-to-top.is-visible { display: flex; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(6,8,6,0.94); display: none;
  flex-direction: column; align-items: center; justify-content: center; padding: 6vw; gap: 18px;
}
.lightbox.is-open { display: flex; }
.lightbox-close { position: absolute; top: 28px; right: 32px; background: none; border: none; color: var(--text-secondary); font-size: 36px; line-height: 1; cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-secondary); font-size: 40px; line-height: 1; cursor: pointer; padding: 8px; z-index: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-image-wrap { width: min(94vw, 1500px); height: min(86vh, 950px); display: flex; align-items: center; justify-content: center; }
.lightbox-image-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox-meta { width: min(94vw, 1500px); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.lightbox-meta-name { font-family: var(--font-serif); font-weight: 700; font-size: 18px; color: var(--text-hero); }
.lightbox-meta-latin { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--accent); }
.lightbox-meta-caption { font-size: 14px; color: var(--text-faint); font-style: italic; }

/* VIDEOS + RELATED */
.sp-section-title {
  font-family: var(--font-serif); font-weight: 700; font-size: 24px; margin: 0 0 24px; color: var(--text);
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.sp-videos { padding: 0 5vw 90px; max-width: 1400px; }
.sp-videos-grid { display: flex; gap: 28px; flex-wrap: wrap; }
.sp-video { flex: 1 1 360px; min-width: 280px; max-width: 380px; }
.sp-video-caption { font-size: 15px; line-height: 1.55; color: var(--text-secondary); margin: 0 0 16px; font-weight: 300; min-height: 3.1em; }
.sp-video-frame {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--bg-elevated);
}
.sp-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.sp-related { padding: 0 5vw 90px; }
.sp-related-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.related-chip {
  font-size: 14px; padding: 8px 16px; border: 1px solid var(--border-strong); border-radius: 20px;
  color: var(--text-secondary); white-space: nowrap; transition: all 0.25s ease;
}
.related-chip:hover { background: var(--accent); border-color: var(--accent); color: var(--bg) !important; }

/* ABOUT PAGE */
.about-section {
  display: flex; flex-wrap: wrap; gap: 56px; padding: 110px 6vw 40px; max-width: 1180px;
  margin: 0 auto; align-items: flex-start;
}
.about-photos { flex: 1 1 340px; min-width: 300px; max-width: 460px; display: flex; flex-direction: column; gap: 20px; }
.about-photo { aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-primary img { object-position: center 75%; }
.about-photo-secondary { box-shadow: 0 20px 40px -20px oklch(0% 0 0 / 0.5); }
.about-text { flex: 2 1 420px; min-width: 300px; }
.about-kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.28em; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; }
.about-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(30px, 4.2vw, 48px); margin: 0 0 24px; line-height: 1.1; }
.about-paragraph { font-size: 17px; line-height: 1.75; color: var(--text-body); font-weight: 300; margin: 0 0 20px; }
.about-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }
.link-card {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px; border: 1px solid var(--border-strong);
  border-radius: 6px; color: var(--text-hero); font-size: 14px; font-weight: 500; transition: border-color 0.2s ease;
}
.link-card:hover { border-color: var(--accent); }
.link-card:hover .lc-arrow { transform: translateX(4px); }
.link-card-accent { border-color: var(--accent); color: var(--accent); font-weight: 600; }
.lc-arrow { transition: transform 0.2s ease; display: inline-block; }

/* CONTACT PAGE */
.contact-section {
  display: flex; flex-wrap: wrap; gap: 56px; padding: 110px 5vw 90px; max-width: 1100px; margin: 0 auto;
}
.contact-form-col { flex: 2 1 420px; min-width: 300px; max-width: 640px; }
.contact-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(28px, 4vw, 44px); margin: 0 0 16px; }
.contact-lead { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 24px; font-weight: 300; }
.contact-note {
  font-size: 13.5px; line-height: 1.6; color: var(--text-muted); margin: 0 0 24px;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: 6px;
}
.contact-note strong { color: var(--text-hero); font-weight: 600; }
.contact-note a { color: var(--accent); }
.contact-species-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--accent);
  border-radius: 20px; font-size: 13px; color: var(--text-hero); margin-bottom: 24px;
}
.contact-success { padding: 24px; border: 1px solid var(--accent); border-radius: 6px; font-size: 15px; color: var(--text-hero); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.kf-field label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.kf-input {
  width: 100%; padding: 12px 14px; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text); font-family: var(--font-sans); font-size: 15px;
}
.kf-input-narrow { max-width: 120px; }
.kf-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.kf-error { color: oklch(70% 0.18 30); font-size: 14px; margin: 0; }
.kf-submit {
  margin-top: 8px; align-self: flex-start; padding: 12px 28px; background: transparent; border: 1px solid var(--accent);
  border-radius: 4px; color: var(--text-hero); font-size: 14px; letter-spacing: 0.08em; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
}
.kf-submit:hover { background: var(--accent); color: var(--bg); }
.contact-photo {
  flex: 1 1 260px; min-width: 220px; max-width: 340px; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-lg); align-self: flex-start; margin-top: 36px;
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }

/* LEGAL / TEXT PAGES */
.legal-section { padding: 110px 5vw 90px; max-width: 720px; margin: 0 auto; }
.legal-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(28px, 4vw, 44px); margin: 0 0 40px; }
.legal-heading { font-family: var(--font-serif); font-weight: 700; font-size: 18px; margin: 0 0 10px; color: var(--accent); }
.legal-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin: 0 0 28px; font-weight: 300; }
.legal-text a { color: var(--accent); }

/* SITEMAP */
.sm-intro { padding: 110px 5vw 24px; max-width: 1000px; margin: 0 auto; }
.sm-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.05; margin: 0 0 18px; }
.sm-lead { font-size: 16px; line-height: 1.6; color: var(--text-secondary); max-width: 640px; margin: 0; font-weight: 300; }
.sm-group { padding: 36px 5vw; max-width: 1000px; margin: 0 auto; border-top: 1px solid var(--border); }
.sm-group-label {
  font-family: var(--font-serif); font-weight: 700; font-size: 14px; letter-spacing: 0.15em; color: var(--text-faint);
  margin: 0 0 18px; text-transform: uppercase;
}
.sm-links { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.sm-link { font-size: 15px; color: var(--text-secondary); padding: 6px 0; transition: color 0.2s ease; }
.sm-link:hover { color: var(--accent); }
.sm-dot { color: oklch(40% 0.01 95); }

/* STATISTIK */
.stat-intro { padding: 110px 6vw 20px; max-width: 900px; margin: 0 auto; }
.stat-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; margin: 0 0 18px; }
.stat-lead { font-size: 17px; line-height: 1.65; color: var(--text-secondary); font-weight: 300; margin: 0; }
.stat-cards-section { padding: 24px 6vw 8px; max-width: 1100px; margin: 0 auto; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 720px) { .stat-cards { grid-template-columns: repeat(2, 1fr); } }
.stat-card { border: 1px solid var(--border); border-radius: 6px; padding: 20px; }
.stat-card-value { font-family: var(--font-serif); font-weight: 800; font-size: 26px; color: var(--accent); }
.stat-card-label { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }
.stat-bars-section { padding: 44px 6vw 8px; max-width: 1000px; margin: 0 auto; }
.stat-bars-section-last { padding-bottom: 90px; }
.stat-h2 { font-family: var(--font-serif); font-weight: 700; font-size: 22px; margin: 0 0 20px; }
.stat-sub { font-size: 13.5px; color: var(--text-faint); margin: -14px 0 20px; }
.bar-list { display: flex; flex-direction: column; gap: 10px; }
.bar-row { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.bar-row-link:hover .bar-fill { filter: brightness(1.15); }
.bar-label { width: 90px; flex-shrink: 0; font-size: 13px; color: var(--text-body); }
.bar-label-wide { width: 90px; }
.bar-label-wider { width: 200px; }
.bar-label-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 12.5px; }
.bar-track { flex: 1; height: 22px; border-radius: 4px; background: oklch(22% 0.02 95 / 0.3); overflow: hidden; }
.bar-track-thin { height: 16px; border-radius: 3px; }
.bar-fill { height: 100%; background: var(--accent); transition: filter 0.2s ease; }
.bar-count { width: 80px; flex-shrink: 0; font-size: 13px; color: var(--text-faint); text-align: right; }
.bar-count-narrow { width: 36px; font-size: 12px; }

/* ARTENVERZEICHNIS */
.av-intro { padding: 110px 6vw 32px; max-width: 1100px; margin: 0 auto; }
.av-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; margin: 0 0 18px; }
.av-summary { font-size: 17px; line-height: 1.6; color: var(--text-secondary); max-width: 640px; font-weight: 300; margin: 0 0 20px; }
.av-headline {
  display: flex; flex-wrap: wrap; gap: 24px; padding: 16px 0 28px; margin-bottom: 28px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.av-headline-num { font-family: var(--font-serif); font-weight: 800; font-size: 22px; color: var(--accent); }
.av-headline-label { font-size: 13px; color: var(--text-muted); }
.av-controls { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.av-search-input {
  flex: 1; min-width: 260px; background: var(--bg-elevated); border: 1px solid var(--border-strong);
  color: var(--text); font-size: 15px; padding: 14px 18px; border-radius: 4px; font-family: var(--font-sans);
}
.av-select {
  background: var(--bg-elevated); border: 1px solid var(--border-strong); color: var(--text-secondary);
  font-size: 14px; padding: 14px 16px; border-radius: 4px; font-family: var(--font-sans);
}
.av-list-section { padding: 24px 6vw 90px; max-width: 1100px; margin: 0 auto; }
.av-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: oklch(22% 0.02 95 / 0.15);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
@media (max-width: 900px) { .av-list { grid-template-columns: 1fr; } }
.av-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 20px;
  background: oklch(15% 0.018 155); min-width: 0; overflow: hidden; transition: background 0.15s ease;
}
.av-row:hover { background: var(--bg-elevated); }
.av-row-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.av-row-name-line { display: flex; align-items: center; gap: 8px; }
.av-row-name {
  font-family: var(--font-serif); font-weight: 600; font-size: 15px; color: var(--text-hero);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.av-row-sub { font-size: 12.5px; font-style: italic; color: var(--text-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.av-row-tags { flex-shrink: 0; display: flex; align-items: center; gap: 6px; }
.av-region-dot {
  border: none; cursor: pointer; padding: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; color: oklch(13% 0.018 155); font-size: 7.5px; font-weight: 800;
}
.av-badge {
  font-size: 9.5px; letter-spacing: 0.08em; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; color: oklch(13% 0.018 155);
}
.av-badge-new { background: var(--accent); }
.av-badge-endemic { background: oklch(70% 0.13 175); }

/* REGION HUB */
.rh-hero { position: relative; width: 100%; height: max(62vh, 32vw); min-height: 440px; overflow: hidden; }
.rh-hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 2.2s ease; }
.rh-hero-slide.is-active { opacity: 1; }
.rh-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,8,6,0.75) 0%, rgba(6,8,6,0.35) 35%, rgba(6,8,6,0.15) 60%),
              linear-gradient(0deg, rgba(6,8,6,0.9) 0%, rgba(6,8,6,0.1) 55%);
}
.rh-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 5vw 56px; max-width: 820px; }
.rh-hero-kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.28em; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; }
.rh-hero-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(34px, 5.6vw, 72px); line-height: 1.03; margin: 0 0 18px; color: var(--text-hero); }
.rh-hero-lead { font-size: 17px; line-height: 1.5; color: var(--text-body); max-width: 560px; margin: 0; font-weight: 300; }

.rh-intro { padding: 64px 5vw 8px; max-width: 900px; margin: 0 auto; }
.rh-intro p { font-family: var(--font-serif); font-weight: 400; font-style: italic; font-size: clamp(19px, 2vw, 24px); line-height: 1.6; color: var(--text-body); margin: 0; }

.rh-jump-rail {
  position: sticky; top: 0; z-index: 40; display: flex; gap: 8px; overflow-x: auto; padding: 16px 5vw;
  background: oklch(11% 0.016 155 / 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.rh-pill {
  font-size: 12px; letter-spacing: 0.08em; font-weight: 600; padding: 8px 16px; border-radius: 20px; white-space: nowrap;
  border: 1px solid var(--border-strong); color: var(--text-secondary); background: transparent; transition: all 0.2s ease; flex-shrink: 0;
}
.rh-pill.is-active { border-color: var(--accent); color: var(--accent); background: oklch(20% 0.03 155); }
.rh-pill:hover { border-color: var(--accent); color: var(--accent); cursor: pointer; }

.rh-group { padding: 88px 5vw 20px; }
.rh-group-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 28px;
  padding-bottom: 22px; border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.rh-group-heading { display: flex; align-items: baseline; gap: 16px; }
.rh-group-num { font-family: var(--font-serif); font-size: 13px; color: var(--accent); letter-spacing: 0.2em; font-weight: 700; }
.rh-group-label { font-family: var(--font-serif); font-weight: 700; font-size: 28px; margin: 0; color: var(--text); }
.rh-group-text {
  font-family: var(--font-serif); font-style: italic; font-size: 16px; line-height: 1.6; color: var(--text-muted);
  max-width: 400px; margin: 0; font-weight: 400; text-align: right; padding-left: 24px; border-left: 1px solid var(--border-strong);
}

.rh-tile { position: relative; display: block; overflow: hidden; background: var(--bg-elevated); }
.rh-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.rh-tile:hover .rh-tile-img { transform: scale(1.07); }
.rh-tile-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,6,0) 40%, rgba(6,8,6,0.9) 100%); pointer-events: none; }
.rh-tile-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; pointer-events: none; }
.rh-tile-num { font-size: 11px; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 6px; }
.rh-tile-name {
  display: inline-block; font-family: var(--font-serif); font-weight: 700; color: var(--text-hero);
  line-height: 1.15; pointer-events: auto; transition: color 0.2s ease;
}
.rh-tile-name:hover { color: var(--accent); }

.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 4px; }
.tile-lg { grid-column: span 2; grid-row: span 2; }
.tile-md { grid-column: span 2; grid-row: span 1; }
.tile-sm { grid-column: span 1; grid-row: span 1; }
@media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; } }
@media (max-width: 560px) {
  .tile-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .tile-lg, .tile-md, .tile-sm { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* 404 */
.nf-section {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 6vw; text-align: center; min-height: calc(100vh - 200px);
}
.nf-code { color: var(--accent); font-family: var(--font-serif); font-weight: 900; font-size: clamp(64px, 12vw, 140px); line-height: 1; margin-bottom: 8px; }
.nf-title { font-family: var(--font-serif); font-weight: 800; font-size: clamp(22px, 3vw, 30px); margin: 0 0 14px; }
.nf-text { font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 480px; margin: 0 0 32px; font-weight: 300; }
.nf-search-form { display: flex; gap: 10px; width: 100%; max-width: 440px; margin-bottom: 36px; }
.nf-search-input {
  flex: 1; background: var(--bg-elevated); border: 1px solid var(--border-strong); color: var(--text);
  font-size: 15px; padding: 12px 16px; border-radius: 4px; font-family: var(--font-sans);
}
.nf-search-btn {
  padding: 12px 20px; background: transparent; border: 1px solid var(--accent); border-radius: 4px;
  color: var(--text-hero); font-size: 13px; letter-spacing: 0.06em; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: all 0.2s ease;
}
.nf-search-btn:hover { background: var(--accent); color: var(--bg); }
.nf-quick-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.quick-link {
  padding: 10px 18px; border: 1px solid var(--border-strong); border-radius: 20px; font-size: 13.5px;
  color: var(--text-secondary); transition: all 0.2s ease;
}
.quick-link:hover { border-color: var(--accent); color: var(--accent); }

/* GEFÄHRDETE ARTEN */
.ga-intro { padding: 110px 6vw 20px; max-width: 900px; margin: 0 auto; }
.ga-head-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ga-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; margin: 0 0 18px; max-width: 760px; text-wrap: pretty; }
.print-btn {
  display: flex; align-items: center; gap: 8px; background: none; border: 1px solid var(--border-strong);
  color: var(--text-body); font-size: 12.5px; letter-spacing: 0.05em; padding: 9px 16px; border-radius: 3px;
  cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: all 0.2s ease;
}
.print-btn:hover { border-color: var(--accent); color: var(--accent); }
.ga-lead { font-size: 17px; line-height: 1.65; color: var(--text-secondary); font-weight: 300; margin: 0; }

.ga-scale-section { padding: 36px 6vw 24px; max-width: 1100px; margin: 0 auto; }
.ga-scale-bar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; border-radius: 6px; overflow: hidden; }
@media (max-width: 720px) { .ga-scale-bar { grid-template-columns: repeat(4, 1fr); } }
.iucn-cell { padding: 14px 10px 12px; min-height: 64px; position: relative; cursor: default; }
.iucn-cell:hover .iucn-tip { opacity: 1; }
.iucn-tip {
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 6px;
  background: oklch(10% 0.01 95); color: oklch(95% 0.008 95); font-size: 11px; padding: 6px 10px;
  border-radius: 4px; white-space: nowrap; opacity: 0; transition: opacity 0.15s ease; pointer-events: none; z-index: 5;
}
.iucn-code { font-size: 10.5px; font-weight: 800; letter-spacing: 0.05em; color: oklch(15% 0.02 95); }
.iucn-count { font-size: 10px; font-weight: 600; color: oklch(15% 0.02 95); margin-top: 4px; }
.ga-scale-legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 28px; }
.ga-legend-item { border-left: 3px solid; padding-left: 14px; }
.ga-legend-code { font-family: var(--font-serif); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.ga-legend-desc { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); font-weight: 300; }

.ga-groups-section { padding: 40px 6vw 80px; max-width: 1000px; margin: 0 auto; }
.ga-group { margin-bottom: 44px; }
.ga-group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.ga-group-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.ga-group-label { font-family: var(--font-serif); font-weight: 700; font-size: 22px; margin: 0; }
.ga-group-count { font-size: 13px; color: var(--text-faint); }
.ga-group-filter { margin-left: auto; font-size: 12px; color: var(--accent); letter-spacing: 0.03em; }
.ga-region-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 12px; color: var(--text-muted); }
.ga-region-tag { white-space: nowrap; }
.ga-region-bar { flex: 1; height: 6px; border-radius: 3px; overflow: hidden; display: flex; background: oklch(28% 0.02 95 / 0.4); }
.ga-region-bar-eu { background: oklch(65% 0.15 250); }
.ga-region-bar-so { background: oklch(70% 0.16 45); }
.ga-species-list {
  display: grid; grid-template-columns: 1fr; gap: 1px; background: oklch(22% 0.02 95 / 0.15);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.ga-species-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 20px; background: oklch(15% 0.018 155); transition: background 0.15s ease; }
.ga-species-row:hover { background: var(--bg-elevated); }
.ga-species-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ga-species-name { font-family: var(--font-serif); font-weight: 600; font-size: 15px; }
.ga-species-sub { font-size: 12.5px; font-style: italic; color: var(--text-faint); }
.ga-species-tags { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.ga-species-chapter { font-size: 11px; color: var(--text-faint); letter-spacing: 0.04em; }

/* WUSSTEST DU */
.wd-intro { padding: 110px 6vw 24px; max-width: 900px; margin: 0 auto; }
.wd-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; margin: 0 0 18px; text-wrap: pretty; }
.wd-lead { font-size: 17px; line-height: 1.65; color: var(--text-secondary); font-weight: 300; margin: 0; }
.wd-grid-section { padding: 16px 6vw 90px; max-width: 1300px; margin: 0 auto; }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 900px) { .fact-grid { grid-template-columns: 1fr; } }
.fact-card {
  display: block; border: 1px solid var(--border); border-radius: 8px; padding: 24px;
  background: oklch(16% 0.018 155); transition: transform 0.2s ease, border-color 0.2s ease;
}
.fact-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.fact-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.fact-card-species { font-family: var(--font-serif); font-weight: 700; font-size: 17px; color: var(--text-hero); }
.fact-card-text { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 14px; font-weight: 300; }
.fact-card-cta { font-size: 12.5px; color: var(--accent); letter-spacing: 0.03em; }

/* ARTENVERGLEICH */
.cmp-intro { padding: 110px 6vw 8px; max-width: 900px; margin: 0 auto; }
.cmp-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; margin: 0 0 18px; text-wrap: pretty; }
.cmp-lead { font-size: 17px; line-height: 1.65; color: var(--text-secondary); font-weight: 300; margin: 0; }
.cmp-grid-section { padding: 36px 6vw 90px; max-width: 1000px; margin: 0 auto; }
.cmp-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; }
@media (max-width: 860px) { .cmp-grid { grid-template-columns: 1fr; } .cmp-swap-col { display: none; } }
.cmp-select { width: 100%; margin-bottom: 20px; }
.cmp-swap-col { display: flex; align-items: center; justify-content: center; padding-top: 14px; }
.swap-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-strong); background: none;
  color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.swap-btn:hover { border-color: var(--accent); color: var(--accent); }
.cmp-card { border: 1px solid var(--border); border-radius: 6px; padding: 24px; min-height: 40px; }
.cmp-name { font-family: var(--font-serif); font-weight: 700; font-size: 20px; margin: 0 0 4px; }
.cmp-latin { font-family: var(--font-serif); font-style: italic; font-size: 13.5px; color: var(--text-faint); margin: 0 0 18px; }
.cmp-rows { display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; }
.cmp-row { display: flex; justify-content: space-between; align-items: center; }
.cmp-row-label { color: var(--text-faint); }
.cmp-row-right { text-align: right; }
.cmp-status-badge { font-size: 10px; letter-spacing: 0.08em; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; color: oklch(13% 0.018 155); }
.cmp-status-none { color: var(--text-faint); }
.cmp-link { display: inline-block; margin-top: 20px; font-size: 13px; color: var(--accent); }

/* DOKUMENTATIONEN */
.dk-intro { padding: 110px 6vw 24px; max-width: 900px; margin: 0 auto; }
.dk-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; margin: 0 0 18px; text-wrap: pretty; }
.dk-lead { font-size: 17px; line-height: 1.65; color: var(--text-secondary); font-weight: 300; margin: 0; }
.dk-grid-section { padding: 8px 6vw 90px; max-width: 1400px; margin: 0 auto; }
.dk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .dk-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .dk-grid { grid-template-columns: 1fr; } }
.dk-video-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; box-shadow: 0 14px 40px rgba(0,0,0,0.4); background: var(--bg-elevated); }
.dk-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.dk-footer-row { display: flex; align-items: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.dk-playlist-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--accent); }
.dk-divider { width: 1px; height: 14px; background: var(--border-strong); }
.dk-count { font-size: 13px; color: var(--text-faint); }

/* EVERY PICTURE TELLS A STORY */
.ep-header { padding: 110px 5vw 40px; max-width: 900px; margin: 0 auto; }
.ep-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(30px, 5vw, 52px); margin: 0 0 22px; text-wrap: pretty; }
.ep-lead { font-size: 16px; line-height: 1.7; color: var(--text-body); margin: 0; font-weight: 300; }
.ep-stories { padding: 20px 5vw 40px; max-width: 900px; margin: 0 auto; }
.ep-story { margin-bottom: 72px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.ep-story-name { font-family: var(--font-serif); font-weight: 700; font-size: 26px; margin: 0 0 6px; }
.ep-story-latin { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--accent); margin-bottom: 20px; }
.ep-story-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 24px 0 28px; }
@media (max-width: 700px) { .ep-story-shots { grid-template-columns: repeat(2, 1fr); } }
.ep-story-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; }
.ep-story-para { font-size: 15.5px; line-height: 1.75; color: var(--text-secondary); margin: 0 0 18px; font-weight: 300; white-space: pre-line; }

/* QR LINKS */
.qr-page { position: relative; background: var(--bg); color: var(--text); min-height: 100vh; overflow: hidden; }
.qr-overlay { position: absolute; inset: 0; z-index: 0; background: radial-gradient(1000px 600px at 50% 20%, oklch(20% 0.03 155) 0%, var(--bg) 70%); }
.qr-content { position: relative; z-index: 2; min-height: 100vh; display: flex; justify-content: center; padding: 56px 20px; }
.qr-inner { width: 100%; max-width: 420px; display: flex; flex-direction: column; align-items: center; }
.qr-logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; }
.qr-name { font-family: var(--font-serif); font-weight: 700; font-size: 22px; letter-spacing: 0.03em; margin: 0 0 6px; text-align: center; }
.qr-kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 36px; text-transform: uppercase; text-align: center; }
.qr-links { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.qr-link {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px 20px;
  border: 1px solid var(--border-strong); border-radius: 8px; color: var(--text); font-size: 15px; font-weight: 500;
  text-align: center; letter-spacing: 0.02em; transition: all 0.2s ease;
}
.qr-link:hover { border-color: var(--accent); background: var(--bg-elevated); }
.qr-copy { font-size: 11.5px; color: var(--text-faint); margin-top: 36px; text-align: center; }

/* FAVORITEN */
.fav-intro { padding: 110px 5vw 24px; max-width: 900px; margin: 0 auto; }
.fav-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.05; margin: 0 0 18px; }
.fav-summary { font-size: 16px; line-height: 1.6; color: var(--text-secondary); max-width: 640px; margin: 0; font-weight: 300; }
.fav-share-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.fav-share-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--accent);
  border-radius: 4px; background: transparent; color: var(--text-hero); font-size: 13px; letter-spacing: 0.04em;
  font-weight: 600; cursor: pointer; transition: all 0.2s ease;
}
.fav-share-btn:hover { background: var(--accent); color: var(--bg); }
.fav-share-copied { font-size: 12.5px; color: var(--accent); }

.fav-shared-section { padding: 0 5vw 20px; max-width: 900px; margin: 0 auto; }
.fav-shared-box { border: 1px solid var(--accent); border-radius: 6px; padding: 20px 24px; }
.fav-shared-intro { font-size: 14px; color: var(--text-secondary); margin: 0 0 14px; }
.fav-shared-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fav-shared-list a { font-size: 14px; color: var(--text-hero); }
.fav-adopt-btn {
  padding: 9px 16px; border: 1px solid var(--accent); border-radius: 4px; background: transparent;
  color: var(--text-hero); font-size: 12.5px; letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s ease;
}
.fav-adopt-btn:hover { background: var(--accent); color: var(--bg); }

.fav-list-section { padding: 8px 5vw 90px; max-width: 900px; margin: 0 auto; }
.fav-list { display: grid; grid-template-columns: 1fr; gap: 2px; background: oklch(22% 0.02 95 / 0.15); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.fav-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; background: oklch(15% 0.018 155); transition: background 0.15s ease; }
.fav-row:hover { background: var(--bg-elevated); }
.fav-row-name { font-family: var(--font-serif); font-weight: 600; font-size: 16px; color: var(--text-hero); }
.remove-btn { background: none; border: none; cursor: pointer; color: var(--text-faint); font-size: 13px; letter-spacing: 0.04em; transition: color 0.2s ease; }
.remove-btn:hover { color: #e05a4e; }

.fav-empty-section { padding: 8px 5vw 90px; max-width: 640px; margin: 0 auto; }
.fav-empty-text { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.fav-empty-link { display: inline-block; margin-top: 16px; font-size: 13.5px; color: var(--accent); }

@media print {
  .nav, .back-to-top, .print-btn, .site-footer, .scroll-progress-track { display: none !important; }
  body, .page { background: white !important; color: black !important; }
}
