.section {
  padding: 105px var(--gutter);
  padding-inline: var(--page-inset);
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  line-height: 1.5;
  margin-bottom: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--wine);
  background: var(--wine);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  transition:
    background 0.25s,
    transform 0.25s,
    color 0.25s;
}
.button span {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1;
}
.button:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.875rem;
  border-bottom: 1px solid currentColor;
  padding: 0 0 7px;
  line-height: 1.5;
  transition:
    opacity 0.2s,
    gap 0.2s;
}
.text-link:hover {
  opacity: 0.8;
  gap: 25px;
}
.dark-link {
  color: var(--wine);
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 20px;
  background: var(--cream);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus {
  top: 8px;
}
.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--wine);
  flex-shrink: 0;
}
.wordmark > span {
  font-family: var(--serif);
  font-size: 3.5625rem;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}
.wordmark-dot {
  font-size: 2.1875rem;
}
.wordmark small {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  margin-top: 9px;
  font-weight: 500;
}
.button-cream {
  background: var(--cream);
  color: var(--wine);
  border-color: var(--cream);
}
.button-cream:hover {
  background: #e9dcc8;
}
.pdf-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border: 1px solid #cabdab;
  padding: 2px 6px;
}
label {
  display: block;
  font-size: 0.875rem;
  color: #62574e;
  font-weight: 500;
}
input,
select {
  appearance: auto;
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 50px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid #cdbfae;
  border-radius: 0;
  line-height: 1.4;
  margin: 7px 0 18px;
  color-scheme: light;
  font-size: 1rem;
  border-color: #897969;
}
select {
  cursor: pointer;
}
input[type='date'] {
  min-height: 50px;
}
dialog {
  padding: 0;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  width: min(1080px, 94vw);
  max-width: 94vw;
  height: 90dvh;
  max-height: 90dvh;
  box-shadow: 0 20px 100px #0005;
}
dialog[open] {
  display: flex;
  flex-direction: column;
  animation: dialogIn 0.25s ease;
}
dialog::backdrop {
  background: #211416b8;
  backdrop-filter: blur(5px);
}
.pdf-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  gap: 20px;
}
.pdf-toolbar .eyebrow {
  font-size: 0.75rem;
  margin: 0 0 5px;
}
.pdf-toolbar h2 {
  font-size: 1.875rem;
  letter-spacing: 0;
}
.pdf-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.pdf-actions > a {
  font-size: 0.8125rem;
}
.close-dialog {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--wine);
  font-size: 1.8125rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}
.pdf-help {
  padding: 10px 25px;
  font-size: 0.75rem;
  background: var(--paper);
  color: var(--muted);
}
.pdf-help a {
  text-decoration: underline;
}
#pdf-frame {
  width: 100%;
  flex: 1;
  min-height: 0;
  border: 0;
  background: #e5e2dc;
}
