:root {
    --paper: #eee6d2;
    --ink: #171713;
    --muted: #665f52;
    --green: #34463b;
    --red: #7a2f2b;
    --line: #9c927f;
    --max: 1100px;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Georgia, serif; line-height: 1.55; }
a { color: inherit; }
.site-header, main, .site-footer { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; border-bottom: 2px solid var(--ink); }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 49px; height: 49px; border: 0px solid var(--ink); border-radius: 50%; font-family: Arial, sans-serif; font-weight: 800; }
.brand small { display: block; color: var(--muted); font-family: Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; }
nav { display: flex; gap: 1rem; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
nav a { text-decoration: none; }
main { padding: 0rem 0; }
.hero {padding: 0rem 0 3rem; }
h1, h2 { font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .02em; line-height: .75; }
h1 { font-size: clamp(2rem, 7vw, 5rem); margin: .2rem 0 1.5rem; }
h2 { font-size: 1.15rem; margin-top: 2.5rem; }
.eyebrow { font-family: "Courier New", monospace; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--muted); }
.lede { font-size: 1.35rem; }
.verify-form { margin-top: 2.5rem; }
.verify-form label { display: block; font-family: Arial, sans-serif; text-transform: uppercase; font-size: .8rem; font-weight: 700; margin-bottom: .6rem; }
.form-row { display: flex; gap: .75rem; }
input, select, button { font: inherit; border: 2px solid var(--ink); background: #f8f2e4; color: var(--ink); padding: .9rem 1rem; }
input, select { width: 100%; }
button { width: auto; background: var(--ink); color: var(--paper); cursor: pointer; font-family: Arial, sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.notice, .not-found, .prose-page { border-top: 1px solid var(--line); padding-top: 2rem; max-width: 800px; }
.page-intro { max-width: 900px; margin-bottom: 3rem; }
.page-intro h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
.narrow { max-width: 700px; }
.record { border: 2px solid var(--ink); background: rgba(255,255,255,.18); padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 8px 8px 0 rgba(23,23,19,.15); }
.record-header { border-bottom: 4px double var(--ink); padding-bottom: 1.5rem; }
.record-header h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
.serial { font-family: "Courier New", monospace; font-size: 1.1rem; font-weight: 700; }
.record-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; margin: 2rem 0; border: 1px solid var(--line); }
.record-grid div { padding: 1rem; border-bottom: 1px solid var(--line); }
.record-grid div:nth-child(odd) { border-right: 1px solid var(--line); }
dt { font-family: Arial, sans-serif; text-transform: uppercase; font-size: .7rem; letter-spacing: .08em; color: var(--muted); }
dd { margin: .25rem 0 0; }
.record-section { border-top: 0px solid var(--line); padding-top: 0rem; }
.prose { max-width: 780px; }
.orientation { margin: 3rem 0; padding: 2rem; background: var(--green); color: var(--paper); }
.orientation .eyebrow { color: #d7d0bf; }
.orientation-values { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #b8b09f; margin: 1rem 0; }
.orientation-values div { padding: 1.5rem; }
.orientation-values div + div { border-left: 1px solid #b8b09f; }
.orientation-values span { display: block; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }
.orientation-values strong { display: block; font-family: Arial, sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; }
.record-certification { display: flex; justify-content: space-between; border-top: 4px double var(--ink); padding-top: 1.5rem; font-family: "Courier New", monospace; text-transform: uppercase; font-size: .75rem; }
.registry-table-wrap { overflow-x: auto; }
.registry-table { width: 100%; border-collapse: collapse; }
.registry-table th, .registry-table td { text-align: left; padding: .9rem; border-bottom: 1px solid var(--line); }
.registry-table th { font-family: Arial, sans-serif; text-transform: uppercase; font-size: .72rem; }
.admin-form { display: grid; gap: 1rem; max-width: 700px; }
.admin-form label { display: grid; gap: .4rem; font-family: Arial, sans-serif; font-size: .78rem; text-transform: uppercase; font-weight: 700; }
.site-footer { border-top: 2px solid var(--ink); padding: 1.5rem 0 3rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .82rem; }
.footer-status { font-family: "Courier New", monospace; color: var(--muted); }
.error { color: var(--red); font-weight: 700; }
@media (max-width: 700px) {
    .site-header, .site-footer, .form-row { flex-direction: column; align-items: stretch; }
    nav { flex-wrap: wrap; }
    .record-grid, .orientation-values { grid-template-columns: 1fr; }
    .record-grid div:nth-child(odd) { border-right: 0; }
    .orientation-values div + div { border-left: 0; border-top: 1px solid #b8b09f; }
    button { width: 100%; }
}
@media print {
    .site-header, .site-footer, .page-intro { display: none; }
    body { background: white; }
    main { width: 100%; padding: 0; }
    .record { box-shadow: none; }
}

.phenomena-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem;margin:2rem 0 4rem}.phenomenon-card{border:1px solid var(--line);padding:1.5rem;background:rgba(255,255,255,.22)}.phenomenon-card h2{margin-top:.25rem}.compact-data{display:grid;gap:.45rem;margin-top:1.25rem}.compact-data div{display:flex;justify-content:space-between;gap:1rem;border-top:1px solid var(--line);padding-top:.45rem}.compact-data dt{font-size:.75rem;text-transform:uppercase;letter-spacing:.08em}.compact-data dd{text-align:right;margin:0}.orientation-values small{display:block;font-size:.72rem;font-weight:400;letter-spacing:.04em;margin-top:.25rem}.karten-text{max-width:48rem;margin:1.5rem auto;padding:1rem 1.25rem;border-left:3px solid currentColor;font-family:Georgia,serif;font-size:1.08rem;line-height:1.6;text-align:left}
.manifestation { font-size: clamp(1.3rem, 2.5vw, 2rem); line-height: 1.35; font-family: Georgia, 'Times New Roman', serif; }
.assessment {
  border-left: 55px solid #f2c206;
  padding-left: 1rem;
  margin-top: 20px;
}
