:root {
  --paper: #f4f0ed;
  --paper-highlight: #faf8f5;
  --charcoal: #161816;
  --navy: #021e39;
  --navy-interactive: #0a2b50;
  --gold: #d8a04e;
  --amber: #f0a640;
  --orange-accessible: #9a5a00;
  --ink: #171916;
  --muted: #56514c;
  --rule: #d7d0c9;
  --white: #fff;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui: Lato, "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 18px 45px rgba(1, 17, 33, 0.12);
  --shell: min(1440px, calc(100% - 96px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-highlight);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  height: 92px;
  border-bottom: 1px solid rgba(2, 30, 57, 0.08);
  background: var(--paper);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 280px;
  color: var(--navy);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand__words {
  display: grid;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.86;
}

.brand__words span:first-child {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.095em;
}

.brand__words span:last-child {
  margin-top: 10px;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.58em;
}

.primary-nav__list,
.submenu,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.65vw, 42px);
}

.primary-nav__item {
  position: relative;
}

.primary-nav__item > a,
.nav-resource-control > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}

.primary-nav__item > a:not(.nav-donate)::after,
.nav-resource-control > a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav__item > a:hover::after,
.primary-nav__item > a[aria-current="page"]::after,
.nav-resource-control > a:hover::after,
.nav-resource-control > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav a[aria-current="page"]:not(.nav-donate) {
  color: var(--orange-accessible);
}

.nav-donate {
  justify-content: center;
  min-width: 130px;
  min-height: 46px !important;
  padding: 0 24px;
  border-radius: 5px;
  color: var(--amber) !important;
  background: var(--navy);
  transition: background-color 180ms ease;
}

.nav-donate:hover {
  background: var(--navy-interactive);
}

.nav-resource-control {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  display: grid;
  width: 28px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.submenu-toggle span[aria-hidden] {
  display: block;
  font-size: 18px;
  transition: transform 180ms ease;
}

.submenu-toggle[aria-expanded="true"] span[aria-hidden] {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--rule);
  background: var(--paper-highlight);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.submenu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 15px;
  text-decoration: none;
}

.submenu a:hover {
  background: #ece7e2;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  min-width: 92px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-weight: 700;
}

.menu-toggle__icon {
  display: grid;
  width: 24px;
  gap: 5px;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 523px;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 42%, rgba(117, 100, 65, 0.13), transparent 33%),
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1.5px),
    linear-gradient(125deg, #1b1d1b 0%, #111311 58%, #191a17 100%);
  background-size: auto, 9px 9px, auto;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.26) 100%);
  content: "";
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  min-height: 523px;
  gap: 24px;
}

.home-hero__copy {
  align-self: center;
  padding: 42px 0 54px 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-accessible);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--amber);
}

.home-hero h1,
.page-hero h1,
.not-found h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 4.7vw, 72px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.02;
}

.home-hero h1 {
  max-width: 560px;
  text-wrap: balance;
}

.ornament-rule {
  position: relative;
  width: min(510px, 94%);
  height: 20px;
  margin: 22px 0 14px;
}

.ornament-rule::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
}

.ornament-rule span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  background: var(--charcoal);
  transform: translate(-50%, -50%) rotate(45deg);
}

.home-hero__lead {
  max-width: 510px;
  margin: 0 0 26px;
  font-size: 24px;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button--gold {
  color: #111211;
  background: linear-gradient(135deg, #b8782c 0%, #e4aa54 100%);
  box-shadow: 0 8px 24px rgba(184, 120, 44, 0.16);
}

.button--gold:hover {
  box-shadow: 0 10px 30px rgba(228, 170, 84, 0.25);
}

.button--navy {
  color: var(--paper);
  background: var(--navy);
}

.button--navy:hover {
  background: var(--navy-interactive);
}

.button--small {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 4px;
  font-size: 13px;
}

.hero-library {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.hero-library__glow {
  position: absolute;
  top: 16%;
  right: 8%;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: rgba(236, 214, 166, 0.08);
  filter: blur(40px);
}

.hero-product {
  position: absolute;
  z-index: 3;
  object-fit: cover;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.42));
}

.hero-product--study {
  bottom: 72px;
  left: 11%;
  width: 27%;
  max-height: 310px;
  object-fit: contain;
}

.hero-product--magazine {
  z-index: 2;
  right: 21%;
  bottom: 69px;
  width: 34%;
  max-height: 405px;
  object-fit: contain;
  transform: rotate(1.5deg);
}

.hero-product--tract {
  z-index: 4;
  right: 42%;
  bottom: 65px;
  width: 17%;
  max-height: 185px;
  object-fit: contain;
}

.hero-video {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 72px;
  width: 37%;
  aspect-ratio: 3 / 2;
  padding: 10px;
  border: 2px solid #aaa69d;
  border-radius: 20px;
  background: #050807;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.48);
  transform: rotate(2.8deg);
}

.hero-video img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  opacity: 0.78;
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--white);
  background: rgba(2, 30, 57, 0.5);
  font-size: 19px;
  transform: translate(-50%, -50%);
  place-items: center;
}

.hero-shelf {
  position: absolute;
  z-index: 1;
  right: -12%;
  bottom: 42px;
  left: 0;
  height: 58px;
  border-top: 3px solid #6a3c1c;
  background:
    repeating-linear-gradient(6deg, rgba(255,255,255,.035) 0 1px, transparent 1px 8px),
    linear-gradient(#6a3d20, #321d10 70%, #160d08);
  box-shadow: 0 20px 30px rgba(0,0,0,.55);
  transform: perspective(500px) rotateX(55deg);
  transform-origin: top;
}

.home-showcase {
  border-bottom: 1px solid var(--rule);
  background: var(--paper-highlight);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
}

.showcase-panel {
  min-width: 0;
  padding: 22px 24px 28px;
}

.showcase-panel + .showcase-panel {
  border-left: 1px solid var(--rule);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.section-heading > span {
  position: relative;
  height: 1px;
  background: var(--gold);
  flex: 1;
}

.section-heading > span::after {
  position: absolute;
  top: 50%;
  right: 1px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: var(--paper-highlight);
  content: "";
  transform: translate(50%, -50%) rotate(45deg);
}

.resource-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini-resource {
  min-width: 0;
  color: var(--navy);
  text-decoration: none;
}

.mini-resource img {
  width: 100%;
  height: 175px;
  margin-bottom: 10px;
  border: 1px solid rgba(2, 30, 57, 0.09);
  object-fit: cover;
  object-position: top;
}

.mini-resource--video img {
  padding: 22px 4px;
  background: #080b0b;
  object-fit: contain;
}

.mini-resource strong,
.mini-resource span {
  display: block;
}

.mini-resource strong {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.12;
}

.mini-resource span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.messenger-feature {
  display: grid;
  grid-template-columns: minmax(105px, 0.9fr) 1fr;
  align-items: start;
  gap: 16px;
}

.messenger-feature > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.meta {
  margin: 0 0 10px;
  color: var(--orange-accessible);
  font-size: 13px;
  font-weight: 700;
}

.messenger-feature h3,
.teaching-feature h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.15;
}

.messenger-feature p:not(.meta),
.teaching-feature p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange-accessible);
}

.teaching-feature {
  display: grid;
  grid-template-columns: 1.6fr 0.85fr;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.teaching-feature__image {
  position: relative;
}

.teaching-feature__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.teaching-row {
  display: grid;
  grid-template-columns: 90px 1fr 20px;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  text-decoration: none;
}

.teaching-row img {
  width: 90px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.teaching-row strong,
.teaching-row small {
  display: block;
}

.teaching-row strong {
  font-size: 13px;
  line-height: 1.2;
}

.teaching-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.home-intro {
  padding: 78px 0;
  background: var(--paper);
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 9%;
}

.home-intro h2,
.section-intro h2,
.split-feature h2,
.about-intro h2,
.about-columns h2,
.service-callout h2,
.contact-details h2,
.newsletter-layout h2,
.donation-card h2,
.check-card h2,
.stewardship-note h2,
.empty-state h2,
.article-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
}

.home-intro__grid > div:last-child {
  max-width: 590px;
}

.home-intro__grid > div:last-child p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.55;
}

.mission-band {
  min-height: 72px;
  color: var(--amber);
  background:
    radial-gradient(circle at 20% 50%, rgba(240, 166, 64, 0.08), transparent 27%),
    linear-gradient(110deg, #00152e 0%, #062c52 100%);
}

.mission-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  gap: 30px;
}

.mission-band__book {
  display: inline-block;
  font-family: var(--display);
  font-size: 50px;
  line-height: 1;
  transform: rotate(90deg);
}

.mission-band p {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
}

.mission-band__reference {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 62px 0 24px;
  color: #e8e4df;
  background: #09121b;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 0.8fr 1.1fr 1.2fr;
  gap: 6%;
}

.brand--footer {
  min-width: 0;
  color: var(--paper);
}

.brand--footer img {
  width: 54px;
  height: 54px;
}

.site-footer__brand > p {
  max-width: 340px;
  color: #bfb9b2;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer li + li {
  margin-top: 7px;
}

.site-footer li a,
.site-footer__contact a {
  display: inline-flex;
  min-height: 32px;
  color: #ddd8d2;
  text-decoration: none;
}

.site-footer li a:hover,
.site-footer__contact a:hover {
  color: var(--amber);
}

.site-footer address {
  margin-bottom: 12px;
  color: #bfb9b2;
  font-style: normal;
}

.site-footer__legal {
  padding-top: 26px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8e8a84;
  font-size: 13px;
}

.site-footer__legal p {
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 35%, rgba(216, 160, 78, 0.15), transparent 27%),
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.035) 0 1px, transparent 1.5px),
    linear-gradient(120deg, #121613, #1b1d1b);
  background-size: auto, 10px 10px, auto;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 370px;
  padding-block: 64px;
}

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

.page-hero__lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #e1ddd7;
  font-size: 21px;
  line-height: 1.45;
}

.page-hero__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 420px;
  gap: 7%;
}

.page-hero__covers {
  position: relative;
  align-self: end;
  height: 370px;
}

.page-hero__covers img {
  position: absolute;
  bottom: 0;
  width: 31%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0,0,0,.42));
}

.page-hero__covers img:nth-child(1) {
  left: 5%;
  z-index: 2;
}

.page-hero__covers img:nth-child(2) {
  left: 35%;
  z-index: 1;
}

.page-hero__covers img:nth-child(3) {
  right: 3%;
  width: 28%;
}

.section {
  padding: 84px 0;
  background: var(--paper-highlight);
}

.section--paper {
  border-block: 1px solid var(--rule);
  background: var(--paper);
}

.section--navy {
  color: var(--paper);
  background: linear-gradient(120deg, #00152e, #062c52);
}

.section-intro {
  margin-bottom: 36px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.category-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  background: var(--paper-highlight);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.category-card:hover {
  background: #eee8e2;
}

.category-card__number {
  color: var(--orange-accessible);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.category-card h3 {
  margin: 50px 0 10px;
  font-family: var(--display);
  font-size: 31px;
  line-height: 1.05;
}

.category-card p {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;
  gap: 12%;
}

.split-feature > div {
  max-width: 600px;
}

.split-feature > div > p:not(.eyebrow) {
  margin: 20px 0 28px;
  font-size: 19px;
}

.split-feature > img,
.split-feature > picture img {
  width: 260px;
  max-height: 390px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(2,30,57,.18));
}

.split-feature > picture {
  display: block;
  width: 260px;
  margin-inline: auto;
}

.publication-grid {
  display: grid;
  gap: 32px 26px;
}

.publication-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.publication-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.publication-card {
  min-width: 0;
}

.publication-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
  border: 1px solid var(--rule);
  background: var(--paper);
  object-fit: cover;
  object-position: top;
  box-shadow: 0 15px 30px rgba(2,30,57,.09);
}

.publication-card h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.1;
}

.publication-card > p:not(.meta) {
  margin: 0;
  color: var(--muted);
}

.availability {
  display: inline-flex;
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.narrow-content {
  max-width: 920px;
}

.empty-state {
  padding: 64px;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.empty-state > p:not(.eyebrow) {
  max-width: 630px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 18px;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 9%;
}

.newsletter-layout > div > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.newsletter-form {
  padding: 30px;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.newsletter-form label,
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.newsletter-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #aaa29a;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy-interactive);
  outline: 2px solid rgba(10,43,80,.2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 32px;
}

.video-card {
  border: 1px solid var(--rule);
  background: var(--paper);
}

.video-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
}

.video-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.video-card__image:hover img {
  opacity: 0.83;
}

.video-card__body {
  padding: 24px;
}

.video-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.08;
}

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

.video-card p:not(.meta) {
  margin: 0;
  color: var(--muted);
}

.about-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
}

.prose p,
.about-columns p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.ministry-grid article {
  min-height: 325px;
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.ministry-grid article > span {
  color: var(--orange-accessible);
  font-size: 12px;
  font-weight: 700;
}

.ministry-grid h3 {
  margin: 60px 0 12px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 30px;
}

.ministry-grid p {
  margin: 0;
  color: var(--muted);
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}

.about-columns h2 {
  margin-bottom: 22px;
}

.mission-list {
  padding: 36px;
  color: var(--paper);
  background: var(--navy);
}

.mission-list .eyebrow {
  color: var(--amber);
}

.mission-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mission-list li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.mission-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--amber);
  content: "";
  transform: rotate(45deg);
}

.service-callout {
  max-width: 860px;
  text-align: center;
}

.service-callout h2 {
  color: var(--paper);
}

.service-callout > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: #d4dbe1;
  font-size: 19px;
}

.contact-layout,
.donate-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 9%;
}

.contact-details address,
.check-card address {
  padding: 20px 0;
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
  line-height: 1.6;
}

.contact-note {
  max-width: 420px;
  padding: 22px;
  margin-top: 36px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
}

.contact-note h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 23px;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
}

.contact-form,
.donation-card,
.check-card {
  padding: 36px;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.donate-layout {
  grid-template-columns: 1.2fr 0.8fr;
}

.donation-card > p:not(.eyebrow),
.check-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.donation-placeholder {
  display: grid;
  min-height: 210px;
  padding: 30px;
  margin: 26px 0 12px;
  border: 1px dashed #aaa29a;
  text-align: center;
  place-content: center;
}

.donation-placeholder > span {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--amber);
  background: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  place-items: center;
}

.donation-placeholder strong,
.donation-placeholder small {
  display: block;
}

.donation-placeholder small {
  margin-top: 6px;
  color: var(--muted);
}

.stewardship-note {
  max-width: 800px;
}

.stewardship-note > p:last-child {
  color: var(--muted);
  font-size: 19px;
}

.article-filters {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}

.article-filters__label {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
}

.article-filters__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.article-filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-filters select {
  min-width: 190px;
  padding: 11px 38px 11px 12px;
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--navy);
  background: var(--cream);
  font: inherit;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
}

.article-results:empty {
  display: none;
}

.article-results {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.article-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.article-card[hidden] {
  display: none;
}

.article-card__meta,
.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.article-card__meta {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.article-card__tags,
.article-byline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid currentColor;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.article-card--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 260px;
  gap: 12%;
}

.article-card--featured img {
  width: 210px;
  max-height: 300px;
  justify-self: center;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-soft);
}

.article-card h2 {
  max-width: 660px;
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.08;
}

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

.article-card p:not(.meta, .eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.article-card--note {
  color: var(--paper);
  background: var(--navy);
}

.article-card--note h2,
.article-card--note p:not(.eyebrow) {
  color: inherit;
}

.prose-shell {
  max-width: 760px;
  padding: 80px 24px;
  margin-inline: auto;
}

.article-byline {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.article-byline .article-tag {
  color: var(--amber);
}

.prose-shell p,
.prose-shell li {
  font-size: 18px;
  line-height: 1.75;
}

.prose-shell h2 {
  margin: 48px 0 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
}

.article-cta {
  padding: 58px 0;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.article-cta__inner {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr auto;
  align-items: center;
  gap: 28px;
}

.article-cta h2 {
  font-size: 34px;
}

.not-found {
  display: grid;
  min-height: 62vh;
  padding: 80px 0;
  color: var(--paper);
  background: var(--charcoal);
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-inline: auto;
}

.not-found p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: #d9d4ce;
  font-size: 19px;
}

@media (max-width: 1279px) {
  :root {
    --shell: min(100% - 64px, 1440px);
  }

  .brand {
    min-width: 235px;
  }

  .brand__words span:first-child {
    font-size: 24px;
  }

  .brand__words span:last-child {
    font-size: 9px;
  }

  .primary-nav__list {
    gap: 19px;
  }

  .primary-nav__item > a,
  .nav-resource-control > a {
    font-size: 16px;
  }

  .home-hero__copy {
    padding-left: 0;
  }

  .mini-resource img {
    height: 145px;
  }

  .teaching-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1119px) {
  :root {
    --shell: min(100% - 48px, 1000px);
  }

  .site-header {
    height: 76px;
  }

  .site-header__inner {
    position: relative;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 90;
    top: 76px;
    right: 0;
    bottom: 0;
    width: min(430px, 100%);
    padding: 24px;
    color: var(--paper);
    background: var(--navy);
    box-shadow: -18px 0 40px rgba(0,0,0,.18);
    overflow-y: auto;
    transform: translateX(104%);
    transition: transform 200ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav__list {
    display: block;
  }

  .primary-nav__item {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .primary-nav__item > a,
  .nav-resource-control > a {
    display: flex;
    min-height: 58px;
    color: var(--paper);
    font-size: 18px;
  }

  .primary-nav a[aria-current="page"]:not(.nav-donate) {
    color: var(--amber);
  }

  .nav-resource-control {
    justify-content: space-between;
  }

  .submenu-toggle {
    width: 44px;
    color: var(--paper);
  }

  .submenu {
    position: static;
    display: none;
    width: auto;
    padding: 0 0 12px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu.is-open {
    display: block;
  }

  .submenu a {
    color: #dce3e9;
  }

  .submenu a:hover {
    color: var(--amber);
    background: transparent;
  }

  .nav-donate {
    margin: 18px 0;
    color: var(--navy) !important;
    background: var(--amber);
  }

  .home-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero h1 {
    font-size: clamp(48px, 5.7vw, 60px);
  }

  .hero-product--study {
    left: 2%;
    width: 31%;
  }

  .hero-product--magazine {
    right: 15%;
    width: 40%;
  }

  .hero-product--tract {
    right: 42%;
    width: 22%;
  }

  .hero-video {
    width: 42%;
  }

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

  .showcase-panel--resources {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--rule);
  }

  .showcase-panel--messenger {
    border-left: 0 !important;
  }

  .mini-resource img {
    height: 230px;
  }

  .publication-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .ministry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    height: 72px;
  }

  .primary-nav {
    top: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand__words span:first-child {
    font-size: 19px;
    letter-spacing: 0.06em;
  }

  .brand__words span:last-child {
    margin-top: 7px;
    font-size: 7px;
    letter-spacing: 0.48em;
  }

  .menu-toggle {
    min-width: 80px;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-hero__copy {
    padding: 54px 0 18px;
  }

  .home-hero h1,
  .page-hero h1,
  .not-found h1 {
    font-size: clamp(42px, 12vw, 52px);
  }

  .home-hero__lead {
    font-size: 20px;
  }

  .hero-library {
    height: 350px;
  }

  .hero-product--study {
    bottom: 51px;
    left: 2%;
    width: 31%;
    max-height: 220px;
  }

  .hero-product--magazine {
    right: 19%;
    bottom: 48px;
    width: 37%;
    max-height: 265px;
  }

  .hero-product--tract {
    right: 43%;
    bottom: 45px;
    width: 19%;
    max-height: 130px;
  }

  .hero-video {
    right: -7%;
    bottom: 51px;
    width: 40%;
    padding: 5px;
    border-radius: 11px;
  }

  .hero-shelf {
    bottom: 29px;
    height: 42px;
  }

  .showcase-grid {
    display: block;
  }

  .showcase-panel {
    padding: 30px 0;
  }

  .showcase-panel + .showcase-panel {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .resource-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .mini-resource img {
    height: 210px;
  }

  .messenger-feature {
    grid-template-columns: 120px 1fr;
  }

  .home-intro,
  .section {
    padding: 62px 0;
  }

  .home-intro__grid,
  .about-intro,
  .about-columns,
  .contact-layout,
  .donate-layout,
  .newsletter-layout,
  .split-feature,
  .article-cta__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mission-band__inner {
    gap: 12px;
  }

  .mission-band__book {
    display: none;
  }

  .mission-band p {
    font-size: 19px;
  }

  .mission-band__reference {
    font-size: 10px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 330px;
  }

  .page-hero__inner {
    padding-block: 52px;
  }

  .page-hero__lead {
    font-size: 18px;
  }

  .page-hero__split {
    display: block;
    min-height: 0;
    padding-top: 56px;
  }

  .page-hero__covers {
    height: 260px;
    margin-top: 30px;
  }

  .category-grid,
  .publication-grid--three,
  .video-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 240px;
  }

  .category-card h3 {
    margin-top: 34px;
  }

  .publication-grid--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 14px;
  }

  .publication-card h2 {
    font-size: 22px;
  }

  .empty-state {
    padding: 34px 24px;
  }

  .newsletter-form {
    padding: 24px;
  }

  .newsletter-form__row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .article-filters {
    display: block;
  }

  .article-filters__fields {
    margin-top: 16px;
  }

  .article-filters label,
  .article-filters select {
    width: 100%;
  }

  .newsletter-form__row .button {
    width: 100%;
  }

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

  .ministry-grid article {
    min-height: 270px;
  }

  .contact-form,
  .donation-card,
  .check-card {
    padding: 26px 22px;
  }

  .article-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .article-card--featured img {
    display: none;
  }

  .article-cta__inner {
    display: block;
  }

  .article-cta h2 {
    margin: 10px 0;
  }
}

@media (max-width: 430px) {
  .brand__words span:first-child {
    font-size: 17px;
  }

  .brand__words span:last-child {
    letter-spacing: 0.37em;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-toggle {
    justify-content: flex-end;
    min-width: 44px;
  }

  .resource-mini-grid,
  .publication-grid--four {
    grid-template-columns: 1fr 1fr;
  }

  .mini-resource img {
    height: 180px;
  }

  .publication-card h2 {
    font-size: 20px;
  }

  .mission-band__inner {
    display: grid;
    gap: 0;
    padding-block: 12px;
    text-align: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}
