:root {
  --paper: #f4f1e9;
  --paper-bright: #fbfaf6;
  --ink: #1a1a17;
  --muted: #6b6a61;
  --olive: #202419;
  --olive-soft: #3a3d2e;
  --gold: #bd9660;
  --line: rgba(26, 26, 23, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
::selection { background: #d8c49f; color: var(--ink); }

.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: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 3px;
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 112px 0; }
.section-rule .wrap { border-top: 1px solid var(--line); padding-top: 104px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.035em; }
h2 { margin-bottom: 24px; font-size: clamp(3rem, 5vw, 5.25rem); }
h3 { font-size: clamp(1.55rem, 2.3vw, 2.1rem); }
.eyebrow {
  margin-bottom: 18px;
  color: #9a7444;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow-light { color: #d0b281; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.45; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  width: 100%;
  padding: 24px max(24px, calc((100vw - 1340px) / 2));
  color: white;
  transition: color 250ms ease, background 250ms ease, padding 250ms ease, box-shadow 250ms ease;
}
.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(247, 245, 239, 0.95);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}
.wordmark { display: inline-flex; flex-direction: column; width: fit-content; text-decoration: none; text-transform: uppercase; line-height: 1; letter-spacing: 0.25em; }
.wordmark span { font-size: 0.82rem; font-weight: 650; }
.wordmark small { align-self: center; margin-top: 8px; font-size: 0.46rem; letter-spacing: 0.52em; }
.site-nav { display: flex; justify-content: center; gap: clamp(20px, 2.4vw, 42px); }
.site-nav a { position: relative; font-size: 0.75rem; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 200ms ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-listen { justify-self: end; padding: 10px 18px; border: 1px solid currentColor; border-radius: 999px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em; text-decoration: none; text-transform: uppercase; }
.menu-toggle { display: none; }

.hero { position: relative; display: grid; min-height: 100svh; overflow: hidden; color: #fff; isolation: isolate; }
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-media { background: url('/assets/images/john-great-hero.webp') center 48% / cover no-repeat; transform: scale(1.02); }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(8, 10, 7, 0.87) 0%, rgba(8, 10, 7, 0.62) 34%, rgba(8, 10, 7, 0.05) 66%, rgba(8, 10, 7, 0.14) 100%), linear-gradient(0deg, rgba(8, 10, 7, 0.35), transparent 48%); }
.hero-content { align-self: end; padding-top: 150px; padding-bottom: clamp(72px, 12vh, 140px); }
.hero-eyebrow { color: #e4c99b; }
.hero h1 { max-width: 650px; margin-bottom: 28px; font-size: clamp(4rem, 6.2vw, 7rem); letter-spacing: -0.045em; }
.hero-intro { max-width: 560px; margin-bottom: 36px; color: rgba(255,255,255,0.84); font-size: 1.03rem; }
.hero-actions, .button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border: 1px solid transparent; border-radius: 2px; font-size: 0.67rem; font-weight: 750; letter-spacing: 0.13em; text-decoration: none; text-transform: uppercase; transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 15px; margin-right: 9px; fill: currentColor; }
.button-light { background: #f9f7f1; color: #171713; }
.button-dark { background: var(--ink); color: #fff; }
.button-outline-light { border-color: rgba(255,255,255,0.48); color: #fff; }
.button-outline-light:hover { background: #fff; color: #171713; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 8px; font-size: 0.68rem; font-weight: 750; letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: #fff; }
.text-link-muted { color: #8a887f; }
.is-disabled { cursor: default; opacity: .76; }
.is-disabled:hover { transform: none; }
.scroll-cue { position: absolute; right: 42px; bottom: 34px; display: grid; width: 38px; height: 54px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 30px; }
.scroll-cue span { width: 3px; height: 3px; border-radius: 50%; background: #fff; animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 0%, 100% { transform: translateY(-7px); opacity: .35; } 50% { transform: translateY(7px); opacity: 1; } }

.release { background: var(--paper-bright); }
.release-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); align-items: center; gap: clamp(60px, 9vw, 130px); }
.release-art { margin: 0; }
.release-teaser { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; aspect-ratio: 1; border-radius: 3px; background: linear-gradient(rgba(14,16,11,.28), rgba(14,16,11,.58)), url('/assets/images/journal-journey.webp') center / cover no-repeat; color: #fff; box-shadow: 0 30px 70px rgba(36, 29, 17, .14); text-align: center; }
.release-teaser::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.38); pointer-events: none; }
.release-teaser-title { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.3rem); letter-spacing: -.035em; }
.release-teaser-artist, .release-teaser-date { position: relative; z-index: 1; font-size: .63rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.release-teaser-artist { margin-top: 12px; }
.release-teaser-date { position: absolute; bottom: 45px; color: rgba(255,255,255,.78); }
.release-art figcaption { margin-top: 14px; color: var(--muted); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.release-copy { max-width: 520px; }
.release-copy h2 { margin-bottom: 18px; }
.release-copy > p:not(.eyebrow) { color: #54534c; }
.release-copy .lead { color: var(--ink) !important; }
.release-copy .button-row { margin-top: 34px; }

.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 500px; margin-bottom: 8px; color: var(--muted); }
.music-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.music-card { min-width: 0; }
.music-cover { position: relative; display: block; overflow: hidden; aspect-ratio: 1; margin-bottom: 25px; background: #d8d5cc; border-radius: 3px; }
.music-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms cubic-bezier(.2,.8,.2,1); }
.music-cover:hover img { transform: scale(1.025); }
.play-mark { position: absolute; right: 16px; bottom: 16px; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: rgba(250,249,244,.94); color: var(--ink); box-shadow: 0 8px 30px rgba(0,0,0,.18); transform: translateY(5px); opacity: 0; transition: opacity 180ms ease, transform 180ms ease; }
.music-cover:hover .play-mark, .music-cover:focus-visible .play-mark { opacity: 1; transform: translateY(0); }
.play-mark svg { width: 18px; fill: currentColor; }
.music-card-copy { padding-right: 16px; }
.music-card-copy h3 { margin-bottom: 13px; }
.music-card-copy > p:not(.track-type) { min-height: 78px; color: var(--muted); font-size: .92rem; }
.track-type, .article-number { margin-bottom: 9px; color: #9a7444; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.listen-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: #11130f; color: #fff; }
.listen-panel, .story-panel { position: relative; min-width: 0; overflow: hidden; }
.listen-panel { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 18px; padding: clamp(55px, 6vw, 95px) clamp(30px, 5vw, 78px); background: #171915; }
.listen-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(188,153,93,.2), transparent 38%); pointer-events: none; }
.listen-panel-content { position: relative; z-index: 1; }
.listen-panel h2, .story-panel h2 { font-size: clamp(2.7rem, 4.2vw, 4.8rem); }
.listen-panel p:not(.eyebrow), .story-copy p { color: rgba(255,255,255,.7); }
.listen-panel .button-row { margin-top: 28px; }
.listen-art { position: relative; z-index: 1; align-self: center; width: 100%; height: auto; aspect-ratio: 1; border-radius: 50%; object-fit: cover; box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.story-panel { display: grid; grid-template-rows: 1fr 260px; background: var(--olive); }
.story-copy { z-index: 1; align-self: center; max-width: 600px; padding: clamp(55px, 6vw, 95px); }
.story-portrait { overflow: hidden; }
.story-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; filter: saturate(.8); }

.journal { background: var(--paper-bright); }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.journal-image { overflow: hidden; aspect-ratio: 1.6; margin-bottom: 25px; border-radius: 2px; background: #d9d7d0; }
.journal-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform 600ms cubic-bezier(.2,.8,.2,1), filter 300ms ease; }
.journal-card:hover .journal-image img { transform: scale(1.03); filter: saturate(1); }
.journal-card h3 { min-height: 2.05em; margin-bottom: 13px; font-size: clamp(1.6rem, 2.2vw, 2.25rem); }
.journal-card > p:not(.article-number) { min-height: 55px; color: var(--muted); font-size: .9rem; }

.worship-callout { position: relative; display: grid; min-height: 620px; place-items: center; overflow: hidden; color: white; isolation: isolate; }
.worship-image, .worship-shade { position: absolute; inset: 0; z-index: -2; }
.worship-image { background: url('/assets/images/journal-trust.webp') center 43% / cover no-repeat; }
.worship-shade { z-index: -1; background: linear-gradient(90deg, rgba(15,17,12,.9), rgba(15,17,12,.58) 52%, rgba(15,17,12,.2)); }
.worship-content { padding-block: 110px; }
.worship-content h2 { max-width: 670px; }
.worship-content p:not(.eyebrow) { max-width: 590px; margin-bottom: 35px; color: rgba(255,255,255,.78); font-size: 1.05rem; }

.connection { padding: 90px 0; background: var(--olive); color: #fff; }
.connection-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.connection-copy h2 { margin-bottom: 18px; font-size: clamp(2.8rem, 4.4vw, 4.7rem); }
.connection-copy p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.68); }
.connection-form { display: grid; grid-template-columns: 1fr 1.35fr auto; align-items: end; gap: 12px; }
.connection-form label span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.65); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.connection-form input { width: 100%; height: 50px; padding: 0 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 2px; outline: 0; background: rgba(255,255,255,.04); color: #fff; }
.connection-form input::placeholder { color: rgba(255,255,255,.48); }
.connection-form input:focus { border-color: #fff; }
.connection-form input:disabled { opacity: .65; cursor: not-allowed; }
.connection-form button:disabled { opacity: .72; cursor: not-allowed; transform: none; }
.form-note { grid-column: 1 / -1; margin: 8px 0 0; color: rgba(255,255,255,.55); font-size: .78rem; }

.site-footer { padding: 80px 0 24px; background: #121310; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: .8fr 1.1fr .8fr; gap: 80px; padding-bottom: 65px; }
.wordmark-footer { color: #fff; }
.footer-brand p { max-width: 220px; margin-top: 25px; font-size: .83rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; }
.social-links a { color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.social-links a:hover, .social-links a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-links h2 { margin-bottom: 20px; color: #fff; font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.footer-links a { display: block; width: fit-content; margin: 9px 0; font-size: .82rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.site-footer blockquote { margin: 0; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.4rem; font-style: italic; line-height: 1.45; }
.site-footer cite { display: block; margin-top: 18px; color: #c4a677; font-family: var(--sans); font-size: .61rem; font-style: normal; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 150px 1fr 110px; }
  .site-nav { gap: 20px; }
  .listen-story { grid-template-columns: 1fr; }
  .listen-panel, .story-panel { min-height: 620px; }
  .story-panel { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .story-portrait { min-height: 560px; }
  .connection-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 800px) {
  :root { --wrap: min(100% - 34px, 660px); }
  .section { padding: 78px 0; }
  .section-rule .wrap { padding-top: 72px; }
  .site-header { grid-template-columns: 1fr auto; padding: 18px 20px; }
  body.menu-open .site-header { color: var(--ink); }
  .site-header .wordmark { position: relative; z-index: 102; }
  .header-listen { display: none; }
  .menu-toggle { position: relative; z-index: 102; display: grid; width: 44px; height: 44px; padding: 12px 9px; border: 0; background: transparent; color: inherit; place-content: center; gap: 7px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; transition: transform 200ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 25px; background: var(--paper-bright); color: var(--ink); opacity: 0; visibility: hidden; transition: opacity 200ms ease, visibility 200ms ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav a { font-family: var(--serif); font-size: 2.2rem; }
  .hero { min-height: 800px; }
  .hero-media { background-position: 54% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,10,7,.85), rgba(8,10,7,.38) 75%), linear-gradient(0deg, rgba(8,10,7,.58), transparent 70%); }
  .hero-content { padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3.7rem, 14vw, 5.6rem); }
  .hero-intro { max-width: 92%; font-size: .95rem; }
  .scroll-cue { display: none; }
  .release-grid { grid-template-columns: 1fr; gap: 50px; }
  .release-copy { max-width: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .music-grid, .journal-grid { grid-template-columns: 1fr; gap: 58px; }
  .music-card-copy > p:not(.track-type), .journal-card h3, .journal-card > p:not(.article-number) { min-height: 0; }
  .listen-panel { grid-template-columns: 1fr; }
  .listen-art { width: min(75%, 360px); margin: 30px auto 0; }
  .story-panel { grid-template-columns: 1fr; }
  .story-copy { padding: 70px 25px; }
  .story-portrait { min-height: 390px; }
  .connection-form { grid-template-columns: 1fr; }
  .connection-form .button { margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 55px; }
  .site-footer blockquote { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .hero { min-height: 760px; }
  .hero-media { background-position: 55% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,10,7,.84), rgba(8,10,7,.48)), linear-gradient(0deg, rgba(8,10,7,.76), transparent 70%); }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 4.4rem); }
  .hero-intro { max-width: 100%; }
  .hero-actions, .button-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .button { width: 100%; }
  .release-art figcaption { font-size: .61rem; }
  .listen-panel { padding-inline: 22px; }
  .worship-callout { min-height: 570px; }
  .worship-shade { background: rgba(15,17,12,.7); }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer blockquote { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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

/* Story page */
.about-page { background: #f8f6f2; }
.about-header { color: var(--ink); }
.about-header .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.about-hero {
  display: grid;
  grid-template-columns: minmax(430px, .88fr) minmax(0, 1.12fr);
  min-height: 760px;
  padding-top: 88px;
  background: #f8f6f2;
}
.about-hero > *, .story-section > *, .heart-section > *, .story-signoff > * { min-width: 0; }
.about-hero-copy {
  align-self: center;
  max-width: 690px;
  padding: 90px clamp(44px, 6.5vw, 124px);
}
.about-hero-copy h1 {
  margin-bottom: 34px;
  font-size: clamp(4rem, 5.6vw, 6.7rem);
}
.about-hero-copy > p:not(.eyebrow) { max-width: 590px; color: #55534c; }
.about-hero-copy .button-row { margin-top: 34px; }
.about-hero-image { min-height: 672px; margin: 0; overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: min(1380px, calc(100% - 72px));
  margin-inline: auto;
  padding: 110px 0;
}
.story-section + .story-section { padding-top: 0; }
.story-image { min-height: 600px; margin: 0; overflow: hidden; background: #dedbd3; }
.story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform 1.1s cubic-bezier(.2,.75,.2,1); }
.story-image.is-visible img { transform: scale(1.01); }
.story-beginning .story-image img { object-position: center 55%; }
.story-image-tall img { object-position: 64% center; }
.story-prose { align-self: center; max-width: 680px; padding: clamp(55px, 6.5vw, 110px); }
.story-prose h2, .heart-section h2, .story-signoff h2 { font-size: clamp(3rem, 4.4vw, 5.4rem); }
.story-prose > p:not(.eyebrow) { color: #55534c; }
.story-prose .text-link { margin-top: 14px; }

.story-quote {
  position: relative;
  display: grid;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
  place-items: center;
  isolation: isolate;
}
.story-quote-image, .story-quote-shade { position: absolute; inset: 0; z-index: -2; }
.story-quote-image { background: url('/assets/images/journal-trust.webp') center 48% / cover no-repeat; }
.story-quote-shade { z-index: -1; background: linear-gradient(rgba(15,17,12,.38), rgba(15,17,12,.6)); }
.story-quote blockquote {
  max-width: 980px;
  margin: 0;
  padding: 110px 30px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 6rem);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-align: center;
}
.story-quote cite {
  display: block;
  margin-top: 30px;
  color: #e4c99b;
  font-family: var(--sans);
  font-size: .69rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.story-songs { padding-block: 120px; }
.story-songs .story-image { align-self: center; min-height: 0; aspect-ratio: 1.15; }

.heart-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1380px, calc(100% - 72px));
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.heart-copy, .today-copy { padding: 110px clamp(35px, 4.2vw, 75px); }
.heart-copy { padding-left: 0; }
.today-copy { padding-right: 0; }
.heart-copy > p:not(.eyebrow), .today-copy > p:not(.eyebrow) { color: #55534c; }
.heart-section h2 { font-size: clamp(2.7rem, 3.7vw, 4.6rem); }
.scripture {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 120px clamp(40px, 5vw, 85px);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 3.6rem);
  line-height: 1.28;
}
.scripture > span { margin-bottom: 16px; color: var(--gold); font-size: 4rem; line-height: .5; }
.scripture cite { margin-top: 34px; font-family: var(--sans); font-size: .66rem; font-style: normal; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.today-copy .button-row { margin-top: 30px; }

.story-signoff {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) 1.28fr;
  align-items: center;
  min-height: 430px;
  background: var(--olive);
  color: #fff;
}
.signoff-image { align-self: end; height: 400px; margin: 0 0 0 clamp(20px, 7vw, 130px); overflow: hidden; }
.signoff-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: saturate(.75); }
.signoff-copy { max-width: 770px; padding: 70px clamp(45px, 8vw, 140px); }
.signoff-copy h2 { margin-bottom: 22px; }
.signoff-copy p { color: rgba(255,255,255,.7); }
.signature { margin: 20px 0 0; color: #d0aa70 !important; font-family: var(--serif); font-size: 2rem; font-style: italic; }

@media (max-width: 1050px) {
  .about-hero { grid-template-columns: 1fr 1fr; }
  .about-hero-copy { padding-inline: 42px; }
  .story-section, .heart-section { width: min(100% - 48px, 900px); }
  .story-prose { padding: 60px 45px; }
  .heart-section { grid-template-columns: 1fr 1fr; }
  .scripture { grid-column: 1 / -1; grid-row: 2; min-height: 500px; border: 0; border-top: 1px solid var(--line); text-align: center; }
  .scripture > span { align-self: center; }
  .heart-copy { padding-right: 55px; }
  .today-copy { padding-left: 55px; }
}

@media (max-width: 800px) {
  .about-header { color: var(--ink); }
  .about-hero { grid-template-columns: 1fr; padding-top: 76px; }
  .about-hero-copy { padding: 72px var(--page-pad, 24px) 62px; }
  .about-hero-copy h1 { font-size: clamp(3.7rem, 13.5vw, 5.6rem); }
  .about-hero-image { min-height: 480px; }
  .about-hero-image img { object-position: 55% center; }
  .story-section { grid-template-columns: 1fr; width: 100%; padding: 0; }
  .story-beginning .story-image { order: 2; }
  .story-prose { max-width: none; padding: 78px 24px; }
  .story-image { min-height: 520px; }
  .story-journey .story-image { min-height: 560px; }
  .story-quote { min-height: 520px; }
  .story-quote blockquote { padding-inline: 22px; }
  .story-songs { padding-top: 0; }
  .story-songs .story-image { aspect-ratio: 1; }
  .heart-section { grid-template-columns: 1fr; width: 100%; }
  .heart-copy, .today-copy { padding: 78px 24px; }
  .scripture { grid-column: auto; grid-row: auto; min-height: 560px; padding-inline: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .story-signoff { grid-template-columns: 1fr; }
  .signoff-image { width: min(82%, 480px); height: 390px; margin: 45px auto 0; }
  .signoff-copy { padding: 55px 24px 75px; text-align: center; }
}

@media (max-width: 520px) {
  .about-hero-copy .button-row, .today-copy .button-row { align-items: stretch; }
  .about-hero-image { min-height: 390px; }
  .story-image, .story-journey .story-image { min-height: 420px; }
  .story-quote { min-height: 470px; }
  .story-quote blockquote { font-size: clamp(2.6rem, 12vw, 4rem); }
  .scripture { min-height: 510px; font-size: 2.45rem; }
  .signoff-image { height: 320px; }
}
