/* Shared design system, transcribed from the approved dist/styles.css. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

button,
summary {
  font: inherit;
}

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

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 6px;
}

::selection {
  background: #d4dfce;
  color: #213c2e;
}

.section-wrap,
.site-main {
  width: min(var(--manipura-content-max), calc(100% - var(--gutter) - var(--gutter)));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(44px, 4.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -.025em;
}

h2 {
  font-size: clamp(42px, 3.7vw, 60px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

h1 em,
h2 em {
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -100px;
  background: var(--paper);
  padding: 12px 22px;
}

.skip-link:focus {
  top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 17px 29px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .075em;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .2s, color .2s;
}

.button-cream {
  background: var(--paper);
  color: var(--green);
  border-color: var(--paper);
}

.button-cream:hover {
  background: #e9e4d6;
  border-color: #e9e4d6;
}

.button-outline {
  border-color: #fff9;
  background: #18362b18;
  color: white;
}

.button-outline:hover {
  background: #fff1;
}

.button-green {
  color: var(--paper);
  background: var(--green);
  border-color: var(--green);
}

.button-green:hover {
  background: #3c5546;
}

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
