/* Shared styles for FastCorpFiling legal pages */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c76a;
  --cream: #faf8f3;
  --white: #ffffff;
  --slate: #8892a4;
  --text: #1e2d45;
  --border: #e0ddd5;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

/* TOPBAR */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: 0.3px;
}
.topbar span { color: var(--gold); font-weight: 600; }

/* NAVBAR */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(10,22,40,0.07);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
  color: var(--white);
  padding: 70px 40px 60px;
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* CONTENT */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  background: var(--white);
  margin-top: -30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.legal-notice {
  background: #fef9e7;
  border: 1px solid #f4d03f;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14px;
  color: #7d6608;
  line-height: 1.7;
  margin-bottom: 36px;
}
.legal-notice strong { color: var(--navy); }

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.legal-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 16px 24px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content strong { font-weight: 600; color: var(--navy); }
.legal-content em { font-style: italic; }
.legal-content a { color: var(--gold); text-decoration: none; font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .placeholder {
  background: #fff7d6;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #7d6608;
}
.legal-content .meta {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-content .meta strong { color: var(--text); }

.legal-content .contact-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 32px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .legal-content { padding: 40px 24px; margin-left: 16px; margin-right: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
