:root {
  --navy: #004250;
  --navy-deep: #071416;
  --gold: #f9c54b;
  --paper: #ffffff;
  --mist: #f4f5f2;
  --ink: #17353d;
  --muted: #4c5d62;
  --line: #d7dcda;
  --headline: "Anton", "Arial Narrow", sans-serif;
  --body: "Archivo", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: #00717d; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .7rem 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.wrap { width: min(1210px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: relative; z-index: 5; background: var(--navy-deep); border-bottom: 1px solid rgba(255,255,255,.1); }
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; width: 140px; flex: 0 0 auto; }
.brand img { display: block; width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 1.35rem; margin-left: auto; }
.site-nav a { color: #fff; font-size: .88rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta { padding: .72rem 1rem; border-radius: 3px; background: var(--gold); color: var(--navy-deep); }
.mobile-login, .mobile-menu { display: none; }
.hero {
  padding: clamp(4.8rem, 9vw, 8.5rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 11px),
    radial-gradient(circle at 78% 18%, rgba(0,96,108,.28), transparent 34rem),
    var(--navy-deep);
  color: #fff;
}
.eyebrow { margin: 0 0 1rem; color: var(--gold); font-size: .9rem; font-weight: 800; }
h1, h2 { font-family: var(--headline); font-weight: 400; line-height: 1; text-transform: uppercase; }
h1 { max-width: 16ch; margin: 0; font-size: clamp(4rem, 8vw, 7.1rem); letter-spacing: .005em; }
.lead { max-width: 62ch; margin: 1.6rem 0 0; color: rgba(255,255,255,.7); font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.65; }
.policy { padding: clamp(5.5rem, 10vw, 9rem) 0; }
.policy-grid { width: min(880px, 100%); margin-inline: auto; }
.policy-aside { display: none; }
.policy-section {
  padding: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.policy-section:last-child { margin-bottom: 0; }
.policy-section h2 { margin: 0 0 .45rem; color: #005366; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: .01em; }
.policy-section p, .policy-section ul { margin: 0; color: #3f5055; }
.policy-section li + li { margin-top: .55rem; }
.site-footer { padding: 2.25rem 0; background: var(--navy-deep); color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; }
.footer-inner p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem 1rem; }
.footer-links a { color: #fff; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 760px) {
  body { font-size: 17px; line-height: 1.62; }
  .wrap { width: min(100% - 40px, 1210px); }
  .header-inner { min-height: 72px; gap: 1rem; }
  .brand { width: min(174px, 47vw); }
  .site-nav { display: none; }
  .mobile-login { display: inline-flex; margin-left: auto; color: #fff; font-weight: 800; text-decoration: none; white-space: nowrap; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 7px;
    color: transparent;
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary::before { content: "☰"; color: #fff; font-family: Arial, sans-serif; font-size: 1.8rem; line-height: 1; }
  .mobile-menu[open] summary::before { content: "×"; }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + .65rem);
    width: 210px;
    padding: .9rem;
    display: grid;
    gap: .65rem;
    border: 1px solid rgba(255,255,255,.15);
    background: var(--navy-deep);
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
  }
  .mobile-menu nav a { color: #fff; font-weight: 700; text-decoration: none; }
  .hero { padding: 4.7rem 0 5rem; }
  .eyebrow { font-size: .92rem; }
  h1 { font-size: clamp(3.45rem, 17vw, 5rem); }
  .lead { margin-top: 1.5rem; font-size: 1.15rem; line-height: 1.7; }
  .policy { padding: 4rem 0; }
  .policy-section { padding: 1.5rem; margin-bottom: 1.5rem; border-radius: 8px; }
  .policy-section h2 { font-size: clamp(2rem, 10vw, 2.65rem); line-height: 1.08; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .wrap { width: min(100% - 28px, 1210px); }
  .brand { width: 154px; }
  .mobile-login { font-size: .88rem; }
  .mobile-menu summary { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
