:root {
  --club-green: #0f3d2e;
  --deep-green: #0a2c21;
  --paper: #f7f3e8;
  --warm-paper: #f2ecdb;
  --ink: #1c2622;
  --soft-ink: #46544c;
  --brass: #9a7b3f;
  --light-brass: #b8975a;
  --rule: #d8cfb8;
  --white: #fffdf6;
  --sky: #dbe9ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1rem;
  line-height: 1.62;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(154, 123, 63, 0.55);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--club-green);
  text-decoration-color: var(--brass);
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(216, 207, 184, 0.85);
  background: rgba(247, 243, 232, 0.92);
  backdrop-filter: blur(14px);
}

.brand-link {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-green);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.55rem;
  color: var(--soft-ink);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--deep-green);
}

.hero {
  min-height: 30rem;
  height: 72vh;
  max-height: 46rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 5rem 1rem 2.5rem;
  color: var(--white);
  background-image: url("../images/the-read-hero-20260612.png");
  background-position: center bottom;
  background-size: cover;
  border-bottom: 1px solid var(--rule);
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: none;
}

.hero-inner {
  display: none;
  width: min(72rem, 100%);
  text-align: center;
  text-shadow: 0 0.125rem 1rem rgba(10, 44, 33, 0.55);
}

.kicker,
.meta,
.label {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--soft-ink);
}

.hero .kicker {
  color: rgba(255, 253, 246, 0.86);
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--deep-green);
}

.hero-title {
  margin: 0.3rem 0 0.2rem;
  color: var(--white);
  font-size: 3.5rem;
}

.hero-byline {
  margin: 0;
  font-size: 1.15rem;
  color: rgba(255, 253, 246, 0.9);
}

.content-band {
  padding: 3.5rem 1rem;
}

.content-band.alt {
  background: var(--warm-paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.container {
  width: min(68rem, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(43rem, 100%);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule);
}

.section-heading h2 {
  margin: 0 0 0.85rem;
  font-size: 1.75rem;
}

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

.essay-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.essay-row:hover h3 {
  color: var(--brass);
}

.essay-row h3 {
  margin: 0;
  font-size: 1.55rem;
}

.essay-row p {
  margin: 0;
  color: var(--soft-ink);
}

.intro-copy {
  font-size: 1.25rem;
  color: var(--soft-ink);
}

.post-header {
  padding: 4.5rem 1rem 2.25rem;
  border-bottom: 1px solid var(--rule);
  background: var(--warm-paper);
}

.post-header h1 {
  margin: 0.65rem 0 0.7rem;
  font-size: 2.6rem;
}

.subtitle {
  margin: 0;
  font-size: 1.3rem;
  color: var(--soft-ink);
  font-style: italic;
}

.post-hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center bottom;
  border-bottom: 1px solid var(--rule);
}

.post-body {
  padding: 3rem 1rem 4rem;
  background: var(--paper);
}

.post-body article {
  font-size: 1.16rem;
}

.post-body p {
  margin: 0 0 1.25rem;
}

.kg-width-wide {
  width: min(62rem, calc(100vw - 2rem));
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
  height: auto;
}

.post-body p:first-of-type::first-letter {
  float: left;
  padding: 0.08rem 0.35rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.7rem;
  line-height: 0.82;
  color: var(--club-green);
}

.pull-rule {
  margin: 2.25rem 0;
  border: 0;
  border-top: 1px solid var(--light-brass);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-mark {
  overflow: hidden;
  margin: 0;
  min-width: 0;
  border: 1px solid var(--rule);
  border-radius: 0.5rem;
  background: var(--white);
}

.about-mark img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.featured-band {
  padding: 3.5rem 1rem 4.5rem;
  background: var(--warm-paper);
  border-top: 1px solid var(--rule);
}

.featured-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.featured-grid > * {
  min-width: 0;
}

.featured-embed {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rule);
  background: var(--deep-green);
}

.featured-embed video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-copy h3 {
  margin: 0.4rem 0 1rem;
  font-size: 2rem;
}

.featured-copy blockquote {
  margin: 1.7rem 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--brass);
  color: var(--deep-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.35;
}

.featured-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.82rem;
}

.featured-links .secondary-link {
  color: var(--soft-ink);
}

.footer {
  padding: 2.25rem 1rem;
  color: var(--soft-ink);
  background: var(--deep-green);
}

.footer .container {
  display: grid;
  gap: 1rem;
}

.footer,
.footer a {
  color: rgba(255, 253, 246, 0.82);
}

.disclaimer {
  max-width: 62rem;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 48rem) {
  .topbar {
    padding: 0.85rem 2rem;
  }

  .hero-title {
    font-size: 5.1rem;
  }

  .content-band {
    padding: 4.5rem 2rem;
  }

  .post-header {
    padding: 5.5rem 2rem 3rem;
  }

  .post-header h1 {
    font-size: 3.4rem;
  }

  .post-body {
    padding: 3.7rem 2rem 5rem;
  }

  .about-grid {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: start;
  }

  .featured-band {
    padding: 4.5rem 2rem 5.5rem;
  }

  .featured-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
    gap: 3rem;
  }
}

@media (min-width: 64rem) {
  .hero-title {
    font-size: 6.25rem;
  }

  .essay-row {
    grid-template-columns: 11rem 1fr;
    align-items: start;
  }
}

@media (max-width: 30rem) {
  .hero {
    min-height: 27rem;
    height: 68vh;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 0 0.35rem;
    font-size: 0.72rem;
  }

}
