:root {
  color-scheme: light;
  --ink: #2c1810;
  --paper: #f5f1e8;
  --lava: #8b2500;
  --gold: #e8b04b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    1rem/1.75 system-ui,
    sans-serif;
}
header {
  background: #1a1410;
  color: var(--paper);
  padding: 24px max(24px, calc((100vw - 1056px) / 2));
}
header nav,
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
header a {
  color: var(--gold);
}
.brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  margin-right: auto;
  text-decoration: none;
  color: var(--paper);
}
main {
  max-width: 1056px;
  margin: auto;
  padding: 48px 24px 64px;
}
h1,
h2,
h3 {
  font-family: Georgia, serif;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin: 12px 0 24px;
}
h2 {
  margin-top: 40px;
  font-size: 1.8rem;
}
h3 {
  font-size: 1.25rem;
}
p,
li {
  max-width: 75ch;
}
a {
  color: var(--lava);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
a:hover {
  text-decoration-thickness: 2px;
}
:focus-visible {
  outline: 3px solid #c14a17;
  outline-offset: 4px;
}
.eyebrow {
  color: var(--lava);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
  font-weight: 700;
}
.lead {
  font-size: 1.2rem;
}
.button {
  display: inline-block;
  min-height: 48px;
  padding: 10px 18px;
  background: var(--lava);
  border: 1px solid var(--lava);
  border-radius: 2px;
  color: white;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}
.button.secondary {
  background: transparent;
  color: var(--lava);
}
.actions {
  margin: 28px 0;
}
.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.45fr);
  gap: 32px;
  align-items: start;
}
.card {
  border-top: 2px solid var(--lava);
  padding-top: 16px;
  margin-top: 28px;
}
.photo {
  width: 100%;
  height: auto;
  border-radius: 2px;
}
figure {
  margin: 0;
}
figcaption {
  font-size: 0.875rem;
}
.language {
  border-top: 1px solid #2c181033;
  margin-top: 48px;
  padding-top: 24px;
}
footer {
  border-top: 1px solid #2c181033;
  padding: 24px;
  text-align: center;
}
footer a {
  margin: 0 10px;
}
@media (max-width: 680px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
  figure {
    max-width: 420px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media print {
  header,
  footer,
  .actions,
  .screen-only {
    display: none;
  }
  body {
    background: white;
    font-size: 10pt;
  }
  main {
    padding: 0;
  }
  h1 {
    font-size: 32pt;
  }
  h2 {
    font-size: 18pt;
    margin-top: 20px;
  }
  a {
    color: inherit;
  }
  .language {
    break-before: page;
    border: 0;
  }
  h2,
  h3 {
    break-after: avoid;
  }
  .card,
  figure,
  li {
    break-inside: avoid;
  }
}
