@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap");

:root {
  --paper: #f7f6f2;
  --ink: #111214;
  --mute: #5a5c62;
  --line: #dcdcd6;
  --ecorce: #3d5344;
  --type: "Syne", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--type);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
::selection { background: #ead7b0; }

.bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 1.1rem;
  max-width: 80rem;
  margin: 0 auto;
}
.word {
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
  font-size: 1.05rem;
}
.bar nav { display: flex; gap: 1rem; font-size: 0.82rem; }
.bar nav a { color: var(--mute); text-decoration: none; }
.bar nav a:hover { color: var(--ink); }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.1rem 3.5rem; }

.hero {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 0 2rem;
  align-items: start;
}
.hero-copy { max-width: 32rem; }
.shot {
  margin: 0;
  max-width: 22rem;
}
.shot img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero-copy h1 {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 0.85rem;
}
.lede { margin: 0 0 0.7rem; font-size: 1.12rem; }
.meta { margin: 0 0 1.3rem; color: var(--mute); font-size: 0.98rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.6rem 0.75rem; align-items: center; }
.btn {
  display: inline-flex;
  padding: 0.72rem 1.1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.btn-line {
  display: inline-flex;
  padding: 0.68rem 1.05rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.quiet-link { font-size: 0.85rem; color: var(--mute); }

section { padding: 2.4rem 0; border-top: 1px solid var(--line); }
.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.45rem, 3.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1rem;
}
section p { margin: 0 0 0.8rem; max-width: 38rem; }
.mute { color: var(--mute); }

.grid {
  display: grid;
  gap: 1.25rem;
}
.tile { }
.tile img {
  width: 100%;
  max-width: 20rem;
  height: 10.5rem;
  object-fit: cover;
  object-position: 50% 40%;
}
.tile .body { padding: 0.95rem 0 0.2rem; }
.tile h3 {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.2rem 0 0.55rem;
}
.cat {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.formats { color: var(--mute); font-size: 0.92rem; margin-top: 0.7rem; }
.note { font-size: 0.82rem; color: var(--mute); }

table { width: 100%; max-width: 38rem; border-collapse: collapse; font-size: 0.95rem; margin: 0.6rem 0 1.1rem; }
th, td { text-align: left; padding: 0.5rem 0.3rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.order { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.order a { font-weight: 600; }
.blurb {
  max-width: 40rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.partner { font-weight: 700; color: var(--ecorce); }

.foot {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.4rem 1.1rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.82rem;
}
.foot p { margin: 0 0 0.35rem; max-width: 40rem; }
.foot a { color: inherit; }
.foot .partner { color: var(--ecorce); }

@media (min-width: 860px) {
  .bar, .wrap, .foot { padding-left: 2rem; padding-right: 2rem; }
  .hero {
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 2.5rem;
    padding: 2rem 0 2.6rem;
    align-items: center;
  }
  .shot { max-width: none; }
  .shot img { height: 18rem; }
  .grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  section { padding: 3rem 0; }
}
