
:root {
  --parchment: #F7F3EA;
  --cream:     #FFFCF6;
  --ink:       #23211D;
  --ink-90:    rgba(35, 33, 29, 0.90);
  --ink-55:    rgba(35, 33, 29, 0.55);
  --ink-35:    rgba(35, 33, 29, 0.35);
  --hairline:  rgba(35, 33, 29, 0.10);
  --sage:      #4F6047;
  --sage-35:   rgba(79, 96, 71, 0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 42rem; margin: 0 auto; padding: 4rem 1.5rem 6rem; }

.eyebrow, nav, footer, .updated {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

header { text-align: center; margin-bottom: 3.5rem; }

.hero {
  position: relative;
  margin: -1.5rem 0 3rem;
  border-radius: 4px;
  overflow: hidden;
  min-height: clamp(300px, 46vh, 440px);
  display: flex;
  background:
    radial-gradient(120% 80% at 50% 18%, rgba(255,244,214,0.92) 0%, rgba(226,206,160,0.35) 42%, rgba(35,33,29,0) 72%),
    linear-gradient(170deg, #3b4436 0%, #2b3128 55%, #23211d 100%);
}
.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 1.5rem 2.5rem;
  background: linear-gradient(to bottom, rgba(35,33,29,0) 45%, rgba(35,33,29,0.55) 100%);
}
.hero-copy .wordmark { color: var(--parchment); font-size: 3.25rem; }
.hero-copy .tagline { color: rgba(247, 243, 234, 0.72); }

.lede { font-size: 1.15rem; line-height: 1.65; }

.day { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.day li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  margin: 0;
}
.day li:last-child { border-bottom: 0; }
.day .what {
  font-family: 'Instrument Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--sage);
  display: block;
  margin-bottom: 0.15rem;
}

.note {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}
.note p { margin: 0; }

.wordmark {
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.1;
}
.wordmark a { color: inherit; text-decoration: none; }

.tagline {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-55);
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sage);
  margin: 2.5rem 0 0.25rem;
}

.rule { border: 0; border-top: 1px solid var(--hairline); margin: 2.5rem 0; }

h1 { font-weight: 400; font-size: 2rem; line-height: 1.25; margin: 0 0 0.5rem; }

h2 {
  font-weight: 500;
  font-size: 1.25rem;
  margin: 2.75rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}
h2:first-of-type { border-top: 0; padding-top: 0; }

p, li { color: var(--ink-90); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.5rem; }

strong { font-weight: 600; color: var(--ink); }

a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--ink); }

table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.95rem; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 0.6rem 0.75rem 0.6rem 0; border-bottom: 1px solid var(--hairline); vertical-align: top; }
th { font-family: 'Instrument Sans', sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); font-weight: 500; }

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 2px solid var(--sage-35);
  border-radius: 2px;
}
blockquote p:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--hairline); margin: 2rem 0; }

nav { margin-top: 1.75rem; font-size: 0.9rem; }
nav a { margin: 0 0.6rem; color: var(--sage); }

footer {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.8rem;
  color: var(--ink-35);
  text-align: center;
}
footer a { color: var(--ink-55); }

.amdg { letter-spacing: 0.2em; font-size: 0.7rem; margin-top: 2rem; }

@media (max-width: 480px) {
  body { font-size: 17px; }
  .wrap { padding: 2.5rem 1.25rem 4rem; }
  .wordmark { font-size: 2.25rem; }
}
