:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #53615a;
  --line: #d8dfda;
  --paper: #ffffff;
  --wash: #f5f7f4;
  --forest: #123f31;
  --forest-deep: #0d3025;
  --copper: #c66f43;
  --copper-dark: #9b4f2f;
  --focus: #f4b54d;
  --content: 1240px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  letter-spacing: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 223, 218, 0.9);
  background: var(--paper);
}

.site-header__inner {
  width: min(100% - 40px, var(--content));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--forest);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.brand__copy {
  min-width: 0;
  display: grid;
}

.brand__name {
  font-size: 15px;
  line-height: 1.3;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.language-switcher button {
  min-height: 34px;
  padding: 4px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--forest);
  color: var(--paper);
}

.header-contact,
.hero__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 4px;
  font-weight: 750;
  text-decoration: none;
}

.header-contact {
  padding: 8px 15px;
  background: var(--copper);
  color: #ffffff;
  font-size: 14px;
}

.header-contact:hover,
.hero__contact:hover {
  background: var(--copper-dark);
}

.header-contact__short {
  display: none;
}

.hero {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.hero__inner {
  width: min(100%, 1600px);
  min-height: 560px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
}

.hero__copy-column {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 64px max(34px, calc((100vw - var(--content)) / 2 + 20px));
  padding-right: 52px;
  border-bottom: 1px solid var(--line);
}

.hero__copy {
  max-width: 590px;
  padding-left: 22px;
  border-left: 4px solid var(--copper);
}

.hero__media {
  position: relative;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  background: #edf1ee;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__media-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  max-width: 260px;
  margin: 0;
  padding: 9px 12px;
  border-left: 3px solid var(--copper);
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--copper-dark);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__summary {
  max-width: 55ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero__meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 650;
}

.hero__meta span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 22px;
  display: inline-block;
  border-radius: 50%;
  background: var(--copper);
  vertical-align: middle;
}

.hero__contact {
  margin-top: 28px;
  padding: 10px 17px;
  background: var(--copper);
  color: #ffffff;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-facts {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-facts > div {
  min-width: 0;
  padding: 27px 24px;
}

.trust-facts > div:first-child {
  padding-left: 0;
}

.trust-facts > div:last-child {
  padding-right: 0;
}

.trust-facts > div + div {
  border-left: 1px solid var(--line);
}

.trust-facts dt {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.policy-band {
  background: #f5f7f4;
}

.policy-layout {
  width: min(100% - 40px, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: space-between;
  gap: 64px;
  padding-block: 76px 96px;
}

.policy-sidebar {
  min-width: 0;
  align-self: start;
  position: sticky;
  top: 108px;
}

.contents-toggle {
  width: 100%;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
}

.contents-toggle__mark {
  font-size: 22px;
  line-height: 1;
}

.policy-sidebar.is-open .contents-toggle__mark {
  transform: rotate(45deg);
}

.policy-nav__title {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.policy-nav ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.policy-nav li {
  border-bottom: 1px solid var(--line);
}

.policy-nav a {
  display: block;
  padding: 10px 8px 10px 15px;
  border-left: 3px solid transparent;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.policy-nav a:hover,
.policy-nav a[aria-current="location"] {
  border-left-color: var(--copper);
  color: var(--forest);
  font-weight: 750;
}

.policy-document {
  min-width: 0;
}

.policy-document__header {
  padding-bottom: 40px;
  border-bottom: 2px solid var(--forest);
}

.policy-document__header h2 {
  max-width: 670px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

.policy-document__header > p:last-child {
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.policy-document > section {
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 104px;
}

.policy-document > section h2 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: 0;
}

.policy-document > section h2 span {
  width: 34px;
  display: inline-block;
  color: var(--copper-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  vertical-align: 3px;
}

.policy-document p,
.policy-document ul {
  max-width: 72ch;
}

.policy-document p {
  margin: 0;
}

.policy-document ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-document li {
  padding-left: 5px;
}

.policy-document li + li {
  margin-top: 8px;
}

.contact-panel {
  margin-top: 34px;
  padding: 28px !important;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 34px;
  border: 0 !important;
  border-left: 4px solid var(--copper) !important;
  background: #eaf0ec;
}

.contact-panel .section-kicker {
  margin-bottom: 7px;
}

.contact-panel__details {
  padding-left: 28px;
  border-left: 1px solid #c8d3cc;
}

.contact-panel__details p + p {
  margin-top: 14px;
}

.contact-panel a {
  font-weight: 800;
}

.site-footer {
  background: var(--forest-deep);
  color: #dce7e1;
}

.site-footer__inner {
  width: min(100% - 40px, var(--content));
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-block: 40px;
}

.site-footer strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.site-footer p {
  max-width: 520px;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__inner > p {
  margin-top: 0;
  text-align: right;
}

.site-footer a {
  color: #ffd2bc;
}

@media (max-width: 980px) {
  .trust-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-facts > div,
  .trust-facts > div:first-child,
  .trust-facts > div:last-child {
    padding: 22px;
  }

  .trust-facts > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .trust-facts > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .policy-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header__inner,
  .trust-facts,
  .policy-layout,
  .site-footer__inner {
    width: min(100% - 28px, var(--content));
  }

  .site-header__inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand__subtitle {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .hero__copy-column {
    min-height: 430px;
    padding: 54px 24px 46px;
  }

  .hero__media {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .hero__media-label {
    right: 14px;
    bottom: 14px;
    max-width: 220px;
  }

  .hero__copy {
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__summary {
    font-size: 17px;
  }

  .policy-layout {
    display: block;
    padding-block: 36px 64px;
  }

  .policy-sidebar {
    position: static;
    margin-bottom: 38px;
  }

  .contents-toggle {
    display: flex;
  }

  .js .policy-nav__lists {
    display: none;
  }

  .js .policy-sidebar.is-open .policy-nav__lists {
    display: block;
  }

  .policy-nav__lists {
    padding-top: 16px;
  }

  .policy-nav__title {
    display: none;
  }

  .policy-nav ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: var(--paper);
  }

  .policy-nav li {
    min-width: 0;
  }

  .policy-nav li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .policy-nav a {
    min-height: 100%;
  }

  .policy-document > section {
    scroll-margin-top: 90px;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 22px;
  }

  .site-footer__inner > p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    width: min(100% - 20px, var(--content));
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  .brand__copy {
    max-width: 126px;
  }

  .brand__name {
    font-size: 13px;
    line-height: 1.18;
  }

  .site-header__actions {
    gap: 6px;
  }

  .language-switcher {
    grid-template-columns: repeat(2, 36px);
  }

  .language-switcher button {
    min-height: 32px;
    font-size: 12px;
  }

  .header-contact {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 13px;
  }

  .header-contact__full {
    display: none;
  }

  .header-contact__short {
    display: inline;
  }

  .hero__image {
    object-position: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__meta {
    display: grid;
    gap: 4px;
  }

  .hero__meta span + span::before {
    display: none;
  }

  .hero__contact {
    width: 100%;
    max-width: 280px;
  }

  .trust-facts > div,
  .trust-facts > div:first-child,
  .trust-facts > div:last-child {
    padding: 18px 13px;
  }

  .trust-facts > div:nth-child(odd) {
    padding-left: 0;
  }

  .trust-facts > div:nth-child(even) {
    padding-right: 0;
  }

  .trust-facts dt {
    font-size: 11px;
  }

  .trust-facts dd {
    font-size: 13px;
  }

  .policy-nav ol {
    grid-template-columns: 1fr;
  }

  .policy-nav li:nth-child(odd) {
    border-right: 0;
  }

  .policy-document__header h2 {
    font-size: 32px;
  }

  .policy-document > section h2 {
    font-size: 22px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 23px 20px !important;
  }

  .contact-panel__details {
    padding: 20px 0 0;
    border-top: 1px solid #c8d3cc;
    border-left: 0;
  }
}

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

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