/* SeniorAssist Desk — design tokens
   Navy #16324F (primary), Gold #B8893B (accent/CTA), Sage #7C9885 (secondary/trust),
   Cream #F7F4EE (background), Charcoal #2A2A26 (text)
   Display: Georgia (serif, authoritative) / Body: system sans (readable, accessible)
   Signature element: the "compass" mark — guidance through plan choices
*/

:root{
  --navy:#16324F;
  --navy-deep:#0E2238;
  --gold:#B8893B;
  --gold-light:#D9B777;
  --sage:#7C9885;
  --cream:#F7F4EE;
  --white:#FFFFFF;
  --charcoal:#2A2A26;
  --rule:#DCD5C6;
  --max:1080px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--charcoal);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:18px;
  line-height:1.6;
}
h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy-deep);
  line-height:1.15;
  margin:0 0 .5em;
}
h1{font-size:clamp(2rem,5vw,3.1rem);}
h2{font-size:clamp(1.5rem,3vw,2.1rem);}
h3{font-size:1.3rem;}
p{margin:0 0 1.1em;}
a{color:var(--navy);}
.wrap{max-width:var(--max);margin:0 auto;padding:0 24px;}

/* Header */
header.site{
  background:var(--white);
  border-bottom:1px solid var(--rule);
  position:sticky;top:0;z-index:50;
}
.header-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;max-width:var(--max);margin:0 auto;gap:16px;
}
.logo{
  display:flex;align-items:center;gap:10px;
  font-family:Georgia,serif;font-weight:700;font-size:1.3rem;color:var(--navy-deep);
  text-decoration:none;
}
.logo svg{width:34px;height:34px;flex-shrink:0;}
.call-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--gold);color:var(--navy-deep);
  font-weight:700;font-size:1.05rem;
  padding:12px 22px;border-radius:999px;
  text-decoration:none;white-space:nowrap;
  box-shadow:0 2px 0 rgba(0,0,0,0.08);
}
.call-btn:hover{background:var(--gold-light);}
.call-btn svg{width:20px;height:20px;}

/* Hero */
.hero{
  background:linear-gradient(180deg,var(--navy) 0%,var(--navy-deep) 100%);
  color:var(--white);
  padding:64px 0 56px;
  position:relative;
  overflow:hidden;
}
.hero .wrap{position:relative;z-index:2;}
.hero h1{color:var(--white);max-width:780px;}
.hero p.lead{color:#E4E9ED;font-size:1.2rem;max-width:620px;}
.hero-compass{
  position:absolute;right:-60px;top:-60px;
  width:420px;height:420px;opacity:.14;
}
.eyebrow{
  display:inline-block;text-transform:uppercase;letter-spacing:.12em;
  font-size:.78rem;font-weight:700;color:var(--gold-light);
  margin-bottom:14px;
}
.cta-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:24px;}
.cta-primary{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--gold);color:var(--navy-deep);
  font-weight:700;font-size:1.15rem;padding:16px 30px;border-radius:999px;
  text-decoration:none;
}
.cta-primary svg{width:22px;height:22px;}
.cta-note{align-self:center;color:#C7D0D8;font-size:.95rem;}

/* Sections */
main{padding:48px 0 8px;}
section.block{padding:40px 0;border-top:1px solid var(--rule);}
section.block:first-child{border-top:none;}
.compass-list{list-style:none;margin:0;padding:0;}
.compass-list li{
  display:flex;gap:14px;align-items:flex-start;margin-bottom:18px;
}
.compass-list .mark{
  flex-shrink:0;width:26px;height:26px;margin-top:3px;color:var(--sage);
}
.callout{
  background:var(--white);border:1px solid var(--rule);border-left:5px solid var(--sage);
  border-radius:10px;padding:22px 26px;margin:28px 0;
}
.callout h3{margin-top:0;color:var(--navy-deep);}
.city-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:14px;margin-top:18px;
}
.city-card{
  background:var(--white);border:1px solid var(--rule);border-radius:10px;
  padding:18px 20px;text-decoration:none;color:var(--charcoal);
  transition:border-color .15s;
}
.city-card:hover{border-color:var(--sage);}
.city-card strong{display:block;color:var(--navy-deep);font-family:Georgia,serif;font-size:1.05rem;margin-bottom:4px;}
.faq-grid{display:grid;gap:12px;margin-top:18px;}
.faq-card{
  background:var(--white);border:1px solid var(--rule);border-radius:10px;
  padding:16px 20px;text-decoration:none;color:var(--charcoal);
}
.faq-card strong{color:var(--navy-deep);font-family:Georgia,serif;}

/* Bottom CTA band */
.cta-band{
  background:var(--sage);color:var(--white);padding:40px 0;text-align:center;
}
.cta-band h2{color:var(--white);}
.cta-band .call-btn{background:var(--gold);color:var(--navy-deep);font-size:1.2rem;padding:16px 30px;}

/* Footer */
footer.site{background:var(--navy-deep);color:#B9C3CC;padding:34px 0 28px;font-size:.92rem;}
footer.site a{color:#D9E0E5;}
.disclosure{
  border-top:1px solid rgba(255,255,255,.15);margin-top:22px;padding-top:18px;
  font-size:.84rem;color:#94A2AC;line-height:1.6;
}
.foot-links{display:flex;gap:18px;flex-wrap:wrap;margin-bottom:10px;}

@media (max-width:640px){
  body{font-size:17px;}
  .header-row{padding:12px 16px;}
  .call-btn{padding:10px 16px;font-size:.95rem;}
  .hero{padding:44px 0 36px;}
  .hero-compass{display:none;}
  .cta-row{flex-direction:column;align-items:flex-start;}
}

:focus-visible{outline:3px solid var(--gold);outline-offset:2px;}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto;}}
