*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cobalt: #1a3a7c;
  --cobalt-deep: #0d2154;
  --cobalt-mid: #2a4fa0;
  --cobalt-light: #d6e0f5;
  --cobalt-pale: #eef2fb;
  --warm: #f7f4ef;
  --gold: #b5843a;
  --ink: #0d1a38;
  --muted: rgba(13,26,56,0.65);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--cobalt-pale);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 3rem;
  background: rgba(238,242,251,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,58,124,0.08);
}
.logo-wrap { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-main {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
}
.logo-aer {
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--cobalt);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

/* CONTENT */
.privacy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 10rem 3rem 8rem;
}
.page-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cobalt-deep);
  margin-bottom: 3rem;
}
.updated {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26,58,124,0.1);
}
.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(26,58,124,0.08);
}
.privacy-section:last-child {
  border-bottom: none;
}
.privacy-section h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cobalt-deep);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.privacy-section p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FOOTER */
footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(26,58,124,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(13,26,56,0.3); }
.footer-links { display: flex; gap: 2rem; }
footer a { color: rgba(13,26,56,0.35); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
footer a:hover { color: var(--cobalt); }

@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .privacy-wrap { padding: 7rem 1.5rem 5rem; }
  footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 2rem 1.5rem; }
}
