@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap");

.public-header, .public-footer {
  line-height: 1.5;
  color-scheme: light;
}
.public-header *, .public-footer * {
  box-sizing: border-box;
}

.public-skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1001;
  transform: translateY(-200%);
  border-radius: 0.5rem;
  background: #001a3d;
  color: #fff;
  font: 700 0.95rem/1.2 "Outfit", sans-serif;
  padding: 0.75rem 1rem;
}

.public-skip-link:focus {
  transform: translateY(0);
}

.public-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 80px;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(248, 250, 252, 0.97);
  box-shadow: 0 4px 18px rgba(0, 26, 61, 0.06);
  color: #001a3d;
  font-family: "Outfit", sans-serif;
  backdrop-filter: blur(12px);
}

.public-header__inner {
  display: flex;
  width: min(100% - 2rem, 80rem);
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.public-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.public-footer__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #f8fafc;
  box-shadow: 0 1px 3px rgba(0, 26, 61, 0.08);
  padding: 0.4rem;
}

.public-header__logo,
.public-footer__logo {
  display: block;
  width: auto;
  height: 24px;
}

.public-header__desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 1.5vw, 1.75rem);
}

.public-header__link,
.public-header__cta,
.public-footer__link {
  border-radius: 0.25rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.public-header__link:hover,
.public-footer__link:hover {
  color: #001a3d;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.public-header__cta {
  border-radius: 999px;
  background: #fd6b01;
  box-shadow: 0 5px 14px rgba(253, 107, 1, 0.2);
  color: #001a3d;
  font-weight: 800;
  padding: 0.75rem 1.35rem;
}

.public-header__cta:hover {
  background: #fd5200;
  color: #001a3d;
}

.public-header__brand:focus-visible,
.public-header__link:focus-visible,
.public-header__cta:focus-visible,
.public-header__menu-toggle:focus-visible,
.public-footer__brand:focus-visible,
.public-footer__link:focus-visible {
  outline: 3px solid #fd6b01;
  outline-offset: 3px;
}

.public-header__mobile {
  display: none;
}

.public-footer {
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #475569;
  font-family: "Outfit", sans-serif;
  padding: 3rem 0;
}

.public-footer__inner {
  display: flex;
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.public-footer__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.public-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .public-header__desktop-nav {
    display: none;
  }

  .public-header__mobile {
    display: block;
  }

  .public-header__menu-toggle {
    display: flex;
    cursor: pointer;
    list-style: none;
    align-items: center;
    gap: 0.65rem;
    border-radius: 0.5rem;
    color: #001a3d;
    font-weight: 700;
    padding: 0.65rem;
  }

  .public-header__menu-toggle::-webkit-details-marker {
    display: none;
  }

  .public-header__menu-icon {
    display: grid;
    width: 24px;
    gap: 4px;
  }

  .public-header__menu-icon span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .public-header__mobile[open] .public-header__menu-icon span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .public-header__mobile[open] .public-header__menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .public-header__mobile[open] .public-header__menu-icon span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .public-header__mobile-nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
    box-shadow: 0 16px 24px rgba(0, 26, 61, 0.12);
    padding: 1rem max(1rem, calc((100vw - 80rem) / 2 + 1rem)) 1.5rem;
  }

  .public-header__mobile-nav .public-header__link {
    border-bottom: 1px solid #e5e7eb;
    color: #001a3d;
    font-size: 1.05rem;
    padding: 1rem 0;
  }

  .public-header__mobile-cta {
    margin-top: 1rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .public-header__menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .public-footer__inner,
  .public-footer__meta {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-header__menu-icon span {
    transition: none;
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: #001a3d; font-family: "Outfit", sans-serif; }
.public-page { min-height: calc(100vh - 200px); padding: 8.5rem 1rem 5rem; }
.public-page article { width: min(100%, 48rem); margin: 0 auto; }
.public-page__eyebrow { color: #b44900; font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.public-page h1 { margin: .4rem 0 1.5rem; font-size: clamp(2.25rem, 7vw, 4rem); line-height: 1.05; letter-spacing: -.04em; }
.public-page h2 { margin: 2.5rem 0 .75rem; font-size: 1.65rem; line-height: 1.2; }
.public-page h3 { margin: 1.5rem 0 .35rem; font-size: 1.15rem; }
.public-page p, .public-page li { color: #475569; font-size: 1.05rem; line-height: 1.75; }
.public-page li + li { margin-top: .4rem; }
.public-page a { color: #9a3e00; font-weight: 700; text-underline-offset: .2em; }
.public-page__updated { font-weight: 700; }
.public-contact { position: relative; margin-top: 2rem; display: grid; gap: 1.25rem; border: 1px solid #dbe2ea; border-radius: 1rem; background: #f8fafc; padding: clamp(1.25rem, 4vw, 2rem); box-shadow: 0 8px 30px rgba(0,26,61,.08); }
.public-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.public-contact label { display: grid; gap: .45rem; color: #001a3d; font-weight: 700; }
.public-contact input, .public-contact textarea { width: 100%; border: 2px solid #94a3b8; border-radius: .55rem; background: #fff; color: #001a3d; font: inherit; padding: .75rem; }
.public-contact textarea { resize: vertical; }
.public-contact input:focus, .public-contact textarea:focus { border-color: #fd6b01; outline: 3px solid rgba(253,107,1,.22); }
.public-contact button { justify-self: start; border: 0; border-radius: 999px; background: #fd6b01; color: #001a3d; cursor: pointer; font: 800 1rem "Outfit", sans-serif; padding: .8rem 1.4rem; }
.public-contact button:disabled { cursor: wait; opacity: .65; }
.public-contact__note, .public-contact__status { margin: 0; font-size: .95rem !important; }
.public-contact__status[data-kind="error"] { color: #b42318; font-weight: 700; }
.public-contact__status[data-kind="success"] { color: #18733d; font-weight: 700; }
.public-contact__trap { position: absolute; width: 1px; height: 1px; overflow: hidden; left: -10000px; }
@media (max-width: 600px) { .public-contact__grid { grid-template-columns: 1fr; } .public-contact button { width: 100%; } }