:root{
  --blue:#24556f;
  --blue-dark:#17394b;
  --gold:#e7c66f;
  --gold-soft:#efdda5;
  --cream:#f5f4ef;
  --white:#ffffff;
  --text:#334155;
  --muted:#64748b;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:var(--blue)}
.wrap{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--white);
  border-bottom:1px solid #e7e5e4;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo{
  width:96px;
  border-radius:8px;
}
.brand-title{
  font-size:1.2rem;
  font-weight:800;
  color:var(--blue);
}
.brand-subtitle{
  font-weight:700;
}
.main-nav{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.main-nav a{
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}

.hero{
  background:linear-gradient(180deg, #ffffff 0%, #f7f5ee 100%);
  padding:56px 0 48px;
}
.hero-pill{
  display:inline-block;
  padding:10px 14px;
  border:2px solid var(--gold-soft);
  border-radius:999px;
  background:#fffdf7;
  color:var(--blue);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.hero h1{
  margin:18px 0 0;
  font-size:4.2rem;
  line-height:.95;
  color:#111827;
}
.hero h1 span{color:var(--blue)}
.hero-lead{
  font-size:1.18rem;
  margin-top:20px;
}
.hero-tagline{
  margin-top:18px;
  font-size:1.45rem;
  font-weight:900;
  color:var(--blue);
}
.hero-mini-note{
  margin-top:10px;
  font-size:.96rem;
  color:var(--muted);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  border:none;
  cursor:pointer;
  background:var(--blue);
  color:var(--white);
}
.btn:hover{opacity:.94}
.btn-secondary{
  background:var(--white);
  color:var(--blue);
  border:2px solid var(--gold-soft);
}

.section{
  padding:72px 0;
}
.section-alt{
  background:var(--white);
  border-top:1px solid #e7e5e4;
  border-bottom:1px solid #e7e5e4;
}
.eyebrow{
  font-size:.85rem;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--blue);
}
.section h2{
  margin:10px 0 16px;
  color:var(--blue);
  font-size:2.4rem;
  line-height:1.1;
}

.tool-card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:22px;
}
.tool-card,
.card,
.callout,
.search-box,
.download-panel,
.result{
  background:var(--white);
  border:2px solid var(--gold-soft);
  border-radius:24px;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.tool-card{
  padding:18px;
}
.tool-card h3{
  margin:0 0 8px;
  color:var(--blue);
  font-size:1.2rem;
}
.tool-card p{
  margin:0 0 16px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}
.card{padding:22px}
.card h3{
  margin:0 0 8px;
  color:var(--blue);
}
.callout{
  margin-top:24px;
  padding:22px;
}

.archive-intro{
  margin-bottom:20px;
}
.search-box{
  padding:22px;
}
.search-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:14px;
}
label{
  display:block;
  margin-bottom:6px;
  font-weight:800;
  color:var(--blue);
}
input, select{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #cbd5e1;
  font-size:1rem;
}
.search-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:16px;
}
.result-count{
  font-weight:800;
  color:var(--blue);
}
.results{
  display:grid;
  gap:16px;
  margin-top:22px;
}
.result{
  padding:18px;
}
.result-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.result h3{
  margin:0;
  color:var(--blue);
  font-size:1.1rem;
}
.meta{
  color:var(--muted);
  font-size:.92rem;
}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 8px;
}
.tag{
  background:#fff8e8;
  border:1px solid var(--gold-soft);
  color:var(--blue);
  padding:4px 10px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
}
.snippet{
  margin:8px 0 0;
}
.result-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.result-actions a,
.downloads a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  color:var(--blue);
  background:var(--white);
  border:1px solid #dbe4ea;
}
.download-panel{
  margin-top:28px;
  padding:22px;
}
.downloads{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:14px;
}
.email-link{
  font-size:1.2rem;
  font-weight:900;
  color:var(--blue);
}

.calendar-frame-wrap{
  margin-top:22px;
  background:var(--white);
  border:2px solid var(--gold-soft);
  border-radius:24px;
  padding:14px;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.calendar-frame{
  width:100%;
  min-height:700px;
  border-radius:16px;
  background:#fff;
}

.site-footer{
  background:var(--white);
  border-top:1px solid #e7e5e4;
  padding:24px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-logo{
  width:120px;
  border-radius:8px;
}
.footer-title{
  font-weight:900;
  color:var(--blue);
}
.footer-subtitle{
  color:var(--text);
}
mark{
  background:#fde68a;
  padding:0 2px;
}

@media (max-width: 1100px){
  .tool-card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 980px){
  .header-inner,
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .main-nav{gap:12px}
  .hero h1{font-size:3.2rem}
  .card-grid,
  .search-grid,
  .downloads{
    grid-template-columns:1fr;
  }
}
@media (max-width: 700px){
  .tool-card-grid{
    grid-template-columns:1fr;
  }
  .calendar-frame{
    min-height:600px;
  }
}
