
/* Shared minimal styles */
*,*::before,*::after{box-sizing:border-box}
body{margin:0;background:#fffefb;color:#111827;font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial,sans-serif}
.container{max-width:960px;margin:0 auto;padding:1.25rem}
.header{position:sticky;top:0;background:#ffffffcc;backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid #eee;z-index:50}
.nav{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.7rem 0}
.brand{font-weight:900;letter-spacing:.2px;color:#111827;text-decoration:none}
.nav-links{display:flex;gap:.5rem;flex-wrap:wrap;align-items:center}
.nav-links a{display:inline-block;padding:.45rem .7rem;border-radius:10px;color:#111827;text-decoration:none;font-weight:600}
.nav-links a:hover,.nav-links a.active{background:#fff7ed}
.cta{background:#f59e0b;color:#fff !important;border-radius:12px;font-weight:800}
/* More dropdown */
.more{position:relative}
.more-btn{background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:.45rem .6rem;cursor:pointer}
.more-menu{display:none;position:absolute;right:0;top:115%;background:#fff;border:1px solid #eee;border-radius:12px;min-width:220px;box-shadow:0 10px 24px rgba(0,0,0,.08);padding:.35rem}
.more-menu a{display:block;padding:.5rem .6rem;border-radius:10px;color:#111827;text-decoration:none}
.more-menu a:hover{background:#fff7ed}
.more.open .more-menu{display:block}
@media (max-width:760px){.more-menu{position:static;box-shadow:none;width:100%}}
/* Cards & basics */
h1{margin:.3rem 0 0;font-size:clamp(1.6rem,2.2vw + 1rem,2.2rem)}
.sub{color:#374151;margin:.4rem 0 1rem}
.grid{display:grid;gap:1rem}
.card{background:#fff;border:1px solid #eee;border-radius:14px;padding:1rem;box-shadow:0 6px 18px rgba(0,0,0,.05)}
footer{border-top:1px solid #eee;color:#6b7280;margin-top:2rem;padding:1rem 0}
@media(min-width:760px){.grid.cols-3{grid-template-columns:repeat(3,1fr)}}
/* Request form helpers (kept minimal; your page retains its own styles if needed) */
label{display:block;font-weight:700;margin:.5rem 0 .3rem}
/* Form controls (but NOT checkboxes/radios) */
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea{
  width:100%;
  padding:.6rem .7rem;
  border:1px solid #d1d5db;
  border-radius:10px;
  background:#fff;
}

/* Nice focus + textarea sizing (optional but recommended) */
input:focus, select:focus, textarea:focus{
  outline:3px solid #fde68a;
  border-color:#f59e0b;
}
textarea{ min-height:120px; resize:vertical; }
input:focus,select:focus,textarea:focus{outline:3px solid #fde68a;border-color:#f59e0b}
textarea{min-height:110px;resize:vertical}
.btn{display:inline-block;padding:.7rem 1rem;border-radius:12px;border:0;background:#f59e0b;color:#fff;font-weight:800;text-decoration:none;cursor:pointer}
.alert{padding:.8rem 1rem;border-radius:10px;margin:.5rem 0}
.alert.ok{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46}
.alert.err{background:#fef2f2;border:1px solid #fecaca;color:#7f1d1d;white-space:pre-wrap}
.small{color:#6b7280;font-size:.9rem}
/* ----- CTA button in nav: readable on hover/focus ----- */
.nav-links a.cta{
  background:#f59e0b;      /* base amber */
  color:#fff !important;
  border-radius:12px;
  font-weight:800;
}

.nav-links a.cta:hover,
.nav-links a.cta:focus{
  background:#d97706;      /* darker amber for contrast */
  color:#fff !important;
  text-decoration:none;
  outline:2px solid #fde68a;   /* subtle focus ring */
  outline-offset:2px;
}

/* Ensure generic nav hover doesn’t affect CTA */
.nav-links a:not(.cta):hover{ background:#fff7ed; }

