/* FateWeave Design System — Eastern Philosophy + Modern Data Viz */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #F6F2E8;
  --surface: #FFFDF8;
  --ink: #1F2A33;
  --ink-light: #5A6670;
  --gold: #B88A3B;
  --gold-light: #D4AF6A;
  --cinnabar: #C24A3A;
  --cinnabar-light: #E06B5D;
  --jade: #2F7E6B;
  --jade-light: #4CA892;
  --line: #D9CFBD;
  --line-light: #E8E0D0;
  --shadow: rgba(31,42,51,0.08);
  --shadow-md: rgba(31,42,51,0.12);
  --radius: 12px;
  --radius-pill: 999px;
  --radius-sm: 8px;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1200px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; color: var(--ink); }
h1 { font-size: 2.5rem; letter-spacing: 0.02em; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--ink-light); }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cinnabar); }

/* === Layout === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.section { padding: 5rem 0; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* === Header === */
.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  background: rgba(255,253,248,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: 0.05em; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--ink-light); }
.nav-links a:hover { color: var(--gold); }

/* Language Switcher */
.lang-switcher { display: flex; gap: 2px; background: var(--line-light); border-radius: var(--radius-sm); padding: 2px; }
.lang-btn { border: none; background: transparent; padding: 4px 8px; font-size: 0.75rem; font-weight: 600; color: var(--ink-light); cursor: pointer; border-radius: calc(var(--radius-sm) - 2px); transition: all var(--transition); }
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { background: var(--surface); color: var(--gold); box-shadow: 0 1px 3px var(--shadow-sm); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  transition: all var(--transition); text-decoration: none; line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cinnabar), #A83A2E);
  color: #fff; box-shadow: 0 4px 15px rgba(194,74,58,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194,74,58,0.4); color: #fff; }
.btn-secondary {
  background: var(--surface); color: var(--ink); border: 2px solid var(--line);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #9A7230);
  color: #fff; box-shadow: 0 4px 15px rgba(184,138,59,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,138,59,0.4); color: #fff; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }

/* === Cards === */
.card {
  background: var(--surface); border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 2px 8px var(--shadow); border: 1px solid var(--line-light);
  transition: all var(--transition);
}
.card:hover { box-shadow: 0 4px 16px var(--shadow-md); }
.card-gold { border: 2px solid var(--gold); position: relative; }
.card-gold::before {
  content: 'RECOMMENDED'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: var(--radius-pill); letter-spacing: 0.1em;
}

/* === Hero === */
.hero { padding: 6rem 0 4rem; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,138,59,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(184,138,59,0.1); color: var(--gold); font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: var(--radius-pill); margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .highlight { color: var(--gold); }
.hero p { font-size: 1.15rem; margin-bottom: 2rem; max-width: 480px; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; }

/* === Element Ring Chart === */
.element-ring { width: 320px; height: 320px; position: relative; }
.element-ring svg { width: 100%; height: 100%; }
.ring-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.ring-center .element-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.ring-center .element-label { font-size: 0.8rem; color: var(--ink-light); }

/* === Form === */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--ink); }
.form-input, .form-select {
  width: 100%; padding: 0.875rem 1rem; font-family: var(--font-body); font-size: 1rem;
  border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--surface);
  color: var(--ink); transition: border-color var(--transition); outline: none;
}
.form-input:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--ink-light); opacity: 0.6; }
.form-hint { font-size: 0.8rem; color: var(--ink-light); margin-top: 0.35rem; }
.form-error { font-size: 0.8rem; color: var(--cinnabar); margin-top: 0.35rem; display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Date Picker Selects */
.date-picker-row { display: grid; grid-template-columns: 2fr 2fr 1.2fr; gap: 0.625rem; }
.date-picker-col { position: relative; }
.date-picker-col .form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B88A3B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 12px;
  padding-right: 2rem; cursor: pointer;
}
.date-picker-col .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 59, 0.15);
}

/* City Search Autocomplete */
.city-search-wrapper { position: relative; }
.city-results {
  position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
  border: 2px solid var(--gold); border-top: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  max-height: 240px; overflow-y: auto; z-index: 50; display: none;
  box-shadow: 0 8px 24px var(--shadow-md);
}
.city-results.active { display: block; }
.city-result-item {
  padding: 0.75rem 1rem; cursor: pointer; font-size: 0.95rem;
  border-bottom: 1px solid var(--line-light); transition: background var(--transition);
}
.city-result-item:hover { background: rgba(184,138,59,0.08); }
.city-result-item .city-name { font-weight: 600; }
.city-result-item .city-tz { font-size: 0.8rem; color: var(--ink-light); }

/* === Steps Indicator === */
.steps { display: flex; justify-content: center; gap: 0; margin-bottom: 3rem; }
.step {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--ink-light); position: relative;
}
.step.active { color: var(--gold); font-weight: 600; }
.step.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 2px; background: var(--gold);
}
.step-number {
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; border: 2px solid var(--line);
  color: var(--ink-light); background: var(--surface);
}
.step.active .step-number { border-color: var(--gold); color: var(--gold); background: rgba(184,138,59,0.08); }
.step.done .step-number { border-color: var(--jade); color: #fff; background: var(--jade); }
.step-divider { width: 40px; height: 2px; background: var(--line); align-self: center; }

/* === Insight Card === */
.insight-card {
  background: var(--surface); border-radius: var(--radius); padding: 1.75rem;
  border-left: 4px solid var(--gold); margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px var(--shadow);
}
.insight-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.insight-card .insight-body { color: var(--ink-light); font-size: 0.95rem; margin-bottom: 0.75rem; }
.insight-card .insight-action {
  font-size: 0.85rem; color: var(--jade); font-weight: 600;
  padding: 0.5rem 0.75rem; background: rgba(47,126,107,0.06); border-radius: var(--radius-sm);
  display: inline-block;
}

/* === Locked Section === */
.locked-section { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 1.5rem; }
.locked-content {
  filter: blur(6px); -webkit-filter: blur(6px); pointer-events: none; user-select: none;
  padding: 2rem; background: var(--surface); opacity: 0.6;
}
.locked-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(255,253,248,0.7); backdrop-filter: blur(2px);
}
.locked-overlay .lock-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.locked-overlay p { font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.locked-overlay .lock-hint { font-size: 0.85rem; color: var(--ink-light); margin-bottom: 1rem; }

/* === Paywall === */
.paywall { background: linear-gradient(180deg, var(--bg) 0%, rgba(184,138,59,0.05) 100%); padding: 4rem 0; }
.paywall h2 { text-align: center; margin-bottom: 0.75rem; }
.paywall .subtitle { text-align: center; font-size: 1.1rem; margin-bottom: 3rem; }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 700px; margin: 0 auto; }
.price-card { text-align: center; padding: 2.5rem 2rem; }
.price-card .price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--ink); margin: 1rem 0 0.5rem; }
.price-card .price-period { font-size: 0.85rem; color: var(--ink-light); margin-bottom: 1.5rem; }
.price-card .features { list-style: none; margin-bottom: 2rem; text-align: left; }
.price-card .features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--ink-light); }
.price-card .features li::before { content: '✓ '; color: var(--jade); font-weight: 700; }

/* === Trust Bar === */
.trust-bar {
  background: rgba(31,42,51,0.03); border-top: 1px solid var(--line-light);
  padding: 1rem 0; text-align: center;
}
.trust-items { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { font-size: 0.8rem; color: var(--ink-light); display: flex; align-items: center; gap: 0.35rem; }

/* === Pillar Display === */
.pillars-display { display: flex; gap: 1.5rem; justify-content: center; margin: 2rem 0; }
.pillar-col { text-align: center; min-width: 80px; }
.pillar-label { font-size: 0.75rem; color: var(--ink-light); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.pillar-chars {
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 0.75rem; font-family: var(--font-mono); font-size: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  transition: all var(--transition);
}
.pillar-chars:hover { border-color: var(--gold); box-shadow: 0 4px 12px var(--shadow); }
.pillar-stem { color: var(--ink); }
.pillar-branch { color: var(--gold); }
.pillar-english { font-family: var(--font-body); font-size: 0.7rem; color: var(--ink-light); margin-top: 0.5rem; }

/* === FAQ === */
.faq { background: var(--surface); }
.faq-item { border-bottom: 1px solid var(--line-light); padding: 1.5rem 0; }
.faq-question {
  font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; color: var(--ink);
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--ink-light); }
.faq-item.open .faq-answer { max-height: 500px; padding-top: 1rem; }

/* === Footer === */
.site-footer {
  margin-top: auto; padding: 3rem 0 1.5rem;
  background: var(--ink); color: rgba(255,255,255,0.6);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand .logo { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 0.75rem; }
.footer-links h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.5); font-size: 0.9rem; padding: 0.25rem 0; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; font-size: 0.8rem;
}
.footer-disclaimer { color: rgba(255,255,255,0.4); font-style: italic; }

/* === Sticky CTA (Mobile) === */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem; background: var(--surface);
  border-top: 1px solid var(--line); box-shadow: 0 -4px 16px var(--shadow-md);
  z-index: 90;
}
.sticky-cta .btn { width: 100%; }

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.4s ease-out both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

@keyframes ringDraw {
  from { stroke-dashoffset: var(--circumference); }
  to { stroke-dashoffset: var(--dash-offset); }
}

/* === Responsive === */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-cards { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 640px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2rem; }
  .nav-links { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .date-picker-row { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-display { gap: 0.75rem; }
  .pillar-chars { font-size: 1.2rem; padding: 0.75rem 0.5rem; }
  .sticky-cta { display: block; }
  .element-ring { width: 240px; height: 240px; }
  .steps { flex-wrap: wrap; }
  .step { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
}

/* === Utility === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* === Report Page === */
.report-badge {
  display: inline-block; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  color: var(--gold); background: rgba(184,138,59,0.1); padding: 0.35rem 1.25rem;
  border-radius: var(--radius-pill); letter-spacing: 0.15em; margin-bottom: 1rem;
}
.report-section {
  background: var(--surface); border-radius: var(--radius); padding: 2rem;
  border-left: 4px solid var(--gold); margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px var(--shadow); transition: all var(--transition);
}
.report-section:hover { box-shadow: 0 4px 16px var(--shadow-md); }
.report-section:nth-child(2) { border-left-color: var(--cinnabar); }
.report-section:nth-child(3) { border-left-color: var(--jade); }
.report-section:nth-child(4) { border-left-color: #2D5F8A; }
.report-section:nth-child(5) { border-left-color: #A0A0A0; }
.report-section:nth-child(6) { border-left-color: var(--gold-light); }
.report-section-header h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.report-section-summary { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }
.report-section-body { color: var(--ink-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.report-suggestions {
  background: rgba(47,126,107,0.04); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
}
.report-suggestions h4 { font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--jade); }
.report-suggestions ul { list-style: none; }
.report-suggestions li {
  padding: 0.5rem 0; font-size: 0.9rem; color: var(--ink-light);
  border-bottom: 1px solid rgba(47,126,107,0.08); position: relative; padding-left: 1.5rem;
}
.report-suggestions li:last-child { border-bottom: none; }
.report-suggestions li::before { content: '→ '; position: absolute; left: 0; color: var(--jade); font-weight: 600; }

/* === Payment Channel Selector === */
.channel-selector { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.channel-btn {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--surface);
  cursor: pointer; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--ink-light); transition: all var(--transition);
}
.channel-btn:hover { border-color: var(--gold); color: var(--ink); }
.channel-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(184,138,59,0.06); }
.channel-btn img { height: 20px; }

/* === Print === */
@media print {
  .site-header, .site-footer, .sticky-cta, .btn { display: none !important; }
  .report-section { break-inside: avoid; box-shadow: none; border: 1px solid var(--line); }
  body { background: #fff; }
  .section { padding: 1rem 0; }
}

/* === Blog === */
.blog-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--line-light); text-decoration: none; color: var(--ink);
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: 0 4px 16px var(--shadow-md); border-color: var(--gold);
  transform: translateY(-2px); color: var(--ink);
}
.blog-card-body { flex: 1; }
.blog-card h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.blog-arrow { font-size: 1.5rem; color: var(--gold); margin-left: 1rem; }
.blog-meta { display: flex; gap: 0.5rem; font-size: 0.8rem; color: var(--ink-light); }
.blog-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-tag {
  font-size: 0.7rem; font-weight: 600; color: var(--gold); background: rgba(184,138,59,0.08);
  padding: 0.2rem 0.6rem; border-radius: var(--radius-pill); letter-spacing: 0.03em;
}
.blog-back { font-size: 0.9rem; color: var(--ink-light); }
.blog-back:hover { color: var(--gold); }
.blog-content { line-height: 1.9; }
.blog-content h2 {
  font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--line-light);
}
.blog-content h3 { font-size: 1.1rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.blog-content p { font-size: 1rem; color: var(--ink); line-height: 1.9; }
.blog-content ul, .blog-content ol {
  margin: 1rem 0 1rem 1.5rem; color: var(--ink);
}
.blog-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.blog-content strong { color: var(--ink); }
.blog-cta {
  margin-top: 3rem; padding: 2.5rem; background: rgba(184,138,59,0.05);
  border-radius: var(--radius); border: 1px solid var(--gold-light); text-align: center;
}
.blog-cta h3 { margin-bottom: 0.75rem; }
.blog-cta p { margin-bottom: 1.5rem; }

