:root {
  --bg: #faf8f5;
  --ink: #1a1917;
  --muted: #7a746c;
  --line: #e6e0d8;
  --paper: #f3eee7;
  --column: min(1100px, 100% - 2 * clamp(1.5rem, 6vw, 4.5rem));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  width: var(--column);
  margin-inline: auto;
  padding: 2rem 0 1.75rem;
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-drop {
  position: relative;
}

.nav-drop summary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
}

.nav-drop summary::-webkit-details-marker {
  display: none;
}

.nav-drop summary::after {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  margin-bottom: 0.12rem;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
}

.nav-drop ul {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 10;
  min-width: 11rem;
  margin: 0;
  padding: 0.55rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nav-drop[open] ul,
.nav-drop:hover ul,
.nav-drop:focus-within ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop a {
  display: block;
  padding: 0.45rem 1rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.nav-drop a:hover,
.nav-drop a.is-active {
  color: var(--muted);
}

.page {
  width: var(--column);
  margin-inline: auto;
  padding: 0.75rem 0 6rem;
}

.intro {
  max-width: 34rem;
  margin: 0 0 2.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}

.page-title {
  margin: 0 0 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.card {
  display: block;
  color: var(--ink);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
}

.card span {
  display: block;
  margin-top: 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}

.card:hover span {
  color: var(--muted);
}

.feature {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--paper);
}

@media (min-width: 760px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
