@font-face {
  font-family: "Leaf Display";
  src: url("/assets/madefor-display-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Leaf Text";
  src: url("/assets/madefor-text-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --brand-blue: #0f3354;
  --brand-blue-strong: #082640;
  --brand-green: #228063;
  --brand-teal: #19a0a9;
  --paper: rgba(255, 255, 255, 0.92);
  --paper-border: rgba(15, 51, 84, 0.08);
  --text-muted: rgba(15, 51, 84, 0.78);
  --page-shadow: 0 24px 60px rgba(10, 43, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(25, 160, 169, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(34, 128, 99, 0.16), transparent 28%),
    linear-gradient(180deg, #f1f9f7 0%, #f7fbff 34%, #ffffff 100%);
  color: var(--brand-blue);
  font-family: "Leaf Text", "Helvetica Neue", helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--brand-green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--brand-teal);
}

.policy-page {
  padding: 40px 24px 72px;
}

.policy-hero,
.policy-layout {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(34, 128, 99, 0.96), rgba(15, 51, 84, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  box-shadow: var(--page-shadow);
  color: #ffffff;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: auto -6% -24% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 66%);
  pointer-events: none;
}

.policy-hero__logo {
  width: 149px;
  height: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}

.policy-hero__eyebrow,
.policy-hero__meta {
  margin: 0;
  letter-spacing: 0.04em;
}

.policy-hero__eyebrow {
  font-size: 15px;
  text-transform: uppercase;
}

.policy-hero__title {
  max-width: 760px;
  margin: 12px 0 16px;
  font-family: "Leaf Display", "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.06;
}

.policy-hero__meta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.policy-layout {
  display: grid;
  gap: 20px;
}

.policy-section {
  padding: 28px clamp(22px, 4vw, 34px);
  border: 1px solid var(--paper-border);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(10, 43, 74, 0.06);
}

.policy-section h2 {
  margin: 0 0 18px;
  color: var(--brand-blue-strong);
  font-family: "Leaf Display", "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.policy-section p,
.policy-address p,
.policy-list li {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

.policy-section p + p,
.policy-section p + .policy-address,
.policy-section p + .policy-list,
.policy-address + p,
.policy-list + p {
  margin-top: 16px;
}

.policy-address {
  margin: 16px 0 0;
  font-style: normal;
}

.policy-list {
  margin: 16px 0 0;
  padding-left: 1.25rem;
}

.policy-list li + li {
  margin-top: 12px;
}

.policy-footer {
  padding: 0 24px 28px;
}

.policy-footer p {
  width: min(100%, 1080px);
  margin: 0 auto;
  color: rgba(15, 51, 84, 0.78);
  font-family: "Leaf Display", "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 14px;
  text-align: center;
}

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

@media (max-width: 720px) {
  .policy-page {
    padding: 20px 16px 48px;
  }

  .policy-hero {
    margin-bottom: 20px;
    border-radius: 24px;
  }

  .policy-section {
    border-radius: 20px;
  }

  .policy-footer {
    padding: 0 16px 24px;
  }
}
