* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--brand-ink);
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
h1 {
  font-size: var(--heading-large);
}
h2 {
  font-size: var(--heading-medium);
}
h3 {
  font-size: var(--heading-small);
}
p + p {
  margin-top: 1em;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
button,
a {
  touch-action: manipulation;
}
button {
  border-radius: 0;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #8c692f;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--paper);
}
:target {
  scroll-margin-top: 110px;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--brand-sage);
  color: var(--brand-ink);
}
.container {
  width: min(var(--max-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.section {
  padding-block: clamp(56px, 7vw, 100px);
}
.eyebrow {
  font: 600 0.72rem/1.6 var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 17px;
}
.small,
small {
  font-size: var(--text-xs);
  line-height: 1.6;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 14px;
  background: var(--paper);
  color: var(--brand-primary);
  z-index: 99;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading > p {
  max-width: 360px;
  color: var(--brand-grey);
}
.notice {
  font-size: 0.87rem;
  background: var(--brand-soft);
  padding: 16px 20px;
  border-left: 3px solid var(--brand-secondary);
  margin: 25px 0;
}
.section-note {
  font-size: 0.82rem;
  color: var(--brand-grey);
  margin-top: 22px;
}
.intro-copy {
  font-size: var(--text-lg);
  max-width: 640px;
  color: var(--brand-grey);
}
@media (max-width: 700px) {
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .actions {
    gap: 12px;
  }
  .desktop-break {
    display: none;
  }
  .container {
    width: calc(100% - 44px);
  }
  body {
    padding-bottom: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Allow text enlargement to reflow within narrow panes rather than widening them. */
body {
  overflow-wrap: anywhere;
}
main section > *,
.page-intro .container > *,
.product-results > *,
.contact-layout > *,
.contact-aside > * {
  min-width: 0;
}
.button {
  max-width: 100%;
}
@media (max-width: 700px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
  html {
    scroll-padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}
