:root {
  --wvo-ground: #0e0c0a;
  --wvo-surface: #181410;
  --wvo-ridge: #221e18;
  --wvo-ledge: #2c2720;
  --wvo-dust: #7a6d5e;
  --wvo-mid: #a09080;
  --wvo-sand: #c8b99a;
  --wvo-pale: #e8dfd0;
  --wvo-rust: #9a5c38;
  --wvo-rust-lit: #c4784e;
  --wvo-sage: #607060;
  --wvo-sage-lit: #84a080;
  --wvo-line: rgba(200,185,154,0.12);
  --wvo-line-strong: rgba(200,185,154,0.28);
  --wvo-glow: rgba(154,92,56,0.18);
  --wvo-space-xs: clamp(0.4rem, 1vw, 0.6rem);
  --wvo-space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --wvo-space-md: clamp(1.25rem, 2.5vw, 2rem);
  --wvo-space-lg: clamp(2rem, 4vw, 3.5rem);
  --wvo-space-xl: clamp(3rem, 6vw, 5rem);
  --wvo-space-2xl: clamp(4rem, 8vw, 7rem);
  --wvo-text-xs: clamp(0.65rem, 1vw, 0.75rem);
  --wvo-text-sm: clamp(0.78rem, 1.2vw, 0.875rem);
  --wvo-text-base: clamp(0.9rem, 1.5vw, 1rem);
  --wvo-text-md: clamp(1rem, 1.8vw, 1.2rem);
  --wvo-text-lg: clamp(1.2rem, 2.5vw, 1.6rem);
  --wvo-text-xl: clamp(1.5rem, 3.5vw, 2.2rem);
  --wvo-text-2xl: clamp(2rem, 5vw, 3.2rem);
  --wvo-text-3xl: clamp(2.5rem, 7vw, 4.5rem);
  --wvo-radius: 2px;
  --wvo-nav-h: 56px;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('fonts/IBMPlexSans-Variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--wvo-ground);
  color: var(--wvo-sand);
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: var(--wvo-text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--wvo-rust-lit); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wvo-sand); }
a:focus-visible { outline: 1px solid var(--wvo-rust-lit); outline-offset: 3px; }

img { display: block; max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'IBM Plex Sans', Arial, sans-serif;
  color: var(--wvo-pale);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: var(--wvo-text-3xl); }
h2 { font-size: var(--wvo-text-2xl); }
h3 { font-size: var(--wvo-text-xl); }
h4 { font-size: var(--wvo-text-lg); }
h5 { font-size: var(--wvo-text-md); }
h6 { font-size: var(--wvo-text-base); }

p { margin-bottom: var(--wvo-space-sm); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.3em; }

.wvo-skip {
  position: absolute;
  top: -9999px;
  left: 0;
  background: var(--wvo-rust);
  color: var(--wvo-pale);
  padding: 0.5rem 1rem;
  font-size: var(--wvo-text-sm);
  z-index: 9999;
}
.wvo-skip:focus { top: 0; }

.wvo-nav {
  position: sticky;
  top: 0;
  z-index: 800;
  background: var(--wvo-ground);
  border-bottom: 1px solid var(--wvo-line);
  height: var(--wvo-nav-h);
  display: flex;
  align-items: center;
}

.wvo-nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--wvo-space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wvo-space-md);
}

.wvo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.wvo-brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(154,92,56,0.22));
}

.wvo-brand-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wvo-brand-name {
  font-size: var(--wvo-text-sm);
  font-weight: 700;
  color: var(--wvo-pale);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wvo-brand-sub {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-dust);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wvo-nav-links {
  display: flex;
  align-items: center;
  gap: var(--wvo-space-md);
  list-style: none;
}

.wvo-nav-links a {
  font-size: var(--wvo-text-sm);
  color: var(--wvo-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.wvo-nav-links a:hover,
.wvo-nav-links a.wvo-active {
  color: var(--wvo-pale);
  border-bottom-color: var(--wvo-rust);
}

.wvo-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  aria-label: "Menü";
}

.wvo-nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--wvo-sand);
  transition: transform 0.25s, opacity 0.25s;
}

.wvo-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.wvo-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.wvo-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.wvo-drawer {
  display: none;
  position: fixed;
  top: var(--wvo-nav-h);
  left: 0;
  right: 0;
  background: var(--wvo-surface);
  border-bottom: 1px solid var(--wvo-line);
  z-index: 799;
  padding: var(--wvo-space-md);
}

.wvo-drawer.wvo-open { display: block; }

.wvo-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--wvo-space-sm);
}

.wvo-drawer a {
  font-size: var(--wvo-text-base);
  color: var(--wvo-sand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  padding: var(--wvo-space-xs) 0;
  border-bottom: 1px solid var(--wvo-line);
}

.wvo-drawer a.wvo-active { color: var(--wvo-rust-lit); }

.wvo-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--wvo-space-md);
}

.wvo-wrap-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--wvo-space-md);
}

.wvo-section {
  padding: var(--wvo-space-2xl) 0;
  border-bottom: 1px solid var(--wvo-line);
}

.wvo-section:last-of-type { border-bottom: none; }

.wvo-label {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-dust);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--wvo-space-sm);
  display: block;
}

.wvo-rule {
  border: none;
  border-top: 1px solid var(--wvo-line);
  margin: var(--wvo-space-md) 0;
}

.wvo-rule-strong {
  border-top-color: var(--wvo-line-strong);
}

.wvo-btn {
  display: inline-block;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: var(--wvo-text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--wvo-rust);
  background: transparent;
  color: var(--wvo-rust-lit);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  border-radius: var(--wvo-radius);
}

.wvo-btn:hover {
  background: var(--wvo-rust);
  color: var(--wvo-pale);
  border-color: var(--wvo-rust);
}

.wvo-btn:focus-visible {
  outline: 1px solid var(--wvo-rust-lit);
  outline-offset: 3px;
}

.wvo-btn-filled {
  background: var(--wvo-rust);
  color: var(--wvo-pale);
}

.wvo-btn-filled:hover {
  background: var(--wvo-rust-lit);
  color: var(--wvo-ground);
}

.wvo-threshold-opener {
  padding: var(--wvo-space-2xl) 0 var(--wvo-space-xl);
  position: relative;
  overflow: hidden;
}

.wvo-threshold-opener::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wvo-rust), transparent);
}

.wvo-threshold-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--wvo-space-xl);
  align-items: start;
}

.wvo-threshold-eyebrow {
  font-size: var(--wvo-text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wvo-rust-lit);
  margin-bottom: var(--wvo-space-md);
  display: block;
}

.wvo-threshold-title {
  margin-bottom: var(--wvo-space-md);
  max-width: 18ch;
}

.wvo-threshold-body {
  color: var(--wvo-mid);
  font-size: var(--wvo-text-md);
  max-width: 60ch;
  margin-bottom: var(--wvo-space-lg);
}

.wvo-threshold-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wvo-space-sm);
}

.wvo-panel-aside {
  background: var(--wvo-surface);
  border: 1px solid var(--wvo-line);
  padding: var(--wvo-space-md);
  position: relative;
}

.wvo-panel-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--wvo-rust);
}

.wvo-panel-aside-label {
  font-size: var(--wvo-text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wvo-dust);
  margin-bottom: var(--wvo-space-sm);
  padding-bottom: var(--wvo-space-xs);
  border-bottom: 1px solid var(--wvo-line);
  display: block;
}

.wvo-data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--wvo-space-sm);
  padding: var(--wvo-space-xs) 0;
  border-bottom: 1px solid var(--wvo-line);
  font-size: var(--wvo-text-sm);
}

.wvo-data-row:last-child { border-bottom: none; }

.wvo-data-key { color: var(--wvo-dust); font-size: var(--wvo-text-xs); letter-spacing: 0.1em; text-transform: uppercase; }
.wvo-data-val { color: var(--wvo-sand); text-align: right; }

.wvo-index-section { }

.wvo-media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: var(--wvo-space-xl);
  align-items: start;
}

.wvo-media-content {
  min-width: 0;
}

.wvo-media-content-narrow {
  max-width: 860px;
}

.wvo-media-card {
  position: sticky;
  top: calc(var(--wvo-nav-h) + var(--wvo-space-md));
  margin: 0;
  padding: 0.7rem;
  background:
    linear-gradient(180deg, rgba(154,92,56,0.08), rgba(24,20,16,0.9)),
    var(--wvo-surface);
  border: 1px solid var(--wvo-line-strong);
  box-shadow: 0 22px 42px rgba(0,0,0,0.22);
}

.wvo-media-card img {
  width: 100%;
  height: auto;
  border: 1px solid var(--wvo-line);
  background: var(--wvo-ground);
}

.wvo-media-card-wide img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wvo-media-card-tall img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wvo-index-title {
  margin-bottom: var(--wvo-space-lg);
}

.wvo-index-ledger {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--wvo-line);
  border: 1px solid var(--wvo-line);
}

.wvo-index-entry {
  background: var(--wvo-surface);
  padding: var(--wvo-space-md);
  display: flex;
  flex-direction: column;
  gap: var(--wvo-space-xs);
  transition: background 0.2s;
  text-decoration: none;
}

.wvo-index-entry:hover { background: var(--wvo-ridge); }

.wvo-index-entry-num {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-rust-lit);
  letter-spacing: 0.15em;
  font-weight: 700;
}

.wvo-index-entry-title {
  font-size: var(--wvo-text-md);
  color: var(--wvo-pale);
  font-weight: 700;
}

.wvo-index-entry-note {
  font-size: var(--wvo-text-sm);
  color: var(--wvo-dust);
  line-height: 1.5;
}

.wvo-index-entry-arrow {
  margin-top: auto;
  font-size: var(--wvo-text-xs);
  color: var(--wvo-rust-lit);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wvo-matrix-section { }

.wvo-matrix-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wvo-space-xl);
  align-items: end;
  margin-bottom: var(--wvo-space-lg);
}

.wvo-matrix-desc {
  color: var(--wvo-mid);
  font-size: var(--wvo-text-base);
  max-width: 50ch;
}

.wvo-matrix-filter {
  text-align: right;
}

.wvo-matrix-filter-label {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-dust);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.wvo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--wvo-text-sm);
}

.wvo-table th {
  text-align: left;
  padding: var(--wvo-space-xs) var(--wvo-space-sm);
  background: var(--wvo-ridge);
  color: var(--wvo-dust);
  font-size: var(--wvo-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--wvo-line-strong);
}

.wvo-table td {
  padding: var(--wvo-space-xs) var(--wvo-space-sm);
  border-bottom: 1px solid var(--wvo-line);
  color: var(--wvo-sand);
  vertical-align: top;
}

.wvo-table tr:hover td { background: var(--wvo-surface); }

.wvo-table td:first-child { color: var(--wvo-pale); font-weight: 600; }

.wvo-badge {
  display: inline-block;
  font-size: var(--wvo-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--wvo-radius);
  border: 1px solid;
}

.wvo-badge-open { border-color: var(--wvo-sage); color: var(--wvo-sage-lit); }
.wvo-badge-closed { border-color: var(--wvo-dust); color: var(--wvo-dust); }
.wvo-badge-restricted { border-color: var(--wvo-rust); color: var(--wvo-rust-lit); }

.wvo-drift-section { }

.wvo-drift-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wvo-space-xl);
}

.wvo-drift-col { }

.wvo-drift-col-title { margin-bottom: var(--wvo-space-md); }

.wvo-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wvo-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--wvo-space-sm);
  padding: var(--wvo-space-sm) 0;
  border-bottom: 1px solid var(--wvo-line);
  align-items: start;
}

.wvo-timeline-item:last-child { border-bottom: none; }

.wvo-timeline-time {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-rust-lit);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.15rem;
  font-weight: 700;
}

.wvo-timeline-body { }
.wvo-timeline-title { font-size: var(--wvo-text-sm); color: var(--wvo-pale); font-weight: 600; margin-bottom: 0.2rem; }
.wvo-timeline-note { font-size: var(--wvo-text-xs); color: var(--wvo-dust); line-height: 1.5; }

.wvo-shelter-section { }

.wvo-shelter-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--wvo-line);
  margin-top: var(--wvo-space-md);
}

.wvo-shelter-entry {
  background: var(--wvo-surface);
  padding: var(--wvo-space-md);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: var(--wvo-space-md);
  align-items: start;
}

.wvo-shelter-num {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-rust-lit);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
}

.wvo-shelter-body { }
.wvo-shelter-name { font-size: var(--wvo-text-md); color: var(--wvo-pale); font-weight: 700; margin-bottom: 0.3rem; }
.wvo-shelter-desc { font-size: var(--wvo-text-sm); color: var(--wvo-dust); }
.wvo-shelter-status { font-size: var(--wvo-text-xs); padding-top: 0.25rem; }

.wvo-accord-section { }

.wvo-accord-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--wvo-space-md);
}

.wvo-accord-item {
  border-bottom: 1px solid var(--wvo-line);
}

.wvo-accord-item:first-child { border-top: 1px solid var(--wvo-line); }

.wvo-accord-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wvo-space-sm);
  padding: var(--wvo-space-sm) 0;
  text-align: left;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
}

.wvo-accord-trigger:focus-visible { outline: 1px solid var(--wvo-rust-lit); outline-offset: 2px; }

.wvo-accord-label {
  font-size: var(--wvo-text-md);
  color: var(--wvo-pale);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--wvo-space-sm);
}

.wvo-accord-num {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-rust-lit);
  letter-spacing: 0.1em;
  font-weight: 700;
  min-width: 28px;
}

.wvo-accord-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--wvo-line-strong);
  color: var(--wvo-dust);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
}

.wvo-accord-trigger[aria-expanded="true"] .wvo-accord-icon { transform: rotate(45deg); color: var(--wvo-rust-lit); }

.wvo-accord-panel {
  display: none;
  padding: 0 0 var(--wvo-space-md) calc(28px + var(--wvo-space-sm));
}

.wvo-accord-panel[data-open] { display: block; }
.wvo-accord-panel p { color: var(--wvo-mid); font-size: var(--wvo-text-sm); }

.wvo-faq-section { }

.wvo-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wvo-space-md) var(--wvo-space-xl);
  margin-top: var(--wvo-space-md);
}

.wvo-faq-item { }
.wvo-faq-q {
  font-size: var(--wvo-text-sm);
  color: var(--wvo-pale);
  font-weight: 700;
  margin-bottom: 0.4rem;
  padding-left: var(--wvo-space-sm);
  border-left: 2px solid var(--wvo-rust);
}
.wvo-faq-a { font-size: var(--wvo-text-sm); color: var(--wvo-mid); }

.wvo-contact-section { }

.wvo-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--wvo-space-xl);
  align-items: start;
}

.wvo-contact-info { }
.wvo-contact-info h2 { margin-bottom: var(--wvo-space-md); }
.wvo-contact-info p { color: var(--wvo-mid); font-size: var(--wvo-text-sm); }

.wvo-form { display: flex; flex-direction: column; gap: var(--wvo-space-sm); }

.wvo-field { display: flex; flex-direction: column; gap: 4px; }
.wvo-field label { font-size: var(--wvo-text-xs); color: var(--wvo-dust); letter-spacing: 0.12em; text-transform: uppercase; }

.wvo-input,
.wvo-select,
.wvo-textarea {
  background: var(--wvo-surface);
  border: 1px solid var(--wvo-line-strong);
  color: var(--wvo-pale);
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: var(--wvo-text-sm);
  padding: 0.65rem 0.75rem;
  border-radius: var(--wvo-radius);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.wvo-input:focus, .wvo-select:focus, .wvo-textarea:focus {
  border-color: var(--wvo-rust-lit);
}

.wvo-input.wvo-err, .wvo-select.wvo-err, .wvo-textarea.wvo-err {
  border-color: var(--wvo-rust);
}

.wvo-select { cursor: pointer; }
.wvo-textarea { resize: vertical; min-height: 120px; }

.wvo-field-err {
  font-size: var(--wvo-text-xs);
  color: var(--wvo-rust-lit);
  display: none;
}

.wvo-field-err.wvo-visible { display: block; }

.wvo-check-row {
  display: flex;
  align-items: flex-start;
  gap: var(--wvo-space-sm);
}

.wvo-check-row input[type="checkbox"] {
  margin-top: 3px;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--wvo-rust);
}

.wvo-check-row label { font-size: var(--wvo-text-xs); color: var(--wvo-mid); line-height: 1.6; cursor: pointer; }
.wvo-check-row a { color: var(--wvo-rust-lit); }

.wvo-footer {
  background: var(--wvo-surface);
  border-top: 1px solid var(--wvo-line);
  padding: var(--wvo-space-lg) 0 var(--wvo-space-md);
}

.wvo-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--wvo-space-md);
}

.wvo-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--wvo-space-md);
  margin-bottom: var(--wvo-space-md);
  flex-wrap: wrap;
}

.wvo-footer-links {
  display: flex;
  gap: var(--wvo-space-md);
  flex-wrap: wrap;
}

.wvo-footer-links a { font-size: var(--wvo-text-xs); color: var(--wvo-dust); letter-spacing: 0.1em; text-transform: uppercase; }
.wvo-footer-links a:hover { color: var(--wvo-sand); }

.wvo-footer-bottom {
  border-top: 1px solid var(--wvo-line);
  padding-top: var(--wvo-space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--wvo-space-sm);
  flex-wrap: wrap;
}

.wvo-footer-copy { font-size: var(--wvo-text-xs); color: var(--wvo-dust); }
.wvo-footer-domain { font-size: var(--wvo-text-xs); color: var(--wvo-dust); letter-spacing: 0.08em; }

.wvo-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wvo-ridge);
  border-top: 1px solid var(--wvo-line-strong);
  padding: var(--wvo-space-sm) var(--wvo-space-md);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wvo-space-md);
  flex-wrap: wrap;
}

.wvo-cookie[hidden] { display: none; }

.wvo-cookie-text { font-size: var(--wvo-text-xs); color: var(--wvo-mid); max-width: 72ch; }
.wvo-cookie-text a { color: var(--wvo-rust-lit); }

.wvo-cookie-btn {
  font-size: var(--wvo-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  background: var(--wvo-rust);
  color: var(--wvo-pale);
  border: none;
  cursor: pointer;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  border-radius: var(--wvo-radius);
  transition: background 0.2s;
  white-space: nowrap;
}
.wvo-cookie-btn:hover { background: var(--wvo-rust-lit); }
.wvo-cookie-btn:focus-visible { outline: 1px solid var(--wvo-pale); outline-offset: 3px; }

.wvo-page-header {
  padding: var(--wvo-space-xl) 0 var(--wvo-space-lg);
  border-bottom: 1px solid var(--wvo-line);
  position: relative;
}

.wvo-page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 60px;
  height: 1px;
  background: var(--wvo-rust);
}

.wvo-page-title { margin-bottom: var(--wvo-space-sm); max-width: 22ch; }
.wvo-page-desc { font-size: var(--wvo-text-md); color: var(--wvo-mid); max-width: 60ch; }

.wvo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--wvo-space-md);
  font-size: var(--wvo-text-xs);
  color: var(--wvo-dust);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wvo-breadcrumb a { color: var(--wvo-dust); }
.wvo-breadcrumb a:hover { color: var(--wvo-sand); }
.wvo-breadcrumb span { color: var(--wvo-rust-lit); }

.wvo-body-section {
  padding: var(--wvo-space-xl) 0;
  border-bottom: 1px solid var(--wvo-line);
}

.wvo-body-section:last-of-type { border-bottom: none; }

.wvo-split-prose {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--wvo-space-xl);
  align-items: start;
}

.wvo-split-label-col { }

.wvo-split-label-col .wvo-label {
  position: sticky;
  top: calc(var(--wvo-nav-h) + var(--wvo-space-md));
}

.wvo-prose h3 { margin-bottom: var(--wvo-space-sm); font-size: var(--wvo-text-lg); }
.wvo-prose h4 { margin-bottom: 0.4rem; margin-top: var(--wvo-space-sm); }
.wvo-prose p { color: var(--wvo-mid); margin-bottom: var(--wvo-space-sm); }
.wvo-prose ul { color: var(--wvo-mid); font-size: var(--wvo-text-sm); margin-bottom: var(--wvo-space-sm); }
.wvo-prose li { margin-bottom: 0.4rem; }
.wvo-prose a { color: var(--wvo-rust-lit); }
.wvo-prose strong { color: var(--wvo-sand); }

.wvo-inset-panel {
  background: var(--wvo-surface);
  border: 1px solid var(--wvo-line);
  border-left: 3px solid var(--wvo-rust);
  padding: var(--wvo-space-md);
  margin: var(--wvo-space-md) 0;
}

.wvo-inset-panel p { color: var(--wvo-mid); font-size: var(--wvo-text-sm); margin-bottom: 0; }

.wvo-coord-block {
  display: inline-block;
  font-size: var(--wvo-text-xs);
  letter-spacing: 0.14em;
  color: var(--wvo-rust-lit);
  border: 1px solid var(--wvo-rust);
  padding: 2px 8px;
  border-radius: var(--wvo-radius);
  font-weight: 700;
  margin-bottom: var(--wvo-space-sm);
}

.wvo-dossier-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--wvo-space-sm);
  padding: var(--wvo-space-xs) 0;
  border-bottom: 1px solid var(--wvo-line);
  font-size: var(--wvo-text-sm);
}
.wvo-dossier-row:last-child { border-bottom: none; }
.wvo-dossier-k { color: var(--wvo-dust); font-size: var(--wvo-text-xs); letter-spacing: 0.1em; text-transform: uppercase; padding-top: 0.1rem; }
.wvo-dossier-v { color: var(--wvo-sand); }

.wvo-success-wrap {
  min-height: calc(100vh - var(--wvo-nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--wvo-space-xl) var(--wvo-space-md);
}

.wvo-success-box {
  text-align: center;
  max-width: 500px;
}

.wvo-success-box p {
  font-size: var(--wvo-text-lg);
  color: var(--wvo-mid);
}

@media (max-width: 960px) {
  .wvo-media-split { grid-template-columns: 1fr; }
  .wvo-media-card {
    position: static;
    max-width: 360px;
    width: 100%;
  }
  .wvo-threshold-grid { grid-template-columns: 1fr; }
  .wvo-panel-aside { display: none; }
  .wvo-matrix-head { grid-template-columns: 1fr; }
  .wvo-matrix-filter { text-align: left; }
  .wvo-drift-split { grid-template-columns: 1fr; }
  .wvo-faq-grid { grid-template-columns: 1fr; }
  .wvo-contact-split { grid-template-columns: 1fr; }
  .wvo-split-prose { grid-template-columns: 1fr; }
  .wvo-split-label-col .wvo-label { position: static; }
  .wvo-shelter-entry { grid-template-columns: 40px 1fr; }
  .wvo-shelter-status { grid-column: 2; }
}

@media (max-width: 768px) {
  .wvo-brand-mark { width: 36px; height: 36px; }
  .wvo-nav-links { display: none; }
  .wvo-nav-toggle { display: flex; }
  .wvo-index-ledger { grid-template-columns: 1fr; }
  .wvo-table thead { display: none; }
  .wvo-table tr { display: block; background: var(--wvo-surface); margin-bottom: 1px; padding: var(--wvo-space-xs) 0; }
  .wvo-table td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--wvo-space-sm);
    border-bottom: 1px solid var(--wvo-line);
    font-size: var(--wvo-text-xs);
  }
  .wvo-table td::before {
    content: attr(data-label);
    color: var(--wvo-dust);
    font-size: var(--wvo-text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .wvo-table td:first-child { background: var(--wvo-ridge); font-size: var(--wvo-text-sm); }
  .wvo-footer-top { flex-direction: column; }
  .wvo-footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 480px) {
  .wvo-shelter-entry { grid-template-columns: 1fr; }
  .wvo-shelter-num { display: none; }
  .wvo-accord-label { font-size: var(--wvo-text-base); }
}
