:root {
  --bg: #F2EBDB;
  --paper: #FCF7EF;
  --sage: #ADC2B3;
  --peach: #E8C4A8;
  --sky: #C7D6E0;
  --red: #B82E29;
  --ink: #3D332E;
  --muted: #6B6159;
  --dock-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  padding-bottom: calc(var(--dock-h) + 24px);
}

.sheet {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 22px 32px;
}

.editorial-mast {
  padding: 12vh 0 8vh;
}

.kicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.4rem;
}

.editorial-mast h1 {
  font-size: clamp(4.2rem, 16vw, 8.5rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0;
}

.deck {
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  font-style: italic;
  margin: 1.2rem 0 0;
  max-width: 16ch;
}

.lede {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36rem;
  margin: 2rem 0 0;
}

.flag-still {
  margin: 0 -8px 64px;
}

.flag-still img {
  display: block;
  width: 100%;
  height: 42vw;
  max-height: 380px;
  object-fit: cover;
  border-radius: 2px;
}

.intro-right {
  text-align: right;
  margin-bottom: 28px;
}

.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.intro-right h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0;
  font-weight: 600;
}

.prose-column {
  max-width: 38rem;
  margin-left: auto;
}

.prose-column h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.prose-column p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.vignettes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 56px 0;
}

.vignettes img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}

.peek-band {
  margin: 48px 0 72px;
}

.peek-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.peek-track figure {
  flex: 0 0 68%;
  scroll-snap-align: start;
  margin: 0;
}

.peek-track img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(61, 51, 46, 0.14);
}

.peek-track figcaption {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--paper);
  padding: 28px 24px;
  border-radius: 4px;
}

.legal-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.legal-grid p,
.legal-grid a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.legal-grid a {
  color: var(--red);
}

.colophon {
  margin: 40px 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}

.curb-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: var(--dock-h);
  background: #3D332E;
  border-radius: 22px;
  padding: 0 8px;
  box-shadow: 0 10px 28px rgba(61, 51, 46, 0.28);
}

.curb-dock a {
  color: #FCF7EF;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 10px 6px;
}

.curb-dock a:hover,
.curb-dock a.is-current {
  color: #E8C4A8;
}

@media (max-width: 720px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .vignettes img:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .peek-track figure {
    flex-basis: 78%;
  }

  .curb-dock a {
    font-size: 0.62rem;
  }
}
