/* ============================================
   JOLANDA SPIESS – Website Styles
   Design: Archiv Modern
   ============================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Colors */
  --bg: #FAFAF8;
  --bg-alt: #F2F1ED;
  --bg-dark: #1A1A18;
  --text: #1A1A18;
  --text-secondary: #6B6B66;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.65);
  --accent-1: #2D5BFF;
  --accent-2: #8B5CF6;
  --accent-3: #EC4899;
  --gradient: linear-gradient(135deg, #2D5BFF, #8B5CF6, #EC4899);
  --green: #2E7D32;
  --green-bg: #E8F5E9;
  --amber: #E65100;
  --amber-bg: #FFF3E0;
  --border: #E2E1DC;
  --border-light: #ECEAE5;
  --white: #FFFFFF;

  /* Typography */
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing */
  --section-pad: 100px clamp(24px, 5vw, 80px);
  --max-w: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
}

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

/* --- LAYOUT UTILITIES --- */
.inner { max-width: var(--max-w); margin: 0 auto; min-width: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

/* --- NAVIGATION --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(24px, 5vw, 80px);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.nav-center { display: flex; gap: 32px; }
.nav-center a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--text); }
.nav-center a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.lang-switch:hover { border-color: var(--accent-1); color: var(--accent-1); }
.lang-switch.active { color: var(--text); border-color: var(--text); }

/* --- HERO --- */
.hero {
  padding: 160px clamp(24px, 5vw, 80px) 100px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 32px;
}
.hero h1 em {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* --- STATS BAR --- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px clamp(24px, 5vw, 80px);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.stat-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- SECTION HEADERS --- */
section { padding: var(--section-pad); }
.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 60px;
}
.section-number {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-1);
  letter-spacing: 0.05em;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-left: auto;
}

/* --- CASE CARDS (Homepage) --- */
.cases-grid { display: grid; gap: 24px; max-width: 100%; }
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 32px;
  align-items: start;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 0;
}
.case-content {
  min-width: 0;
}
.case-meta {
  grid-column: 2;
}
.case-card:hover {
  border-color: var(--accent-1);
  box-shadow: 0 8px 40px rgba(45,91,255,0.08);
  transform: translateY(-2px);
}
.case-number {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}
.case-card:hover .case-number {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.case-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}
.case-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.case-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.case-year {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-secondary);
}
.case-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.case-status.won { background: var(--green-bg); color: var(--green); }
.case-status.pending { background: var(--amber-bg); color: var(--amber); }
.case-status.landmark {
  background: var(--gradient);
  color: white;
}
.case-arrow {
  font-size: 24px;
  color: var(--border);
  transition: all 0.3s;
  margin-top: 4px;
}
.case-card:hover .case-arrow { color: var(--accent-1); transform: translateX(4px); }

/* --- TIMELINE --- */
.timeline-section { background: var(--bg-alt); }
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding: 0 0 48px 32px;
  text-decoration: none;
  color: inherit;
  display: block;
}
a.timeline-item:hover .timeline-title {
  color: var(--accent-1);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-1);
  border: 3px solid var(--bg-alt);
}
.timeline-year {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-2);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
}
.timeline-desc {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 560px;
}

/* --- CONTEXT PROFILE --- */
.context-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.context-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.context-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.context-text p:last-child { margin-bottom: 0; }
.context-text p.context-lead {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text);
  line-height: 1.35;
}

/* --- ABOUT / CONTEXT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 8px;
}
.about-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}
.about-text p:first-child {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text);
  line-height: 1.5;
}
.about-aside {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-aside h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.press-quote {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.press-quote:last-child { border-bottom: none; }
.press-quote blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}
.press-source {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- BOOK SECTION --- */
.book-section { background: var(--bg-dark); color: var(--text-on-dark); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.book-visual {
  display: flex;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(45,91,255,0.15), rgba(139,92,246,0.15));
  border-radius: var(--radius);
  padding: 40px;
}
.book-cover {
  width: 180px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}
.book-cover-placeholder {
  width: 180px;
  height: 260px;
  background: var(--gradient);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: white;
  text-align: center;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.book-content .section-number { color: var(--accent-3); }
.book-content .section-title { color: var(--text-on-dark); margin-bottom: 20px; }
.book-content p {
  color: var(--text-on-dark-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.book-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-on-dark);
  margin-top: 16px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}
.book-link:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* --- FAQ SECTION --- */
.faq-section {
  background: var(--bg-alt);
}
.faq-grid {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-secondary);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] .faq-question::after {
  content: '\2212';
}
.faq-question:hover { color: var(--accent-1); }
.faq-answer {
  padding: 0 0 18px 0;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* --- CONTACT --- */
.contact-section { text-align: center; }
.contact-section .section-header { justify-content: center; }
.contact-desc {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  background: var(--text);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}
.contact-link:hover { background: var(--accent-1); }

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px clamp(24px, 5vw, 80px);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-secondary);
}
.footer-inner a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-inner a:hover { color: var(--text); }

/* ============================================
   CASE DETAIL PAGE
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  padding: 88px clamp(24px, 5vw, 80px) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}
.breadcrumb a:hover { color: var(--accent-1); }
.breadcrumb .sep { margin: 0 8px; }

/* Case Hero */
.case-hero {
  padding: 40px clamp(24px, 5vw, 80px) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.case-hero .case-tag { margin-bottom: 16px; }
.case-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.case-hero .case-summary {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* Case Meta Bar */
.case-meta-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px clamp(24px, 5vw, 80px);
}
.case-meta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 48px;
}
.meta-item {}
.meta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.meta-value {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
}

/* Case Body Layout */
.case-body {
  padding: 60px clamp(24px, 5vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
}
.case-main {}
.case-sidebar {}

/* Case Chronology */
.case-chronology h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 32px;
}
.chrono-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.chrono-item:first-child { border-top: 1px solid var(--border-light); }
.chrono-date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-secondary);
  padding-top: 2px;
}
.chrono-content h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.chrono-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Case Significance */
.case-significance {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.case-significance h2 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 16px;
}
.case-significance p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* Case Documents Section */
.case-documents {
  margin-top: 48px;
}
.case-documents > h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 12px;
}
.case-documents > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}
.doc-group {
  margin-bottom: 36px;
}
.doc-group-header {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}
.doc-group-header span {
  display: block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  margin-top: 4px;
}
.filing-list {
  list-style: none;
}
.filing-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}
.filing-item:hover {
  background: var(--bg-alt);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}
.filing-date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.filing-title a {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.filing-title a:hover {
  color: var(--accent-1);
}
.filing-party {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--text-secondary);
  white-space: nowrap;
}
.filing-party.party-jsh { background: #EBF5FF; color: #1a5fb4; }
.filing-party.party-mb { background: #FFF3E0; color: #c54e00; }
.filing-party.party-gericht { background: #E8F5E9; color: #2E7D32; }
.filing-party.party-schweiz { background: #F3E8FF; color: #7c3aed; }
.filing-party.party-egmr { background: #E8F5E9; color: #2E7D32; }
.filing-party.party-beilage { background: var(--bg-alt); color: var(--text-secondary); }
.filing-party.party-ringier { background: #FEE2E2; color: #b91c1c; }

/* Protected Documents */
.filing-item.protected {
  background: linear-gradient(90deg, rgba(139,92,246,0.04) 0%, transparent 100%);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 4px;
}
.filing-item.protected:hover {
  background: linear-gradient(90deg, rgba(139,92,246,0.08) 0%, rgba(139,92,246,0.02) 100%);
}
.filing-item.protected .filing-title a {
  color: var(--text-secondary);
  cursor: default;
  pointer-events: none;
}
.filing-item.protected .filing-title::after {
  content: 'Zugang anfragen';
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  background: rgba(139,92,246,0.08);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s;
  vertical-align: middle;
}
.filing-item.protected .filing-title:hover::after {
  background: rgba(139,92,246,0.15);
  color: #6d28d9;
}
.filing-item.protected .filing-lock {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  vertical-align: -1px;
  opacity: 0.4;
}

/* Access Hint */
.access-hint {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(139,92,246,0.05);
  border-left: 3px solid var(--accent-2);
  border-radius: 0 4px 4px 0;
  line-height: 1.6;
}
.access-hint a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.access-hint a:hover {
  color: #6d28d9;
}

/* Access Request Modal */
.access-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,24,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.access-modal-overlay.active {
  display: flex;
}
.access-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  position: relative;
}
.access-modal h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 8px;
}
.access-modal p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.access-modal .close-modal {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.access-modal .close-modal:hover {
  background: var(--bg-alt);
}
.access-form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.access-form input,
.access-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  background: var(--bg);
}
.access-form input:focus,
.access-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.access-form textarea {
  resize: vertical;
  min-height: 80px;
}
.access-form button[type="submit"] {
  width: 100%;
  padding: 12px 24px;
  background: var(--text);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.access-form button[type="submit"]:hover {
  background: var(--accent-2);
}
.access-form .form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.access-form .form-success.active {
  display: block;
}
.access-form .form-success p {
  font-size: 15px;
  color: var(--green);
}

@media (max-width: 700px) {
  .filing-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .filing-party {
    justify-self: start;
  }
}

/* Sidebar: Documents */
.sidebar-block {
  margin-bottom: 40px;
}
.sidebar-block h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.doc-list { list-style: none; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s;
}
.doc-item:hover { padding-left: 8px; }
.doc-icon {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--text-secondary);
  flex-shrink: 0;
}
.doc-item a {
  font-size: 14px;
  color: var(--accent-1);
  transition: color 0.2s;
}
.doc-item a:hover { color: var(--accent-2); }

/* Sidebar: Related */
.related-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.related-item a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.2s;
}
.related-item a:hover { color: var(--accent-1); }
.related-item .related-type {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }
.fade-up:nth-child(5) { animation-delay: 0.4s; }

/* ============================================
   HAMBURGER MENU (Mobile)
   ============================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .case-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .context-profile {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .book-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* --- NAVIGATION: Hamburger-Menü --- */
  nav {
    height: 56px;
    padding: 0 20px;
    flex-wrap: nowrap;
  }
  .nav-toggle {
    display: block;
    order: 3;
  }
  .nav-logo {
    flex: 1;
    font-size: 13px;
  }
  .nav-right {
    flex-shrink: 0;
    margin-right: 8px;
  }
  .lang-switch {
    font-size: 10px;
    padding: 3px 8px;
  }
  .nav-center {
    display: none !important;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 99;
    padding: 16px 0;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .nav-center.open {
    display: flex !important;
  }
  .nav-center a {
    font-size: 15px;
    letter-spacing: 0.06em;
    padding: 16px 24px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
  }
  .nav-center a:last-child {
    border-bottom: none;
  }
  .nav-center a:hover,
  .nav-center a.active {
    background: var(--bg-alt);
    color: var(--accent-1);
  }

  /* --- HERO --- */
  .hero {
    padding: 88px 20px 48px;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .hero-description {
    font-size: 16px;
  }

  /* --- SECTION HEADERS --- */
  .section-header {
    flex-wrap: wrap;
    margin-bottom: 32px;
    gap: 8px;
  }
  .section-subtitle {
    margin-left: 0;
    width: 100%;
  }
  .section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  /* --- SECTION PADDING --- */
  section {
    padding: 48px 20px;
  }

  /* --- CONTEXT / PROFILE --- */
  .context-profile {
    gap: 32px;
  }
  .context-photo {
    display: flex;
    justify-content: center;
  }
  .context-photo img {
    max-width: 200px;
  }
  .context-text p.context-lead {
    font-size: 24px;
  }

  /* --- BOOK --- */
  .book-grid {
    gap: 32px;
  }
  .book-visual {
    order: -1;
    min-height: 200px;
    padding: 24px;
  }
  .book-cover {
    width: 140px;
  }
  .book-content .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  /* --- CASE CARDS --- */
  .case-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 12px;
  }
  .case-number {
    font-size: 32px;
  }
  .case-meta {
    grid-column: 1;
  }
  .case-title {
    font-size: 22px;
  }
  .case-desc {
    font-size: 14px;
  }

  /* --- TIMELINE --- */
  .timeline {
    padding-left: 28px;
  }
  .timeline-item {
    padding: 0 0 32px 20px;
  }
  .timeline-item::before {
    left: -32px;
    width: 8px;
    height: 8px;
  }
  .timeline-title {
    font-size: 18px;
  }
  .timeline-desc {
    font-size: 14px;
  }

  /* --- REZEPTION / ABOUT --- */
  .about-grid {
    gap: 32px;
  }
  .about-text p:first-child {
    font-size: 20px;
  }
  .press-quote blockquote {
    font-size: 16px;
  }

  /* --- FAQ --- */
  .faq-question {
    font-size: 14px;
    padding: 14px 0;
  }
  .faq-answer p {
    font-size: 13px;
  }

  /* --- CONTACT --- */
  .contact-desc {
    font-size: 15px;
  }

  /* --- CASE DETAIL META BAR --- */
  .case-meta-inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* --- CASE DETAIL CHRONOLOGY --- */
  .chrono-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .chrono-date {
    font-size: 12px;
  }

  /* --- FOOTER --- */
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  footer {
    padding: 24px 20px;
  }

  /* --- CASE DETAIL BREADCRUMB --- */
  .breadcrumb {
    padding: 72px 20px 0;
  }

  /* --- CASE HERO --- */
  .case-hero {
    padding: 24px 20px 40px;
  }
  .case-hero h1 {
    font-size: clamp(26px, 6vw, 36px);
  }

  /* --- CASE BODY --- */
  .case-body {
    padding: 40px 20px;
  }
}


