
* { box-sizing: border-box; }

:root {
  --navy: #07143f;
  --white: #ffffff;
  --muted: rgba(255,255,255,.72);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 48px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar { display: none; }

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 28px 0 25px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  background: currentColor;
}

.page-image {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 28px 20px 32px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.legal-links a {
  color: var(--white);
  text-decoration: none;
}

.legal-links a:hover { text-decoration: underline; }

.copyright {
  margin: 18px 0 0;
  font-size: 11px;
  opacity: .6;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 84px 28px 120px;
  line-height: 1.75;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 7vw, 74px);
  letter-spacing: -.05em;
}

.legal-page p { color: #4f4f4f; }

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 0;
  }

  .brand { font-size: 18px; }

  .site-nav {
    width: 100%;
    gap: 22px;
    padding-top: 8px;
  }

  .site-nav a {
    font-size: 12px;
    padding: 10px 0 15px;
  }

  .site-nav a.active::after { bottom: 7px; }
}
