/* Calm & Confident Tax Prep — shared site styles */
:root{
  --pine: #1F3D30;
  --pine-dark: #16291F;
  --gold: #C9982F;
  --gold-light: #E4C077;
  --cream: #FBF6EC;
  --cream-dark: #F3EAD8;
  --ink: #2B2B26;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Lora', serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
}
h1,h2,h3,.brand{
  font-family:'Poppins', sans-serif;
}
a{color:var(--pine);}
.wrap{max-width:760px;margin:0 auto;padding:0 24px;}

/* ---------- Site nav ---------- */
nav.sitenav{
  background:var(--pine-dark);
  padding:14px 0;
}
nav.sitenav .wrap{
  max-width:900px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}
nav.sitenav .logo{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:15px;
  color:var(--cream);
  letter-spacing:0.5px;
  text-decoration:none;
}
nav.sitenav .logo span{color:var(--gold-light);}
nav.sitenav ul{
  list-style:none;
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}
nav.sitenav a{
  color:var(--cream-dark);
  text-decoration:none;
  font-family:'Poppins', sans-serif;
  font-size:14px;
  font-weight:500;
}
nav.sitenav a:hover, nav.sitenav a.active{color:var(--gold-light);}

/* ---------- Hero ---------- */
header.hero{
  background:linear-gradient(180deg, var(--pine) 0%, var(--pine-dark) 100%);
  color:var(--cream);
  padding:56px 0 64px;
  text-align:center;
}
header.hero .eyebrow{
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:18px;
  font-weight:600;
}
header.hero h1{
  font-size:38px;
  line-height:1.25;
  max-width:640px;
  margin:0 auto 18px;
  font-weight:700;
}
header.hero p.sub{
  font-family:'Lora', serif;
  font-style:italic;
  font-size:19px;
  color:var(--cream-dark);
  max-width:560px;
  margin:0 auto;
}
header.hero.small{padding:44px 0 48px;}
header.hero.small h1{font-size:30px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:8px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  text-align:center;
}
.btn-gold{
  background:var(--gold);
  color:#fff;
}
.btn-outline{
  background:transparent;
  color:var(--cream);
  border:1px solid var(--gold-light);
}

/* ---------- Card ---------- */
.card{
  background:#fff;
  border:1px solid var(--cream-dark);
  border-radius:14px;
  padding:40px;
  box-shadow:0 12px 30px rgba(31,61,48,0.10);
}
.card h2{
  color:var(--pine);
  font-size:22px;
  text-align:center;
  margin-bottom:8px;
}
.card p.lead{
  text-align:center;
  color:#555;
  margin-bottom:24px;
  font-size:15px;
}

/* ---------- Body sections ---------- */
section.body{padding:56px 0;}
section.body h2{
  color:var(--pine);
  font-size:26px;
  margin-bottom:18px;
  text-align:center;
}
section.body h3{
  color:var(--pine);
  font-size:22px;
  margin-bottom:14px;
}
section.body p{
  font-size:16px;
  color:#333;
  margin-bottom:18px;
}
section.body.alt{background:var(--cream-dark);}

.pullquote{
  font-family:'Poppins', sans-serif;
  font-size:21px;
  font-weight:600;
  line-height:1.5;
  color:var(--pine);
  border-left:3px solid var(--gold);
  padding:4px 0 4px 22px;
  margin:26px 0;
}

.checklist{list-style:none;margin:24px 0;}
.checklist li{
  padding-left:32px;
  position:relative;
  margin-bottom:14px;
  font-size:16px;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:700;
  font-size:17px;
}

.divider{
  height:1px;
  background:var(--cream-dark);
  margin:8px 0 40px;
}

/* ---------- Grid of link/CTA cards ---------- */
.grid-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin:32px 0;
}
.grid-cards .cardlink{
  background:#fff;
  border:1px solid var(--cream-dark);
  border-radius:14px;
  padding:32px 28px;
  text-align:center;
  box-shadow:0 8px 20px rgba(31,61,48,0.06);
}
.grid-cards .cardlink .tag{
  display:inline-block;
  font-family:'Poppins', sans-serif;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:10px;
}
.grid-cards .cardlink h3{color:var(--pine); margin-bottom:10px;}
.grid-cards .cardlink p{font-size:15px; color:#555; margin-bottom:20px;}

/* ---------- Placeholder / TBD callouts ---------- */
.tbd-note{
  border:2px dashed var(--gold);
  border-radius:10px;
  padding:20px 24px;
  background:var(--cream);
  font-size:14px;
  color:#7a6a3f;
  margin:18px 0;
}
.tbd-note strong{color:var(--pine);}

.ck-placeholder{
  border:2px dashed var(--gold);
  border-radius:10px;
  padding:26px;
  text-align:center;
  background:var(--cream);
}
.ck-placeholder p{font-size:14px;color:#7a6a3f;margin-bottom:14px;}
.fake-form input[type="email"]{
  width:100%;
  padding:14px 16px;
  border:1px solid #d9cfa8;
  border-radius:8px;
  font-family:'Lora', serif;
  font-size:15px;
  margin-bottom:12px;
}
.fake-form button{
  width:100%;
  padding:14px 16px;
  background:var(--gold);
  color:#fff;
  border:none;
  border-radius:8px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:15px;
  cursor:not-allowed;
  opacity:0.85;
}

/* ---------- Signoff ---------- */
.signoff{
  background:var(--cream-dark);
  padding:48px 0;
  text-align:center;
}
.signoff blockquote{
  font-style:italic;
  font-size:19px;
  color:var(--pine);
  max-width:560px;
  margin:0 auto 16px;
}
.signoff .name{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  color:var(--pine-dark);
}
.signoff .cred{
  font-size:13px;
  color:#6a6a63;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* ---------- Site footer ---------- */
footer.sitefooter{
  text-align:center;
  padding:28px 0 40px;
  font-size:13px;
  color:#8a8a80;
}
footer.sitefooter a{color:#8a8a80; text-decoration:underline;}
footer.sitefooter .footlinks{
  margin-bottom:10px;
}
footer.sitefooter .footlinks a{
  margin:0 10px;
  color:var(--pine);
  text-decoration:none;
  font-family:'Poppins', sans-serif;
  font-size:13px;
  font-weight:500;
}

@media (max-width:600px){
  header.hero{padding:40px 0 48px;}
  header.hero h1{font-size:26px; line-height:1.3;}
  header.hero.small h1{font-size:26px;}
  header.hero .eyebrow{font-size:12px; letter-spacing:1.5px;}
  header.hero p.sub{font-size:17px;}
  .card{padding:28px;}
  .grid-cards{grid-template-columns:1fr;}
  nav.sitenav .wrap{flex-direction:column; align-items:center; text-align:center;}
  nav.sitenav ul{justify-content:center; gap:10px 18px;}
  .btn{display:block; width:100%;}
  section.body h2{font-size:22px;}
  .pullquote{font-size:18px; padding-left:16px;}
}

@media (max-width:380px){
  header.hero h1{font-size:22px;}
  header.hero.small h1{font-size:22px;}
}
