/* ==========================================================================
   JamusProperty.com — Shared Design System
   --------------------------------------------------------------------------
   Single source of truth for colors, typography, layout, and components.
   Every page loads this file. Page-specific overrides live in a small
   <style> block on the page itself and must never redefine tokens.

   Brand reference: /exclusive-condo-insights-2026 (cream / slate / champagne)
   Fonts: Playfair Display (display) + Montserrat (UI & body)
   ========================================================================== */

/* ---- 1. Design tokens ------------------------------------------------- */
:root {
  /* Color */
  --ink:        #2C3539;   /* deep slate — headings, dark bands, footer */
  --ink-soft:   #3d4448;   /* raised dark surfaces */
  --text:       #4a4540;   /* warm gray — body copy */
  --text-muted: #7d7669;   /* captions, meta */
  --gold:       #d4a574;   /* champagne — decorative, buttons, dividers */
  --gold-deep:  #8f6b3d;   /* accessible gold — text links on light bg */
  --gold-soft:  rgba(212, 165, 116, 0.28); /* hairlines, tints */
  --cream:      #f8f6f3;   /* section background */
  --paper:      #fdfcfa;   /* page background — bright, warm white */
  --white:      #ffffff;   /* cards */
  --line:       rgba(44, 53, 57, 0.10);   /* hairline borders */
  --on-dark:    rgba(255, 255, 255, 0.82);
  --on-dark-muted: rgba(255, 255, 255, 0.55);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --content-narrow: 800px;   /* long-form reading */
  --content-wide: 1140px;    /* grids, header, footer */
  --radius: 6px;
  --shadow-card: 0 1px 2px rgba(44,53,57,0.05), 0 6px 20px rgba(44,53,57,0.06);
  --shadow-card-hover: 0 2px 4px rgba(44,53,57,0.06), 0 14px 32px rgba(44,53,57,0.10);

  /* Header */
  --header-height: 72px;
}

/* ---- 2. Reset & base --------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--paper);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

a { color: var(--gold-deep); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---- 3. Utilities ------------------------------------------------------ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}

.hide-on-mobile { display: initial; }
@media (max-width: 768px) {
  .hide-on-mobile { display: none !important; }
}

/* ---- 4. Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #c99a67; }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-soft); }

.btn-outline { background: transparent; color: var(--ink); border-color: rgba(44,53,57,0.35); }
.btn-outline:hover { border-color: var(--ink); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { border-color: #fff; }

/* ---- 5. Site header (standard on every page) --------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 252, 250, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .site-nav {
  max-width: var(--content-wide);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: transparent; /* guards against legacy element-level nav rules */
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
  margin-right: auto;
}
.site-logo .site-logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.site-logo .site-logo-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.site-menu a {
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-menu a:hover { color: var(--gold-deep); }
.site-menu a[aria-current="page"] {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
.site-menu .btn { padding: 0.65rem 1.4rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(44,53,57,0.10);
    display: none;
    padding: 0.5rem 0 1rem;
  }
  .site-menu.is-open { display: flex; }
  .site-menu li { border-top: 1px solid var(--line); }
  .site-menu li:first-child { border-top: none; }
  .site-menu a { display: block; padding: 0.9rem 1.5rem; border-bottom: none; }
  .site-menu .btn { margin: 0.75rem 1.5rem 0; display: flex; }
}

/* ---- 6. Breadcrumbs ---------------------------------------------------- */
.breadcrumbs {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.4rem; color: var(--gold); }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-deep); }

/* ---- 7. Page hero (light, calm — replaces old dark image heroes) ------- */
.hero,
.hero-page {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  min-height: 0;               /* override legacy 60vh heroes */
  display: block;
  color: var(--ink);
}
.hero::before { content: none; } /* kill legacy radial overlays */
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.hero h1,
.hero-page h1 {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero-lead {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.85;
  margin: 0 auto;
}
.hero-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.hero-cta:hover { background: #c99a67; }

/* ---- 8. Credentials bar ------------------------------------------------ */
.cred-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: none;
  padding: 1rem 1.5rem;
}
.cred-bar-inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
}
.cred-item { display: flex; align-items: center; gap: 0.6rem; }
.cred-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.cred-text { font-size: 0.8rem; color: var(--text); }

/* ---- 9. Long-form content ---------------------------------------------- */
.content {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.section { margin-bottom: 4rem; }
.section h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-soft);
}
.section h3 { font-size: 1.25rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.section p { color: var(--text); font-size: 0.9375rem; line-height: 1.9; }
.section p + p { margin-top: 0.9rem; }
.section ul, .section ol { margin: 0.9rem 0 0.9rem 1.4rem; font-size: 0.9375rem; }
.section li + li { margin-top: 0.4rem; }

.internal-link {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.2s ease;
}
.internal-link:hover { border-color: var(--gold-deep); }

.callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}
.callout p { color: var(--text); font-size: 0.9375rem; line-height: 1.85; }

.framework-image-wrapper { text-align: center; margin: 2.5rem 0; }
.framework-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.body-img {
  width: 100%;
  margin: 2.5rem 0 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.img-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-align: center;
  font-style: italic;
  display: block;
}

/* Tables */
.section table, table.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.section th, table.data-table th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.8rem 1rem;
}
.section td, table.data-table td {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
.section tr:nth-child(even) td { background: var(--cream); }

/* ---- 10. Card patterns -------------------------------------------------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.featured-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.featured-card-img { width: 100%; height: 200px; object-fit: cover; }
.featured-card-content { padding: 1.5rem; }
.featured-card-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.featured-card-desc { font-size: 0.865rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; }
.featured-card-link {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.865rem;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.2s ease;
}
.featured-card-link:hover { border-color: var(--gold-deep); }

.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.evaluation-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
}
.evaluation-card-title { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 0.75rem; }
.evaluation-card-title a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.evaluation-card-title a:hover { color: var(--gold-deep); }
.evaluation-card-desc { font-size: 0.865rem; color: var(--text); line-height: 1.7; }

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.coming-soon-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.coming-soon-card-img { width: 100%; height: 180px; object-fit: cover; opacity: 0.75; }
.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
}
.coming-soon-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--ink); padding: 1.5rem 1.5rem 1.25rem; }

.steps { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.step-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700; line-height: 1; padding-top: 0.1rem; }
.step-title { font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; color: var(--ink); margin-bottom: 0.3rem; }
.step-desc { font-size: 0.865rem; color: var(--text); line-height: 1.7; }

.profiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.profile {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
}
.profile-title { font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; color: var(--ink); margin-bottom: 0.4rem; }
.profile-desc { font-size: 0.865rem; color: var(--text); line-height: 1.7; }

/* ---- 11. FAQ accordion (toggled by /assets/js/main.js) ------------------ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.faq-question {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { color: var(--text); font-size: 0.9375rem; line-height: 1.85; display: none; padding-top: 0.75rem; }
.faq-item.open .faq-answer { display: block; }

/* ---- 12. Contact band (dark, standard on every page) -------------------- */
.contact-band {
  background: var(--ink);
  padding: 4.5rem 1.5rem;
  color: #fff;
}
.contact-band-inner { max-width: 620px; margin: 0 auto; }
.contact-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-band .contact-intro {
  color: var(--on-dark-muted);
  text-align: center;
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-input::placeholder { color: rgba(255,255,255,0.5); }
.contact-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.contact-input option { background: var(--ink); color: #fff; }
.form-error { color: #ff8f8f; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.contact-submit {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-submit:hover { background: #c99a67; }

/* ---- 13. Site footer (standard on every page) ---------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
}
.site-footer .footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-brand-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-brand-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-desc { color: var(--on-dark-muted); font-size: 0.865rem; line-height: 1.75; max-width: 300px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer-social a { color: var(--on-dark-muted); transition: color 0.2s ease; }
.footer-social a:hover { color: var(--gold); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a, .footer-links li {
  color: var(--on-dark-muted);
  font-size: 0.865rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p, .footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .footer-legal { display: flex; gap: 1.5rem; }

/* ---- 14. WhatsApp floating button ---------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  z-index: 300;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---- 15. Marketing sections (homepage & landing patterns) ---------------- */
.band { padding: 5.5rem 1.5rem; }
.band-cream { background: var(--cream); }
.band-white { background: var(--white); }
.band-inner { max-width: var(--content-wide); margin: 0 auto; }
.band-inner-narrow { max-width: 880px; margin: 0 auto; }
.band-header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.band-header h2 { font-size: clamp(1.7rem, 3.5vw, 2.35rem); margin-bottom: 1rem; }
.band-header p { color: var(--text); font-size: 0.975rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split h2 { font-size: clamp(1.7rem, 3.5vw, 2.35rem); margin-bottom: 1.25rem; }
.split p { font-size: 0.95rem; }
.split p + p { margin-top: 1rem; }
.split-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  width: 100%;
  object-fit: cover;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--white); padding: 1.75rem 1.25rem; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--ink); }
.stat-label { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.35rem; }

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.2em; }
.quote-text { font-size: 0.9rem; line-height: 1.8; color: var(--text); flex-grow: 1; }
.quote-name { font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; color: var(--ink); }
.quote-role { font-size: 0.78rem; color: var(--text-muted); }

/* Legacy token aliases — older article/pillar content uses these in inline styles. */
:root {
  --charcoal: var(--ink);
  --primary-dark: var(--ink);
  --accent-gold: var(--gold-deep);
  --bg-light: var(--cream);
}
