:root {
  --green: #174f42;
  --green-2: #2f6758;
  --olive: #5f7f2f;
  --yellow: #eff100;
  --black: #252525;
  --ink: #333538;
  --muted: #5b6063;
  --line: #cfd8d2;
  --paper: #f7f8f5;
  --soft: #eef1ec;
  --white: #ffffff;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

a {
  color: var(--green);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 79, 66, .16);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 28px rgba(20, 31, 27, .06);
}

.nav-inner {
  width: min(1280px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  text-decoration: none;
}

.brand-mark,
.brand-mark svg {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: .94;
  letter-spacing: .08em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--olive);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.header-actions .contact-link {
  padding-inline: 20px;
  background: var(--green);
  color: var(--white);
}

.header-actions .contact-link:hover,
.header-actions .contact-link:focus-visible {
  background: var(--green-2);
}

.privacy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 116px) 24px clamp(64px, 8vw, 92px);
  background: var(--green);
  color: var(--white);
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 4vw;
  width: 132px;
  height: 132px;
  border-top: 8px solid var(--yellow);
  border-right: 8px solid var(--yellow);
  opacity: .82;
  pointer-events: none;
  z-index: -1;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  bottom: 34px;
  left: 4vw;
  width: 88px;
  height: 88px;
  border-left: 2px solid rgba(255, 255, 255, .44);
  border-bottom: 2px solid rgba(255, 255, 255, .44);
  pointer-events: none;
  z-index: -1;
}

.hero-inner,
.privacy-layout,
.footer-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.privacy-hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-intro {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.notice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 42px;
  margin: 34px 0 0;
}

.notice-meta div {
  display: grid;
  gap: 2px;
}

.notice-meta dt {
  color: var(--yellow);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.notice-meta dd {
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 780px);
  justify-content: space-between;
  gap: clamp(48px, 7vw, 94px);
  padding: 70px 24px 100px;
}

.contents {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 24px 22px;
  border-top: 7px solid var(--yellow);
  background: var(--soft);
}

.contents > p {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contents ol {
  margin: 0;
  padding-left: 22px;
}

.contents li {
  margin: 5px 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.42;
}

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

.contents a:hover,
.contents a:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content {
  min-width: 0;
}

.verification-note {
  margin-bottom: 48px;
  padding: 20px 22px;
  border: 1px solid rgba(95, 127, 47, .38);
  border-left: 7px solid var(--olive);
  background: #fafbea;
  color: var(--ink);
}

.privacy-content section {
  position: relative;
  padding: 0 0 56px;
  scroll-margin-top: 112px;
}

.privacy-content section + section {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.section-number {
  margin: 0 0 4px;
  color: var(--olive);
  font-family: "Barlow Condensed", sans-serif;
  font-size: .94rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.privacy-content h2 {
  margin: 0 0 20px;
  color: var(--green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.privacy-content h3 {
  margin: 28px 0 8px;
  color: var(--green);
  font-size: 1.06rem;
}

.privacy-content p {
  margin: 0 0 18px;
}

.privacy-content ul {
  margin: 0 0 22px;
  padding-left: 24px;
}

.privacy-content li {
  margin: 8px 0;
  padding-left: 4px;
}

.privacy-content a {
  font-weight: 800;
  text-underline-offset: 3px;
}

address,
.contact-card {
  margin: 22px 0;
  padding: 20px 22px;
  border-left: 6px solid var(--yellow);
  background: var(--soft);
  color: var(--ink);
  font-style: normal;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

footer {
  padding: 36px 24px;
  background: var(--black);
  color: rgba(255, 255, 255, .78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  font-size: .92rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-inner a {
  color: rgba(255, 255, 255, .84);
  font-size: .92rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible,
.footer-inner a[aria-current="page"] {
  color: var(--yellow);
}

.footer-faith {
  color: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contents {
    position: static;
  }

  .contents ol {
    columns: 2;
    column-gap: 36px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav-inner {
    width: min(100% - 28px, 1280px);
    min-height: 78px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-text {
    font-size: .9rem;
  }

  .brand-text small,
  .header-actions > a:first-child {
    display: none;
  }

  .header-actions .contact-link {
    padding-inline: 13px;
    font-size: .88rem;
  }

  .privacy-hero {
    padding: 58px 20px 62px;
  }

  .privacy-hero::before {
    top: 20px;
    right: 18px;
    width: 70px;
    height: 70px;
    border-width: 5px;
  }

  .privacy-hero::after {
    display: none;
  }

  .privacy-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .notice-meta {
    display: grid;
  }

  .privacy-layout {
    padding: 42px 20px 72px;
  }

  .contents ol {
    columns: 1;
  }

  .verification-note,
  address,
  .contact-card {
    padding: 17px 18px;
  }

  .privacy-content section {
    padding-bottom: 44px;
  }
}

@media (max-width: 390px) {
  .brand-text strong:nth-child(2) {
    display: none;
  }

  .header-actions .contact-link {
    padding-inline: 10px;
    font-size: .82rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
