.site-footer {
  --footer-bg: var(--page-bg, var(--bg, #f4efe6));
  --footer-ink: var(--page-ink, var(--ink, #151515));
  --footer-muted: var(--page-muted, var(--muted, #726b61));
  --footer-line: var(--page-line, var(--line, #d7cec0));
  --footer-panel: var(--page-panel-strong, var(--page-bg, var(--bg, #fffaf3)));
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(268px, auto) minmax(220px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px 28px;
  border-top: 1px solid var(--footer-line);
  background: var(--footer-bg);
  color: var(--footer-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.site-footer *,
.policy-sheet * {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.site-footer section {
  min-height: 0;
  align-self: center;
  border-bottom: 0;
}

.site-footer-brand,
.site-footer-block,
.site-footer-info-column {
  display: grid;
  gap: 8px;
  align-content: center;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer-mark {
  width: fit-content;
  color: var(--footer-ink);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.site-footer-text,
.site-footer-link {
  max-width: 30ch;
  line-height: 1.42;
}

.site-footer-kicker {
  color: var(--footer-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.site-footer-info {
  justify-self: end;
  justify-items: end;
}

.site-footer-info-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 6px 24px;
  justify-content: center;
}

.site-footer-newsletter {
  justify-self: center;
  justify-items: center;
}

.site-footer-newsletter-form {
  display: grid;
  gap: 9px;
  width: min(100%, 268px);
  justify-self: center;
}

.site-footer-newsletter-title {
  color: var(--footer-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.site-footer-newsletter-fields {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.site-footer-newsletter-field {
  position: relative;
  display: block;
  flex: 0 0 116px;
}

.site-footer-newsletter-email {
  flex-basis: 146px;
}

.site-footer-newsletter-field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer-newsletter-form input {
  box-sizing: border-box;
  width: 100%;
  min-height: 32px;
  border: 1px solid var(--footer-line);
  border-radius: 0;
  padding: 0 9px;
  background: transparent;
  color: var(--footer-ink);
  font: inherit;
  font-size: 12px;
  outline: none;
}

.site-footer-newsletter-form input::placeholder {
  color: var(--footer-muted);
  opacity: 1;
}

.site-footer-newsletter-form input:focus {
  border-color: var(--footer-ink);
}

.site-footer-newsletter-email input {
  padding-right: 34px;
}

.site-footer-newsletter-submit {
  box-sizing: border-box;
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  display: grid;
  place-items: center;
  width: 28px;
  border: 0;
  border-left: 1px solid var(--footer-line);
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--footer-ink);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  line-height: 1;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.site-footer-newsletter-submit:hover,
.site-footer-newsletter-submit:focus-visible {
  color: var(--footer-muted);
  transform: translateY(-1px);
  outline: none;
}

.site-footer-newsletter-submit:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.site-footer-newsletter-status {
  margin: 0;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer-newsletter-status:empty {
  display: none;
}

.site-footer-newsletter-consent {
  width: 100%;
  margin: 0;
  color: var(--footer-muted);
  font-size: 11px;
  line-height: 1.35;
}

.site-footer-newsletter-consent a {
  color: var(--footer-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-newsletter-consent a:hover,
.site-footer-newsletter-consent a:focus-visible {
  color: var(--footer-muted);
  outline: none;
}

.site-footer-info-column-left {
  justify-items: end;
  text-align: right;
}

.site-footer-info-column-right {
  justify-items: start;
  text-align: left;
}

.policy-sheet {
  --footer-bg: #f4efe6;
  --footer-ink: #151515;
  --footer-muted: #726b61;
  --footer-line: #d7cec0;
  --footer-panel: #fff;
  position: fixed;
  inset: 0;
  z-index: 995;
  display: block;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  pointer-events: none;
}

.policy-sheet[hidden] {
  display: none !important;
}

.policy-sheet.is-open {
  pointer-events: auto;
}

.policy-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  opacity: 1;
  transition: background-color 260ms ease;
  cursor: pointer;
}

.policy-sheet.is-open .policy-sheet-backdrop {
  background: transparent;
}

.policy-sheet-panel {
  position: absolute;
  inset: clamp(112px, 12vh, 152px) 0 0 0;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--footer-ink);
  box-shadow: none;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}

.policy-sheet-panel * {
  box-sizing: border-box;
}

.policy-sheet.is-open .policy-sheet-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.policy-sheet-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  flex: 0 0 auto;
  align-items: end;
  width: 100%;
  padding: 0 clamp(2rem, 7vw, 7.5rem);
  border-bottom: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
  pointer-events: none;
}

.policy-sheet-kicker {
  display: none;
}

.policy-sheet-title {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: min(100%, 22ch);
  margin: 0;
  padding: 13px 18px 11px;
  border: 1px solid var(--footer-line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--footer-panel);
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 900;
  pointer-events: auto;
}

.policy-sheet-title-text {
  color: inherit;
  mix-blend-mode: difference;
}

.policy-sheet-close {
  position: relative;
  align-self: end;
  justify-self: end;
  z-index: 3;
  width: 46px;
  height: 44px;
  min-height: 0;
  border: 1px solid var(--footer-line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 0;
  background: var(--footer-panel);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  opacity: 0.78;
  pointer-events: auto;
  transition: background-color 0.22s ease, color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.policy-sheet-close::before {
  content: "\00d7";
  display: block;
  font-size: 1.4rem;
  line-height: 44px;
  text-align: center;
  mix-blend-mode: difference;
}

.policy-sheet-close:hover,
.policy-sheet-close:focus-visible {
  background: #fff;
  color: #151515;
  opacity: 1;
  transform: scale(1.07);
  outline: none;
}

.policy-sheet-close:hover::before,
.policy-sheet-close:focus-visible::before {
  mix-blend-mode: normal;
}

.policy-sheet-body {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding: 24px clamp(2rem, 7vw, 7.5rem) calc(clamp(7rem, 11vh, 10rem) + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--footer-line);
  background: var(--footer-panel);
  color: var(--footer-muted);
  line-height: 1.5;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.policy-sheet-body::-webkit-scrollbar {
  display: none;
}

.policy-sheet-section {
  min-height: 0;
  display: block;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

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

.policy-sheet-section h2,
.policy-sheet-section h3,
.policy-sheet-section h4 {
  margin: 26px 0 0;
  color: var(--footer-ink);
  letter-spacing: 0.06em;
  line-height: 1.18;
  text-transform: uppercase;
}

.policy-sheet-section h2:first-child,
.policy-sheet-section h3:first-child,
.policy-sheet-section h4:first-child {
  margin-top: 0;
}

.policy-sheet-section h2 {
  margin-top: 34px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.policy-sheet-section h3 {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 900;
}

.policy-sheet-section h4 {
  margin-top: 22px;
  color: color-mix(in srgb, var(--footer-ink) 82%, var(--footer-muted));
  font-size: 12px;
  font-weight: 800;
}

.policy-sheet-section p {
  margin: 0;
  line-height: 1.58;
}

.policy-sheet-section h2 + p,
.policy-sheet-section h3 + p,
.policy-sheet-section h4 + p,
.policy-sheet-section h2 + ul,
.policy-sheet-section h3 + ul,
.policy-sheet-section h4 + ul,
.policy-sheet-section p + p,
.policy-sheet-section p + ul {
  margin-top: 8px;
}

.policy-sheet-section a {
  border-bottom: 1px solid currentColor;
}

.policy-sheet-section blockquote {
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid rgba(47, 39, 32, 0.22);
  color: var(--footer-ink);
  font-size: 16px;
  line-height: 1.45;
}

.policy-sheet-section figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.policy-sheet-section figure img {
  width: 100%;
  max-height: var(--article-image-max-height, 360px);
  object-fit: cover;
  border-radius: 8px;
  background: transparent;
}

.policy-sheet-section figure.article-image-contain {
  justify-items: center;
}

.policy-sheet-section figure.article-image-contain img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: var(--article-image-max-height, 360px);
  object-fit: contain;
}

.policy-sheet-section figcaption {
  color: var(--footer-muted);
  font-size: 12px;
}

.policy-sheet-section ul {
  margin: 0;
  padding-left: 18px;
}

.policy-sheet-section li + li {
  margin-top: 7px;
}

.policy-cookie-settings-bar {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--footer-line);
}

.policy-cookie-settings-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--footer-line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--footer-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.policy-cookie-settings-link:hover,
.policy-cookie-settings-link:focus-visible {
  border-color: var(--footer-ink);
  background: var(--footer-ink);
  color: var(--footer-panel);
  outline: none;
}

.article-faq-item {
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-muted);
}

.article-faq-item:last-of-type {
  border-bottom: 1px solid var(--footer-line);
}

.article-faq-item + .article-faq-item {
  margin-top: 0;
}

.policy-sheet-section h2 + .article-faq-item,
.policy-sheet-section h3 + .article-faq-item,
.policy-sheet-section h4 + .article-faq-item {
  margin-top: 18px;
}

.article-faq-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  color: var(--footer-ink);
  cursor: pointer;
  list-style: none;
}

.article-faq-trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--footer-ink) 24%, transparent);
  outline-offset: 4px;
}

.article-faq-trigger::-webkit-details-marker {
  display: none;
}

.article-faq-trigger::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--footer-ink);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.article-faq-item[open] .article-faq-trigger::after {
  content: "-";
}

.article-faq-question {
  margin: 0;
  color: var(--footer-ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

.article-faq-answer {
  display: grid;
  gap: 10px;
  padding: 0 48px 24px 0;
  animation: articleFaqSlideDown 220ms ease both;
}

.article-faq-answer p {
  margin: 0;
}

@keyframes articleFaqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-contact-block {
  --contact-ink: var(--footer-ink, var(--page-ink, var(--ink, #151515)));
  --contact-muted: var(--footer-muted, var(--page-muted, var(--muted, #726b61)));
  --contact-line: var(--footer-line, var(--page-line, var(--line, #d7cec0)));
  --contact-panel: var(--footer-panel, var(--page-panel-strong, #fffaf3));
  display: grid;
  gap: 8px;
  width: min(100%, 620px);
  min-height: 0;
  margin: 24px 0 0;
  border: 0;
  color: var(--contact-ink);
}

.policy-sheet-section > .article-contact-block:first-child {
  margin-top: 0;
}

.article-contact-block h3 {
  margin: 0;
  color: var(--contact-ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.article-contact-intro {
  display: grid;
  gap: 6px;
  color: var(--contact-muted);
}

.article-contact-form {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--contact-line);
  background: color-mix(in srgb, var(--contact-panel) 84%, white);
}

.article-contact-form label {
  position: relative;
  display: grid;
  gap: 0;
  color: var(--contact-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.article-contact-form input,
.article-contact-form textarea {
  width: 100%;
  border: 1px solid var(--contact-line);
  border-radius: 0;
  padding: 8px 9px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--contact-ink);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
}

.article-contact-form input::placeholder,
.article-contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--contact-muted) 78%, transparent);
  opacity: 1;
}

.article-contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.article-contact-form input:focus,
.article-contact-form textarea:focus {
  border-color: var(--contact-ink);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--contact-ink) 16%, transparent);
}

.article-contact-form button {
  width: fit-content;
  min-height: 36px;
  border: 1px solid var(--contact-ink);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--contact-ink);
  color: var(--footer-bg, var(--page-bg, #fffaf3));
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-contact-form button:hover,
.article-contact-form button:focus-visible {
  background: transparent;
  color: var(--contact-ink);
  outline: none;
}

.article-contact-form button:disabled {
  cursor: progress;
  opacity: 0.58;
}

.article-contact-status {
  min-height: 18px;
  margin: 0;
  color: var(--contact-muted);
  font-size: 13px;
}

.article-contact-status[data-state="success"] {
  color: #2f6d3a;
}

.article-contact-status[data-state="error"] {
  color: #9b352c;
}

html.policy-sheet-open,
body.policy-sheet-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: minmax(136px, 156px) minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    justify-items: stretch;
    padding: 12px 14px;
    text-align: left;
    font-size: 8px;
  }

  .site-footer-brand,
  .site-footer-info,
  .site-footer-newsletter {
    justify-self: stretch;
  }

  .site-footer-brand {
    display: none;
  }

  .site-footer-mark {
    font-size: 20px;
  }

  .site-footer-text,
  .site-footer-link {
    width: 100%;
    max-width: 20ch;
    line-height: 1.28;
  }

  .site-footer-kicker,
  .site-footer-newsletter-title {
    font-size: 8px;
  }

  .site-footer-newsletter {
    justify-items: center;
  }

  .site-footer-newsletter-form {
    gap: 5px;
    width: min(100%, 136px);
  }

  .site-footer-newsletter-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3px;
  }

  .site-footer-newsletter-field,
  .site-footer-newsletter-email {
    flex: none;
    min-width: 0;
  }

  .site-footer-newsletter-form input {
    min-height: 24px;
    padding: 0 5px;
    font-size: 8px;
  }

  .site-footer-newsletter-email input {
    padding-right: 22px;
  }

  .site-footer-newsletter-submit {
    width: 20px;
    font-size: 12px;
  }

  .site-footer-newsletter-consent,
  .site-footer-newsletter-status {
    font-size: 7px;
    line-height: 1.25;
  }

  .site-footer-info {
    min-width: 0;
    justify-items: end;
  }

  .site-footer-info-grid {
    justify-content: end;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 5px 10px;
  }

  .site-footer-info-column-left,
  .site-footer-info-column-right {
    min-width: 0;
  }

  .site-footer-info-column-left {
    justify-items: end;
    text-align: right;
  }

  .site-footer-info-column-right {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 460px) {
  .site-footer {
    grid-template-columns: minmax(132px, 150px) minmax(0, 1fr);
    gap: 6px;
    padding: 10px 12px;
  }

  .site-footer-info-grid {
    gap: 4px 8px;
  }

  .site-footer-link {
    font-size: 8px;
  }

  .policy-sheet {
    padding: 0;
  }

  .policy-sheet-panel {
    inset: clamp(112px, 14vh, 128px) 0 0 0;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .policy-sheet-head,
  .policy-sheet-body {
    width: 100vw;
    max-width: 100vw;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .policy-sheet-body {
    overflow-x: hidden;
  }

  .policy-sheet-head {
    padding-top: 0;
  }

  .policy-sheet-body {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
  }
}
