@font-face {
  font-family: Yeseva;
  src: url("../fonts/yeseva-one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Wix;
  src: url("../fonts/wix-madefor-display.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary: #7e2f2c;
  --color-secondary: #efe3d0;
  --color-accent: #c96a42;
  --color-background: #efe3d0;
  --color-text: #34211c;
  --color-sand: #d7b996;
  --color-white: #fff;
  --container-max: 1320px;
  --page-gutter: clamp(22px, 4.1vw, 72px);
  --section-space-xl: clamp(80px, 9vw, 144px);
  --section-space-lg: clamp(56px, 6vw, 96px);
  --type-display: clamp(48px, 6.2vw, 94px);
  --type-heading: clamp(36px, 4.4vw, 66px);
  --font-display: Yeseva, Georgia, serif;
  --font-body: Wix, Arial, sans-serif;
  --transition: 220ms ease;
  --header-height: 106px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 80px);
}
body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
figcaption {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 13px;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 1.3em;
}
h1,
h2,
h3 {
  font-weight: 400;
  margin: 0 0 0.5em;
  color: var(--color-primary);
}
h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
h1 {
  font-size: var(--type-display);
}
h2 {
  font-size: var(--type-heading);
}
h3 {
  font-size: 22px;
  line-height: 1.3;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
::selection {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.wrap {
  width: min(calc(100% - var(--page-gutter) * 2), var(--container-max));
  margin-inline: auto;
}
.wrap-narrow {
  width: min(calc(100% - var(--page-gutter) * 2), 740px);
  margin-inline: auto;
}
.section-space {
  padding-block: var(--section-space-xl);
}
.eyebrow {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.small-note {
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  padding-block: 8px;
  transition:
    color var(--transition),
    gap var(--transition);
}
.text-link:hover {
  gap: 32px;
  color: var(--color-primary);
}
.text-link span,
.button span {
  font-size: 22px;
  font-weight: 400;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid var(--color-primary);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}
.button-dark {
  color: var(--color-secondary);
  background: var(--color-primary);
}
.button:hover {
  background: var(--color-text);
  color: var(--color-secondary);
}
.prose {
  font-size: 18px;
  line-height: 1.8;
}
.prose h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  margin: 1.5em 0 0.75em;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose blockquote {
  margin: 48px 0;
  padding: 0 0 0 25px;
  border-left: 2px solid var(--color-primary);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.4;
  color: var(--color-primary);
}
.prose ul,
.prose ol {
  padding-left: 24px;
}
.prose img {
  margin-block: 30px;
}
.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  z-index: 9999;
  inset: 10px auto auto 10px;
  padding: 12px 20px;
  background: var(--color-text);
  color: var(--color-secondary);
}
.empty-state {
  padding-block: 30px;
}
.pagination {
  padding-block: 48px;
}
.pagination .page-numbers {
  padding: 12px;
}
.archive-entry {
  padding: 35px 0;
  border-bottom: 1px solid var(--color-sand);
}
.alignwide {
  max-width: var(--container-max);
}
.alignfull {
  width: 100%;
}
.wp-caption,
.wp-caption-text,
.gallery-caption {
  max-width: 100%;
}
.bypostauthor {
  font-weight: inherit;
}
.sticky {
  position: relative;
}
