:root {
  color-scheme: light;
  --navy: #081a2f;
  --navy-2: #0b2d5c;
  --ink: #111827;
  --muted: #5f6875;
  --line: #dfe4ea;
  --paper: #ffffff;
  --page: #eef1f4;
  --focus: #7bb9ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.site-shell {
  width: min(100%, 1024px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(8, 26, 47, 0.12);
}

.hero-image-wrap {
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  z-index: 20;
  display: block;
  border-radius: 10px;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.hotspot:focus-visible,
.footer-link:focus-visible,
.back-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.contact-hotspot {
  top: 1.2%;
  right: 2.2%;
  width: 16.5%;
  height: 5.3%;
}

.email-hotspot {
  left: 22.5%;
  top: 89.7%;
  width: 31%;
  height: 4.8%;
}

.privacy-hotspot {
  right: 3.5%;
  bottom: 0.2%;
  width: 13.5%;
  height: 3.2%;
}

.legal-link-overlay {
  position: absolute;
  right: 18.2%;
  bottom: 0.95%;
  z-index: 25;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.legal-link-overlay:hover,
.footer-link:hover,
.back-link:hover {
  text-decoration: underline;
}

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

/* Legal pages */
.legal-header {
  padding: 34px 48px;
  background: var(--navy);
  color: #fff;
}

.brand {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.tagline {
  margin: 8px 0 0;
  color: #d5dbe3;
  font-size: 14px;
}

.legal-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 54px 46px 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
}

h2 {
  margin: 34px 0 10px;
  font-size: 20px;
}

p, li {
  font-size: 16px;
  line-height: 1.7;
  color: #303844;
}

.info-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.info-grid dt,
.info-grid dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}

.info-grid dt {
  font-weight: 700;
  color: var(--navy);
}

.info-grid dd {
  color: #303844;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 48px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}

.page-footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link,
.back-link {
  color: #fff;
  text-decoration: none;
}

.back-row {
  margin-top: 42px;
}

.back-link {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--navy);
}

@media (max-width: 600px) {
  .site-shell { box-shadow: none; }

  .contact-hotspot {
    top: 1%;
    right: 1.5%;
    width: 20%;
    height: 5.8%;
  }

  .email-hotspot {
    left: 19%;
    top: 89.1%;
    width: 38%;
    height: 5.5%;
  }

  .privacy-hotspot {
    right: 1%;
    bottom: 0;
    width: 18%;
    height: 3.4%;
  }

  .legal-link-overlay {
    right: 21%;
    bottom: 0.85%;
    font-size: 8px;
  }

  .legal-header,
  .legal-main,
  .page-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .info-grid dd {
    padding-top: 0;
  }

  .page-footer {
    flex-direction: column;
  }
}
