/* RetireeAdvisorMatch — warm amber + deep blue, stable/retirement feel. */
:root { --primary: #8a4a2a; --primary-deep: #5a2f1b; --primary-light: #a56544; --accent: #4a7c59; --accent-deep: #2f5a3d; --bg: #faf6ef; --bg-2: #ece1ce; --surface: #fff; --ink: #1a2430; --ink-soft: #3d4a5a; --muted: #6b7785; --border: #dcc9ab; --max-w: 780px; }
* { box-sizing: border-box; } html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Inter", system-ui, -apple-system, sans-serif; font-size: 16.5px; line-height: 1.7; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: "Inter", sans-serif; color: var(--primary); line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: 2.5rem; margin: 0 0 1rem; } h2 { font-size: 1.6rem; margin: 2.5rem 0 0.75rem; } h3 { font-size: 1.2rem; margin: 1.75rem 0 0.5rem; color: var(--primary-light); }
a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; } a:hover { color: var(--accent-deep); }
p { margin: 0 0 1rem; } strong { color: var(--ink); } ul,ol { padding-left: 1.25rem; } li { margin: 0.4rem 0; }
code { background: var(--bg-2); color: var(--primary); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.re-container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; } .re-wide { max-width: 1000px; }
header.re-site { background: var(--primary-deep); color: var(--bg); padding: 1rem 0; border-bottom: 3px solid var(--accent); } header.re-site .re-container { display: flex; justify-content: space-between; align-items: baseline; }
.re-brand { font-family: "Inter", sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--bg); text-decoration: none; } .re-brand::before { content: "◉ "; color: var(--accent); }
nav.re-nav a { margin-left: 1.25rem; font-size: 0.92rem; color: var(--bg-2); text-decoration: none; font-weight: 500; } nav.re-nav a:hover { color: var(--accent); }
main.re-main { padding: 2rem 0 4rem; } .re-hero { padding: 3rem 0 1.5rem; } .re-hero h1 { font-size: 2.75rem; } .re-hero .re-tag { font-size: 1.2rem; color: var(--muted); margin-top: 0.5rem; max-width: 620px; }
.re-cta-button, .re-submit { display: inline-block; background: var(--accent); color: var(--primary-deep); padding: 0.85rem 1.75rem; border: none; border-radius: 6px; font-weight: 700; font-size: 1rem; font-family: inherit; text-decoration: none; cursor: pointer; transition: all 0.15s; }
.re-cta-button:hover, .re-submit:hover { background: var(--accent-deep); color: white; }
.re-card, .re-calc { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; margin: 1.25rem 0; box-shadow: 0 1px 3px rgba(30,58,95,0.06); }
.re-callout { background: var(--bg-2); border-left: 4px solid var(--accent); padding: 1rem 1.25rem; margin: 1.5rem 0; border-radius: 0 4px 4px 0; }
.re-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; } .re-pros-cons > div { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1rem 1.25rem; } .re-pros-cons h3 { margin-top: 0; } .re-pros-cons .re-pros h3 { color: var(--primary); } .re-pros-cons .re-cons h3 { color: var(--accent-deep); }
@media (max-width: 600px) { .re-pros-cons { grid-template-columns: 1fr; } }
table.re-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.94rem; } table.re-table th, table.re-table td { border: 1px solid var(--border); padding: 0.65rem 0.85rem; text-align: left; } table.re-table th { background: var(--primary); color: var(--bg); font-weight: 600; } table.re-table tr:nth-child(even) td { background: var(--bg); } table.re-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
#lead-form { margin-top: 2.5rem; } .re-lead-form { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; } .re-field { display: flex; flex-direction: column; margin-bottom: 1rem; } .re-field label { font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; font-size: 0.94rem; } .re-field input, .re-field textarea, .re-field select { padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink); } .re-field input:focus, .re-field textarea:focus, .re-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,95,0.15); }
.re-required { color: var(--accent-deep); } .re-status { margin-top: 1rem; min-height: 1.5rem; } .re-status-ok { color: var(--primary); background: var(--bg-2); padding: 0.85rem 1.1rem; border-radius: 4px; }
.re-calc .re-calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } @media (max-width: 600px) { .re-calc .re-calc-inputs { grid-template-columns: 1fr; } }
.re-calc-result { margin-top: 1.5rem; padding: 1.5rem; background: var(--primary); color: var(--bg); border-radius: 6px; } .re-calc-result h3 { color: var(--accent); margin-top: 0; } .re-calc-result a { color: var(--accent); } .re-calc-big { font-size: 2.25rem; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
footer.re-footer { background: var(--primary-deep); color: var(--bg-2); padding: 2rem 0; margin-top: 4rem; font-size: 0.85rem; } footer.re-footer a { color: var(--accent); } #disclaimers p { margin: 0 0 0.5rem; font-size: 0.83rem; color: var(--bg-2); }
.re-internal-links { margin: 2rem 0; padding: 1.25rem; background: var(--bg-2); border-radius: 6px; border-left: 4px solid var(--primary); } .re-internal-links h3 { margin-top: 0; color: var(--primary); } .re-internal-links ul { margin-bottom: 0; padding-left: 1.2rem; }
