:root {
  --col-navy: #1a2a3a;
  --col-mustard: #ffc107;
  --col-orange: #ff5722;
  --col-bg: #fdfbf7;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  background-color: var(--col-bg);
  color: var(--col-navy);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-weight: 800;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--col-navy);
  color: var(--col-bg);
  padding: 1rem 0;
  border-bottom: 2px solid var(--col-navy);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--col-mustard);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
}

.brand svg {
  height: 40px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--col-bg);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--col-orange);
}

/* Pill Buttons & Hard Shadow */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 2px solid var(--col-navy);
  background-color: var(--col-mustard);
  color: var(--col-navy);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 4px 4px 0px var(--col-navy);
  transition: transform 0.1s, box-shadow 0.1s, background-color 0.2s;
}

.btn:hover {
  background-color: var(--col-orange);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--col-navy);
}

/* Mobile Menu Overlay */
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--col-mustard);
  cursor: pointer;
  padding: 0;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--col-navy);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.is-open {
  display: flex;
}

.close-menu {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--col-mustard);
  cursor: pointer;
  padding: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-nav-list a {
  color: var(--col-bg);
  font-size: 2rem;
  text-decoration: none;
  font-weight: 800;
}

/* Footer Styles */
.site-footer {
  background-color: var(--col-bg);
  color: var(--col-navy);
  padding: 4rem 2rem;
  border-top: 4px solid var(--col-navy);
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--col-navy);
  display: block;
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--col-orange);
  font-weight: 800;
  margin: 0;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
}

.footer-contact a, .footer-legal a {
  color: var(--col-navy);
  text-decoration: none;
  font-weight: 700;
}

.footer-contact a:hover, .footer-legal a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: var(--col-orange);
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-inline {
  flex-shrink: 0;
  color: var(--col-mustard);
}

/* Dynamic Utilities (Cards / FAQ) */
.card {
  background-color: #fff;
  border: 2px solid var(--col-navy);
  border-radius: 40px;
  padding: 2.5rem;
  box-shadow: 6px 6px 0px var(--col-navy);
}

.faq-item {
  border: 2px solid var(--col-navy);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 4px 4px 0px var(--col-navy);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--col-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
}

.faq-item.is-active {
  border-radius: 40px;
}

.faq-item.is-active .faq-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
}

/* Responsive Grid Gap */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .header-container {
    padding: 0 1rem;
  }
  .footer-container {
    gap: 2rem;
  }
}
/* footer extras */
.footer__extras{margin-top:16px;}
.footer__extrasInner{display:flex;flex-wrap:wrap;gap:12px;align-items:flex-start;justify-content:space-between;}
.footer__social{display:flex;gap:10px;align-items:center;}
.footer-social{display:inline-flex;gap:8px;align-items:center;text-decoration:none;}
.footer-social__icon{display:block;}
.footer__poemWrap{max-width:520px;}
.footer-poem{opacity:0.9;font-size:0.95em;line-height:1.35;}
/* --- injected by logo step --- */
.brand{display:inline-flex;align-items:center;gap:10px}
.brand-logo{width:28px;height:28px;display:inline-block;flex:0 0 auto}
.brand-logo *{vector-effect:non-scaling-stroke}
/* --- /injected by logo step --- */


body.menu-open{overflow:hidden}.nav-list a.is-active,.mobile-nav-list a.is-active{color:var(--col-mustard)}.mobile-menu{padding:2rem 1.25rem;overflow-y:auto}.form-privacy{margin-top:.5rem}.privacy-label{display:flex;align-items:flex-start;gap:.75rem;font-weight:700;line-height:1.5}.privacy-label input{margin-top:.2rem;accent-color:var(--col-orange)}.privacy-label a{color:inherit;text-decoration:underline;text-decoration-thickness:2px}.padding-section{width:100%;padding:56px 20px}.max-w-content{max-width:900px}.padding-inner{padding:36px}.card-wrapper{background:#fff;border:2px solid var(--col-navy);border-radius:32px;box-shadow:6px 6px 0 var(--col-navy)}.card-wrapper section+section{margin-top:28px;padding-top:28px;border-top:1px solid rgba(26,42,58,.16)}.card-wrapper h1,.card-wrapper h2{margin-top:0}.card-wrapper h2{font-size:1.5rem;line-height:1.2;margin-bottom:.75rem}.card-wrapper p,.card-wrapper li{font-weight:700;line-height:1.7}.card-wrapper ul{margin:.75rem 0 0;padding-left:1.25rem}.text-hero{font-size:clamp(2rem,5vw,3rem);line-height:1.05;margin-bottom:.75rem}.text-meta{display:inline-block;margin-bottom:1rem;color:#5b6978;font-weight:800}@media (max-width:768px){.padding-section{padding:40px 16px}.padding-inner{padding:24px 18px}}
