/* Standalone styling for /pages/*.html when opened directly (search engines,
   shared links, printing). Inside the site these files are fetched and dropped
   into the modal, where the site's own CSS takes over — so nothing here fights
   style.css. */

:root {
  --gold: #d4af37;
  --gold-bright: #ffea79;
  --cyan: #00f2fe;
  --ink: #c8c8d0;
  --dim: #71717a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #050507;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.doc { max-width: 820px; margin: 0 auto; padding: 70px 28px 110px; }

.doc-head { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 44px; }
.doc-eyebrow { font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.doc h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; color: #fff; margin: 14px 0 0; letter-spacing: -0.5px; }
.doc-lede { font-size: 1.1rem; color: #a1a1aa; margin-top: 18px; }
.doc-meta { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-top: 16px; }

.doc section { margin-bottom: 42px; }
.doc h2 { font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 16px; padding-left: 14px; border-left: 2px solid var(--gold); }
.doc h3 { font-size: 0.95rem; font-weight: 700; color: var(--gold-bright); margin: 26px 0 10px; letter-spacing: 0.3px; }
.doc p { margin: 0 0 16px; }
.doc ul { margin: 0 0 18px; padding-left: 22px; }
.doc li { margin-bottom: 9px; }
.doc strong { color: #e4e4e7; }
.doc a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(255,234,121,0.3); }
.doc a:hover { border-bottom-color: var(--gold-bright); }

.doc-contact { list-style: none; padding-left: 0; }

.doc-table-wrap { overflow-x: auto; margin: 0 0 20px; }
.doc-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 620px; }
.doc-table th {
  text-align: left; padding: 12px 14px; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--dim); border-bottom: 1px solid rgba(255,255,255,0.14);
}
.doc-table td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); vertical-align: top; }
.td-sub { display: block; font-size: 0.72rem; color: var(--dim); font-family: monospace; margin-top: 3px; }

@media print {
  body { background: #fff; color: #000; }
  .doc h1, .doc h2, .doc strong { color: #000; }
  .doc h3 { color: #444; }
  .doc a { color: #000; }
}

.addr-alt { display: block; font-size: 0.8rem; color: var(--dim); margin-top: 6px; }
