.policy-page {
  background: var(--paper);
}

.policy-page .site-header {
  background: rgba(10, 13, 11, .97);
}

.policy-main {
  padding-top: 94px;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.policy-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -120px;
  bottom: -310px;
  border: 84px solid rgba(142, 226, 63, .1);
  border-radius: 50%;
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 94px;
  padding-bottom: 80px;
}

.policy-eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.policy-main h1 {
  max-width: none;
  margin: 0;
  font: 800 clamp(64px, 10vw, 112px)/.82 var(--display);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.updated {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  font-weight: 600;
}

.policy-content {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
  padding: 72px 0 90px;
}

.policy-intro {
  margin: 0 0 54px;
  padding-left: 24px;
  border-left: 4px solid var(--green);
  color: #303733;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
  line-height: 1.75;
}

.policy-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.policy-section:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font: 800 clamp(31px, 4vw, 42px)/.95 var(--display);
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.policy-section p,
.policy-section li {
  color: #59635c;
  font-size: 14px;
  line-height: 1.85;
}

.policy-section p {
  margin: 0;
}

.policy-section p + p {
  margin-top: 18px;
}

.policy-section ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.policy-section li {
  position: relative;
  padding: 7px 0 7px 25px;
}

.policy-section li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--green-dark);
  border-radius: 2px;
  transform: rotate(45deg);
}

.policy-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 22px;
}

.policy-contact a {
  color: #315f0d;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(49, 95, 13, .25);
  text-underline-offset: 4px;
}

.policy-page .footer-bottom div {
  justify-content: center;
  flex-wrap: wrap;
}

.policy-page .footer-bottom [aria-current="page"] {
  color: var(--green);
}

@media (max-width: 680px) {
  .policy-main {
    padding-top: 72px;
  }

  .policy-hero-inner {
    padding-top: 72px;
    padding-bottom: 62px;
  }

  .policy-main h1 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .policy-content {
    width: min(100% - 32px, 900px);
    padding: 54px 0 72px;
  }

  .policy-intro {
    margin-bottom: 38px;
    padding-left: 18px;
    font-size: 16px;
  }

  .policy-section {
    padding: 28px 0;
  }

  .policy-section p,
  .policy-section li {
    font-size: 13px;
  }

  .policy-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

body:not(.policy-page) {
  margin: 0;
  color: #0a0d0b;
  background: #f5f7f3;
  font-family: "Manrope", sans-serif;
}

body:not(.policy-page) * {
  box-sizing: border-box;
}

body:not(.policy-page) a {
  color: inherit;
}

body:not(.policy-page) > header {
  min-height: 86px;
  padding: 0 max(24px, calc((100% - 1060px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: #0a0d0b;
}

body:not(.policy-page) > header > a:first-child {
  display: grid;
  text-decoration: none;
  line-height: 1;
}

body:not(.policy-page) > header strong {
  font: 800 27px "Barlow Condensed", sans-serif;
}

body:not(.policy-page) > header strong span {
  color: #8ee23f;
}

body:not(.policy-page) > header small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body:not(.policy-page) > header > a:last-child {
  padding: 11px 15px;
  color: #0a0d0b;
  background: #8ee23f;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

body:not(.policy-page) > main {
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding: 80px 0 70px;
}

body:not(.policy-page) .eyebrow {
  margin: 0 0 10px;
  color: #4f8522;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body:not(.policy-page) h1 {
  margin: 0;
  font: 800 clamp(56px, 9vw, 92px) / .9 "Barlow Condensed", sans-serif;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

body:not(.policy-page) .updated {
  margin: 16px 0 50px;
  color: #737c75;
  font-size: 11px;
}

body:not(.policy-page) section {
  padding: 27px 0;
  border-top: 1px solid #dce2da;
}

body:not(.policy-page) h2 {
  margin: 0 0 11px;
  font: 800 29px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

body:not(.policy-page) section p {
  margin: 0;
  color: #59635c;
  font-size: 13px;
  line-height: 1.8;
}

body:not(.policy-page) section a {
  color: #315f0d;
  font-weight: 700;
}

body:not(.policy-page) > footer {
  width: min(100% - 40px, 880px);
  margin: auto;
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #dce2da;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 560px) {
  body:not(.policy-page) > header {
    min-height: 74px;
    padding: 0 15px;
  }

  body:not(.policy-page) > header strong {
    font-size: 23px;
  }

  body:not(.policy-page) > header > a:last-child {
    font-size: 8px;
  }

  body:not(.policy-page) > main {
    padding: 55px 0;
  }

  body:not(.policy-page) > footer {
    flex-direction: column;
  }
}
