/* Shared styles for legal/info pages — matches landing-page-doorways.html design tokens */
:root {
  --cream: #FBF5EC;
  --cream-2: #F4EAD8;
  --ink: #1F1B2E;
  --ink-soft: #45405A;
  --muted: #867E96;
  --peach: #F4A57A;
  --peach-deep: #E9845A;
  --peach-soft: #FCD9C2;
  --gold: #F4C24A;
  --sage: #6A9B86;
  --line: #E4DBC8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* nav */
nav {
  padding: 22px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--peach-deep);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark svg { width: 22px; height: 22px; }
.cta-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  transition: transform .15s ease;
}
.cta-alt:hover { transform: translateY(-1px); }

/* main article */
main.page {
  padding: 64px 0 80px;
}
main.page .wrap { padding: 0 28px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 14px;
}
h1.page-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}
.last-updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

article h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--ink);
}
article h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-top: 26px;
  margin-bottom: 8px;
  color: var(--ink);
}
article p { margin-bottom: 16px; color: var(--ink-soft); }
article ul { margin: 0 0 18px 24px; color: var(--ink-soft); }
article li { margin-bottom: 8px; }
article a { color: var(--peach-deep); border-bottom: 1px solid currentColor; }
article a:hover { color: var(--ink); }
article strong { color: var(--ink); font-weight: 600; }

.contact-card {
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 28px 30px;
  margin: 24px 0;
  box-shadow: 4px 4px 0 var(--ink);
}
.contact-card .lbl {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-card .val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.contact-card .val a { color: inherit; border-bottom: none; }

/* footer */
footer {
  padding: 44px 0;
  background: var(--cream);
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--ink); }

@media (max-width: 580px) {
  main.page { padding: 44px 0 64px; }
  article h2 { font-size: 23px; margin-top: 36px; }
  .nav-inner { padding: 0 20px; }
  .foot-inner { padding: 0 20px; flex-direction: column; align-items: flex-start; }
}
