:root {
  --paper: #f4efe4;
  --paper-2: #ebe3d2;
  --ink: #161d27;
  --muted: #5a6270;
  --line: #d5cbb8;
  --accent: #1a5c4e;
  --accent-hover: #134339;
  --brass: #8d6a38;
  --white: #fbf8f1;
  --max: 72rem;
  --header-h: 4.15rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Figtree", "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.62;
}

img {
  max-width: 100%;
}

code {
  font-size: 0.9em;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hover);
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
}

.mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.mark {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  color: inherit;
  text-decoration: none;
}

.mark strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mark span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 1.05rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: end;
  padding: 3.6rem 0 3.1rem;
  border-bottom: 1px solid var(--line);
}

.hero.plain {
  display: block;
  max-width: 46rem;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.05rem, 5.4vw, 3.45rem);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1.18rem;
}

.lede {
  max-width: 40rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  color: var(--white);
  background: var(--accent);
}

.btn.primary:hover {
  color: var(--white);
  background: var(--accent-hover);
}

.btn.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn.ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-aside {
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-aside h2 {
  font-size: 1.05rem;
}

.hero-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-aside p + p {
  margin-top: 0.7rem;
}

.band {
  padding: 3.1rem 0;
  border-bottom: 1px solid var(--line);
}

.band.tint {
  background: var(--paper-2);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.tile,
.card,
.spot {
  padding: 1.2rem 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.tile p,
.card p,
.spot p {
  margin: 0;
  color: var(--muted);
}

.tile p + p,
.card p + p,
.spot p + p {
  margin-top: 0.7rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 0.28rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.chips .hot {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof li + li::before {
  content: "·";
  margin-right: 1.25rem;
  color: var(--brass);
}

.spot {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.2rem 1.5rem;
  align-items: start;
}

.spot .meta {
  margin: 0;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-list {
  display: grid;
  gap: 0;
}

.work {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1rem 1.3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.work:last-child {
  border-bottom: 1px solid var(--line);
}

.work .meta {
  margin: 0;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work p {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.work p:last-child {
  margin-bottom: 0;
}

.shots {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.shots-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.shots figure {
  margin: 0;
}

.shots img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
}

.shots .crop img {
  height: 22rem;
  object-fit: cover;
  object-position: top center;
}

.shots figcaption {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.card-shot {
  display: block;
  margin: 0.85rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.card-shot img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

dl.facts {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.6rem 1rem;
  margin: 1.4rem 0 0;
}

dl.facts dt {
  color: var(--muted);
  font-size: 0.85rem;
}

dl.facts dd {
  margin: 0;
}

.colophon {
  padding: 1.5rem 0 2.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.colophon .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55rem 1.4rem;
}

@media (max-width: 860px) {
  .hero,
  .grid-3,
  .grid-2,
  .spot,
  .work,
  .shots-split,
  dl.facts {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.2rem 0 2rem;
    gap: 1.3rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 1rem 0.8rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .proof li + li::before {
    display: none;
  }

  h1 {
    max-width: none;
  }
}

@media (min-width: 861px) {
  .wrap {
    width: min(var(--max), calc(100% - 2.75rem));
  }
}
