/* ============================================
   THE WEALTH VIBRATION — styles.css
   thewealthvibration.com
   ============================================ */

:root {
  --gold: #C9A227;
  --gold-hover: #A8841A;
  --gold-light: #F0D98A;
  --gold-bg: #FDF8EE;
  --gold-border: #E8D5A3;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --light: #F5F3EE;
  --border: #E8E2D6;
  --dark: #1C1C1C;
  --medium: #444444;
  --muted: #888888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.09), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.11), 0 4px 8px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { color: var(--medium); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.gold-line { width: 50px; height: 3px; background: var(--gold); margin: 0.75rem auto 0; border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-family: var(--font-sans);
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--gold); border-color: #fff; }
.btn-white:hover { background: var(--gold-bg); color: var(--gold-hover); }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #333; color: #fff; transform: translateY(-1px); }

/* ==========================================
   NAVIGATION
   ========================================== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.nav-logo-tag { font-size: 0.63rem; color: var(--gold); font-style: italic; letter-spacing: 0.04em; margin-top: 3px; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 0 0.9rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--medium); line-height: 68px;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.55; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); min-width: 230px; z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.825rem; color: var(--medium);
  border-bottom: 1px solid var(--light);
  transition: all 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--gold-bg); color: var(--gold); padding-left: 1.5rem; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  background: var(--white);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--gold); margin-bottom: 0.75rem;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--medium);
  max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

/* ==========================================
   THREE PILLARS
   ========================================== */
.pillars { background: var(--off-white); border-bottom: 1px solid var(--border); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.pillar-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm);
}
.pillar-icon {
  width: 48px; height: 48px; background: var(--gold-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.pillar-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.875rem; color: var(--medium); line-height: 1.65; margin: 0; }

/* ==========================================
   TOPIC GRID
   ========================================== */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.1rem; }
.topic-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem;
  text-decoration: none; transition: all 0.2s ease; display: block;
}
.topic-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--dark); }
.topic-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.topic-card h3 { font-size: 0.9rem; margin-bottom: 0.3rem; font-family: var(--font-sans); font-weight: 600; color: var(--dark); }
.topic-card p { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ==========================================
   ARTICLE CARDS
   ========================================== */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.article-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.2s ease;
  display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.article-card-top {
  background: var(--gold-bg); padding: 1.75rem;
  border-bottom: 3px solid var(--gold);
}
.article-card-cat {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block;
}
.article-card-top h3 { font-size: 1.05rem; line-height: 1.4; color: var(--dark); }
.article-card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.article-card-excerpt { font-size: 0.875rem; color: var(--medium); line-height: 1.6; flex: 1; margin-bottom: 1.1rem; }
.article-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--muted); }
.article-card-meta .author { font-weight: 500; color: var(--medium); }

/* ==========================================
   REED INTRO
   ========================================== */
.reed-intro {
  background: var(--gold-bg);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.reed-intro-inner { display: grid; grid-template-columns: auto 1fr; gap: 2.25rem; align-items: center; }
.reed-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2.2rem; color: #fff; font-weight: 700;
  flex-shrink: 0; border: 4px solid var(--white); box-shadow: var(--shadow-md);
}
.reed-intro-text h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.reed-intro-text p { font-size: 0.9rem; color: var(--medium); margin-bottom: 0.65rem; }

/* ==========================================
   RESOURCES BANNER
   ========================================== */
.resources-banner { background: #111; color: #fff; padding: 3.5rem 0; text-align: center; }
.resources-banner h2 { color: #fff; margin-bottom: 0.6rem; }
.resources-banner > .container > p { color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; font-size: 1rem; }
.resources-pills { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.res-pill {
  display: inline-block; padding: 0.45rem 1.1rem;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.45);
  border-radius: 50px; color: var(--gold-light); font-size: 0.825rem; font-weight: 500;
  transition: all 0.2s; text-decoration: none;
}
.res-pill:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ==========================================
   EMAIL SIGNUP
   ========================================== */
.email-signup { background: var(--off-white); text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.email-signup h2 { margin-bottom: 0.6rem; }
.email-signup .lead { color: var(--medium); font-size: 1rem; margin-bottom: 1.75rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.signup-form { display: flex; gap: 0.65rem; max-width: 460px; margin: 0 auto; }
.signup-form input {
  flex: 1; padding: 0.7rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.875rem; font-family: var(--font-sans); outline: none;
  transition: border-color 0.2s; background: var(--white);
}
.signup-form input:focus { border-color: var(--gold); }
.signup-note { font-size: 0.73rem; color: var(--muted); margin-top: 0.65rem; }

/* ==========================================
   BOOK RECOMMENDATIONS
   ========================================== */
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.book-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
  text-decoration: none; color: var(--dark);
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.book-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); color: var(--dark); }
.book-spine {
  width: 44px; height: 60px; border-radius: 3px;
  background: var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700; color: #fff;
  text-align: center; line-height: 1.3; padding: 4px;
}
.book-card h4 { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; }
.book-card p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.book-card .amz-tag { font-size: 0.65rem; color: var(--gold); font-weight: 600; margin-top: 0.4rem; display: block; }

/* ==========================================
   PLATFORM AFFILIATES
   ========================================== */
.platforms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.platform-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: all 0.2s;
  text-decoration: none; color: var(--dark); display: block;
}
.platform-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--dark); }
.platform-logo {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--gold); margin: 0 auto 0.9rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.platform-card h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.platform-card p { font-size: 0.8rem; color: var(--medium); margin-bottom: 0.5rem; }
.platform-card .aff-tag { font-size: 0.63rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { background: #111; color: rgba(255,255,255,0.55); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-serif); color: #fff; font-size: 1.25rem; margin-bottom: 0.35rem; }
.footer-brand .tag { color: var(--gold); font-style: italic; font-size: 0.85rem; margin-bottom: 0.9rem; display: block; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; margin: 0; }
.footer-col h4 {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.footer-disclaimer { font-size: 0.73rem; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 860px; margin: 0 auto; text-align: center; }

/* ==========================================
   PAGE HEADER (inner pages)
   ========================================== */
.page-header { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 3.5rem 0 2.75rem; }
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.9rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted); }
.page-header h1 { margin-bottom: 0.9rem; }
.page-header .lead { font-size: 1.1rem; color: var(--medium); max-width: 660px; line-height: 1.7; }

/* ==========================================
   ARTICLE LAYOUT
   ========================================== */
.article-layout { display: grid; grid-template-columns: 1fr 290px; gap: 4rem; align-items: start; }
.article-content { min-width: 0; }
.article-header { margin-bottom: 2.25rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.article-tag {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--gold); background: var(--gold-bg);
  border: 1px solid var(--gold-border); padding: 0.28rem 0.75rem;
  border-radius: 50px; display: inline-block; margin-bottom: 0.9rem;
}
.article-header h1 { margin-bottom: 0.9rem; line-height: 1.2; }
.article-meta { display: flex; align-items: center; gap: 1.35rem; font-size: 0.83rem; color: var(--muted); flex-wrap: wrap; }
.article-meta .author { display: flex; align-items: center; gap: 0.45rem; color: var(--medium); font-weight: 500; }
.author-dot {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 0.7rem; color: #fff;
}
.article-body { font-size: 1.04rem; line-height: 1.82; color: var(--dark); }
.article-body h2 { font-size: 1.55rem; margin-top: 2.5rem; margin-bottom: 0.9rem; padding-top: 0.5rem; }
.article-body h3 { font-size: 1.18rem; margin-top: 1.9rem; margin-bottom: 0.7rem; }
.article-body p { margin-bottom: 1.4rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.article-body li { margin-bottom: 0.4rem; line-height: 1.7; }
.article-body strong { font-weight: 600; color: var(--dark); }

.pull-quote {
  border-left: 4px solid var(--gold); margin: 2rem 0;
  padding: 1.1rem 1.5rem; background: var(--gold-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.2rem; color: var(--dark); margin: 0; line-height: 1.5;
}

.callout {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; margin: 2rem 0;
}
.callout-gold { background: var(--gold-bg); border-color: var(--gold-border); }
.callout h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); font-family: var(--font-sans); margin-bottom: 0.65rem;
}
.callout p { font-size: 0.9rem; color: var(--medium); margin: 0; }

.data-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.93rem; }
.data-table th {
  background: var(--dark); color: #fff;
  padding: 0.7rem 1rem; text-align: left;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}
.data-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gold-bg); }
.data-table .hl td { background: var(--gold-bg); font-weight: 600; }
.data-table .hl td:first-child { color: var(--gold); }

.article-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem; margin-bottom: 1.35rem;
}
.sidebar-card h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  font-family: var(--font-sans); margin-bottom: 0.9rem;
}
.sidebar-card p { font-size: 0.85rem; color: var(--medium); }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-hero { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 5rem 0; text-align: center; }
.about-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 3rem; color: #fff; font-weight: 700;
  margin: 0 auto 1.25rem; border: 5px solid var(--white); box-shadow: var(--shadow-lg);
}
.about-hero h1 { margin-bottom: 0.4rem; }
.about-hero .role { color: var(--gold); font-style: italic; font-size: 1.05rem; margin-bottom: 0; }
.about-body { max-width: 760px; margin: 0 auto; }
.about-body p { font-size: 1.05rem; line-height: 1.82; color: var(--medium); }
.about-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.philosophy-list { list-style: none; padding: 0; }
.philosophy-list li {
  padding: 1rem 1rem 1rem 3.25rem; position: relative;
  border-bottom: 1px solid var(--border); font-size: 1rem; line-height: 1.7;
}
.philosophy-list li:last-child { border-bottom: none; }
.philosophy-list li::before {
  content: '◆'; position: absolute; left: 1rem; color: var(--gold); font-size: 0.7rem; top: 1.3rem;
}

/* ==========================================
   TOPIC PAGES
   ========================================== */
.topic-hero {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gold-bg) 100%);
  border-bottom: 1px solid var(--gold-border); padding: 4rem 0 3.5rem;
}
.topic-hero .big-icon { font-size: 3rem; margin-bottom: 1rem; }
.concepts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.35rem; }
.concept-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.concept-card h3 { font-size: 0.95rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: 0.5rem; }
.concept-card p { font-size: 0.85rem; color: var(--medium); margin: 0; line-height: 1.65; }
.reeds-take {
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-left: 5px solid var(--gold); border-radius: var(--radius); padding: 1.75rem 2.25rem;
}
.reeds-take .attr {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.65rem;
  font-family: var(--font-sans); display: block;
}
.reeds-take p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.08rem; line-height: 1.65; color: var(--dark); margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 0.75rem 0; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { line-height: 1; padding: 0.7rem 1.5rem; }
  .dropdown { position: static; display: none; box-shadow: none; border: none; background: var(--off-white); padding-left: 1rem; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .reed-intro-inner { grid-template-columns: 1fr; text-align: center; }
  .reed-avatar { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .signup-form { flex-direction: column; }
  .articles-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .topics-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 2.75rem; }
  .data-table { font-size: 0.8rem; }
  .data-table th, .data-table td { padding: 0.5rem 0.65rem; }
}
