/* ============================================================
   BAH TO WEALTH — MASTER DESIGN SYSTEM v2
   bahtowealth.com | Mike Barajas DRE #2511286
   Aesthetic: Black Camo · Gold · Military Precision
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&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&family=DM+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Core black palette */
  --black:        #090b08;
  --black-mid:    #0f110d;
  --black-card:   #141610;
  --black-raise:  #1a1d16;
  --black-hover:  #20231b;

  /* Gold */
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-pale:    rgba(201,168,76,0.13);
  --gold-dim:     rgba(201,168,76,0.06);

  /* Text on dark */
  --text-primary:   #f0ede6;
  --text-secondary: rgba(240,237,230,0.65);
  --text-muted:     rgba(240,237,230,0.38);

  /* Light reading surfaces */
  --surface:      #f5f2eb;
  --surface-mid:  #edeae2;
  --white:        #ffffff;  /* also use var(--text-primary) for text on dark bg */

  /* Borders */
  --border:       rgba(201,168,76,0.2);
  --border-dim:   rgba(201,168,76,0.09);
  --border-light: rgba(10,16,8,0.1);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Spacing */
  --section-pad:  clamp(5rem, 10vw, 9rem);
  --container:    1200px;
  --radius:       4px;
  --radius-lg:    12px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.6);
  --shadow-gold:  0 4px 28px rgba(201,168,76,0.28);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Camo SVG as data URI — reused across elements */
  --camo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cellipse cx='30' cy='22' rx='32' ry='20' fill='%23243018' opacity='0.95'/%3E%3Cellipse cx='105' cy='12' rx='40' ry='17' fill='%231c2814' opacity='0.9'/%3E%3Cellipse cx='172' cy='35' rx='26' ry='28' fill='%232e3e1f' opacity='0.85'/%3E%3Cellipse cx='60' cy='65' rx='34' ry='20' fill='%23253319' opacity='0.92'/%3E%3Cellipse cx='145' cy='70' rx='32' ry='18' fill='%23182010' opacity='0.88'/%3E%3Cellipse cx='18' cy='105' rx='20' ry='30' fill='%233a4e28' opacity='0.75'/%3E%3Cellipse cx='95' cy='110' rx='42' ry='20' fill='%231f2c15' opacity='0.92'/%3E%3Cellipse cx='178' cy='118' rx='24' ry='34' fill='%2328381b' opacity='0.8'/%3E%3Cellipse cx='45' cy='155' rx='36' ry='18' fill='%23162011' opacity='0.88'/%3E%3Cellipse cx='128' cy='162' rx='30' ry='22' fill='%23243018' opacity='0.85'/%3E%3Cellipse cx='8' cy='182' rx='16' ry='20' fill='%233a4e28' opacity='0.72'/%3E%3Cellipse cx='82' cy='185' rx='44' ry='16' fill='%231c2814' opacity='0.92'/%3E%3Cellipse cx='168' cy='188' rx='28' ry='18' fill='%232e3e1f' opacity='0.82'/%3E%3C/svg%3E");
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--black);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem);    font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);    font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem);  font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--text-secondary); max-width: 68ch; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container         { width: min(var(--container), 100% - 3rem); margin-inline: auto; }
.container--narrow { width: min(780px, 100% - 3rem); margin-inline: auto; }
.container--wide   { width: min(1400px, 100% - 2rem); margin-inline: auto; }
section { padding: var(--section-pad) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media(max-width:900px){.grid-2,.grid-3{grid-template-columns:1fr;}.grid-4{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.grid-4{grid-template-columns:1fr;}}

/* ─── CAMO TEXTURE HELPER ────────────────────────────────── */
/* Add class="camo-tex" to any element to layer camo over it */
.camo-tex {
  position: relative;
  overflow: hidden;
}
.camo-tex::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--camo-svg);
  background-size: 200px 200px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.camo-tex > * { position: relative; z-index: 1; }
.camo-tex--light::before  { opacity: 0.10; }
.camo-tex--ghost::before  { opacity: 0.06; }
.camo-tex--strong::before { opacity: 0.26; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.9rem 0;
  background: rgba(9,11,8,0.97);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
  overflow: hidden;
}
/* Subtle camo in navbar */
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--camo-svg);
  background-size: 200px 200px;
  opacity: 0.08;
  pointer-events: none;
}
/* Gold top stripe */
.navbar::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.navbar__logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.navbar__logo img {
  height: 36px; width: auto;
  border-radius: 3px; flex-shrink: 0;
}
.navbar__logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.navbar__logo-wordmark span { color: var(--gold); }
.navbar__logo-wordmark small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: -2px;
}
.navbar__links { display: flex; gap: 2rem; list-style: none; }
.navbar__links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--gold); }
.navbar__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: all 0.2s !important;
  letter-spacing: 0.02em;
}
.navbar__cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: all 0.3s;
}
@media(max-width:768px){
  .navbar__links{display:none;}
  .navbar__hamburger{display:flex;}
  .navbar__links.open{
    display:flex;flex-direction:column;
    position:fixed;top:64px;left:0;right:0;
    background:rgba(9,11,8,0.99);
    padding:1.5rem 1.5rem 2rem;
    border-bottom:1px solid var(--border);gap:0.5rem;
  }
  .navbar__links.open a{padding:0.75rem 0;border-bottom:1px solid var(--border-dim);color:var(--text-primary);}
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer; border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--black); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--text-primary); border: 1px solid rgba(255,255,255,0.14); }
.btn--ghost:hover { background: rgba(255,255,255,0.11); }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dim);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.card--raise { background: var(--black-raise); border-color: var(--border); }
.card--gold  { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border: none; color: var(--black); }
.card--gold p { color: rgba(9,11,8,0.7); }

/* ─── SECTION VARIANTS ───────────────────────────────────── */
.section--dark     { background: var(--black); }
.section--dark-mid { background: var(--black-mid); }
.section--card     { background: var(--black-card); }
.section--raise    { background: var(--black-raise); }
.pillars-section   { background: var(--black-mid); }

/* Light sections — used for long-form reading */
.section--light  { background: var(--surface); }
.section--light h1,.section--light h2,.section--light h3,.section--light h4 { color: #141610; }
.section--light p { color: #4a5568; }
.section--white  { background: var(--white); }
.section--white h1,.section--white h2,.section--white h3 { color: #141610; }
.section--white p { color: #4a5568; }

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.25rem 0 2rem;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; padding: 1rem 0; }
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
.trust-item span { color: var(--gold); }

/* ─── STAT BLOCKS ────────────────────────────────────────── */
.stat-block { text-align: center; padding: 2rem 1.5rem; }
.stat-block__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold); line-height: 1; display: block;
}
.stat-block__label {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* ─── TESTIMONIAL ────────────────────────────────────────── */
.testimonial {
  background: var(--black-card);
  border-left: 4px solid var(--gold);
  border-top: 1px solid var(--border-dim);
  border-right: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 1.75rem 2rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}
.testimonial__text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--text-primary);
  line-height: 1.6; margin-bottom: 1rem;
}
.testimonial__author {
  font-size: 0.82rem; font-weight: 600;
  font-family: var(--font-mono);
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
}
.testimonial__rank { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }

/* ─── BLOG CARD ──────────────────────────────────────────── */
.blog-card {
  background: var(--black-card);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-dim);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border); }
.blog-card__img { aspect-ratio: 16/9; background: var(--black-raise); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat  {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.blog-card__title {
  font-size: 1.15rem; font-family: var(--font-display); font-weight: 700;
  color: var(--text-primary); line-height: 1.35; margin-bottom: 0.75rem;
}
.blog-card__excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.blog-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--text-muted);
  font-family: var(--font-mono);
  border-top: 1px solid var(--border-dim); padding-top: 1rem; margin-top: auto;
}
.blog-card__read-more {
  color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.82rem; transition: gap 0.2s;
}
.blog-card:hover .blog-card__read-more { gap: 0.6rem; }

/* ─── CHECKLIST ──────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.95rem; color: var(--text-secondary);
}
.checklist li::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gold); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23090b08' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
  margin-top: 3px; flex-shrink: 0;
}

/* ─── FORM ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 2px solid var(--border-dim);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--black-raise);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

/* ─── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 0.3rem 0.75rem;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
}
.badge--gold    { background: var(--gold-pale); color: var(--gold-light); border: 1px solid var(--border); }
.badge--outline { border: 1px solid var(--gold); color: var(--gold); }

/* ─── PILLAR CARD ────────────────────────────────────────── */
.pillar-card {
  padding: 2rem 1.75rem; border-radius: var(--radius-lg);
  background: var(--black-card); border: 1px solid var(--border-dim);
  transition: all 0.3s var(--ease); cursor: pointer;
  position: relative; overflow: hidden;
}
/* Camo reveals on hover */
.pillar-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--camo-svg);
  background-size: 200px 200px;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.pillar-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.pillar-card:hover::before { opacity: 0.14; }
.pillar-card > * { position: relative; z-index: 1; }
.pillar-card__icon {
  width: 52px; height: 52px; background: var(--gold-pale);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.pillar-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.pillar-card__desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.pillar-card__link  { font-size: 0.82rem; font-weight: 600; color: var(--gold); font-family: var(--font-mono); display: flex; align-items: center; gap: 0.3rem; }

/* ─── PULL QUOTE ─────────────────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem; margin: 2.5rem 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.pull-quote p {
  font-family: var(--font-display); font-size: 1.35rem;
  font-style: italic; color: var(--gold-light);
  line-height: 1.5; max-width: 100%; margin: 0;
}

/* ─── CALLOUT ────────────────────────────────────────────── */
.callout {
  background: var(--gold-pale); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.25rem 1.5rem; margin: 1.75rem 0;
}
.callout strong { color: var(--gold-light); display: block; margin-bottom: 0.35rem; }
.callout p      { color: var(--text-secondary); margin: 0; max-width: 100%; }
.callout--dark  { background: var(--black-raise); border-color: var(--gold); }
.callout--dark strong { color: var(--gold); }

/* ─── DATA TABLE ─────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: 0.9rem; }
.data-table th {
  background: var(--black-raise); color: var(--gold);
  padding: 0.75rem 1rem; text-align: left;
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.data-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-dim); color: var(--text-secondary); }
.data-table tr:hover td { background: var(--black-hover); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--text-muted);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--camo-svg); background-size: 200px 200px;
  opacity: 0.09; pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer .container { position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--text-primary); margin-bottom: 0.25rem; }
.footer__brand-name span { color: var(--gold); }
.footer__tagline { font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer__desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer__col-title { font-size: 0.75rem; font-weight: 600; font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--border-dim); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__legal { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-mono); }
.footer__dre   { font-size: 0.75rem; color: var(--gold); font-family: var(--font-mono); opacity: 0.7; }
@media(max-width:900px){.footer__grid{grid-template-columns:1fr 1fr;gap:2rem;}}
@media(max-width:560px){.footer__grid{grid-template-columns:1fr;}}

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero { background: var(--black); padding: 9rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── ARTICLE READING SURFACE ────────────────────────────── */
/* Blog articles keep a light surface for comfortable reading */
.article-reading {
  background: var(--surface);
}
.article-body { color: #2d3748; }
.article-body p { color: #4a5568; max-width: 100%; }
.article-body h2,.article-body h3 { color: #141610; }
.article-body strong { color: #141610; }
.article-body ul li { color: #4a5568; }
/* Article sidebar cards stay dark */
.sidebar-card { background: var(--black-card); border: 1px solid var(--border-dim); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
.sidebar-card--dark { background: var(--black-raise); border-color: var(--border); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}
.animate-fade-up              { animation: fadeUp 0.7s var(--ease) both; }
.animate-fade-up-delay-1      { animation-delay: 0.1s; }
.animate-fade-up-delay-2      { animation-delay: 0.22s; }
.animate-fade-up-delay-3      { animation-delay: 0.34s; }
.animate-fade-up-delay-4      { animation-delay: 0.46s; }
.shimmer-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--text-primary); }
.mt-1{margin-top:.5rem;}.mt-2{margin-top:1rem;}.mt-3{margin-top:1.5rem;}
.mt-4{margin-top:2rem;}.mt-6{margin-top:3rem;}
.mb-1{margin-bottom:.5rem;}.mb-2{margin-bottom:1rem;}.mb-3{margin-bottom:1.5rem;}
.mb-4{margin-bottom:2rem;}.mb-6{margin-bottom:3rem;}
.flex{display:flex;}.flex-center{display:flex;align-items:center;justify-content:center;}
.gap-1{gap:.5rem;}.gap-2{gap:1rem;}.gap-3{gap:1.5rem;}.gap-4{gap:2rem;}
.p-relative{position:relative;}
.pt-nav{padding-top:80px;}
