:root {
  color-scheme: dark;
  --background: #0b0f11;
  --background-soft: #101517;
  --surface: #151b1d;
  --surface-raised: #1b2325;
  --gold: #d7b17a;
  --gold-bright: #f0d7ac;
  --gold-muted: #a98b66;
  --copper: #a36d50;
  --navy: #254b69;
  --text: #f3e5cf;
  --text-soft: #c0b3a2;
  --text-muted: #958b7e;
  --line: rgba(215, 177, 122, 0.22);
  --line-soft: rgba(243, 229, 207, 0.1);
  --shadow: rgba(0, 0, 0, 0.38);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 86% 0%, rgba(37, 75, 105, 0.27), transparent 31rem),
    radial-gradient(circle at 4% 48%, rgba(163, 109, 80, 0.12), transparent 29rem),
    linear-gradient(135deg, var(--background) 0%, var(--background-soft) 52%, #090c0d 100%);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.policy-shell {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line-soft);
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.policy-brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px var(--shadow);
  object-fit: contain;
}

.policy-brand span {
  display: grid;
  gap: 2px;
}

.policy-brand strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.policy-brand small,
.back-link,
.policy-nav,
.eyebrow,
.article-kicker,
.section-number,
.policy-footer,
.contact-link {
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-brand small {
  color: var(--text-muted);
  letter-spacing: 0.16em;
}

.back-link {
  color: var(--gold-muted);
  transition: color 180ms ease;
}

.back-link:hover,
.policy-footer a:hover {
  color: var(--gold-bright);
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(38px, 9vw, 130px);
  padding: 92px 0 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--gold-muted);
}

.eyebrow span:first-child {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--text);
  font-size: clamp(3.6rem, 7vw, 7.6rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.hero-lead {
  max-width: 565px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-badge {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  column-gap: 16px;
  padding: 23px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(37, 75, 105, 0.3), rgba(21, 27, 29, 0.88));
  box-shadow: 0 20px 50px var(--shadow);
}

.badge-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.65rem;
}

.privacy-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.05;
}

.privacy-badge small {
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-muted);
}

.policy-nav a {
  transition: color 180ms ease;
}

.policy-nav a:hover {
  color: var(--gold-bright);
}

.statement-section {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 26px;
  padding: 93px 0 98px;
  border-bottom: 1px solid var(--line-soft);
}

.section-number {
  padding-top: 11px;
  color: var(--gold);
}

.statement-section h2,
.policy-article h2,
.contact-section h2 {
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.statement-section h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.statement-section > div:last-child > p {
  max-width: 650px;
  margin-bottom: 42px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.statement-grid > div {
  min-height: 140px;
  padding: 23px;
  background: var(--surface);
}

.statement-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.4rem;
}

.statement-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.statement-grid small {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.policy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 98px 0 120px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.policy-article {
  min-height: 330px;
  padding: 34px clamp(24px, 4vw, 52px) 42px;
  background: var(--surface);
}

.article-kicker {
  margin-bottom: 52px;
  color: var(--gold-muted);
}

.policy-article h2 {
  max-width: 420px;
  margin-bottom: 21px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.policy-article p,
.policy-article li {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.8;
}

.policy-article p {
  max-width: 500px;
  margin-bottom: 18px;
}

.policy-article p:last-child {
  margin-bottom: 0;
}

.policy-article strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.policy-article ul {
  max-width: 510px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.policy-article li {
  position: relative;
  padding: 11px 0 11px 21px;
  border-top: 1px solid var(--line-soft);
}

.policy-article li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
  padding: 64px clamp(25px, 6vw, 72px);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(37, 75, 105, 0.33), rgba(21, 27, 29, 0.95) 62%);
}

.contact-section .eyebrow {
  margin-bottom: 24px;
}

.contact-section h2 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
}

.contact-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-link {
  flex: 0 0 auto;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-bright);
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  border-color: var(--gold-bright);
  color: white;
}

.policy-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-muted);
  line-height: 1.6;
}

.policy-footer span:first-child {
  color: var(--gold-muted);
}

.policy-footer a {
  transition: color 180ms ease;
}

@media (max-width: 760px) {
  .policy-shell {
    width: min(100% - 28px, 560px);
  }

  .policy-header {
    min-height: 78px;
  }

  .back-link {
    font-size: 0.56rem;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 0 58px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.5rem);
  }

  .hero-lead {
    font-size: 0.88rem;
  }

  .privacy-badge {
    max-width: 430px;
  }

  .statement-section {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 65px 0 72px;
  }

  .section-number {
    padding-top: 0;
  }

  .statement-grid,
  .policy-content {
    grid-template-columns: 1fr;
  }

  .policy-content {
    margin: 72px 0 85px;
  }

  .policy-article {
    min-height: 0;
  }

  .article-kicker {
    margin-bottom: 34px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 48px;
    padding: 48px 24px;
  }

  .contact-link {
    font-size: 0.57rem;
  }

  .policy-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 0.55rem;
  }
}

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