:root {
  color-scheme: light;
  --paper: #f5f3ed;
  --paper-bright: #fcfbf7;
  --ink: #1c2630;
  --muted: #626a73;
  --line: #d8dde2;
  --primary: #121212;
  --primary-hover: color-mix(in srgb, var(--primary), black 20%);
  --primary-light: color-mix(in srgb, var(--primary), white 18%);
  --primary-gradient: linear-gradient(135deg, #505050 0%, #000000 100%);
  --primary-gradient-hover: linear-gradient(135deg, #343434 0%, #000000 100%);
  --coast: var(--primary);
  --coast-2: var(--primary-light);
  --walk-surface: #e5e8df;
  --walk-accent: #556044;
  --walk-ink: #343d32;
  --walk-muted: #657061;
  --walk-line: color-mix(in srgb, var(--walk-accent) 28%, transparent);
  --moss: #596247;
  --red: #a84b3f;
  --ochre: #b57922;
  --blue: #46627f;
  --shadow: 0 24px 55px rgba(23, 27, 24, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --walk-display: "Oswald", "Arial Narrow", sans-serif;
  --anchor-offset: 6.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main > section[id]:not(#top),
.series-block[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(243, 239, 228, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(23, 27, 24, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.site-nav a,
.text-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
}

.menu-icon::before {
  transform: translateY(-0.4rem);
}

.menu-icon::after {
  transform: translateY(0.3rem);
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(0.1rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-0.05rem) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--coast);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.92) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 2rem));
  padding: clamp(7.5rem, 12vw, 10rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  color: white;
}

.eyebrow,
.section-kicker,
.series-label,
.book-meta {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #e2c06d;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.04;
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.1rem;
  font-size: clamp(4rem, 13vw, 9.5rem);
}

.hero-copy {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
}

.hero-actions,
.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: white;
}

.button.primary:hover {
  background: #a92c27;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.routes-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  background: var(--paper-bright);
}

.routes-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coast-2), var(--red), transparent);
}

.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--red);
}

.routes-section h2,
.books-section h2,
.newsletter-section h2,
.contact-section h2,
.about-section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.route-card {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  padding: clamp(1.3rem, 3vw, 2.4rem);
  border: 1px solid rgba(23, 27, 24, 0.12);
  border-radius: 8px;
  color: white;
  isolation: isolate;
}

.route-card::before,
.route-card::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 1.4rem 1.4rem;
  z-index: -1;
  height: 42%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  transform: skewY(-5deg);
}

.route-card::after {
  inset: auto 3rem 2.6rem 3rem;
  opacity: 0.58;
}

.walk-route {
  background: linear-gradient(145deg, var(--coast) 0%, var(--moss) 100%);
}

.rock-route {
  background: linear-gradient(145deg, #3a2634 0%, var(--red) 100%);
}

.series-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.35rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.series-label.adam {
  color: var(--red);
}

.route-card h3 {
  max-width: 14em;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.route-card p {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.84);
}

.route-card a {
  position: absolute;
  left: clamp(1.3rem, 3vw, 2.4rem);
  bottom: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 6vw, 5rem);
  background: var(--paper);
}

.about-media {
  position: relative;
  max-width: 28rem;
  justify-self: end;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--coast-2);
}

.about-media img {
  position: relative;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 48rem;
}

.about-copy p,
.book-content p,
.newsletter-panel p,
.contact-intro p,
.books-heading p,
.forthcoming-note {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.books-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #e7eef0;
}

.books-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 27rem);
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}

.series-block + .series-block {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.series-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(23, 27, 24, 0.18);
}

.series-heading h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.series-heading .series-label {
  margin-bottom: 1rem;
  color: var(--coast);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

#adam-books .book-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-card {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(23, 27, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
}

.cover-link {
  display: block;
  transition: transform 180ms ease;
}

.cover-link:hover {
  transform: translateY(-0.25rem) rotate(-1deg);
}

.cover-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 38px rgba(23, 27, 24, 0.22);
}

.book-content {
  min-width: 0;
}

.book-meta {
  margin-bottom: 0.6rem;
  color: var(--blue);
}

.book-content h4 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.book-content p {
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.25rem;
  color: var(--coast);
  font-weight: 850;
}

.forthcoming-note {
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 4px solid var(--red);
}

.newsletter-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 6vw, 5rem);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--primary) 96%, transparent), color-mix(in srgb, var(--primary) 82%, transparent)),
    url("public/assets/hero-illustration.png") center / cover;
  color: white;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1080px, 100%);
  margin: 0 auto;
  align-items: center;
}

.newsletter-panel .section-kicker {
  color: #e2c06d;
}

.newsletter-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter-form label,
.contact-form label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(23, 27, 24, 0.24);
  border-radius: 4px;
  background: var(--paper-bright);
  color: var(--ink);
  padding: 0.78rem 0.9rem;
}

.newsletter-form input {
  flex: 1 1 15rem;
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 6vw, 5rem);
  background: var(--paper-bright);
}

.contact-intro {
  max-width: 30rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row.full,
.contact-form .button,
.contact-form .form-status {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.form-privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  font-weight: 750;
}

.form-status.success {
  color: #d9ffd9;
}

.contact-form .form-status.success {
  color: var(--coast-2);
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 96%, transparent), rgba(23, 27, 24, 0.92)),
    url("public/assets/hero-illustration.png") center / cover;
  color: white;
}

.thank-you-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.thank-you-brand {
  position: absolute;
  top: clamp(1.25rem, 4vw, 2.5rem);
  left: clamp(1.25rem, 4vw, 3.5rem);
}

.thank-you-card {
  width: min(38rem, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.thank-you-card .section-kicker {
  color: var(--coast-2);
}

.thank-you-card h1 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
}

.thank-you-card p:not(.section-kicker) {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.thank-you-card .button {
  margin-top: 2rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 3.5rem);
  background: var(--primary-gradient);
  color: white;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 0.2rem;
}

.site-footer .footer-credit {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.site-footer .footer-credit a {
  color: inherit;
}

.site-footer .footer-credit a:hover {
  color: white;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 1080px) {
  .book-grid,
  #adam-books .book-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --anchor-offset: 7rem;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 4.5rem 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: var(--paper-bright);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem;
  }

  .route-grid,
  .about-section,
  .books-heading,
  .newsletter-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-media {
    justify-self: start;
  }

  .series-heading {
    display: block;
  }
}

@media (max-width: 620px) {
  .brand span:last-child {
    display: none;
  }

  .hero-content {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .route-card {
    min-height: 27rem;
  }

  .book-card {
    grid-template-columns: 8.5rem minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0.8rem;
  }

  .book-content h4 {
    font-size: 1.25rem;
  }

  .book-content p {
    font-size: 0.95rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .book-card {
    grid-template-columns: 1fr;
  }

  .cover-link {
    width: min(11rem, 70%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Client-ready visual refresh */
:root {
  --paper: #f5f3ed;
  --paper-bright: #fcfbf7;
  --ink: #1c2630;
  --muted: #626a73;
  --line: #d8dde2;
  --moss: #596247;
  --red: #a84b3f;
  --ochre: #b57922;
  --blue: #46627f;
  --shelf-blue: #e3e8ed;
  --shadow: 0 24px 60px -28px rgba(38, 56, 74, 0.32);
  --serif: "Libre Caslon Display", Georgia, serif;
  --body-serif: "Libre Caslon Text", Georgia, serif;
  --sans: "Libre Franklin", ui-sans-serif, system-ui, sans-serif;
}

body {
  font-weight: 400;
}

.site-header {
  color: var(--ink);
  padding-block: 1.25rem;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(251, 248, 240, 0.92);
}

.brand {
  font-size: 1.3rem;
}

.brand-mark {
  border: 0;
  background: var(--primary-gradient);
  color: var(--paper-bright);
}

.hero {
  min-height: min(820px, 92svh);
  align-items: center;
  background: #f7f3eb;
}

.hero-image {
  object-position: center;
  filter: none;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(252,251,247,.98) 0%, rgba(252,251,247,.92) 34%, rgba(252,251,247,.22) 64%, transparent 78%);
}

.hero-content {
  width: min(760px, 58vw);
  padding: clamp(8rem, 14vw, 11rem) clamp(2rem, 7vw, 7rem) clamp(5rem, 8vw, 7rem);
  color: var(--ink);
}

.eyebrow {
  color: var(--coast-2);
}

h1 {
  max-width: 8ch;
  margin-bottom: 1.4rem;
  color: var(--coast);
  font-size: clamp(4.5rem, 10vw, 8.8rem);
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 34rem;
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.65;
}

.button {
  min-height: 3.25rem;
  padding-inline: 1.35rem;
  border-radius: 3px;
  letter-spacing: 0;
  text-transform: none;
}

.button.primary {
  background: var(--primary-gradient);
}

.button.primary:hover {
  background: var(--primary-gradient-hover);
}

.button.secondary {
  border-color: #cabfa9;
  color: var(--ink);
}

.button.secondary:hover {
  background: #efe7d6;
}

.section-inner {
  width: min(1240px, calc(100% - clamp(2rem, 8vw, 8rem)));
}

.routes-section,
.about-section,
.newsletter-section,
.contact-section,
.books-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.routes-section h2,
.books-section h2,
.newsletter-section h2,
.contact-section h2,
.about-section h2 {
  letter-spacing: -0.025em;
}

.route-grid {
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.route-card {
  min-height: 24rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 0;
  border-radius: 6px;
}

.walk-route {
  background: linear-gradient(145deg, var(--primary), color-mix(in srgb, var(--primary), white 25%));
}

.rock-route {
  background: linear-gradient(145deg, #315d78, #537d92);
}

.route-card::before,
.route-card::after {
  opacity: .22;
}

.route-card h3 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.route-card p,
.about-copy p,
.books-heading p,
.newsletter-panel p,
.contact-intro p,
.forthcoming-note {
  font-family: var(--body-serif);
  line-height: 1.7;
}

.about-section {
  background: var(--paper-bright);
}

.about-media::before {
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border-color: #9eacba;
}

.about-media img {
  border-radius: 5px;
}

.books-section {
  background: var(--shelf-blue);
  color: var(--ink);
}

.books-section .section-kicker,
.books-section .books-heading p {
  color: var(--muted);
}

.books-heading {
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.series-block + .series-block {
  margin-top: clamp(4.5rem, 8vw, 7rem);
}

.series-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 32rem);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
  border-radius: 8px;
  background: rgba(255,255,255,.42);
}

.series-heading h3 {
  margin: .3rem 0 0;
  color: var(--coast);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.025em;
}

.series-heading p {
  margin: 0;
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: 1.05rem;
  line-height: 1.65;
}

.series-number {
  color: var(--coast-2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.book-grid,
#adam-books .book-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

#adam-books .book-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

.book-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.cover-link {
  width: min(100%, 250px);
  margin-bottom: 1.7rem;
}

.cover-link img {
  border-radius: 3px;
  box-shadow: 0 28px 55px -22px rgba(38, 56, 74, .42);
}

.book-content {
  width: 100%;
}

.book-meta {
  color: var(--blue);
}

.book-content h4 {
  margin-bottom: .75rem;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.book-content .book-deck {
  max-width: 28rem;
  min-height: 3.6em;
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--body-serif);
  line-height: 1.6;
}

.book-details {
  border-top: 1px solid rgba(24,36,38,.18);
}

.book-details summary {
  padding: .9rem 0;
  color: var(--coast);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}

.book-details[open] summary {
  margin-bottom: .35rem;
}

.book-details p {
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: .94rem;
  line-height: 1.65;
}

.text-link {
  margin-top: .65rem;
  color: var(--coast);
  font-size: .88rem;
}

.text-link span[aria-hidden="true"] {
  display: inline-block;
  margin-left: .15rem;
  transition: transform .2s ease;
}

.text-link:hover span[aria-hidden="true"] {
  transform: translate(2px, -2px);
}

.forthcoming-note {
  max-width: 820px;
  color: var(--muted);
  border-color: var(--coast-2);
}

.newsletter-section {
  background: var(--primary-gradient);
}

.newsletter-panel .section-kicker {
  color: #d2d9e2;
}

/* Dedicated page layouts */
.inner-page .site-header {
  background: rgba(252, 251, 247, 0.94);
  box-shadow: 0 1px 0 rgba(24, 36, 38, 0.08);
}

.site-nav a[aria-current="page"] {
  color: var(--red);
}

.page-intro {
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: var(--paper-bright);
}

.page-intro .section-inner {
  max-width: 940px;
  margin: 0 auto;
}

.page-intro h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--coast);
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.98;
}

.page-intro p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
}

/* Dark editorial intros for the primary pages. Sparse fog gives the titles
   atmosphere without introducing decorative shapes. */
.books-page .site-header,
.author-page .site-header,
.contact-page .site-header,
.newsletter-page .site-header {
  background: rgba(7, 15, 23, 0.78);
  color: #fffdf7;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.books-page .site-nav a[aria-current="page"],
.author-page .site-nav a[aria-current="page"],
.contact-page .site-nav a[aria-current="page"] {
  color: #f0c58c;
}

.books-page .page-intro,
.author-page .page-intro,
.contact-page .page-intro,
.newsletter-page .page-intro {
  --intro-accent: #c27859;
  --intro-accent-soft: rgba(194, 120, 89, 0.27);
  position: relative;
  isolation: isolate;
  min-height: clamp(25rem, 46vw, 35rem);
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 65% 74% at 88% 106%, var(--intro-accent-soft), transparent 76%),
    radial-gradient(ellipse 57% 48% at 18% -14%, rgba(75, 94, 108, 0.38), transparent 73%),
    linear-gradient(112deg, rgba(4, 11, 18, 0.99) 0%, rgba(9, 21, 31, 0.97) 52%, rgba(13, 29, 39, 0.94) 100%);
  color: #fffdf7;
}

.author-page .page-intro {
  --intro-accent: #91aebe;
  --intro-accent-soft: rgba(145, 174, 190, 0.3);
}

.contact-page .page-intro {
  --intro-accent: #d29470;
  --intro-accent-soft: rgba(210, 148, 112, 0.3);
}

.newsletter-page .page-intro {
  --intro-accent: #a7b992;
  --intro-accent-soft: rgba(167, 185, 146, 0.28);
}

.books-page .page-intro::before,
.author-page .page-intro::before,
.contact-page .page-intro::before,
.newsletter-page .page-intro::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -42% -18% -12% 18%;
  background:
    radial-gradient(ellipse at 18% 68%, rgba(52, 69, 83, 0.74), transparent 27%),
    radial-gradient(ellipse at 39% 53%, rgba(37, 53, 67, 0.72), transparent 30%),
    radial-gradient(ellipse at 59% 62%, rgba(67, 83, 97, 0.5), transparent 29%),
    radial-gradient(ellipse at 82% 45%, rgba(29, 44, 57, 0.82), transparent 34%);
  filter: blur(clamp(1.8rem, 4vw, 4.5rem));
  opacity: 0.94;
  transform: scale(1.08);
}

.books-page .page-intro::after,
.author-page .page-intro::after,
.contact-page .page-intro::after,
.newsletter-page .page-intro::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 38% 26% -46% -28%;
  background:
    radial-gradient(ellipse at 13% 54%, rgba(40, 56, 70, 0.72), transparent 29%),
    radial-gradient(ellipse at 39% 39%, rgba(73, 89, 101, 0.42), transparent 31%),
    radial-gradient(ellipse at 64% 58%, rgba(29, 44, 57, 0.75), transparent 33%),
    radial-gradient(ellipse at 86% 37%, var(--intro-accent-soft), transparent 36%);
  filter: blur(clamp(2rem, 4.5vw, 5rem));
  opacity: 0.78;
  transform: scale(1.12);
}

.books-page .page-intro .section-inner,
.author-page .page-intro .section-inner,
.contact-page .page-intro .section-inner,
.newsletter-page .page-intro .section-inner {
  position: relative;
  z-index: 1;
}

.books-page .page-intro .section-kicker,
.author-page .page-intro .section-kicker,
.contact-page .page-intro .section-kicker,
.newsletter-page .page-intro .section-kicker {
  color: var(--intro-accent);
}

.books-page .page-intro h1,
.author-page .page-intro h1,
.contact-page .page-intro h1,
.newsletter-page .page-intro h1 {
  color: #fffdf7;
  text-wrap: balance;
}

.books-page .page-intro p:last-child,
.author-page .page-intro p:last-child,
.contact-page .page-intro p:last-child,
.newsletter-page .page-intro p:last-child {
  color: rgba(255, 253, 247, 0.78);
}

.home-feature-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--paper-bright);
}

.home-feature-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  max-width: 940px;
}

.home-feature-cover .cover-link {
  width: 100%;
  margin: 0;
}

.home-feature-copy {
  max-width: 39rem;
}

.home-feature-copy h2,
.works-section h2 {
  margin-bottom: 1rem;
  color: var(--coast);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: -0.03em;
}

.home-feature-copy p:not(.section-kicker),
.works-layout > p {
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: 1.1rem;
  line-height: 1.7;
}

.works-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--primary-gradient);
  color: white;
}

.works-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
}

.works-section .section-kicker {
  color: #d2d9e2;
}

.works-section h2 {
  margin-bottom: 0;
  color: white;
}

.works-layout > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.author-page-section {
  min-height: 35rem;
}

.author-page-section .about-copy {
  font-size: 1.2rem;
}

.author-page-section .button {
  margin-top: 1rem;
}

.newsletter-page-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background:
    radial-gradient(ellipse 58% 105% at 100% 0%, rgba(151, 177, 153, .2), transparent 72%),
    radial-gradient(ellipse 48% 92% at 0% 100%, rgba(194, 120, 89, .1), transparent 74%),
    linear-gradient(124deg, #f3f4ec 0%, #e9ece2 52%, #e2e7dc 100%);
}

.newsletter-page-section .newsletter-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(221, 229, 234, .16);
  background:
    radial-gradient(ellipse 62% 110% at 100% 0%, rgba(151, 177, 153, .14), transparent 72%),
    rgba(8, 16, 14, .4);
  box-shadow: 0 1.25rem 3rem rgba(4, 11, 15, .22);
}

/* Keep the third-party signup embed visually continuous with its dark panel. */
.newsletter-page-section .formkit-form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.contact-page-section {
  min-height: 38rem;
}

.book-content h3 {
  min-height: 2.4em;
  margin-bottom: .65rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.series-heading h2 {
  max-width: 13ch;
  margin: .4rem 0 0;
  color: var(--coast);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.025em;
}

#walk-books .series-heading h2 {
  max-width: none;
  color: var(--walk-accent);
  font-family: var(--walk-display);
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: .01em;
  text-transform: uppercase;
}

#adam-books .series-heading h2 {
  color: #f4efe5;
  font-family: var(--sans);
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  font-style: italic;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.05em;
}

#walk-books .book-content h3 {
  color: var(--walk-ink);
}

#adam-books .book-content h3 {
  color: #f4efe5;
}

@media (max-width: 820px) {
  .home-feature-layout,
  .works-layout {
    grid-template-columns: 1fr;
  }

  .home-feature-cover .cover-link {
    width: min(15rem, 65vw);
  }

  .page-intro {
    padding-top: 8rem;
  }
}

.contact-section {
  background: var(--paper);
}

.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 3px;
}

@media (max-width: 900px) {
  .book-grid,
  #adam-books .book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header { color: var(--ink); }
  .hero { align-items: start; }
  .hero-image { object-position: 58% bottom; }
  .series-heading { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(4rem, 21vw, 6rem); }
  .section-inner { width: min(100% - 2rem, 1240px); }
  .book-grid,
  #adam-books .book-grid { grid-template-columns: 1fr; gap: 4rem; }
  .cover-link { width: min(13rem, 70%); }
  .book-content .book-deck { min-height: 0; }
}

/* Books: two series, two distinct visual worlds */
.books-section {
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 6.5rem) 0;
  background: #f7f4ec;
}

.books-heading {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.books-heading h2 {
  margin-bottom: 0;
}

.series-block {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.series-block::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
}

#walk-books::before {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .45), transparent 28rem),
    var(--walk-surface);
}

#adam-books::before {
  background:
    radial-gradient(ellipse 58% 105% at 100% 0%, rgba(78, 119, 145, .24), transparent 72%),
    radial-gradient(ellipse 48% 92% at 0% 100%, rgba(194, 120, 89, .14), transparent 74%),
    linear-gradient(124deg, #263139 0%, #1b2227 48%, #11171b 100%);
}

.series-block + .series-block {
  margin-top: 0;
}

.series-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding: 0 0 1.5rem;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  border-radius: 0;
  background: transparent;
}

.series-heading h3 {
  max-width: 13ch;
  margin-top: .4rem;
}

.book-grid,
#adam-books .book-grid {
  gap: clamp(2rem, 4vw, 4.25rem);
}

.cover-link {
  width: min(100%, 275px);
  margin-bottom: 1.35rem;
}

.book-content h4 {
  margin-bottom: .65rem;
}

.book-content .book-deck {
  margin-bottom: 1.1rem;
}

#adam-books {
  display: grid;
  grid-template-columns: minmax(15rem, .72fr) minmax(0, 2fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(3rem, 7vw, 7rem);
  color: #f4efe5;
}

#adam-books .series-heading {
  display: block;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: 0;
  padding: 0 0 1.75rem;
  border-bottom-color: rgba(244, 239, 229, .28);
}

#adam-books .series-heading h3 {
  color: #f4efe5;
}

#adam-books .series-heading p {
  margin-top: 1.25rem;
  color: rgba(244, 239, 229, .7);
}

#adam-books .series-number {
  color: #df9a8e;
}

#adam-books .book-grid {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: none;
}

#adam-books .book-content .book-deck,
#adam-books .book-details p {
  color: rgba(244, 239, 229, .7);
}

#adam-books .book-details {
  border-top-color: rgba(244, 239, 229, .24);
}

#adam-books .book-details summary,
#adam-books .text-link {
  color: #c2d0e0;
}

#adam-books .forthcoming-note {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 1.5rem;
  padding-left: 0;
  border: 0;
  color: rgba(244, 239, 229, .62);
  font-size: .96rem;
}

@media (max-width: 900px) {
  #adam-books {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  #adam-books .series-heading,
  #adam-books .book-grid,
  #adam-books .forthcoming-note {
    grid-column: 1;
    grid-row: auto;
  }

  #adam-books .series-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
    gap: 2rem;
    margin-bottom: 3rem;
  }

  #adam-books .series-heading p {
    margin-top: 0;
  }

  #adam-books .forthcoming-note {
    margin-top: 2rem;
  }
}

@media (max-width: 700px) {
  .series-heading,
  #adam-books .series-heading {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .series-heading p,
  #adam-books .series-heading p {
    margin-top: .5rem;
  }
}

@media (max-width: 620px) {
  .books-section {
    padding-top: 3.5rem;
  }

  .books-heading {
    margin-bottom: 2.5rem;
  }

  .series-block {
    padding-block: 3.5rem;
  }

  .book-grid,
  #adam-books .book-grid {
    gap: 3.5rem;
  }

  .cover-link {
    width: min(14rem, 72%);
  }
}

/* Connect the bookshelf heading to its two contained series */
.books-section {
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  background: #f2eee4;
}

.books-heading {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 27rem);
  margin-bottom: 1.5rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid #d1c9b9;
}

.books-title-group {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.books-title-group > div {
  flex: 1 1 auto;
  min-width: 0;
}

.books-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.bookshelf-icon {
  flex: 0 0 auto;
  width: clamp(5.5rem, 8vw, 7.5rem);
  height: auto;
  color: var(--coast);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.series-index {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  margin-top: .5rem;
}

.series-index a {
  display: inline-flex;
  align-items: baseline;
  gap: .65rem;
  color: var(--coast);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.series-index a::after {
  content: "\2198";
  font-size: .9em;
  transition: transform 160ms ease;
}

.series-index a:hover::after {
  transform: translateY(.18rem);
}

.series-index span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .12em;
}

.series-block {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3.5rem);
}

.series-block::before {
  inset: 0;
  width: auto;
  margin-left: 0;
  border: 1px solid rgba(24, 36, 38, .1);
  border-radius: 7px;
  box-shadow: 0 24px 60px -45px rgba(24, 36, 38, .45);
}

.series-block + .series-block {
  margin-top: 1.5rem;
}

#walk-books .series-heading {
  display: block;
  border-bottom-color: var(--walk-line);
}

#walk-books .series-heading h3 {
  max-width: none;
}

#walk-books .series-heading p {
  max-width: 46rem;
  margin-top: 1.15rem;
}

/* Cover-inspired typography belongs to the series introductions only */
#walk-books .series-heading h3 {
  color: var(--walk-accent);
  font-family: var(--walk-display);
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: .01em;
  text-transform: uppercase;
}

#walk-books .series-heading p {
  color: var(--walk-muted);
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .01em;
}

#walk-books .series-number,
#walk-books .book-details summary,
#walk-books .text-link {
  color: var(--walk-accent);
}

#walk-books .book-content h4 {
  color: var(--walk-ink);
}

#walk-books .book-content .book-deck,
#walk-books .book-details p {
  color: var(--walk-muted);
}

#walk-books .book-details {
  border-top-color: var(--walk-line);
}

#adam-books .series-heading h3 {
  font-family: var(--sans);
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  font-style: italic;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.05em;
}

#adam-books .series-heading p {
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .01em;
}

/* Restore the original outlined monogram and a clear scroll-state bar */
.brand-mark {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.site-header {
  color: var(--ink);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: color-mix(in srgb, var(--primary) 96%, transparent);
  color: #fffdf7;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .12), 0 10px 30px rgba(24, 36, 38, .12);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.menu-active .site-nav a:hover {
  color: #f0c58c;
}

@media (max-width: 820px) {
  .books-heading {
    grid-template-columns: 1fr;
  }

  .site-header.is-scrolled,
  .site-header.menu-active {
    color: #fffdf7;
  }

  .site-header.menu-active .site-nav {
    color: var(--ink);
  }
}

@media (max-width: 620px) {
  .books-heading {
    margin-bottom: 1rem;
  }

  .bookshelf-icon {
    width: clamp(3.75rem, 18vw, 5.5rem);
  }

  .series-index {
    display: grid;
    gap: .8rem;
  }

  .series-block {
    padding-inline: 1rem;
  }
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.15rem, 5.8vw, 5.8rem);
  line-height: .99;
}

.hero-content {
  width: min(840px, 62vw);
  margin-left: clamp(1rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.hero h1 {
  max-width: none;
  font-size: clamp(3rem, 4.25vw, 4.25rem);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .hero {
    padding-inline: 1rem;
  }

  .hero-content {
    width: 100%;
    margin: 6.5rem 0 0;
    padding: 2rem 1.5rem;
  }
}

.hero .button.secondary {
  min-width: 10.25rem;
  background: rgba(252, 251, 247, .96);
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
}

.hero .button.secondary:hover {
  background: #e8e0d2;
  border-color: var(--coast);
  transform: translateY(-2px);
}

.brand {
  font-size: 1.45rem;
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  font-size: .86rem;
  letter-spacing: .1em;
}

.newsletter-form .button.primary {
  min-width: 10.75rem;
  background: var(--paper-bright);
  border-color: var(--paper-bright);
  color: var(--coast);
}

.newsletter-form .button.primary:hover {
  background: #e2e7ed;
  border-color: #e2e7ed;
}

/* Client-preview signup shown while the Kit embed is disabled. */
.newsletter-preview-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: flex-start;
}

.newsletter-preview-form input {
  flex: 1 1 15rem;
}

.newsletter-preview-form .form-status {
  flex-basis: 100%;
  margin-top: 0;
}

/* Footer keeps reader profiles visible without duplicating the main navigation. */
.site-footer {
  align-items: center;
  gap: 1.5rem;
}

.footer-socials {
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer .social-link:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.social-icon {
  display: block;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-icon-amazon {
  width: 0.92rem;
}

.social-icon-goodreads {
  display: inline-grid;
  width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 620px) {
  .footer-socials {
    gap: 0.5rem;
  }
}

/* Kit newsletter form: retain the site's inline form treatment. */
.newsletter-kit-form .formkit-form[data-uid="c097800840"] {
  max-width: none !important;
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] [data-style="clean"] {
  padding: 0 !important;
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-fields {
  gap: 0.8rem;
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-field,
.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-submit {
  flex: 1 1 auto !important;
  margin: 0 !important;
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-field {
  min-width: min(100%, 15rem);
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-input {
  min-height: 3rem;
  border-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 3px !important;
  color: var(--ink) !important;
  font: inherit !important;
  padding: 0.78rem 0.9rem !important;
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-submit {
  min-width: 10.75rem;
  border: 1px solid var(--paper-bright) !important;
  border-radius: 3px !important;
  background: var(--paper-bright) !important;
  color: var(--coast) !important;
  font: inherit !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-submit > span {
  padding: 0.78rem 1.15rem !important;
}

.newsletter-kit-form .formkit-form[data-uid="c097800840"] .formkit-powered-by-convertkit-container {
  display: none !important;
}


/* Phone hero: preserve a clear visual hierarchy without forcing the display
   headline past the viewport edge. The desktop line breaks remain deliberate;
   at phone widths the words may wrap naturally. */
@media (max-width: 820px) {
  .hero {
    min-height: min(720px, 88svh);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(252, 251, 247, 0.9) 0%,
      rgba(252, 251, 247, 0.72) 45%,
      rgba(252, 251, 247, 0.16) 74%,
      rgba(252, 251, 247, 0) 86%
    );
  }
}

@media (max-width: 620px) {
  .about-media::before {
    /* Keep the offset frame inside the viewport on the single-column layout. */
    inset: 1rem 0 -1rem 1rem;
  }

  .hero-content {
    padding-inline: 1.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 9vw, 2.75rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .hero h1 span {
    display: inline;
    white-space: normal;
  }

  .hero h1 span + span::before {
    content: " ";
  }

  .hero-copy {
    max-width: 31rem;
    font-size: clamp(1.15rem, 4.7vw, 1.3rem);
    line-height: 1.55;
  }
}

/* Keep every book's closed card rhythm consistent, regardless of title length. */
.book-content {
  display: grid;
  grid-template-rows: minmax(2.4em, auto) minmax(3.2em, auto) auto auto;
  align-content: start;
}

.book-content h4 {
  min-height: 2.4em;
}

.book-content .book-deck {
  min-height: 3.2em;
}

@media (max-width: 620px) {
  /* On a single-column shelf the rule looks like the next book begins here. */
  .book-details {
    border-top: 0;
    margin-top: .15rem;
  }

  .book-details summary {
    padding: .55rem 0 .7rem;
  }

  .text-link {
    margin-top: .45rem;
  }
}

/* Structural labels use the site's warm editorial accent; series labels retain their own identities. */
.eyebrow,
.section-kicker,
.books-section .section-kicker,
.thank-you-card .section-kicker {
  color: var(--red);
}

/* The dark newsletter panel needs the inverse treatment for contrast. */
.newsletter-panel .section-kicker {
  color: #d2d9e2;
}

/* Final home hero treatment, after responsive overrides. */
body:not(.inner-page) .site-header {
  color: #fffdf7;
}

.hero-image {
  filter: brightness(0.88) saturate(0.88) contrast(1.08);
}

.hero-overlay {
  background:
    radial-gradient(ellipse 46% 38% at 74% 80%, rgba(32, 48, 61, 0.5), transparent 72%),
    radial-gradient(ellipse 42% 34% at 29% 90%, rgba(48, 65, 77, 0.42), transparent 74%),
    radial-gradient(ellipse 35% 27% at 60% 50%, rgba(64, 81, 92, 0.25), transparent 76%),
    linear-gradient(90deg, rgba(6, 14, 22, 0.7) 0%, rgba(10, 21, 31, 0.54) 42%, rgba(10, 21, 31, 0.18) 74%, rgba(6, 14, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 14, 22, 0.28), transparent 48%);
}

.hero h1 {
  color: #fffdf7;
}

.hero .eyebrow {
  color: #eccf8a;
}

.hero-copy {
  color: rgba(255, 253, 247, 0.84);
}

.hero .button.primary {
  background: #c27859;
}

.hero .button.primary:hover {
  background: #d18c6c;
}

/* The newsletter is the header's primary reader action. */
.site-nav .newsletter-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.95rem;
  border-radius: 0;
  background: #c27859;
  color: #fffdf7;
  box-shadow: 0 0.3rem 0.8rem rgba(18, 31, 43, 0.2);
  letter-spacing: 0.1em;
  line-height: 1;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav .newsletter-nav:hover {
  background: #d18c6c;
  color: #fffdf7;
  box-shadow: 0 0.5rem 1rem rgba(18, 31, 43, 0.26);
  transform: translateY(-1px);
}

.site-nav .newsletter-nav[aria-current="page"] {
  background: #a9553e;
  color: #fffdf7;
}

@media (max-width: 820px) {
  .site-nav .newsletter-nav {
    width: 100%;
    min-height: 3rem;
  }
}

/* Homepage bookshelf: each series has its own little world, while every
   published title stays visible and easy to choose. */
.home-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 1.65rem;
}

.home-feature-actions .button.primary {
  background: var(--primary-gradient);
}

.home-feature-actions .button.primary:hover {
  background: var(--primary-gradient-hover);
}

.home-feature-actions .text-link {
  margin-top: 0;
}

.book-shelf {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(ellipse at 86% 8%, rgba(119, 142, 151, .2), transparent 38rem),
    linear-gradient(135deg, #17232c, #24333d 56%, #1b2933);
  color: #f4f0e7;
}

.book-shelf-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.book-shelf .section-kicker {
  margin-bottom: .65rem;
  color: #e5c77f;
}

.book-shelf h2 {
  max-width: none;
  margin: 0;
  color: #fffdf7;
  font-size: clamp(2.3rem, 3.7vw, 3.75rem);
  line-height: 1.01;
  letter-spacing: -0.03em;
}

.book-shelf-heading > p {
  max-width: 34rem;
  margin: 0;
  color: rgba(244, 240, 231, .76);
  font-family: var(--body-serif);
  font-size: 1.05rem;
  line-height: 1.6;
}

.shelf-series {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(222, 229, 216, .18);
  background:
    radial-gradient(ellipse 58% 100% at 100% 0%, rgba(182, 197, 166, .16), transparent 72%),
    linear-gradient(132deg, #39463f 0%, #29352f 52%, #202a27 100%);
  box-shadow: 0 1rem 2.25rem rgba(4, 11, 15, .18);
}

.shelf-series + .shelf-series {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.shelf-series-intro {
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 2px solid #c7b675;
}

.shelf-series-number {
  margin-bottom: .55rem;
  color: #dfca8b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.shelf-series-intro h3 {
  margin-bottom: .85rem;
  color: #fffdf7;
  font-family: var(--walk-display);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.shelf-series-intro > p:not(.shelf-series-number) {
  margin-bottom: 1.1rem;
  color: rgba(244, 240, 231, .7);
  font-family: var(--body-serif);
  font-size: .98rem;
  line-height: 1.6;
}

.shelf-series-intro .text-link {
  color: #ead79e;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shelf-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
}

.book-tile {
  display: block;
  min-width: 0;
  color: #fffdf7;
  text-decoration: none;
  transition: color 180ms ease;
}

.book-tile:hover {
  color: #fffdf7;
}

.book-tile-cover {
  display: block;
  overflow: hidden;
  margin-bottom: .9rem;
  border: .35rem solid #f7f4ec;
  border-radius: 0;
  box-shadow: 0 .8rem 1.75rem rgba(4, 11, 15, .42);
  background: #fffdf7;
}

.book-tile-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 250ms ease;
}

.book-tile:hover .book-tile-cover img {
  transform: scale(1.035);
}

.book-tile-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.05;
}

.book-tile-action {
  display: block;
  margin-top: .45rem;
  color: #d9c58c;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shelf-adam {
  border-color: rgba(221, 229, 234, .16);
  background:
    radial-gradient(ellipse 58% 105% at 100% 0%, rgba(78, 119, 145, .24), transparent 72%),
    radial-gradient(ellipse 48% 92% at 0% 100%, rgba(194, 120, 89, .14), transparent 74%),
    linear-gradient(124deg, #263139 0%, #1b2227 48%, #11171b 100%);
}

.shelf-adam .shelf-series-number,
.shelf-adam .shelf-series-intro .text-link,
.shelf-adam .book-tile-action {
  color: var(--red);
}

.shelf-adam .shelf-series-intro {
  border-left-color: #cf856f;
}

.shelf-adam .shelf-series-intro h3 {
  color: #fffdf7;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.05em;
  text-transform: none;
}

.shelf-adam .shelf-series-intro > p:not(.shelf-series-number) {
  color: rgba(244, 240, 231, .7);
}

.shelf-adam .shelf-tiles {
  grid-template-columns: repeat(2, minmax(0, min(14rem, 1fr)));
  justify-content: start;
}

.shelf-adam .book-tile {
  color: #fffdf7;
}

.shelf-adam .book-tile:hover {
  color: #fffdf7;
}

.shelf-adam .book-tile-cover {
  border-radius: 0;
}

.home-newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 820px) {
  .shelf-series {
    grid-template-columns: 1fr;
  }

  .shelf-series-intro {
    max-width: 36rem;
  }

  .shelf-tiles {
    max-width: 46rem;
  }
}

@media (max-width: 620px) {
  .home-feature-actions .button,
  .home-feature-actions .text-link {
    width: 100%;
  }

  .home-feature-actions .text-link {
    justify-content: center;
  }

  .shelf-series {
    padding: 1.5rem;
  }

  .shelf-tiles,
  .shelf-adam .shelf-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

}

/* Final palette unification: the warm paper pages and mineral-dark panels
   derive from the same small set of tones while retaining their gradients. */
:root {
  --paper: #f5f2eb;
  --paper-bright: #fffdf8;
  --ink: #17212a;
  --muted: #5d6970;
  --line: #d8ddd8;
  --primary: #11171b;
  --primary-hover: #0b1013;
  --primary-light: #263139;
  --primary-gradient: linear-gradient(135deg, #263139 0%, #1b2227 52%, #11171b 100%);
  --primary-gradient-hover: linear-gradient(135deg, #1f2a30 0%, #151c20 52%, #0b1013 100%);
  --coast: #17212a;
  --coast-2: #31434c;
  --walk-surface: #e7ebe2;
  --walk-accent: #526454;
  --walk-ink: #2d3931;
  --walk-muted: #61705f;
  --walk-line: rgba(82, 100, 84, 0.28);
  --red: #c27859;
  --ochre: #e5c77f;
  --blue: #7898a7;
  --shadow: 0 24px 60px -30px rgba(17, 27, 33, 0.3);
}

body {
  background: var(--paper);
  color: var(--ink);
}

.hero-image {
  filter: brightness(0.9) saturate(0.8) contrast(1.02);
}

.home-feature-section,
.about-section,
.contact-section {
  background: var(--paper-bright);
}

.books-section {
  background: #f2eee5;
}

.book-shelf,
body:not(.inner-page) .newsletter-section,
.site-footer {
  background: var(--primary-gradient);
}

.shelf-series {
  box-shadow: 0 1.15rem 2.5rem rgba(8, 15, 19, 0.24);
  background:
    radial-gradient(ellipse 60% 105% at 100% 0%, rgba(151, 177, 153, .18), transparent 72%),
    radial-gradient(ellipse 46% 88% at 0% 100%, rgba(194, 120, 89, .1), transparent 74%),
    linear-gradient(132deg, #35463d 0%, #26352e 52%, #1b2823 100%);
}

.book-tile-cover {
  border-color: var(--paper-bright);
  background: var(--paper-bright);
}

.newsletter-page-section .newsletter-panel,
.thank-you-card {
  border-color: rgba(221, 229, 234, 0.18);
}

.thank-you-page {
  background:
    radial-gradient(ellipse 65% 80% at 85% 0%, rgba(78, 119, 145, 0.22), transparent 72%),
    radial-gradient(ellipse 52% 70% at 10% 100%, rgba(194, 120, 89, 0.14), transparent 74%),
    var(--primary-gradient);
}

body:not(.inner-page) .home-newsletter {
  background:
    radial-gradient(ellipse 58% 105% at 100% 0%, rgba(151, 177, 153, .22), transparent 72%),
    radial-gradient(ellipse 48% 92% at 0% 100%, rgba(194, 120, 89, .12), transparent 74%),
    linear-gradient(124deg, #31443a 0%, #223229 52%, #16231d 100%);
}

.home-newsletter .newsletter-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(221, 229, 234, .16);
  background:
    radial-gradient(ellipse 62% 110% at 100% 0%, rgba(174, 196, 171, .14), transparent 72%),
    rgba(8, 19, 14, .5);
  box-shadow: 0 1.25rem 3rem rgba(4, 11, 15, .22);
}

.book-shelf {
  background:
    radial-gradient(ellipse 52% 68% at 96% 4%, rgba(151, 177, 153, .2), transparent 74%),
    radial-gradient(ellipse 45% 62% at 0% 100%, rgba(194, 120, 89, .08), transparent 76%),
    linear-gradient(180deg, #f5f4ed 0%, #e6ece1 100%);
  color: var(--ink);
}

.book-shelf .section-kicker {
  color: var(--walk-accent);
}

.book-shelf h2 {
  color: var(--ink);
}

.book-shelf-heading > p {
  color: var(--muted);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  image-rendering: auto;
}

/* Newsletter hub: a signup moment with a companion editorial journal. */
.newsletter-intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.newsletter-page .page-intro .button.primary {
  background: var(--red);
  color: #fffdf8;
}

.newsletter-page .page-intro .button.primary:hover {
  background: #d18c6c;
}

.journal-jump {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 253, 248, .82);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.journal-jump span {
  color: var(--ochre);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.journal-jump:hover {
  color: #fffdf8;
}

.journal-jump:hover span {
  transform: translateY(.2rem);
}

.newsletter-page-section .newsletter-panel {
  align-items: start;
}

.newsletter-signup-copy h2 {
  color: #fffdf8;
}

.newsletter-topics {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  margin: 1.65rem 0 1.5rem;
  list-style: none;
}

.newsletter-topics li {
  padding: .5rem .7rem;
  border: 1px solid rgba(226, 235, 237, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 253, 248, .88);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.newsletter-details {
  max-width: 38rem;
  border-top: 1px solid rgba(226, 235, 237, .18);
  color: rgba(255, 253, 248, .76);
}

.newsletter-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: #fffdf8;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  list-style: none;
}

.newsletter-details summary::-webkit-details-marker {
  display: none;
}

.newsletter-details summary::after {
  content: "+";
  color: var(--ochre);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.newsletter-details[open] summary::after {
  content: "−";
}

.newsletter-details p {
  margin-bottom: 1rem;
}

.journal-preview {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(ellipse 48% 55% at 98% 4%, rgba(120, 152, 167, .14), transparent 74%),
    linear-gradient(180deg, #f5f2eb 0%, #ebe8df 100%);
}

.journal-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, .65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.journal-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -.04em;
}

.journal-heading > div:last-child > p {
  max-width: 29rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: 1.05rem;
  line-height: 1.65;
}

.journal-heading .text-link {
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.7rem);
}

.journal-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  min-height: clamp(19rem, 29vw, 25rem);
  padding: clamp(1.5rem, 3vw, 2.35rem);
  overflow: hidden;
  color: #fffdf8;
  text-decoration: none;
  box-shadow: 0 1.2rem 2.6rem rgba(17, 27, 33, .16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.journal-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 15rem;
  aspect-ratio: 1;
  right: -5rem;
  bottom: -7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  filter: blur(.25rem);
}

.journal-card:hover {
  transform: translateY(-.35rem);
  box-shadow: 0 1.65rem 3rem rgba(17, 27, 33, .24);
}

.journal-trails {
  background:
    radial-gradient(ellipse 75% 80% at 100% 0%, rgba(196, 211, 177, .2), transparent 72%),
    linear-gradient(138deg, #3d4d43 0%, #293830 58%, #1c2823 100%);
}

.journal-records {
  background:
    radial-gradient(ellipse 65% 80% at 100% 0%, rgba(118, 159, 188, .26), transparent 72%),
    radial-gradient(ellipse 55% 65% at 0% 100%, rgba(194, 120, 89, .2), transparent 75%),
    linear-gradient(138deg, #263943 0%, #1b252b 58%, #11191d 100%);
}

.journal-desk {
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(229, 199, 127, .2), transparent 72%),
    linear-gradient(138deg, #3b332c 0%, #29241f 58%, #1b1917 100%);
}

.journal-card-number,
.journal-card-kicker,
.journal-card-link {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.journal-card-number {
  color: rgba(255, 253, 248, .55);
}

.journal-card-kicker {
  margin-top: auto;
  color: var(--ochre);
}

.journal-card strong {
  max-width: 10ch;
  margin: .65rem 0 .85rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.04em;
}

.journal-card > span:not(.journal-card-number):not(.journal-card-kicker):not(.journal-card-link) {
  max-width: 25ch;
  color: rgba(255, 253, 248, .76);
  font-family: var(--body-serif);
  line-height: 1.55;
}

.journal-card-link {
  margin-top: 1.6rem;
  color: #fffdf8;
}

.journal-card-link span {
  color: var(--ochre);
}

@media (max-width: 820px) {
  .journal-heading,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-heading {
    gap: 1.25rem;
  }

  .journal-heading h2 {
    max-width: 11ch;
  }

  .journal-grid {
    max-width: 38rem;
  }

  .journal-card {
    min-height: 18rem;
  }
}

/* A deliberately simple Newsletter and Blog destination. */
.blog-jump {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 0;
  color: rgba(255, 253, 248, .82);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-jump:hover {
  color: #fffdf8;
}

.blog-jump span {
  color: var(--ochre);
  font-size: 1.2rem;
  line-height: 1;
}

.newsletter-note {
  margin: 1.35rem 0 0;
  color: rgba(255, 253, 248, .66) !important;
  font-size: .92rem;
  font-style: italic;
}

.blog-preview {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(ellipse 52% 65% at 95% 8%, rgba(150, 177, 151, .18), transparent 74%),
    linear-gradient(180deg, #f6f3eb 0%, #e9ece3 100%);
}

.blog-panel {
  display: grid;
  grid-template-columns: minmax(10rem, .4fr) minmax(22rem, 1.25fr) auto;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(221, 229, 234, .16);
  background:
    radial-gradient(ellipse 56% 100% at 100% 0%, rgba(128, 159, 138, .27), transparent 72%),
    radial-gradient(ellipse 46% 85% at 0% 100%, rgba(194, 120, 89, .13), transparent 74%),
    linear-gradient(135deg, #293832 0%, #1b2622 52%, #101817 100%);
  box-shadow: 0 1.3rem 3rem rgba(17, 27, 33, .18);
  color: #fffdf8;
}

.blog-panel .section-kicker {
  color: var(--ochre);
}

.blog-panel-eyebrow {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(255, 253, 248, .2);
}

.blog-panel-eyebrow .section-kicker {
  margin: 0 0 .65rem;
}

.blog-panel-meta {
  margin: 0;
  color: rgba(255, 253, 248, .58);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.blog-panel-meta > * {
  display: block;
}

.blog-panel-meta-separator {
  display: none;
}

.blog-panel h2 {
  max-width: 11ch;
  margin-bottom: .8rem;
  color: #fffdf8;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -.04em;
}

.blog-panel-copy > p {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(255, 253, 248, .76);
  font-family: var(--body-serif);
  font-size: 1.08rem;
  line-height: 1.65;
}

.blog-panel-status {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 1rem;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 253, 248, .2);
}

.blog-panel-status p {
  max-width: 20rem;
  margin: 0;
  color: rgba(255, 253, 248, .72);
  font-family: var(--body-serif);
  line-height: 1.55;
}

.blog-panel-status .button.primary {
  background: var(--red);
  color: #fffdf8;
}

.blog-panel-status .button.primary:hover {
  background: #d18c6c;
}

@media (max-width: 980px) {
  .blog-panel {
    grid-template-columns: minmax(9rem, .35fr) minmax(0, 1fr);
  }

  .blog-panel-status {
    grid-column: 2;
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .blog-panel {
    grid-template-columns: 1fr;
  }

  .blog-panel-eyebrow {
    display: block;
    padding: 0 0 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, .2);
  }

  .blog-panel-meta > * {
    display: inline;
  }

  .blog-panel-meta-separator {
    display: inline;
    margin: 0 .45rem;
  }

  .blog-panel-status {
    grid-column: auto;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(255, 253, 248, .2);
  }
}

/* Homepage bookshelf: a polished champagne and smoked-plum counterpoint to
   the dark hero and evergreen newsletter. */
.book-shelf {
  background:
    radial-gradient(ellipse 54% 70% at 98% 4%, rgba(185, 157, 119, .18), transparent 74%),
    radial-gradient(ellipse 46% 62% at 0% 100%, rgba(128, 102, 119, .1), transparent 76%),
    linear-gradient(180deg, #f5f1ea 0%, #e8e1d8 100%);
}

.book-shelf .section-kicker {
  color: #876451;
}

.book-shelf-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, .55fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: flex-start;
  margin: 0 0 clamp(2.75rem, 5vw, 4.25rem);
  text-align: left;
}

.book-shelf h2 {
  max-width: 11ch;
}

.book-shelf-heading > p {
  align-self: end;
  max-width: 27rem;
  margin: 0 0 .35rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(135, 100, 81, .45);
}

.shelf-series {
  border-color: rgba(237, 224, 203, .2);
  background:
    radial-gradient(ellipse 60% 105% at 100% 0%, rgba(205, 183, 145, .16), transparent 72%),
    radial-gradient(ellipse 46% 88% at 0% 100%, rgba(155, 125, 143, .14), transparent 74%),
    linear-gradient(132deg, #403b45 0%, #302d36 52%, #222127 100%);
  box-shadow: 0 1.2rem 2.6rem rgba(30, 26, 34, .24);
}

.shelf-series-intro {
  border-left-color: #cbb17b;
}

.shelf-series-number,
.shelf-series-intro .text-link,
.book-tile-action {
  color: #e1c98e;
}

.shelf-adam .shelf-series-number,
.shelf-adam .shelf-series-intro .text-link,
.shelf-adam .book-tile-action {
  color: #dfaa91;
}

@media (max-width: 820px) {
  .book-shelf-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .book-shelf-heading > p {
    align-self: start;
    margin-bottom: 0;
  }
}

/* Blog index and article templates. Future posts reuse these shared layouts. */
.blog-page .site-header,
.article-page .site-header {
  background: rgba(7, 15, 23, 0.78);
  color: #fffdf7;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.blog-page .site-nav a[aria-current="page"],
.article-page .site-nav a[aria-current="page"] {
  color: #f0c58c;
}

.blog-page .page-intro {
  --intro-accent: #e5c77f;
  --intro-accent-soft: rgba(151, 177, 153, 0.28);
  position: relative;
  isolation: isolate;
  min-height: clamp(25rem, 46vw, 35rem);
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 65% 74% at 88% 106%, var(--intro-accent-soft), transparent 76%),
    radial-gradient(ellipse 57% 48% at 18% -14%, rgba(75, 94, 108, 0.38), transparent 73%),
    linear-gradient(112deg, rgba(4, 11, 18, 0.99) 0%, rgba(9, 21, 31, 0.97) 52%, rgba(13, 29, 39, 0.94) 100%);
  color: #fffdf7;
}

.blog-page .page-intro::before,
.blog-page .page-intro::after {
  content: "";
  position: absolute;
  z-index: 0;
  filter: blur(clamp(2rem, 4.5vw, 5rem));
  pointer-events: none;
}

.blog-page .page-intro::before {
  inset: -42% -18% -12% 18%;
  background:
    radial-gradient(ellipse at 18% 68%, rgba(52, 69, 83, 0.74), transparent 27%),
    radial-gradient(ellipse at 42% 53%, rgba(62, 82, 70, 0.68), transparent 31%),
    radial-gradient(ellipse at 78% 45%, rgba(29, 44, 57, 0.82), transparent 34%);
}

.blog-page .page-intro::after {
  inset: 38% 26% -46% -28%;
  background:
    radial-gradient(ellipse at 13% 54%, rgba(40, 56, 70, 0.72), transparent 29%),
    radial-gradient(ellipse at 52% 46%, rgba(82, 100, 84, 0.56), transparent 33%),
    radial-gradient(ellipse at 86% 37%, rgba(194, 120, 89, 0.2), transparent 36%);
}

.blog-page .page-intro .section-inner {
  position: relative;
  z-index: 1;
}

.blog-page .page-intro .section-kicker {
  color: var(--intro-accent);
}

.blog-page .page-intro h1 {
  color: #fffdf7;
  text-wrap: balance;
}

.blog-page .page-intro p:last-child {
  color: rgba(255, 253, 247, 0.78);
}

.blog-index-section {
  min-height: 32rem;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(ellipse 48% 55% at 98% 4%, rgba(120, 152, 167, .12), transparent 74%),
    linear-gradient(180deg, #f5f2eb 0%, #ebe8df 100%);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.post-card {
  display: grid;
  grid-template-columns: minmax(11rem, .8fr) minmax(0, 1.2fr);
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 42, .1);
  background: var(--paper-bright);
  box-shadow: 0 1.2rem 2.6rem rgba(17, 27, 33, .1);
}

.post-card:first-child:last-child {
  grid-column: 1 / -1;
}

.post-card-image {
  min-height: 100%;
  overflow: hidden;
  background: #ded8c6;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.025);
}

.post-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.post-meta {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.post-card h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  letter-spacing: -.035em;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card h2 a:hover {
  color: var(--red);
}

.post-card-copy > p:not(.post-meta) {
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: 1.04rem;
  line-height: 1.65;
}

.post-card-copy .text-link {
  margin-top: auto;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-header {
  position: relative;
  overflow: hidden;
  padding: clamp(10rem, 17vw, 14rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 56% 95% at 100% 0%, rgba(151, 177, 153, .24), transparent 74%),
    radial-gradient(ellipse 48% 82% at 0% 100%, rgba(194, 120, 89, .15), transparent 74%),
    linear-gradient(120deg, #263139 0%, #1b2727 52%, #11191b 100%);
  color: #fffdf8;
}

.article-heading {
  width: min(900px, calc(100% - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
}

.article-back-link {
  display: inline-flex;
  gap: .45rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  color: rgba(255, 253, 248, .72);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-back-link:hover {
  color: #fffdf8;
}

.article-header h1 {
  max-width: none;
  margin-bottom: 1rem;
  color: #fffdf8;
  font-size: clamp(3.75rem, 9vw, 7.5rem);
  letter-spacing: -.045em;
  text-wrap: balance;
}

.article-deck {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 253, 248, .78);
  font-family: var(--body-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.article-header .post-meta {
  margin-bottom: 0;
  color: rgba(255, 253, 248, .58);
}

.article-layout {
  width: min(900px, calc(100% - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
}

.article-figure {
  display: grid;
  grid-template-columns: minmax(15rem, 27rem) minmax(14rem, 22rem);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin: 0 0 clamp(3.5rem, 7vw, 6rem);
}

.article-figure img {
  width: 100%;
  border: .65rem solid var(--paper-bright);
  box-shadow: 0 1.5rem 3.5rem rgba(17, 27, 33, .18);
}

.article-figure figcaption {
  padding: 0 0 1rem 1.25rem;
  border-left: 2px solid var(--red);
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: .92rem;
  line-height: 1.6;
}

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

.article-body > p {
  margin-bottom: 1.65em;
  color: #28343c;
  font-family: var(--body-serif);
  font-size: clamp(1.08rem, 1.7vw, 1.2rem);
  line-height: 1.8;
}

.article-body .article-lede {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.article-body cite {
  font-style: italic;
}

.article-cta {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.75rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 64% 100% at 100% 0%, rgba(120, 152, 167, .22), transparent 72%),
    var(--primary-gradient);
  color: #fffdf8;
  box-shadow: 0 1.2rem 2.8rem rgba(17, 27, 33, .18);
}

.article-cta .section-kicker {
  color: var(--ochre);
}

.article-cta h2 {
  margin-bottom: .8rem;
  color: #fffdf8;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.035em;
}

.article-cta > p:not(.section-kicker) {
  max-width: 31rem;
  color: rgba(255, 253, 248, .72);
  font-family: var(--body-serif);
  line-height: 1.65;
}

.article-cta .button {
  margin-top: .5rem;
  background: var(--red);
}

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

  .post-card {
    max-width: 56rem;
  }
}

@media (max-width: 700px) {
  .post-card,
  .article-figure {
    grid-template-columns: 1fr;
  }

  .post-card-image {
    aspect-ratio: 16 / 10;
  }

  .article-figure {
    max-width: 31rem;
  }

  .article-figure figcaption {
    padding: 0 0 0 1rem;
  }
}
