@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

:root {
  --navy: #0b1d33;
  --blue: #1f3c66;
  --ivory: #f7f4ed;
  --gold: #765800;
  --ink: #13243a;
  --slate: #526379;
  --white: #ffffff;
  --line: rgba(11, 29, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.7;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--navy);
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.legal-header-inner,
.legal-main,
.legal-footer-inner {
  width: min(100% - 40px, 920px);
  margin-inline: auto;
}

.legal-header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header img {
  width: 240px;
  max-width: 62vw;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.legal-header a:last-child {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-main {
  padding-block: 80px 100px;
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

h2 {
  margin: 58px 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
  margin: 30px 0 10px;
  font-size: 1.45rem;
}

p,
li {
  max-width: 790px;
  color: var(--slate);
  font-size: 0.96rem;
}

.legal-updated {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 650;
}

.legal-callout {
  margin: 38px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.legal-callout p {
  margin: 0;
  color: var(--ink);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 15px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--navy);
  color: var(--white);
}

.legal-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 13px 18px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-footer {
  padding: 30px 0;
  background: var(--navy);
}

.legal-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.legal-footer p,
.legal-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
}

.legal-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 600px) {
  .legal-header-inner {
    min-height: 74px;
  }

  .legal-header img {
    width: 190px;
  }

  .legal-header a:last-child {
    font-size: 0.64rem;
  }

  .legal-main {
    padding-block: 58px 76px;
  }
}

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