/* ============================================
   UNCLAIMEDPROPERTY HUB — styles.css
   Aesthetic: Editorial / Documentary
   Fonts: DM Serif Display + DM Sans
   Palette: Deep navy, warm cream, gold accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --navy:      #0f1e35;
  --navy-mid:  #1a2f4e;
  --navy-light:#243d62;
  --cream:     #f5f0e8;
  --cream-dark:#ede6d6;
  --gold:      #c8922a;
  --gold-light:#e0aa48;
  --rust:      #b84c2a;
  --white:     #ffffff;
  --text:      #1c1c1c;
  --text-mid:  #3d3d3d;
  --text-light:#6b6b6b;
  --border:    #d4c9b5;
  --shadow:    0 2px 16px rgba(15,30,53,0.10);
  --shadow-lg: 0 8px 40px rgba(15,30,53,0.16);
  --radius:    4px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --max-w:     1100px;
  --content-w: 760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin-top: 2rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1.2rem; color: var(--text-mid); font-size: 1.02rem; }
a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
strong { color: var(--text); font-weight: 600; }
em { font-style: italic; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
li { margin-bottom: 0.4rem; color: var(--text-mid); }

hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.content-wrap { max-width: var(--content-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── SITE HEADER ── */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-logo span { color: var(--gold); }

.site-nav { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.site-nav a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,146,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(36,61,98,0.8) 0%, transparent 50%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 39px,
    rgba(200,146,42,0.04) 39px, rgba(200,146,42,0.04) 40px
  );
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--cream); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero p {
  color: rgba(245,240,232,0.80);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.4);
}
.btn-outline:hover { border-color: var(--cream); color: var(--cream); }
.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); }
.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.3rem;
}
.card h3 { font-size: 1.15rem; margin-top: 0; margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; margin-bottom: 0; }
.card a { text-decoration: none; }

/* ── STATE GRID ── */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.state-link {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.15s;
  text-align: center;
}
.state-link:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

/* ── ARTICLE LAYOUT ── */
.article-header {
  background: var(--navy);
  padding: 3.5rem 1.5rem 3rem;
}
.article-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.article-header h1 { color: var(--cream); margin-bottom: 1rem; }
.article-header .lead {
  color: rgba(245,240,232,0.78);
  font-size: 1.1rem;
  max-width: 650px;
}
.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.15);
}
.meta-item { font-size: 0.82rem; color: rgba(245,240,232,0.55); }

.article-body { padding: 3rem 0 4rem; }

/* ── TABLE OF CONTENTS ── */
.toc {
  background: var(--navy-mid);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.toc-title {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toc ol { padding-left: 1.25rem; margin: 0; }
.toc li { margin-bottom: 0.35rem; }
.toc a { color: var(--gold-light); font-size: 0.9rem; }
.toc a:hover { color: var(--cream); }

/* ── CALLOUT BOXES ── */
.callout {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.callout-body p { margin-bottom: 0; }
.callout-body strong { display: block; margin-bottom: 0.3rem; }

.callout-info { background: #e8f0fb; border-left: 4px solid #3b6fd4; }
.callout-info .callout-body p { color: #1e3a6e; }

.callout-warning { background: #fef8e8; border-left: 4px solid var(--gold); }
.callout-warning .callout-body p { color: #5a3e00; }

.callout-success { background: #e9f7ef; border-left: 4px solid #2e8b57; }
.callout-success .callout-body p { color: #1a4f30; }

.callout-danger { background: #fdecea; border-left: 4px solid var(--rust); }
.callout-danger .callout-body p { color: #5c1a10; }

/* ── TABLES ── */
.table-wrap { overflow-x: auto; margin: 2rem 0; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.93rem; }
thead { background: var(--navy); color: var(--cream); }
thead th { padding: 0.9rem 1rem; text-align: left; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--cream-dark); }
td { padding: 0.8rem 1rem; color: var(--text-mid); vertical-align: top; }
td strong { color: var(--text); }

/* ── FAQ ── */
.faq-section { margin: 3rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { background: var(--cream-dark); }
.faq-icon { font-size: 1.3rem; flex-shrink: 0; transition: transform 0.25s; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-answer-inner p { margin-bottom: 0.8rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ── CHECKLIST ── */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── STEP BOXES ── */
.steps { counter-reset: step-counter; margin: 2rem 0; }
.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.step-num {
  counter-increment: step-counter;
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-num::after { content: counter(step-counter); }
.step-body h4 { margin-top: 0; }

/* ── TOOL ── */
.tool-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: 2.5rem 0;
}
.tool-header {
  background: var(--navy);
  padding: 1.5rem 2rem;
  color: var(--cream);
}
.tool-header h2 { color: var(--cream); margin: 0 0 0.25rem; font-size: 1.4rem; }
.tool-header p { color: rgba(245,240,232,0.7); margin: 0; font-size: 0.9rem; }
.tool-body { padding: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-select, .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  appearance: none;
  transition: border-color 0.2s;
}
.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.tool-result {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  display: none;
}
.tool-result.visible { display: block; }
.result-title {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}
.result-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.result-item:last-child { border-bottom: none; }
.result-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.result-text { color: var(--text-mid); }

/* ── DISCLAIMER ── */
.disclaimer {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  margin: 2.5rem 0;
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}
.disclaimer strong { color: var(--text-mid); }

/* ── RELATED LINKS ── */
.related-links { margin: 3rem 0; }
.related-links h3 { margin-bottom: 1rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.related-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
}
.related-link:hover { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }
.related-link::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; color: var(--border); }

/* ── SIDEBAR LAYOUT ── */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.sidebar { position: sticky; top: 80px; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 1rem;
  margin-top: 0;
}
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 0.55rem 0;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.sidebar-links a:hover { color: var(--gold); }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 3.5rem 1.5rem 2rem;
  color: rgba(245,240,232,0.65);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { display: block; margin-bottom: 0.75rem; font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  font-size: 0.88rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(245,240,232,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a { color: rgba(245,240,232,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .header-inner { flex-wrap: wrap; }
}

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .sidebar, .trust-bar { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}

/* ── ANALYTICS PLACEHOLDER ── */
/* GA4 + Clarity — activate in Phase 3
   <script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
   <script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag('js',new Date());gtag('config','G-XXXXXXXXXX');</script>
   <script type="text/javascript">(function(c,l,a,r,i,t,y){...})(window,document,"clarity","script","XXXXXXXXXX");</script>
*/

/* ── AMAZON AFFILIATE BLOCK ── */
.affiliate-block {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.affiliate-block-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.affiliate-block-body h4 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.1rem;
}
.affiliate-block-body p {
  margin: 0 0 0.85rem;
  font-size: 0.93rem;
  color: var(--text-mid);
}
.affiliate-disclosure {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 0.5rem 0.75rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  margin-top: 1.25rem;
}
.affiliate-btn {
  display: inline-block;
  background: #ff9900;
  color: #111;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.affiliate-btn:hover { background: #e68900; color: #111; }

/* ── TRUST BADGES (enhanced footer) ── */
.trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 130px;
  text-align: center;
}
.trust-badge-icon { font-size: 1.75rem; line-height: 1; }
.trust-badge-label { font-size: 0.75rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-badge-sub { font-size: 0.7rem; color: var(--text-light); }

/* ── STAT CARDS ── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.stat-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.stat-card .num { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-light); display: block; }
.stat-card .label { font-size: 0.8rem; color: rgba(245,240,232,0.65); text-transform: uppercase; letter-spacing: 0.05em; }
@media(max-width:600px){ .stat-cards { grid-template-columns: 1fr; } }
