*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 36px;
}
body {
  margin: 0;
  background: var(--milk);
  color: var(--chocolate);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
  border: 0;
}
button,
a,
input,
textarea,
summary {
  touch-action: manipulation;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(38px, 4.65vw, 64px);
}
h3 {
  font-size: 26px;
  letter-spacing: -0.035em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.17em;
  line-height: 0.9;
  letter-spacing: -0.045em;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #ae6c46;
  outline-offset: 5px;
}
::selection {
  background: var(--chocolate);
  color: var(--milk);
}
.wrap {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.section-space {
  padding-block: 108px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}
.small-note {
  font-size: 11px;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  padding: 12px 20px;
  background: var(--chocolate);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 16px;
}
[hidden] {
  display: none !important;
}
.inline-link {
  background: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  min-height: 44px;
}
.text-link span {
  font-size: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 15px 22px;
  min-height: 54px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-dark {
  background: var(--chocolate);
  color: var(--milk);
}
.button-dark:hover {
  background: #5b4134;
  transform: translateY(-2px);
}
.button svg {
  width: 20px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #82684e;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 42px;
}
.section-heading .eyebrow {
  margin-bottom: 27px;
}
.section-aside {
  max-width: 310px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
