.site-srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  background-color: #f5efe5;
  color: #0f172a;
  border-bottom: 2px solid #0f172a;
  font-family: system-ui, -apple-system, sans-serif;
}

.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.25rem;
}

.site-brand svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: #ea580c;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.site-nav__link {
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.site-nav__link:hover {
  color: #ea580c;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 2px solid #0f172a;
  background-color: #ea580c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease;
  box-shadow: 4px 4px 0px #0f172a;
}

.site-header__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #0f172a;
}

.site-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 2px solid #0f172a;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 3px 3px 0px #0f172a;
}

.site-burger__line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
}

.site-mobileNav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  font-family: system-ui, -apple-system, sans-serif;
}

.site-mobileNav[hidden], .site-mobileNav.hidden {
  display: none;
}

.site-mobileNav[data-mobile-open="1"] {
  display: block;
}

.site-mobileNav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 85vw);
  background-color: #f5efe5;
  color: #0f172a;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-left: 2px solid #0f172a;
  box-shadow: -8px 0 0px rgba(15, 23, 42, 0.1);
  overflow-y: auto;
}

.site-mobileNav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 2px solid #0f172a;
}

.site-mobileNav__brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: #0f172a;
}

.site-mobileNav__close {
  width: 40px;
  height: 40px;
  border: 2px solid #0f172a;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0px #0f172a;
}

.site-mobileNav__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-mobileNav__link {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
}

.site-mobileNav__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid #0f172a;
  background-color: #ea580c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 4px 4px 0px #0f172a;
}

.site-footer {
  margin-top: 80px;
  background-color: #e0f2fe;
  color: #0f172a;
  padding: 80px 0 32px;
  font-family: system-ui, -apple-system, sans-serif;
  border-top: 2px solid #0f172a;
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.site-footer__brandCol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__brand {
  font-size: 1.5rem;
  font-weight: 800;
}

.site-footer__summary {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 320px;
}

.site-footer__contact {
  margin-top: 16px;
}

.site-footer__contactLink {
  display: inline-block;
  color: #0f172a;
  background-color: #ffffff;
  padding: 8px 16px;
  border: 2px solid #0f172a;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 3px 3px 0px #0f172a;
  transition: transform 0.2s ease;
}

.site-footer__contactLink:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #0f172a;
}

.site-footer__linksTitle {
  display: block;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #0f172a;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__link {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #ea580c;
  text-decoration: underline;
}

.site-footer__bottom {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 32px 24px 0;
  border-top: 2px solid #0f172a;
}

.site-footer__bottomInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .site-nav--desktop { display: none; }
  .site-header__cta { display: none; }
  .site-burger { display: flex; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 48px; }
}
[data-mobile-nav][hidden],[data-mobile-nav].hidden{display:none}
[data-mobile-nav][data-mobile-open="1"]{display:block}
