
:root {
  --orange: #F05001;
  --navy: #0E1B2E;
  --off-white: #F5F3F0;
  --stone: #8A8278;
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  color: var(--navy);
  background: var(--off-white);
  padding-top: 72px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--orange);
  color: var(--off-white);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.header-logo:hover { color: var(--off-white); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a:focus { color: var(--orange); outline: none; }
.header-nav a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--orange);
  color: var(--off-white) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-cta:hover,
.nav-cta:focus {
  background: #d94600;
  color: var(--off-white) !important;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--off-white);
  outline-offset: 3px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 4px;
}
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 199;
  flex-direction: column;
  padding: 32px 24px;
  gap: 20px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus { color: var(--orange); }
.mobile-nav .nav-cta {
  margin-top: 12px;
  text-align: center;
}

.policy-hero {
  background: var(--navy);
  padding: 80px 24px;
  text-align: left;
}
.policy-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.policy-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.12;
  color: var(--off-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.policy-hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--stone);
  margin-bottom: 12px;
}
.policy-hero-date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
}

.policy-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.policy-intro {
  margin-bottom: 40px;
}
.policy-intro p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 16px;
}
.policy-intro p:last-child { margin-bottom: 0; }

.policy-section {
  margin-bottom: 40px;
}
.policy-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.policy-section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 24px 0 12px;
  line-height: 1.3;
}
.policy-section p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 16px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
  margin: 0 0 16px 1.25em;
  padding: 0;
}
.policy-section li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 8px;
}
.policy-section strong { font-weight: 600; }
.policy-section a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-section a:hover,
.policy-section a:focus { color: #d94600; }
.policy-section a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.policy-cta {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}
.policy-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}
.policy-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--off-white);
  margin-bottom: 12px;
}
.policy-cta p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--stone);
  margin-bottom: 28px;
}
.policy-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.policy-cta-btn:hover,
.policy-cta-btn:focus {
  background: #d94600;
  color: var(--off-white);
}
.policy-cta-btn:focus-visible {
  outline: 2px solid var(--off-white);
  outline-offset: 3px;
}

.site-footer {
  background: var(--navy);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--off-white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--stone);
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links a:focus { color: var(--orange); }
.footer-links a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.footer-links .current {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--stone);
}
.footer-contact {
  list-style: none;
}
.footer-contact li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 10px;
}
.footer-contact a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover,
.footer-contact a:focus { color: var(--orange); }
.footer-contact a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.footer-strip {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--stone);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .policy-hero { padding: 48px 24px; }
  .policy-hero h1 { font-size: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 375px) {
  body { padding-top: 64px; }
  .site-header { height: 64px; padding: 0 16px; }
  .mobile-nav { top: 64px; }
}


/* Phase 5 accessibility: visible focus */
:focus-visible {
  outline: 3px solid var(--orange, #F05001);
  outline-offset: 3px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.pl-review-problems-heading,
.pl-review-form-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy, #0E1B2E);
  margin: 32px 0 16px;
}


/* ============================================================
   NAV FIT  - six nav items plus the CTA need more room than five did.
   Keep each label on one line so items wrap whole instead of breaking
   mid-word, and tighten spacing just above the mobile-menu breakpoint.
============================================================ */
.nav-links { flex-wrap: wrap; }
.header-nav a {
  letter-spacing: 0.04em;
  font-family: var(--font-body); white-space: nowrap; }
/* Never let the nav crowd the logo - the CTA drops to its own row instead. */
.header-nav { max-width: calc(100% - 160px); }
@media (min-width: 1025px) and (max-width: 1200px) {
  .site-header { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .header-nav { gap: 14px 24px; }
  .header-nav a { font-size: 12px; letter-spacing: 0.03em; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
}
