:root {
  --bg: #0d0c0b;
  --fg: #ece6da;
  --muted: #8f877a;
  --accent: #c9a96e;
  --line: rgba(236, 230, 218, 0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, 'Times New Roman', serif;
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column; align-items: center;
  min-height: 100dvh;
  padding: 1.5rem 1.25rem 3rem;
  text-align: center;
}
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.10), transparent 60%);
}
main { width: 100%; max-width: 32rem; margin: auto; position: relative; }
.brand { letter-spacing: 0.45em; font-size: 0.8rem; color: var(--accent); text-transform: uppercase; margin-bottom: 3rem; }
h1 { font-weight: normal; font-size: 1.75rem; line-height: 1.3; margin-bottom: 1.25rem; }
p { color: var(--muted); line-height: 1.6; }
.tagline { margin-top: 3rem; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }

form { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
input[type=text] {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: var(--fg); font: inherit; font-size: 1.5rem; letter-spacing: 0.25em;
  text-align: center; text-transform: uppercase; padding: 0.75rem 0; outline: none;
  transition: border-color .3s;
}
input[type=text]:focus { border-color: var(--accent); }
input::placeholder { color: var(--muted); letter-spacing: 0.15em; font-size: 1rem; text-transform: none; }
button {
  background: transparent; border: 1px solid var(--accent); color: var(--accent);
  font: inherit; font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 1rem; cursor: pointer; transition: background .3s, color .3s;
}
button:hover, button:focus-visible { background: var(--accent); color: var(--bg); outline: none; }
button:disabled { opacity: 0.4; cursor: default; }
.error { color: #c98a6e; min-height: 1.5em; font-size: 0.95rem; }

.hidden { display: none !important; }
.fade { animation: fade 1.6s ease both; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

#reveal h1 { font-size: 1.5rem; }
#reveal .from { margin-top: 1rem; }

.video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; margin: 1.5rem 0; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.statement { font-size: 1.35rem; line-height: 1.5; margin-top: 1.5rem; }
.source { margin-top: 1rem; font-size: 0.9rem; letter-spacing: 0.08em; }
.context { margin-top: 1rem; font-size: 0.95rem; font-style: italic; }
.actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
a.button { display: block; text-decoration: none; }
.small { font-size: 0.8rem; margin-top: 1rem; }
