/* Shared styles for the pre-rendered static legal/contact pages.
   These pages must render fully WITHOUT JavaScript — they are what carrier
   business-verification vendors and search crawlers actually see. Keep this
   file dependency-free. */

:root {
  color-scheme: light dark;
  --bg: #f7f4ed;
  --surface: #fffdf8;
  --text1: #0c1425;
  --text2: #17233d;
  --text3: #3d5a80;
  --text4: #667287;
  --border: rgba(12, 20, 37, 0.12);
  /* Darker gold in light mode — #c5a55a on ivory fails contrast for text */
  --accent: #8a6d1f;
  --accent-mark: #c5a55a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c1425;
    --surface: #17233d;
    --text1: #f2efe6;
    --text2: #d8dfeb;
    --text3: #8fa0bd;
    --text4: #667895;
    --border: rgba(197, 165, 90, 0.16);
    --accent: #c5a55a;
    --accent-mark: #c5a55a;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text1);
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Helvetica, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  text-decoration: none;
}
.brand span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.dates { font-size: 13px; color: var(--text4); margin: 0 0 28px; }

h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 36px 0 10px;
}

p, li { font-size: 14px; color: var(--text3); }
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 20px; line-height: 1.8; }
strong { color: var(--text2); }
a { color: var(--accent); }

/* Business identity card — the block a verification vendor needs to find */
.identity {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 24px 0;
}
.identity dl { margin: 0; display: grid; grid-template-columns: 150px 1fr; gap: 8px 16px; }
.identity dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text4);
  padding-top: 2px;
}
.identity dd { margin: 0; font-size: 14px; color: var(--text2); }
.identity dd address { font-style: normal; }

@media (max-width: 520px) {
  .identity dl { grid-template-columns: 1fr; gap: 2px; }
  .identity dt { margin-top: 10px; }
}

.pagenav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}
.pagenav a { color: var(--text4); text-decoration: none; }
.pagenav a:hover { color: var(--accent); }

.colophon {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--text4);
  line-height: 1.6;
}
.colophon address { font-style: normal; display: inline; }
