
:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #66736f;
  --paper: #f4ecdf;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --soft: #eadfce;
  --line: #ddcfba;
  --green: #2f6f63;
  --green-dark: #1f5148;
  --copper: #a64d35;
  --gold: #d9aa48;
  --blue: #315f88;
  --beige-deep: #d6c2a5;
  --shadow: 0 24px 70px rgba(24, 33, 31, 0.16);
  --soft-shadow: 0 10px 30px rgba(40, 33, 24, 0.09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f3eadb 0%, #fffaf2 34%, #eef2ea 100%);
  line-height: 1.6;
}

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

a {
  color: var(--green-dark);
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: white;
  padding: 0.6rem 0.9rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.97);
  border-color: rgba(92, 78, 58, 0.16);
  box-shadow: 0 10px 34px rgba(24, 33, 31, 0.1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, var(--green-dark), #347466);
  box-shadow: 0 8px 22px rgba(31, 81, 72, 0.24);
  font-size: 0.9rem;
}

.brand-text {
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
}

.site-nav a:hover,
.button-link:hover {
  background: rgba(47, 111, 99, 0.1);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--soft-shadow);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.24rem auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(640px, calc(100svh - 96px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 23, 21, 0.93) 0%, rgba(22, 35, 31, 0.76) 46%, rgba(97, 70, 44, 0.36) 100%),
    linear-gradient(180deg, rgba(217, 170, 72, 0.18) 0%, transparent 38%),
    linear-gradient(0deg, rgba(14, 23, 21, 0.72), transparent 58%);
}

.hero-content {
  position: relative;
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.4rem 0 4rem;
  color: white;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c35b;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.hero-lede {
  max-width: 58rem;
  margin: 1rem 0 1.7rem;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-primary {
  color: #14211d;
  background: #f1c96d;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.hero-secondary {
  color: white;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.34);
  backdrop-filter: blur(12px);
}

.hero-actions a:hover {
  transform: translateY(-2px);
}

.hero-primary:hover {
  background: #ffd982;
}

.hero-secondary:hover {
  background: rgba(255, 250, 242, 0.2);
}

.search-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 800;
}

.search-form div {
  display: flex;
  gap: 0.5rem;
  width: min(720px, 100%);
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  background: var(--surface-strong);
  color: var(--ink);
}

.search-form button,
.button-link {
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  background:
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(31, 81, 72, 0.2);
}

.search-form button:hover,
.button-link:hover {
  background:
    linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
}

.hero-search {
  width: min(760px, 100%);
  padding: 0.85rem;
  border: 1px solid rgba(255, 250, 242, 0.26);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.hero-search div {
  width: 100%;
}

.hero-search input {
  border-color: rgba(255, 250, 242, 0.7);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stat-band div {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.96));
  padding: 1.3rem clamp(1rem, 4vw, 2.5rem);
}

.stat-band strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--green-dark);
}

.stat-band span {
  color: var(--muted);
}

.compact-stats strong {
  font-size: 1.55rem;
}

.section-wrap,
.feature-band,
.library-tools {
  padding: 4rem clamp(1rem, 4vw, 3rem);
}

.feature-band {
  background:
    linear-gradient(180deg, #eee3d2 0%, #f8f2e7 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.topic-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.topic-card,
.resource-card,
.audio-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}

.topic-card {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  border-top: 4px solid var(--green);
}

.topic-card::before,
.resource-card::before,
.audio-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background:
    linear-gradient(90deg, var(--green), var(--gold), var(--copper));
  opacity: 0.88;
}

.topic-card:nth-child(2n) {
  border-top-color: var(--copper);
}

.topic-card:nth-child(3n) {
  border-top-color: var(--blue);
}

.topic-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.topic-card,
.resource-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.topic-card span,
.card-topline {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-card h3 {
  margin: 0.55rem 0;
  font-size: 1.35rem;
}

.topic-card p,
.resource-card p,
.audio-item p {
  margin: 0;
  color: var(--muted);
}

.resource-card {
  padding: 1.05rem;
}

.resource-card h3 {
  margin: 0.75rem 0 0.65rem;
  font-size: 1.18rem;
}

.resource-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.resource-card h3 a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 0.9rem;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.card-cta::after {
  content: "→";
  font-size: 1.05em;
  transition: transform 180ms ease;
}

.card-cta:hover::after {
  transform: translateX(3px);
}

.chapter-nav {
  max-width: 820px;
  margin: 2.4rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.chapter-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--soft-shadow);
}

.chapter-nav span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chapter-nav strong {
  color: var(--green-dark);
}

.chapter-nav a::after {
  content: "→";
  color: var(--green-dark);
  font-weight: 900;
  transition: transform 180ms ease;
}

.chapter-nav a:hover {
  border-color: rgba(47, 111, 99, 0.34);
  box-shadow: var(--shadow);
}

.chapter-nav a:hover::after {
  transform: translateX(4px);
}

.card-topline,
.card-meta,
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
}

.card-meta {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.card-meta span,
.article-meta span,
.article-meta a,
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  background: rgba(47, 111, 99, 0.09);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.page-hero {
  padding: 5rem clamp(1rem, 4vw, 3rem) 3.5rem;
  background:
    linear-gradient(135deg, #f3eadb 0%, #fffaf2 52%, #edf4ee 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero div {
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.page-hero p:last-child {
  max-width: 58rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.library-tools {
  padding-top: 2rem;
  padding-bottom: 1.2rem;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  background: rgba(255, 250, 242, 0.9);
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: white;
  transform: translateY(-1px);
}

.result-count {
  color: var(--muted);
  margin-bottom: 0;
}

.library-results {
  padding-top: 2rem;
}

.empty-state {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.chapter-list {
  display: grid;
  gap: 0.8rem;
}

.online-book-intro {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.book-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--soft-shadow);
}

.book-intro-copy {
  max-width: 780px;
}

.book-intro-copy h2 {
  margin: 0 0 0.85rem;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.book-intro-copy h3 {
  margin: 1.35rem 0 0.65rem;
  color: var(--ink-strong);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.book-intro-copy p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.68;
}

.book-intro-copy a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.book-cover-link {
  display: block;
  justify-self: center;
}

.book-cover-link img {
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(62, 50, 34, 0.24);
}

.audio-list {
  display: grid;
  gap: 1rem;
}

.audio-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.audio-item span {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audio-item h3 {
  margin: 0.25rem 0 0.4rem;
}

.audio-item audio {
  width: 100%;
}

.article-layout {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.article-header {
  margin-bottom: 2rem;
}

.article-title-centered {
  text-align: center;
}

.article-header h1 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.article-byline {
  margin: -0.2rem 0 1rem;
  color: var(--copper);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--soft-shadow);
}

.article-body p,
.article-body li,
.article-body blockquote {
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.72;
}

.article-body-tight p,
.article-body-tight li,
.article-body-tight blockquote {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  line-height: 1.45;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.article-body-tight p br {
  display: none;
}

.article-body-tight p:empty {
  display: none;
}

.article-body-tight .article-verse-quote {
  margin: 1rem 0 1rem 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--copper);
  color: var(--ink-strong);
  font-style: italic;
  text-align: left;
}

.article-body-clean {
  text-align: justify;
  text-justify: inter-word;
}

.article-body-clean div {
  display: contents;
}

.article-body-clean strong {
  font-weight: inherit;
}

.article-body-clean p {
  margin: 0 0 1rem;
  line-height: 1.58;
}

.article-body-clean p br {
  display: none;
}

.article-body-clean .article-verse-quote {
  margin: 1.15rem 0 1.35rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--copper);
  background: rgba(191, 126, 72, 0.08);
  color: var(--ink-strong);
  font-size: 1.05rem;
  line-height: 1.62;
  text-align: left;
}

.article-body-clean .article-breakdown {
  font-family: var(--serif);
}

.article-feature-image {
  margin: 0 auto 2rem;
}

.article-feature-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.article-body .article-opening-note {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.article-body .article-opening-note span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body .article-abstract {
  max-width: 720px;
  margin: -1rem auto 2.25rem;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: center;
}

.article-body .article-closing-rule {
  margin: 2.5rem auto 0;
  color: var(--copper);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.article-body blockquote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font: inherit;
}

.article-body blockquote:empty {
  display: none;
}

.article-body .footnote-ref {
  font-size: 0.72em;
  line-height: 0;
  vertical-align: super;
}

.article-body .footnote-ref a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: none;
}

.article-body .article-references {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.article-body h1,
.article-body h2,
.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body-tight h2 {
  margin: 2.2rem 0 1.15rem;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  display: block;
  overflow-x: auto;
}

.article-body td,
.article-body th {
  border: 1px solid var(--line);
  padding: 0.7rem;
  vertical-align: top;
}

.article-body img {
  border-radius: 8px;
  margin: 1.5rem auto;
}

.source-details {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-strong);
}

td,
th {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
}

.source-note {
  padding-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 2rem;
  padding: 3rem clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, #17211e 0%, #203c36 100%);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: white;
}

.footer-brand {
  color: white;
  font-size: 1.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.fine-print {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes riseIn {
  from {
    opacity: 1;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerSettle {
  from {
    opacity: 1;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerSettle 520ms ease both;
  }

  .hero-image {
    animation: heroImageSettle 1600ms ease-out both;
  }

  .hero .eyebrow,
  .hero h1,
  .hero-lede,
  .hero-actions,
  .hero-search {
    opacity: 1;
    animation: riseIn 720ms ease forwards;
  }

  .hero h1 {
    animation-delay: 90ms;
  }

  .hero-lede {
    animation-delay: 180ms;
  }

  .hero-actions {
    animation-delay: 270ms;
  }

  .hero-search {
    animation-delay: 360ms;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}

.article-body.reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 0.7rem 1rem 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .stat-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audio-item,
  .book-intro-layout,
  .inventory-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .book-cover-link {
    order: -1;
  }

  .article-body {
    padding: 1.2rem;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(100% - 1.5rem, 760px);
    padding: 3.6rem 0 2.6rem;
  }

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

  .hero-lede {
    font-size: 1.05rem;
  }

  .search-form div {
    display: grid;
  }

  .hero-actions {
    display: grid;
  }

  .stat-band {
    grid-template-columns: 1fr;
  }

  .section-wrap,
  .feature-band,
  .library-tools {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
