@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&display=swap');

:root {
  --cream: #f7ead4;
  --paper: #fffaf0;
  --ink: #251d1c;
  --cherry: #8c1534;
  --berry: #6f2148;
  --coral: #ef6b4d;
  --mustard: #f4bb35;
  --green: #165b4b;
  --leaf: #3d8c6e;
  --teal: #5bb4b1;
  --line: rgba(37, 29, 28, .2);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", "Avenir Next", Avenir, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--mustard); }

.skip-link {
  position: fixed; z-index: 100; top: 8px; left: 8px; padding: 9px 14px;
  color: white; background: var(--ink); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.section-shell { width: min(100%, 1240px); margin-inline: auto; padding-inline: clamp(24px, 6vw, 74px); }

.site-header {
  width: min(100%, 1240px); min-height: 92px; margin-inline: auto; padding: 17px clamp(24px, 6vw, 74px);
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 45px; height: 45px; display: grid; place-items: center; flex: none;
  color: var(--cream); background: var(--cherry); border: 2px solid var(--ink); border-radius: 50%;
  box-shadow: 3px 3px 0 var(--mustard); font-family: var(--serif); font-size: 17px; font-weight: 800;
}
.brand__words { display: flex; flex-direction: column; line-height: 1.1; }
.brand__words strong { font-family: var(--serif); font-size: 20px; }
.brand__words small { margin-top: 4px; color: #6c625e; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.header-link, .text-link {
  font-size: 13px; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 5px;
}
.header-link span, .text-link span { margin-left: 5px; color: var(--cherry); }
.header-link:hover, .text-link:hover { color: var(--cherry); }

.eyebrow { margin: 0 0 13px; color: var(--cherry); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { margin-right: 6px; color: var(--coral); }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); line-height: 1.05; }
h1 em, h2 em { color: var(--cherry); font-weight: 700; }

.hero {
  min-height: 610px; padding-top: clamp(70px, 9vw, 112px); padding-bottom: clamp(70px, 9vw, 112px);
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(350px, .78fr); gap: clamp(45px, 8vw, 100px); align-items: center;
  background: radial-gradient(circle, rgba(244,187,53,.25) 0 2px, transparent 2.5px) 0 0 / 28px 28px;
}
.hero__copy { max-width: 670px; }
.hero h1 { margin-bottom: 23px; font-size: clamp(49px, 5.7vw, 76px); letter-spacing: -.052em; }
.hero__intro { max-width: 600px; margin: 0 0 24px; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; }
.hero__art { max-width: 500px; }
.hero__art svg { filter: drop-shadow(7px 9px 0 rgba(37,29,28,.09)); }

.resource-preview { padding-top: clamp(65px, 7vw, 85px); padding-bottom: clamp(55px, 6vw, 70px); }
.section-heading { margin-bottom: 34px; }
.section-heading h1, .section-heading h2, .about h2 { margin: 0; font-size: clamp(44px, 5vw, 64px); letter-spacing: -.042em; }
.section-heading > p { max-width: 430px; margin: 0 0 3px; color: #554b47; }
.resource-list { border-top: 1px solid var(--line); }
.resource-row {
  padding: 25px 13px; display: grid; grid-template-columns: 58px 1fr 32px; gap: 22px; align-items: center;
  border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s ease, padding .2s ease;
}
.resource-row:hover { padding-inline: 20px; background: var(--cream); }
.resource-row__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; font-size: 23px; }
.resource-row__icon--cherry { color: var(--mustard); background: var(--cherry); }
.resource-row__icon--green { color: var(--cream); background: var(--green); }
.resource-row__icon--mustard { color: var(--cherry); background: var(--mustard); }
.resource-row__copy { min-width: 0; display: grid; grid-template-columns: minmax(195px, .7fr) 1.3fr; column-gap: 32px; align-items: baseline; }
.resource-row__copy small { grid-column: 1 / -1; margin-bottom: 4px; color: var(--cherry); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.resource-row__copy strong { font-family: var(--serif); font-size: 20px; line-height: 1.2; }
.resource-row__copy > span { color: #675d58; font-size: 13px; }
.resource-row__arrow { color: var(--cherry); font-size: 20px; transition: transform .2s ease; }
.resource-row:hover .resource-row__arrow { transform: translateX(4px); }

.podcast {
  margin-bottom: 0; padding-top: 58px; padding-bottom: 58px; display: grid; grid-template-columns: 170px 1fr; gap: clamp(38px, 6vw, 72px); align-items: center;
  border-top: 1px solid var(--line); background: linear-gradient(110deg, #e9f6ff 0%, #f3f4e9 38%, var(--cream) 100%);
}
.podcast__cover {
  position: relative; width: 166px; aspect-ratio: 1; display: block; border: 2px solid var(--ink); border-radius: 24px; box-shadow: 7px 7px 0 var(--mustard);
  overflow: hidden; transform: rotate(-1.5deg); transition: transform .2s ease, box-shadow .2s ease;
}
.podcast__cover:hover { transform: rotate(0) translate(3px, 3px); box-shadow: 4px 4px 0 var(--mustard); }
.podcast__cover img { width: 100%; height: 100%; object-fit: cover; }
.podcast__copy h2 { margin-bottom: 10px; font-size: clamp(31px, 3.5vw, 45px); }
.podcast__copy > p:not(.eyebrow) { max-width: 700px; margin: 0 0 18px; }
.podcast__links { display: flex; flex-wrap: wrap; gap: 9px; }
.podcast-link {
  padding: 7px 11px; display: inline-flex; align-items: center; gap: 7px; color: var(--ink); background: rgba(255,250,240,.86);
  border: 1px solid rgba(37,29,28,.22); border-radius: 999px; font-size: 11px; font-weight: 700; text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.podcast-link > span { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--cherry); }
.podcast-link > b { margin-left: 2px; color: var(--cherry); font-weight: 700; }
.podcast-link--spotify > span { background: #1db954; }
.podcast-link--apple > span { background: #9b5de5; }
.podcast-link:hover { background: white; border-color: var(--ink); transform: translateY(-1px); }

.about {
  padding-top: clamp(65px, 7vw, 90px); padding-bottom: clamp(80px, 9vw, 115px);
  display: grid; grid-template-columns: minmax(260px, .55fr) minmax(430px, 1fr); gap: clamp(55px, 10vw, 130px); align-items: center;
}
.about__ornament { width: 100%; max-width: 340px; margin-inline: auto; }
.about h2 { margin-bottom: 25px; }
.about__lead { max-width: 690px; margin: 0 0 25px; font-family: var(--serif); font-size: clamp(24px, 2.7vw, 31px); font-weight: 600; line-height: 1.4; }
.about__copy > p:not(.eyebrow):not(.about__lead) { max-width: 690px; }
.role-list { margin-top: 28px; padding-top: 23px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; border-top: 2px dashed rgba(37,29,28,.22); }
.role-list > div { display: flex; gap: 11px; align-items: flex-start; }
.role-list > div > span { color: var(--cherry); font-size: 10px; }
.role-list p { margin: 0; line-height: 1.3; }
.role-list strong, .role-list small { display: block; }
.role-list strong { font-size: 13px; }
.role-list small { margin-top: 4px; color: #6c625e; font-size: 11px; }
.role-list .role-list__wide { grid-column: 1 / -1; }

.site-footer { width: 100%; min-height: 48px; margin: 0; padding: 0; border: 0; background: var(--ink); }
.site-footer a { text-underline-offset: 3px; }

/* Resource library page */
.resources-page { background: var(--paper); }
.resources-hero { padding-top: clamp(80px, 11vw, 135px); padding-bottom: clamp(75px, 10vw, 115px); border-bottom: 1px solid var(--line); }
.resources-hero h1 { max-width: 850px; margin-bottom: 20px; font-size: clamp(50px, 7vw, 82px); letter-spacing: -.055em; }
.resources-hero > p:last-child { max-width: 690px; margin: 0; font-size: 19px; }
.resource-library { max-width: 1000px; padding-top: 80px; padding-bottom: 110px; }
.library-intro { max-width: 720px; margin-bottom: 70px; }
.library-intro h2 { margin-bottom: 12px; font-size: 34px; }
.library-intro p { margin: 0; color: #5e544f; }
.full-resource { scroll-margin-top: 30px; padding: 0 0 80px; margin-bottom: 80px; border-bottom: 1px solid var(--line); }
.full-resource:last-child { margin-bottom: 0; }
.full-resource__header { margin-bottom: 25px; display: grid; grid-template-columns: 62px 1fr; gap: 22px; align-items: center; }
.full-resource__header .eyebrow { margin-bottom: 8px; }
.full-resource__header h2 { margin: 0; font-size: clamp(37px, 4.5vw, 54px); letter-spacing: -.038em; }
.full-resource__symbol { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; font-size: 26px; }
.full-resource__symbol--cherry { color: var(--mustard); background: var(--cherry); }
.full-resource__symbol--green { color: var(--cream); background: var(--green); }
.full-resource__symbol--mustard { color: var(--cherry); background: var(--mustard); }
.resource-deck { max-width: 720px; margin: 0 0 34px 84px; color: #5e544f; font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.5; }
.prayer-text { margin: 32px 0 30px 84px; padding: 28px 32px; border-left: 4px solid var(--coral); background: var(--cream); font-family: var(--serif); font-size: 18px; font-weight: 600; }
.prayer-text p { margin: 0 0 17px; }
.prayer-text p:last-child { margin-bottom: 0; }
.try-this { margin: 28px 0 25px 84px; padding: 18px 21px; display: grid; grid-template-columns: 120px 1fr; gap: 18px; border: 1px dashed var(--line); background: rgba(244,187,53,.15); }
.try-this strong { color: var(--cherry); font-family: var(--serif); }
.try-this p { margin: 0; font-size: 14px; }
.print-link { margin-left: 84px; padding: 0; color: var(--cherry); background: none; border: 0; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; cursor: pointer; }
.question-list { margin: 31px 0 30px 84px; padding: 0; list-style: none; }
.question-list li { padding: 17px 0; display: grid; grid-template-columns: 45px 1fr; gap: 17px; border-top: 1px solid var(--line); }
.question-list li:last-child { border-bottom: 1px solid var(--line); }
.question-list span { color: var(--cherry); font-family: var(--serif); font-size: 12px; font-weight: 800; }
.question-list p { margin: 0; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.steps { margin: 31px 0 30px 84px; }
.steps > div { margin-bottom: 15px; display: grid; grid-template-columns: 32px 1fr; gap: 13px; }
.steps span { width: 28px; height: 28px; display: grid; place-items: center; color: white; background: var(--cherry); border-radius: 50%; font-size: 10px; font-weight: 800; }
.steps p { margin: 1px 0; }
.blessing { margin: 30px 0 30px 84px; padding: 27px 31px; color: var(--cream); background: var(--berry); font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.55; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 800px) {
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero__art { max-width: 430px; width: 85%; }
  .section-heading { grid-template-columns: 1fr; gap: 17px; }
  .resource-row__copy { grid-template-columns: 1fr; }
  .resource-row__copy small { grid-column: auto; }
  .resource-row__copy > span { margin-top: 4px; }
  .podcast { grid-template-columns: 138px 1fr; }
  .podcast__cover { width: 128px; }
  .about { grid-template-columns: 1fr; }
  .about__ornament { max-width: 270px; }
}

@media (max-width: 560px) {
  .site-header { min-height: 78px; padding-block: 13px; }
  .brand__mark { width: 41px; height: 41px; font-size: 15px; }
  .brand__words strong { font-size: 18px; }
  .brand__words small { max-width: 215px; font-size: 7.5px; line-height: 1.25; }
  .hero { padding-top: 64px; padding-bottom: 72px; gap: 40px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero__art { width: 100%; }
  .resource-preview { padding-block: 75px; }
  .resource-row { padding: 22px 4px; grid-template-columns: 46px 1fr 20px; gap: 14px; }
  .resource-row:hover { padding-inline: 4px; }
  .resource-row__icon { width: 43px; height: 43px; font-size: 20px; }
  .resource-row__copy strong { font-size: 18px; }
  .resource-row__copy > span { display: none; }
  .podcast { padding-block: 52px; grid-template-columns: 1fr; }
  .podcast__cover { width: 126px; }
  .podcast__links { gap: 10px 18px; }
  .about { padding-block: 80px; gap: 48px; }
  .role-list { grid-template-columns: 1fr; }
  .role-list .role-list__wide { grid-column: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 5px; }
  .resources-hero { padding-top: 70px; padding-bottom: 70px; }
  .resources-hero h1 { font-size: clamp(45px, 14vw, 64px); }
  .resources-hero > p:last-child { font-size: 17px; }
  .resource-library { padding-top: 65px; padding-bottom: 80px; }
  .full-resource { padding-bottom: 65px; margin-bottom: 65px; }
  .full-resource__header { grid-template-columns: 48px 1fr; gap: 14px; }
  .full-resource__symbol { width: 46px; height: 46px; font-size: 21px; }
  .full-resource__header .eyebrow { font-size: 8px; }
  .resource-deck, .prayer-text, .try-this, .question-list, .steps, .blessing, .print-link { margin-left: 0; }
  .try-this { grid-template-columns: 1fr; gap: 6px; }
  .prayer-text, .blessing { padding: 24px; }
}


/* Episcopal 101 */
.episcopal-page { background: var(--paper); }
.episcopal-page .site-header { background: var(--paper); }
.e101-hero {
  min-height: 525px; padding-top: clamp(72px, 9vw, 112px); padding-bottom: clamp(72px, 9vw, 112px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 360px); gap: clamp(50px, 9vw, 120px); align-items: center;
  border-bottom: 1px solid var(--line); background: radial-gradient(circle, rgba(244,187,53,.24) 0 2px, transparent 2.5px) 2px 2px / 30px 30px;
}
.e101-hero__copy { max-width: 760px; }
.e101-hero h1 { margin-bottom: 22px; font-size: clamp(62px, 8vw, 104px); letter-spacing: -.06em; }
.e101-hero__copy > p:last-child { max-width: 650px; margin: 0; font-family: var(--serif); font-size: clamp(22px, 2.4vw, 29px); font-weight: 600; line-height: 1.4; }
.e101-hero__art { width: min(100%, 320px); filter: drop-shadow(9px 11px 0 rgba(37,29,28,.09)); transform: rotate(2deg); }

.e101-layout { padding-top: clamp(70px, 8vw, 100px); padding-bottom: clamp(90px, 10vw, 135px); display: grid; grid-template-columns: 190px minmax(0, 790px); gap: clamp(55px, 8vw, 105px); justify-content: center; align-items: start; }
.e101-nav { position: sticky; top: 25px; padding-top: 7px; }
.e101-nav > p { margin: 0 0 15px; color: var(--cherry); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.e101-nav nav { padding-left: 17px; display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.e101-nav a { padding: 6px 0; color: #675d58; font-size: 12px; line-height: 1.35; text-decoration: none; }
.e101-nav a:hover { color: var(--cherry); }
.e101-article { min-width: 0; }
.e101-section { scroll-margin-top: 35px; padding: 0 0 clamp(75px, 9vw, 105px); margin-bottom: clamp(75px, 9vw, 105px); border-bottom: 1px solid var(--line); }
.e101-section:last-child { margin-bottom: 0; }
#close-to-home { padding-bottom: 0; margin-bottom: clamp(58px, 7vw, 82px); border-bottom: 0; }
.e101-section h2 { max-width: 700px; margin-bottom: 27px; font-size: clamp(38px, 5vw, 57px); letter-spacing: -.045em; }
.e101-section h2 em { color: var(--cherry); }
.e101-section h3 { font-size: 23px; line-height: 1.25; }
.e101-section p { max-width: 740px; }
.e101-section a { color: var(--cherry); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.e101-section a:hover { color: var(--berry); }
.e101-kicker { margin: 0 0 12px; color: var(--cherry); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.e101-lead { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 23px); font-weight: 600; line-height: 1.55; }

.not-list { margin: 35px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }
.not-list li { min-height: 73px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; background: var(--cream); border: 1px solid rgba(37,29,28,.11); border-radius: 3px; }
.not-list li > span { width: 24px; height: 24px; display: grid; place-items: center; flex: none; color: var(--cream); background: var(--cherry); border-radius: 50%; font-size: 16px; line-height: 1; }
.not-list li strong { font-family: var(--serif); font-size: 16px; line-height: 1.35; }
.not-list li div { display: flex; flex-direction: column; }
.not-list li small { margin-top: 5px; color: #655b57; font-size: 12px; line-height: 1.4; }
.e101-note { margin-top: 34px; padding: 30px 32px; border: 2px solid var(--berry); box-shadow: 6px 6px 0 var(--mustard); }
.e101-note h3 { margin-bottom: 12px; color: var(--berry); }
.e101-note p { margin: 0 0 13px; }
.e101-links { margin-top: 22px; display: grid; gap: 8px; }
.e101-links a { font-size: 12px; font-weight: 700; }

.portrait-quote { margin: 35px 0 27px; display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 22px; align-items: center; }
.portrait-quote .feature-quote { margin: 0; }
.historical-portrait { margin: 0; }
.historical-portrait img { width: 100%; height: auto; border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--coral); filter: sepia(.12); }
.historical-portrait figcaption { margin-top: 11px; color: #756a66; font-size: 9px; line-height: 1.45; }
.historical-portrait figcaption a { color: inherit; }
.feature-quote { margin: 35px 0 27px; padding: clamp(31px, 5vw, 50px); color: var(--cream); background: var(--berry); border-radius: 3px; box-shadow: 8px 8px 0 var(--mustard); }
.feature-quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(27px, 3.8vw, 41px); font-weight: 600; line-height: 1.35; letter-spacing: -.02em; }
.feature-quote figcaption { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(247,234,212,.35); font-size: 12px; line-height: 1.55; }
.feature-quote figcaption a { color: var(--mustard); }

.stool-grid { margin: 34px 0 20px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.stool-card { min-height: 280px; padding: 22px; border: 2px solid var(--ink); display: flex; flex-direction: column; }
.stool-card > span { font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.stool-card h3 { margin: 8px 0 0; font-size: clamp(23px, 3vw, 31px); }
.stool-card ul { margin: 19px 0 0; padding-left: 17px; font-size: 12px; }
.stool-card li + li { margin-top: 8px; }
.stool-card--scripture { color: var(--cream); background: var(--cherry); }
.stool-card--tradition { background: var(--mustard); }
.stool-card--reason { color: var(--cream); background: var(--green); }
.stool-caption { margin: 0; color: #655b57; font-size: 12px; font-style: italic; }
.possibility { margin-top: 37px; padding: 25px 28px; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; background: #e4f0ea; border-left: 5px solid var(--green); }
.possibility strong { width: 100%; color: var(--green); font-family: var(--serif); font-size: 19px; }
.possibility span { padding: 5px 10px; background: var(--paper); border: 1px solid rgba(22,91,75,.25); border-radius: 999px; font-size: 11px; font-weight: 700; }
.possibility p { width: 100%; margin: 6px 0 0; }

.e101-section--summary { padding: clamp(42px, 6vw, 65px); color: var(--cream); background: var(--cherry); border: 0; box-shadow: 9px 9px 0 var(--mustard); }
.e101-section--summary .e101-kicker { color: var(--mustard); }
.summary-grid { margin-top: 28px; display: grid; grid-template-columns: 185px minmax(0, 1fr); gap: clamp(27px, 5vw, 48px); align-items: center; }
.summary-portrait { margin: 0; }
.summary-portrait img { width: 100%; height: auto; border: 2px solid var(--cream); box-shadow: 6px 6px 0 var(--mustard); }
.summary-portrait figcaption { margin-top: 11px; color: rgba(247,234,212,.78); font-size: 9px; line-height: 1.45; }
.summary-portrait figcaption a { color: inherit; }
.e101-section--summary blockquote { max-width: 680px; margin: 0 0 27px; font-family: var(--serif); font-size: clamp(38px, 6vw, 63px); font-weight: 700; line-height: 1.08; letter-spacing: -.045em; }
.e101-section--summary blockquote em { color: var(--mustard); font-style: normal; }
.summary-grid > div > p { margin-bottom: 0; font-size: 12px; }

.covenant-list { margin: 38px 0 28px; padding: 0; list-style: none; counter-reset: covenant; }
.covenant-list li { counter-increment: covenant; padding: 19px 18px 19px 59px; position: relative; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 17px; font-weight: 600; line-height: 1.5; }
.covenant-list li:last-child { border-bottom: 1px solid var(--line); }
.covenant-list li::before { content: counter(covenant, decimal-leading-zero); position: absolute; left: 7px; top: 21px; color: var(--cherry); font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.covenant-list .is-emphasized { padding-top: 24px; padding-bottom: 24px; color: var(--cream); background: var(--berry); border-color: var(--paper); font-size: 20px; }
.covenant-list .is-emphasized::before { top: 27px; color: var(--mustard); }
.response-line { margin-top: 26px; font-family: var(--serif); font-size: 22px; font-weight: 700; }
.response-line span { margin-right: 9px; color: #746965; font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.local-story { padding: 36px 0; display: grid; grid-template-columns: 52px 1fr; gap: 24px; border-top: 1px solid var(--line); }
.local-story:last-child { border-bottom: 1px solid var(--line); }
.local-story--person { padding: 44px 0; grid-template-columns: 190px 1fr; gap: 32px; }
.story-portrait { margin: 0; }
.story-portrait img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--mustard); }
.story-portrait figcaption { margin-top: 10px; color: #756a66; font-size: 9px; line-height: 1.4; }
.story-portrait figcaption a { color: inherit; }
.story-label { margin: 2px 0 8px !important; color: var(--cherry); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.local-story h3 { margin: 0 0 16px; font-size: clamp(25px, 3.2vw, 34px); }
.local-story p { margin-top: 0; }
.story-number { width: 42px; height: 42px; display: grid; place-items: center; color: var(--cream); background: var(--green); border-radius: 50%; font-size: 10px; font-weight: 800; }
.local-story--feature { margin: 36px 0 22px; padding: clamp(31px, 5vw, 48px); display: block; color: var(--cream); background: var(--berry); border: 0; }
.local-feature-grid { display: grid; grid-template-columns: 155px minmax(0, 1fr); gap: 30px; align-items: start; }
.richardson-portrait { margin: 2px 0 0; }
.richardson-portrait img { width: 100%; height: auto; border: 2px solid var(--cream); box-shadow: 6px 6px 0 var(--mustard); }
.richardson-portrait figcaption { margin-top: 11px; color: rgba(247,234,212,.78); font-size: 9px; line-height: 1.45; }
.richardson-portrait figcaption a { color: inherit; }
.local-story--feature h3 { margin-bottom: 24px; font-size: clamp(31px, 4.4vw, 45px); }
.local-story--feature a { color: var(--mustard); }
.story-date { margin-bottom: 7px; color: var(--mustard); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.local-story--feature .story-stay { margin: 29px 0; padding: 20px 0; border-block: 1px solid rgba(247,234,212,.35); font-family: var(--serif); font-size: 25px; font-weight: 700; }
.story-more { margin-top: 13px; display: inline-block; font-size: 11px; font-weight: 700; }

.e101-section--action { padding: clamp(38px, 6vw, 62px); background: var(--cream); border: 2px solid var(--ink); box-shadow: 9px 9px 0 var(--coral); }
.action-lines { margin: 31px 0; }
.action-lines p { margin: 0; padding: 17px 0; border-top: 1px solid var(--line); font-family: var(--serif); font-size: clamp(23px, 3.4vw, 34px); font-weight: 700; line-height: 1.25; }
.action-lines p:last-child { border-bottom: 1px solid var(--line); }
.richardson-line { margin: 38px 0 0; color: var(--cherry); font-family: var(--serif); font-size: clamp(24px, 3.2vw, 32px); line-height: 1.35; }

.resource-groups { margin-top: 38px; display: grid; gap: 14px; }
.resource-groups > div { padding: 25px 28px; display: grid; grid-template-columns: 175px 1fr; gap: 25px; background: var(--cream); }
.resource-groups h3 { margin: 2px 0 0; color: var(--cherry); font-size: 20px; }
.resource-groups ul { margin: 0; padding: 0; list-style: none; }
.resource-groups li + li { margin-top: 10px; }
.resource-groups a { font-size: 13px; font-weight: 700; }

.e101-footer { padding: 34px 0; color: var(--cream); background: var(--ink); }
.e101-footer .section-shell { display: flex; gap: 13px; align-items: center; }
.e101-footer span { color: var(--mustard); }
.e101-footer p { margin: 0; font-family: var(--serif); font-size: 14px; font-weight: 700; }
.e101-footer i { margin: 0 5px; color: var(--coral); font-style: normal; }
.e101-footer a { margin-left: auto; color: var(--cream); font-size: 11px; font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 800px) {
  .e101-hero { grid-template-columns: minmax(0, 1fr) 220px; gap: 35px; }
  .e101-layout { grid-template-columns: 1fr; }
  .e101-nav { position: static; padding: 18px 0; border-block: 1px solid var(--line); }
  .e101-nav nav { padding-left: 0; flex-flow: row wrap; gap: 4px 15px; border: 0; }
  .e101-nav a { text-decoration: underline; text-underline-offset: 3px; }
}

@media (max-width: 560px) {
  .episcopal-page .header-link { font-size: 0; }
  .episcopal-page .header-link span { margin: 0; font-size: 20px; }
  .e101-hero { min-height: 0; padding-top: 62px; padding-bottom: 65px; grid-template-columns: 1fr; }
  .e101-hero h1 { font-size: clamp(57px, 18vw, 78px); }
  .e101-hero__art { width: 170px; }
  .e101-layout { padding-top: 50px; }
  .e101-section { scroll-margin-top: 15px; }
  .not-list { grid-template-columns: 1fr; }
  .e101-note { padding: 25px 23px; }
  .portrait-quote { grid-template-columns: 1fr; gap: 24px; }
  .historical-portrait { width: 135px; }
  .feature-quote { margin-right: 6px; }
  .stool-grid { grid-template-columns: 1fr; }
  .stool-card { min-height: 0; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-portrait { width: 145px; }
  .e101-section--summary, .e101-section--action { margin-right: 7px; padding: 31px 24px; }
  .covenant-list li { padding-left: 46px; }
  .local-story { grid-template-columns: 37px 1fr; gap: 14px; }
  .local-story--person { grid-template-columns: 1fr; gap: 24px; }
  .story-portrait { width: 145px; }
  .story-portrait img { box-shadow: 4px 4px 0 var(--mustard); }
  .story-number { width: 34px; height: 34px; }
  .local-feature-grid { grid-template-columns: 1fr; gap: 26px; }
  .richardson-portrait { width: 145px; }
  .local-story--feature { padding: 29px 24px; display: block; }
  .resource-groups > div { grid-template-columns: 1fr; gap: 10px; padding: 23px; }
  .e101-footer .section-shell { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  @page { margin: .65in; }
  body { color: black; background: white; }
  .site-header, .resources-hero, .library-intro, .site-footer, .full-resource:not(.print-target), .print-link { display: none !important; }
  .resource-library { padding: 0; }
  .full-resource.print-target { display: block; margin: 0; padding: 0; border: 0; }
  .full-resource.print-target .resource-deck, .full-resource.print-target .prayer-text, .full-resource.print-target .try-this, .full-resource.print-target .question-list, .full-resource.print-target .steps, .full-resource.print-target .blessing { margin-left: 0; }
  .blessing { color: white !important; background: black !important; print-color-adjust: exact; }
}
